@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --primary-color: #000000;
    --text-color: #000000;
    --text-light: #000000;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Üst Koyu Banner === */
.top-banner {
    width: 100%;
    height: 26px;
    background-color: #223442;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* === Header === */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow: visible;
    position: relative;
    z-index: 500;
}

.header-inner {
    display: flex;
    align-items: center;
    height: 80px;
    padding-left: 48px;
    padding-right: 0;
}

/* === Logo === */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px;
    margin-top: -8px;
}

.logo-img {
    height: 55px;
    width: auto;
}

/* === Navigasyon === */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #223442;
}
.nav-link .arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 4px;
    margin-bottom: 2px;
}
.nav-item-has-dropdown {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    width: 100%;
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown li a img {
    width: 108px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-dropdown li a img.nav-dropdown-logo-sync {
    width: 116px;
    height: 36px;
}

.nav-dropdown li a img.nav-dropdown-logo-assist {
    width: 110px;
    height: 34px;
}

.nav-dropdown li:last-child a img {
    width: 136px;
    height: 44px;
}

.nav-dropdown li a span {
    display: none !important;
}

.nav-dropdown li a:hover {
    background: #f8f9fa;
    color: #223442;
}

/* === Sağ Taraf (SYNC + Buton) === */
.header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 36px;
    margin-top: -4px;
}

.sync-logo {
    height: 30px;
    width: auto;
    margin-top: -2px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #223442;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 32px;
    border: none;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    margin-right: -20px;
    padding-right: 52px;
}

.btn-contact:hover {
    background: #1a2833;
}

/* === Hamburger (Mobil) === */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #223442;
    transition: all 0.3s;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
    .header-inner {
        padding-left: 24px;
    }

    .nav-list {
        gap: 16px;
    }

    .logo-link {
        margin-right: 24px;
    }

    .header-actions {
        gap: 16px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header,
    .top-banner,
    .subpage-main,
    .hero-subpage,
    .subpage-section,
    .footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-inner,
    .subpage-container {
        width: 100%;
        max-width: 100%;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
        order: 2;
    }

    .header-inner {
        min-height: 64px;
        height: auto;
        padding-left: 16px;
        padding-right: 16px;
        flex-wrap: wrap;
        align-items: center;
    }

    .logo-link {
        order: 1;
        margin-right: 0;
        margin-top: 4px;
    }

    .nav {
        order: 3;
        flex: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #fff;
    }

    .nav.is-active {
        max-height: 500px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
    }

    /* Mobil dropdown — hover yerine click ile açılır */
    .nav-item-has-dropdown {
        position: static;
        padding: 0;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        background: #f8f9fa;
    }

    .nav-item-has-dropdown.is-open .nav-dropdown {
        max-height: 300px;
        padding: 4px 0;
    }

    .nav-dropdown li a {
        padding: 10px 16px 10px 28px;
    }

    .nav-link .arrow {
        float: right;
        margin-top: 6px;
        transition: transform 0.3s;
    }

    .nav-item-has-dropdown.is-open .nav-link .arrow {
        transform: rotate(225deg);
    }

    .header-actions {
        order: 4;
        flex: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        justify-content: center;
        gap: 16px;
        padding: 0;
    }

    .header-actions.is-active {
        max-height: 100px;
        padding: 12px 0;
    }

    .btn-contact {
        border-radius: 20px;
        margin-right: 0;
        padding-right: 32px;
    }
    .mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* === Slider (Hero) Section === */
.hero {
    width: 100%;
    padding: 30px 0 60px 0;
    overflow: hidden;
    background-color: #fff;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
    margin-top: 20px;
    padding-left: 90px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    font-size: clamp(20px, 1.8vw + 12px, 30px);
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 440px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f3f5;
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-hero:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.btn-hero .icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrow-bounce 1.5s infinite ease-in-out;
}

/* Hero Image Section */
/* Hero Visual Area - Minimalist & Animated */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 120px;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    z-index: 3;
    overflow: hidden;
    border-radius: 20px;
}

.hero-shape {
    position: absolute;
    right: 95px;
    bottom: -14px;
    width: 420px;
    max-width: calc(100% - 40px);
    height: 78%;
    background-color: #223442;
    border-radius: 18px;
    z-index: 1;
    opacity: 0.95;
}


.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
    position: relative;
    z-index: 2;
}

