:root {
    --bg: #F5F1EA;
    --bg-soft: #EFE8DC;
    --ink: #171717;
    --ink-soft: #2A2926;
    --white: #F5F1EA;
    --muted: #77736A;
    --gold: #B89B5E;
    --gold-dark: #8E743F;
    --white: #FFFFFF;
    --line: rgba(23, 23, 23, .11);
    --line-dark: rgba(255, 255, 255, .13);
    --shadow: 0 24px 70px rgba(23, 23, 23, .12);
    --radius: 26px;
    --radius-sm: 18px;
    --container: 1320px;
    --section: 55px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 999;
}

    .skip-link:focus {
        top: 16px;
    }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  
    backdrop-filter: blur(10px); /* İsteğe bağlı: Arkadaki görüntüyü hafif bulanıklaştırır */

    transition: background .35s ease, border .35s ease, box-shadow .35s ease;
    border-bottom: 1px solid transparent;
}

    .site-header.scrolled {
        background: rgba(23, 23, 23, 0.75);
        backdrop-filter: blur(10px);
        border-color: var(--line-dark); /* Koyu zeminde açık renk çizgi daha iyi durur */
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    }





.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    z-index: 110;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184,155,94,.65);
    color: var(--gold);
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1;
    background: rgba(23,23,23,.72);
}

.brand-text {
    color: var(--white);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .12em;
}

.site-header.scrolled .brand-text {
    color: var(--white);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 23px;
}

    .primary-nav a {
        color: rgba(255,255,255,.88);
        font-size: 13px;
        font-weight: 700;
        transition: color .25s ease;
    }

        .primary-nav a:hover {
            color: var(--gold);
        }

.site-header.scrolled .primary-nav a {
    color: var(--white);
}

    .site-header.scrolled .primary-nav a:hover {
        color: var(--gold-dark);
    }

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(184,155,94,.7);
    color: var(--white);
    background: rgba(184,155,94,.15);
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}

    .nav-cta:hover {
        background: var(--gold);
        color: var(--white);
        transform: translateY(-1px);
    }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
    z-index: 110;
}

    .menu-toggle span {
        display: block;
        height: 2px;
        background: var(--white);
        margin: 6px 0;
        transition: .25s ease;
    }

.site-header.scrolled .menu-toggle span {
    background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 150px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23,23,23,.78), rgba(23,23,23,.42), rgba(23,23,23,.18)), url('/vendors/images/villa.jpg') center/cover;
    transform: scale(1.05);
    animation: heroDrift 18s ease-in-out infinite alternate;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 35%, rgba(184,155,94,.28), transparent 34%), linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.72));
}

.hero-content {
    position: relative;
    max-width: 860px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

    .eyebrow.dark {
        color: var(--gold-dark);
    }

h1, h2, h3 {
    margin: 0;
    line-height: 1.04;
}

h1, h2 {
    font-family: var(--serif);
    font-weight: 700;
}

h1 {
    font-size: clamp(50px, 7vw, 100px);
    max-width: 900px;
    letter-spacing: -.035em;
}

h2 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -.03em;
    color: var(--ink);
}

h3 {
    font-size: 20px;
    letter-spacing: -.02em;
}

.hero-lead {
    max-width: 720px;
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,.86);
    margin: 24px 0 0;
}

.trust-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

    .trust-line i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--gold);
    }

.hero-actions, .section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 0;
    font-weight: 800;
    font-size: 14px;
    transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    border: 1px solid var(--gold);
}

    .btn-primary:hover {
        background: #C8AD70;
    }

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
}

    .btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .btn-secondary.light {
        color: var(--ink);
        border-color: rgba(23,23,23,.18);
        background: rgba(255,255,255,.5);
    }

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.68);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.section {
    padding: var(--section) 0;
}

.alt {
    background: var(--bg-soft);
}

.dark-section {
    background: var(--ink);
    color: var(--white);
}

    .dark-section h2 {
        color: var(--white);
    }

.section-head {
    /*max-width: 1000px;*/
    margin-bottom: 52px;
}

    .section-head.centered {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-head p:not(.eyebrow), .split-copy p, .feature-panel p, .check-copy p, .contact-copy p {
        color: var(--muted);
        font-size: 17px;
    }

.dark-section p {
    color: rgba(255,255,255,.72);
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mini-card, .why-card, .scenario-card, .brand-group, .step {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    padding: 28px;
    box-shadow: 0 16px 50px rgba(23,23,23,.05);
    transition: transform .28s ease, box-shadow .28s ease, border .28s ease;
}

    .mini-card:hover, .why-card:hover, .scenario-card:hover, .brand-group:hover, .step:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow);
        border-color: rgba(184,155,94,.4);
    }

    .mini-card span, .step span {
        color: var(--gold-dark);
        font-weight: 900;
        font-size: 12px;
        letter-spacing: .18em;
    }

    .mini-card h3, .step h3 {
        margin: 12px 0 9px;
    }

    .mini-card p, .why-card p, .scenario-card p, .brand-group p, .step p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(23,23,23,.06);
    transition: transform .28s ease, box-shadow .28s ease;
}

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