.slider-next {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: var(--transition);
}

.slider-next:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-next svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.slider-next:hover svg {
    transform: translateX(5px);
}

/* === Responsive slider === */
@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(20px, 1.8vw + 12px, 30px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px 0 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        justify-content: center;
        padding-right: 0;
        padding-left: 0;
    }

    .hero-img-wrapper {
        max-width: 100%;
    }

    .hero-shape {
        right: 10px;
        bottom: -10px;
        width: calc(100% - 20px);
        height: 84%;
    }

    .hero-img-bg {
        left: 0;
        width: 100%;
    }

    .slider-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(18px, 4.2vw, 24px);
    }

    .hero-description {
        font-size: 16px;
    }
}

/* === Marka Kartları Bölümü === */
.brand-cards {
    width: 100%;
    padding: 44px 48px 100px 48px;
    background: #fff;
    position: relative;
    z-index: 10;
    margin-top: 10px;
}

.brand-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.brand-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 0 20px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    padding-top: 10px;
}
.brand-card-logo {
    background: #ffffff;
    padding: 14px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 182px;
    height: 84px;
    border-radius: 18px 18px 0 0;
    border: 1px solid rgba(228, 231, 235, 0.95);
    border-bottom: none;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.045);
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    overflow: hidden;
}

.brand-card-logo img {
    max-height: 50px;
    max-width: 136px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-card-logo::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 42%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: translateX(-180%) skewX(-18deg);
    transition: transform 0.7s ease, opacity 0.3s ease;
    pointer-events: none;
}

.brand-card-link:hover .brand-card-logo::after {
    opacity: 1;
    transform: translateX(520%) skewX(-18deg);
}

.brand-card-link:hover .brand-card-logo img {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.18));
}