.card-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.solution-card:hover .card-image {
    transform: scale(1.045);
}

.card-image.villa {
    background-image: linear-gradient(rgba(23,23,23,.08), rgba(23,23,23,.25)), url('/vendors/images/home.jpg');
}

.card-image.hotel {
    background-image: linear-gradient(rgba(23,23,23,.05), rgba(23,23,23,.3)), url('/vendors/images/cafe.jpg');
}

.card-image.showroom {
    background-image: linear-gradient(rgba(23,23,23,.05), rgba(23,23,23,.25)), url('/vendors/images/shop.jpg');
}

.card-image.office {
    background-image: linear-gradient(rgba(23,23,23,.05), rgba(23,23,23,.25)), url('/vendors/images/office.jpg');
}

.card-image.cinema {
    background-image: linear-gradient(rgba(23,23,23,.05), rgba(23,23,23,.35)), url('/vendors/images/cinema.jpg');
}

.card-image.smart {
    background-image: linear-gradient(rgba(23,23,23,.05), rgba(23,23,23,.25)), url('/vendors/images/solition.jpg');
}

.card-body {
    padding: 30px;
}

.card-kicker {
    margin: 0 0 10px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .16em;
}

.card-body h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 700;
}

.card-body p {
    color: var(--muted);
    margin: 14px 0;
}

.card-body ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.card-body li {
    color: var(--ink-soft);
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

    .card-body li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
    }

.card-body a, .text-link {
    color: var(--gold-dark);
    font-weight: 900;
    border-bottom: 1px solid rgba(184,155,94,.5);
    padding-bottom: 4px;
}

.split {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 58px;
    align-items: start;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-card h3, .scenario-card h3 {
    margin-bottom: 10px;
}

.audience-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 54px;
    align-items: center;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .audience-list span {
        border: 1px solid var(--line-dark);
        padding: 13px 16px;
        color: rgba(255,255,255,.82);
        background: rgba(255,255,255,.05);
    }

.two-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: var(--shadow);
}

    .feature-panel.muted {
        background: var(--bg-soft);
        box-shadow: none;
    }

    .feature-panel h2 {
        font-size: clamp(34px, 4vw, 54px);
    }

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
}

.step {
    min-height: 190px;
}

.checklist-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 54px;
    align-items: center;
}

.check-card {
    background: var(--ink);
    color: var(--white);
    padding: 42px;
    box-shadow: var(--shadow);
}

    .check-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 18px;
    }

    .check-card li {
        position: relative;
        padding-left: 34px;
        color: rgba(255,255,255,.86);
    }

        .check-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: -2px;
            color: var(--gold);
            font-weight: 900;
        }

.brand-groups {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-group h3 {
    margin-bottom: 10px;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.scenario-card {
    min-height: 220px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 54px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 112px;
}

.contact-notes {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255,255,255,.72);
}

.lead-form {
    background: var(--bg);
    color: var(--ink);
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lead-form label, .lead-form legend {
    display: grid;
    gap: 8px;
    font-weight: 900;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%;
    border: 1px solid rgba(23,23,23,.13);
    background: var(--white);
    padding: 14px 14px;
    color: var(--ink);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

    .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(184,155,94,.14);
    }

.lead-form fieldset {
    border: 1px solid rgba(23,23,23,.11);
    padding: 18px;
    margin: 0 0 16px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;
}

    .checkbox-grid label {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0;
        font-weight: 600;
    }

    .checkbox-grid input {
        width: auto;
    }

.file-note input {
    opacity: .55;
}

.file-note small {
    color: var(--muted);
    font-weight: 500;
}

.form-btn {
    width: 100%;
    margin-top: 6px;
}

.form-disclaimer {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 48px;
    padding: 0 18px;
    color: var(--white);
    background: var(--gold);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 16px 40px rgba(23,23,23,.22);
    transition: transform .25s ease, background .25s ease;
    border-radius:5px;
}

    .whatsapp:hover {
        transform: translateY(-3px);
        background: #C8AD70;
    }

    .whatsapp img {
        max-height: 25px;
    
    }






/* --- MY PROJE PREMIUM FOOTER --- */
.site-footer {
    background: #0A0A0A;
    color: #888;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center; /* İçerikleri dikeyde ortalar */
    padding-bottom: 50px;
    gap: 20px;
}

/* Sol İçerik */
.footer-col-main {
    flex: 1;
}
.brand-mark {
    color: var(--gold);
    font-weight: 800;
    font-size: 24px;
}

.brand-text {
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
}

.footer-motto {
    color: #FFF;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

/* Sosyal Medya (Sağa yaslı ve dikey ortalı) */
.footer-socials {
    display: flex;
    gap: 15px;
}

    .footer-socials a {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #888;
        transition: 0.3s;
    }

        .footer-socials a:hover {
            color: var(--gold);
            border-color: var(--gold);
        }

/* Alt Bant (Gizlilik altta) */
.footer-bottom {
    background: #050505;
    padding: 5px 0;
    text-align: center;
    font-size: 12px;
}

    .footer-bottom .copyright-text {
        margin: 0 0 0px 0;
        color: rgba(255, 255, 255, 0.4);
    }

.privacy-link {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

    .privacy-link:hover {
        color: var(--gold);
    }

/* Mobil */
@media (max-width: 768px) {
    .footer-grid-wrap {
        flex-direction: column;
        text-align: center;
    }
}












/* Slider'ın ana çerçevesi */
.brand-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    background: transparent;
    position: relative;
    /* Kenarlarda yumuşak geçiş (Fade efekti) */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    background-color: var(--white);
}

/* Kayan ana konteyner */
.brand-slider {
    display: flex;
    width: max-content; /* İçerik genişliği kadar uzamasını sağlar */
    animation: scroll 30s linear infinite;
}

/* Her bir logo grubu */
.brand-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px; /* Logolar arası boşluk */
    padding-right: 40px; /* İkinci grubun başlangıcı ile aradaki boşluk */
    flex-shrink: 0; /* Genişliğin daralmasını engeller */
}

.brand-slide img {
        /* Çözünürlük yerine kutu boyutu belirleyelim */
        width: 160px; /* Sabit bir genişlik alanı */
        height: 80px; /* Sabit bir yükseklik alanı */
        /* Görseli kutunun içine orantılı sığdırır */
        object-fit: contain;
        /* Logoların içindeki dengesiz boşlukları bu kompanse eder */
        padding: 15px;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

/* Üzerine gelince logoyu canlandır (Opsiyonel) */
.brand-slide img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

/* Kayma animasyonu */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%); /* İkinci grup tam başladığında başa döner */
    }
}