.brand-card-link:hover .brand-card-logo {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.brand-card-link:hover .brand-card-logo-oleas img {
    filter: drop-shadow(0 12px 22px rgba(22, 103, 85, 0.42));
}

.brand-card-link:hover .brand-card-logo-oleas {
    box-shadow: 0 16px 34px rgba(22, 103, 85, 0.18);
}

.brand-card-link:hover .brand-card-logo-sync img {
    filter: drop-shadow(0 12px 22px rgba(96, 199, 127, 0.45));
}

.brand-card-link:hover .brand-card-logo-sync {
    box-shadow: 0 16px 34px rgba(96, 199, 127, 0.18);
}

.brand-card-link:hover .brand-card-logo-assist img {
    filter: drop-shadow(0 12px 22px rgba(237, 146, 0, 0.5));
}

.brand-card-link:hover .brand-card-logo-assist {
    box-shadow: 0 16px 34px rgba(237, 146, 0, 0.2);
}

.brand-card-link:hover .brand-card-logo-babil img {
    filter: drop-shadow(0 12px 22px rgba(32, 33, 33, 0.42));
}

.brand-card-link:hover .brand-card-logo-babil {
    box-shadow: 0 16px 34px rgba(32, 33, 33, 0.2);
}

.brand-card-logo-babil img {
    max-height: 56px;
    max-width: 142px;
}

.brand-card-logo-sync img {
    max-height: 54px;
    max-width: 140px;
}
.brand-card-body {
    background: #ffffff;
    padding: 13px 26px 11px;
    width: 100%;
    flex-grow: 1;
    min-height: 80px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(228, 231, 235, 0.95);
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    line-height: 1.12;
}

.brand-card-desc {
    font-size: 11px;
    color: #000;
    line-height: 1.15;
    letter-spacing: -0.01em;
}


/* === Philosophy (Bakış Açımızdan) Bölümü === */
.philosophy {
    width: 100%;
    padding: 15px 48px 80px 48px;
    background: #fff;
    position: relative;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.philosophy-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.25;
}

.philosophy-description {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 60px;
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 60px;
    margin-top: 40px;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}
.insight-card:hover {
    transform: none;
}

.insight-img {
    width: 160px;
    height: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    object-fit: cover;
    flex-shrink: 0;
}

.insight-box {
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 300px;
    min-width: 300px;
    height: 96px;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.insight-icon {
    width: 22px;
    height: 22px;
    background: #223442;
    border-radius: 3px;
    flex-shrink: 0;
}

.insight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.insight-title {
    font-size: clamp(15px, 1vw + 8px, 16px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.insight-subtitle {
    font-size: clamp(12px, 0.8vw + 7px, 13px);
    font-weight: 400;
    color: #000;
    line-height: 1.2;
}

.insight-line {
    display: block;
    white-space: nowrap;
}
.insight-card:hover .insight-box {
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}
@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 1100px) {
    .brand-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .brand-cards-container {
        grid-template-columns: 1fr;
    }
}

/* === Footer Bölümü === */
.footer {
    background: #223442;
    color: #fff;
    gap: 20px;
}

.footer-logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 240px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}


/* === Footer Section === */
.footer {
    background: #223442;
    color: #fff;
    padding: 20px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.2fr;
    gap: 30px;
    padding: 0 40px 15px 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 210px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-map-img {
    max-width: 220px;
    height: auto;
    opacity: 1;
    filter: brightness(0) invert(1);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: all 0.3s ease;
}
.footer:hover .footer-map-img {
    transform: scale(1.05);
}

.footer-green {
    background-color: #004D3D !important;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-container p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 769px) {
    .footer {
        padding-top: 38px;
    }

    .footer-container {
        align-items: start;
        padding-top: 8px;
        padding-bottom: 22px;
    }
}

/* Footer Responsive */

/* Tablet */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 40px;
        padding: 24px 32px 20px 32px;
    }

    .footer-visual {
        grid-column: span 2;
        justify-content: center;
        margin-top: 0;
    }

    .footer-map-img {
        max-width: 240px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .footer {
        padding: 28px 0 0 0;
        margin-top: 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding: 0 20px 20px 20px;
    }

    /* Marka bloğu üst satırda tam genişlik */
    .footer-brand {
        grid-column: span 2;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-tagline {
        max-width: 100%;
        font-size: 11px;
    }
    .footer-contact-col {
        grid-column: span 2;
        gap: 12px;
    }

    .footer-contact-item {
        align-items: flex-start;
        gap: 10px;
        font-size: 12px;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }
    .footer-visual {
        display: none;
    }

    .footer-bottom-container {
        padding: 0 20px;
        justify-content: center;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px 20px 16px;
    }

    .footer-brand {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-col {
        grid-column: span 1;
    }

    .footer-bottom-container {
        padding: 0 16px;
    }
}

/* === Subpage Hero Styles === */
.hero-subpage {
    padding: 110px 0 70px 0;
    background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.subpage-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
}

.hero-subpage-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-subpage-logo-box {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subpage-logo-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.hero-subpage-logo-box-oleas {
    width: 272px;
    margin-top: -10px;
}

.hero-subpage-text {
    flex: 1;
    min-width: 0;
}

.hero-subpage-text-oleas {
    padding-left: 96px;
}

.hero-subpage-text-oleas .subpage-category {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    opacity: 1;
    margin-bottom: 6px;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
}

.hero-subpage-text-oleas .subpage-main-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.subpage-category {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.subpage-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.subpage-description {
    font-size: 18px;
    color: #000;
    line-height: 1.7;
    max-width: 650px;
    font-weight: 400;
}

/* === Subpage Content Sections === */
.subpage-section {
    padding: 60px 0 100px 0;
}

.content-grid {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 80px;
}

.content-grid-oleas {
    gap: 64px;
}

.content-left {
    flex: 1.2;
}

.content-grid-oleas .content-left {
    flex: 0.95;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.02;
}

.section-title-nowrap {
    white-space: nowrap;
    font-size: clamp(24px, 2.1vw, 32px);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 18px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.8;
}

.content-right {
    flex: 1;
}

.content-right-oleas {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    min-width: 520px;
}

.content-right img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.content-image-oleas {
    width: 520px;
    max-width: none;
    margin-top: 80px;
    margin-bottom: 18px;
    margin-left: -190px;
    transform: scaleY(1.16);
    transform-origin: center bottom;
}

.cta-wrapper {
    display: flex;
    justify-content: flex-end;
}

.content-right-oleas .cta-wrapper {
    width: 100%;
    justify-content: center;
}

.btn-cta-sub {
    display: inline-block;
    background: #004D3D;
    --cta-shadow-color: rgba(0, 77, 61, 0.25);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-sub:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--cta-shadow-color);
}

.btn-cta-sub[style*="#28B660"]:hover {
    box-shadow: 0 15px 30px rgba(40, 182, 96, 0.32);
}

.btn-cta-sub[style*="#ED9200"]:hover {
    box-shadow: 0 15px 30px rgba(237, 146, 0, 0.34);
}

.btn-cta-sub[style*="#202121"]:hover {
    box-shadow: 0 15px 30px rgba(32, 33, 33, 0.34);
}

/* Service Info Area */
.service-info-grid {
    margin-top: 100px;
}

.service-info-grid-oleas .service-item {
    align-items: center;
    gap: 24px;
}

.service-info-grid-oleas .service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info-grid-oleas .service-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-grid-oleas .service-text h4 {
    margin-bottom: 8px;
}

.service-info-grid-oleas .service-text p {
    margin: 0;
    position: relative;
    border-left: none;
    padding-left: 20px;
}

.service-info-grid-oleas .service-text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 16px;
    background: #eee;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-icon-box img {
    width: 100%;
    height: auto;
}

.service-text h4 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 17px;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
    border-left: 3px solid #eee;
    padding-left: 20px;
}

/* ============================================================
   RESPONSIVE — Ek düzeltmeler
   ============================================================ */

/* Hero — tablet (992px altı zaten column'a geçiyor ama
   padding-left/right sıfırlanmıyordu) */
@media (max-width: 992px) {
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-visual {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Brand cards + Philosophy — tablet */
@media (max-width: 1100px) {
    .brand-cards {
        padding: 40px 24px 60px 24px;
    }

    .brand-cards-container {
        padding: 0;
        gap: 24px;
    }

    .philosophy {
        padding: 15px 24px 60px 24px;
    }

    .philosophy-container {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .logo-img {
        height: 36px;
    }

    .sync-logo {
        height: 20px;
    }

    /* Hero */
    .hero {
        padding: 20px 0 36px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 36px;
    }

    .hero-title {
        font-size: clamp(18px, 4.2vw, 24px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-img-wrapper {
        max-width: 100%;
    }

    .hero-shape {
        right: 8px;
        bottom: -8px;
        width: calc(100% - 16px);
        height: 86%;
        border-radius: 14px;
    }

    /* Brand Cards */
    .brand-cards {
        padding: 36px 16px 48px 16px;
    }

    .brand-cards-container {
        padding: 0;
        gap: 16px;
    }

    .brand-card {
        padding-top: 6px;
    }

    .brand-card-logo {
        width: 170px;
        height: 78px;
    }

    .brand-card-logo img {
        max-height: 42px;
        max-width: 118px;
    }

    .brand-card-logo-sync img {
        max-height: 44px;
        max-width: 122px;
    }

    .brand-card-logo-babil img {
        max-height: 52px;
        max-width: 132px;
    }

    .brand-card-body {
        min-height: 84px;
        padding: 12px 18px 10px;
    }

    .brand-card-title {
        font-size: 13px;
    }

    .brand-card-desc {
        font-size: 11px;
    }

    /* Philosophy */
    .philosophy {
        padding: 28px 16px 48px 16px;
    }

    .philosophy-container {
        padding: 0;
    }

    .philosophy-title {
        font-size: 22px;
    }

    .philosophy-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 16px;
    }

    .insight-card {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .insight-img {
        width: 100%;
        max-height: 180px;
        object-fit: cover;
    }

    .insight-box {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 72px;
    }

}

/* Küçük mobil (480px altı) */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(16px, 4vw, 20px);
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-hero {
        font-size: 13px;
        padding: 9px 18px;
    }

    .brand-cards-container {
        grid-template-columns: 1fr;
    }

    .philosophy-title {
        font-size: 20px;
    }
}

/* ============================================================
   SUBPAGE RESPONSIVE
   ============================================================ */

/* Subpage — tablet */
@media (max-width: 992px) {
    .hero-subpage {
        padding: 60px 0 40px 0;
    }

    .subpage-container {
        padding: 0 32px;
    }

    .hero-subpage-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-subpage-logo-box {
        width: 160px;
    }

    .subpage-main-title {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .subpage-description {
        font-size: 16px;
    }

    .content-grid {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
    }

    .content-left,
    .content-right {
        flex: none;
        width: 100%;
    }

    .content-right img {
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-wrapper {
        justify-content: flex-start;
    }

    .service-info-grid {
        margin-top: 48px;
    }
}

/* Subpage — mobil */
@media (max-width: 768px) {
    .hero-subpage-logo-box {
        width: 100%;
        justify-content: center;
    }

    .hero-subpage-logo-box-oleas {
        width: 150px;
        margin: 0 auto;
    }

    .hero-subpage-text {
        text-align: center;
        padding-left: 0 !important;
    }

    .hero-subpage-text-oleas .subpage-category {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .hero-subpage-text-oleas .subpage-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-title-nowrap {
        white-space: normal;
        font-size: 22px;
    }

    .content-grid-oleas .content-left {
        text-align: center;
    }

    .content-grid-oleas .section-title-nowrap {
        text-align: center;
    }

    .content-right-oleas {
        min-width: 0;
        width: 100%;
    }

    .content-image-oleas {
        width: min(64vw, 272px);
        max-width: 100%;
        margin-top: 24px;
        margin-bottom: 18px;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-22px) scaleY(1.06);
    }

    .content-right-oleas .cta-wrapper {
        justify-content: center;
    }

    .hero-subpage {
        padding: 36px 0 28px 0;
    }

    .subpage-container {
        padding: 0 16px;
    }

    .subpage-category {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .subpage-main-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .subpage-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .subpage-section {
        padding: 32px 0 60px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .text-block p {
        font-size: 15px;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .btn-cta-sub {
        font-size: 15px;
        padding: 12px 28px;
    }

    .service-info-grid {
        margin-top: 36px;
    }

    .service-item {
        gap: 16px;
        margin-bottom: 28px;
    }

    .service-icon-box {
        width: 44px;
        height: 44px;
    }

    .service-text h4 {
        font-size: 17px;
    }

    .service-text p {
        font-size: 14px;
    }
}

/* Subpage — küçük mobil */
@media (max-width: 480px) {
    .subpage-main-title {
        font-size: 24px;
    }

    .content-image-oleas {
        width: min(58vw, 228px);
        margin-top: 16px;
        transform: translateX(-18px) scaleY(1.06);
    }

    .section-title {
        font-size: 20px;
    }

    .service-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* Subpage — benefits grid responsive */
@media (max-width: 992px) {
    .benefits-section {
        margin-top: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-badges {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        margin-top: 24px !important;
    }

    .hero-subpage-text {
        padding-left: 0 !important;
    }

    .subpage-section:first-of-type {
        margin-top: 0 !important;
    }

    .content-right {
        margin-top: 0 !important;
    }

    .content-right img:not(.content-image-oleas) {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
    }

    .content-right .cta-wrapper {
        margin-top: 20px !important;
    }
}

@media (max-width: 768px) {
    .benefit-header {
        gap: 16px;
    }

    .benefit-header-text h3 {
        font-size: 18px;
    }

    .benefit-sub {
        font-size: 14px;
    }

    .detail-label {
        font-size: 14px;
    }

    .benefit-detail p {
        font-size: 13px;
    }

    .benefit-item {
        margin-bottom: 28px;
    }
}