/* Mouse ile üzerine gelince akışı durdurur */
.brand-slider-wrapper:hover .brand-slider {
    animation-play-state: paused;
}





/* Banner Kartı */
.banner-card {
    background: linear-gradient(90deg, #B89B5E 0%, #8E743F 45%, #2A2926 100%);
    border-radius: 40px;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Metin Alanı */
.banner-content {
    flex: 2;
    padding-right: 40px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
}

/* Alt Liste (Keşif, Analiz vb.) */
.banner-footer {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Buton Alanı */
.banner-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-button {
    background-color: #ffffff;
    color: var(--gold);
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.banner-button:hover {
    background-color: #f0f0f0;
   transform: scale(1.05); 

}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .banner-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        border-radius: 25px;
    }

    .banner-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .banner-action {
        justify-content: center;
    }

    .banner-title {
        font-size: 1.8rem;
    }
}




@media (max-width: 1080px) {
    :root {
        --section: 88px;
    }

    .primary-nav {
        gap: 14px;
    }

        .primary-nav a {
            font-size: 12px;
        }

    .nav-cta {
        display: none;
    }

    .service-strip, .brand-groups {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        height: 74px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 86px;
        display: grid;
        gap: 0;
        /* Mobil menü görünümü */
        background: rgba(23, 23, 23, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
        z-index: 1000;
    }


        .primary-nav.open {
            opacity: 1;
            pointer-events: auto;
        }

        /* Menü Linkleri (Koyu zemin üzerine beyaz yazı) */
        .primary-nav a {
            color: #FFFFFF !important;
            padding: 16px 20px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            font-weight: 600;
        }

        .primary-nav a, .site-header.scrolled .primary-nav a {
            color: rgba(255, 255, 255, 0.9) !important;
            padding: 16px 20px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        }

    .brand-text {
        color: var(--white);
        font-size: 12px;
    }

    .site-header.menu-open .brand-text {
        color: var(--white);
    }

    .site-header.menu-open .menu-toggle span {
        background: var(--white);
    }

    .hero {
        min-height: 92vh;
        padding-top: 130px;
    }

    .split, .audience-wrap, .two-panel, .checklist-wrap, .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .whatsapp {
        left: auto;
        right: 14px;
        justify-content: center;
        bottom: 14px;
        padding: 0px 6px !important;
    }

        .whatsapp span {
            display: none !important;
        }

        .whatsapp img {
            max-height: 40px !important;
        }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    .hero-actions, .btn {
        width: 100%;
    }

    .service-strip, .solution-grid, .why-grid, .timeline, .brand-groups, .scenario-grid, .form-row, .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 210px;
    }

    .whatsapp {
        left: auto;
        right: 14px;
        justify-content: center;
        bottom: 14px;
        padding: 0px 6px !important;
    }

        .whatsapp span {
            display: none !important;
        }

        .whatsapp img {
            max-height: 40px !important;
        }

    .footer {
        padding-bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
