/* ==================== ROOT ==================== */
        :root {
            --red:       #C41230;
            --red-dark:  #9B0E26;
            --black:     #0A0A0A;
            --white:     #FFFFFF;
            --off-white: #F8F5F2;
            --light:     #F0F0F0;
            --gray:      #888888;
            --dark-gray: #333333;
            --serif:     'Playfair Display', Georgia, serif;
            --sans:      'Montserrat', Arial, sans-serif;
            --ease:      all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--sans); color: var(--black); background: var(--white); overflow-x: hidden; line-height: 1.7; }
        img  { max-width: 100%; height: auto; display: block; }
        a    { text-decoration: none; color: inherit; }
        ul   { list-style: none; }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

        /* Utility */
        .tag {
            display: block; font-size: 11px; letter-spacing: 4px;
            text-transform: uppercase; font-weight: 700; color: var(--red); margin-bottom: 16px;
        }
        .btn {
            display: inline-block; padding: 16px 40px; font-family: var(--sans);
            font-size: 11px; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; border: none; cursor: pointer; transition: var(--ease);
        }
        .btn-red    { background: var(--red); color: var(--white); }
        .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,18,48,.4); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--black); }
        .btn-black  { background: var(--black); color: var(--white); }
        .btn-black:hover { background: #222; transform: translateY(-2px); }

        /* Reveal */
        .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ==================== NAV ==================== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 22px 0; transition: var(--ease);
        }
        .nav.scrolled { background: var(--black); padding: 14px 0; box-shadow: 0 4px 40px rgba(0,0,0,.4); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; }
        .nav-logo img { height: 85px; filter: brightness(0) invert(1); }
        .nav-links { display: flex; align-items: center; gap: 40px; }
        .nav-links a {
            font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
            font-weight: 600; color: var(--white); position: relative; transition: var(--ease);
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
            background: var(--red); transition: var(--ease);
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--red); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--ease); }

        /* Mobile Overlay */
        .mob-nav {
            position: fixed; inset: 0; background: var(--black); z-index: 999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: var(--ease);
        }
        .mob-nav.open { opacity: 1; pointer-events: all; }
        .mob-nav-list { display: flex; flex-direction: column; align-items: center; gap: 40px; }
        .mob-nav-list a { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--white); transition: var(--ease); }
        .mob-nav-list a:hover { color: var(--red); }
        .mob-close { position: absolute; top: 28px; right: 40px; font-size: 34px; color: var(--white); cursor: pointer; }
        .mob-close:hover { color: var(--red); }

        /* ==================== HERO ==================== */
        .hero {
            min-height: 100vh; background: var(--black); position: relative;
            display: flex; align-items: center; overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 75% 50%, rgba(196,18,48,.18) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 85%, rgba(196,18,48,.08) 0%, transparent 50%);
        }
        .hero-grid {
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
            background-size: 80px 80px;
        }
        .hero-inner { position: relative; z-index: 2; padding: 140px 0 100px; }
        .hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
        .hero-line { width: 60px; height: 1px; background: var(--red); }
        .hero-eyebrow span { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 700; }
        .hero-h1 {
            font-family: var(--serif); font-size: clamp(56px, 8vw, 108px);
            font-weight: 900; line-height: 1.0; color: var(--white); margin-bottom: 32px;
        }
        .hero-h1 em { font-style: italic; color: var(--red); }
        .hero-sub { font-size: 18px; color: rgba(255,255,255,.6); max-width: 540px; line-height: 1.85; margin-bottom: 48px; font-weight: 300; }
        .hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
        .hero-scroll {
            position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: 3px;
            text-transform: uppercase; z-index: 2; animation: scroll-bob 2s ease infinite;
        }
        .hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent); }
        @keyframes scroll-bob {
            0%,100% { transform: translateX(-50%) translateY(0); }
            50%      { transform: translateX(-50%) translateY(10px); }
        }

        /* ==================== STATS BAR ==================== */
        .stats-bar { background: var(--red); padding: 30px 0; }
        .stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
        .stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.25); }
        .stat:last-child { border-right: none; }
        .stat-num {
            font-family: var(--serif); font-size: 42px; font-weight: 800;
            color: var(--white); line-height: 1; display: block;
        }
        .stat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 6px; display: block; }

        /* ==================== MARQUEE ==================== */
        .marquee { background: var(--off-white); padding: 18px 0; overflow: hidden; border-bottom: 1px solid var(--light); }
        .marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
        .m-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 36px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--dark-gray); flex-shrink: 0; }
        .m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
        @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ==================== ABOUT ==================== */
        .about { padding: 120px 0; background: var(--white); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img-wrap { position: relative; }
        .about-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
} {
            width: 100%; aspect-ratio: 4/5; background: #111;
            display: flex; align-items: center; justify-content: center; overflow: hidden;
        }
        .about-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    filter: none !important;
    display: block !important;
}
        .about-accent {
            position: absolute; bottom: -28px; right: -28px;
            width: 190px; height: 190px; background: var(--red); z-index: -1;
        }
        .about-tag {
            position: absolute; top: 32px; left: -20px;
            background: var(--black); color: var(--white); padding: 20px 24px; z-index: 2;
        }
        .about-tag .num { font-family: var(--serif); font-size: 38px; font-weight: 800; color: var(--red); display: block; line-height: 1; }
        .about-tag .lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }
        .about-copy h2 { font-family: var(--serif); font-size: clamp(34px,4vw,52px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
        .about-copy h2 em { color: var(--red); font-style: italic; }
        .about-copy p { color: var(--dark-gray); margin-bottom: 18px; line-height: 1.9; }
        .about-sig { font-family: var(--serif); font-size: 34px; font-style: italic; color: var(--red); margin: 28px 0; }

      /* ==================== SERVICES ==================== */

.services {
    padding: 90px 0 110px;
    background: #0A0A0A !important;
}
.services-hd {
    text-align: center;
    margin-bottom: 55px;
}

.services-hd .tag {
    color: #C41230 !important;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-hd h2 {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.05;
    margin: 0;
}

.services-hd h2 em {
    display: block;
    color: #C41230 !important;
    font-style: italic;
    font-weight: 700;
}

.services-hd p {
    color: rgba(255,255,255,.58);
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.8;
}

/* 3 x 3 grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* LIGHT GREY CARDS */
.svc-card {
    background: #EFEFEF;
    padding: 38px 30px 34px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    min-height: 265px;
    border: 1px solid rgba(0,0,0,.08);
}

/* subtle hover */
.svc-card:hover {
    background: #F8F8F8;
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,.20);
}

/* remove old dark-card effects */
.svc-card::after {
    display: none;
}

/* BIG NUMBERS */
.svc-num {
    font-family: var(--serif);
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 24px;
    pointer-events: none;
    opacity: 1;
}

/* 01, 03, 05, 07, 09 = RED */
.svc-card:nth-child(odd) .svc-num {
    color: #C41230 !important;
    text-shadow: none;
}

/* 02, 04, 06, 08 = WHITE WITH DARK OUTLINE */
.svc-card:nth-child(even) .svc-num {
    color: #FFFFFF !important;

    /* thin dark outline */
    -webkit-text-stroke: 1px rgba(25,25,25,.55);

    /* dimensional shadow like mockup */
    text-shadow:
        0 1px 0 rgba(0,0,0,.35),
        0 2px 3px rgba(0,0,0,.30),
        0 5px 9px rgba(0,0,0,.18);
}

/* ICON */
.svc-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #C41230;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C41230;
    font-size: 19px;
    margin-bottom: 24px;
    background: transparent;
    transition: all .35s ease;
}

.svc-card:hover .svc-icon {
    background: #C41230;
    color: #FFFFFF;
    border-color: #C41230;
}

/* TITLES */
.svc-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
    color: #0A0A0A;
    margin-bottom: 14px;
    max-width: 78%;
}

/* DESCRIPTIONS */
.svc-card p {
    font-family: var(--sans);
    font-size: 14px;
    color: #333333;
    line-height: 1.65;
    max-width: 94%;
}

/* LEARN MORE */
.svc-arrow {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C41230;
    font-weight: 700;
    opacity: 0;
    transition: all .35s ease;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
}


/* ==================== SERVICES RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        min-height: auto;
    }

    .svc-num {
        font-size: 52px;
    }
}
        /* ==================== LEAD FUNNEL ==================== */
        .funnel { background: var(--red); padding: 100px 0; position: relative; overflow: hidden; }
        .funnel::before {
            content: 'AUDIT'; position: absolute; right: -20px; top: 50%;
            transform: translateY(-50%); font-family: var(--serif); font-size: 220px;
            font-weight: 900; color: rgba(0,0,0,.08); line-height: 1; pointer-events: none;
        }
        .funnel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .funnel-copy h2 {
            font-family: var(--serif); font-size: clamp(34px,4vw,56px);
            font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px;
        }
        .funnel-copy p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.85; margin-bottom: 32px; }
        .funnel-bullets { display: flex; flex-direction: column; gap: 14px; }
        .f-bullet { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 14px; font-weight: 500; }
        .f-check {
            width: 22px; height: 22px; background: rgba(255,255,255,.2); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px; flex-shrink: 0; font-weight: 700;
        }

        /* Form box */
        .form-box { background: var(--white); padding: 48px; position: relative; }
        .form-box::before {
            content: ''; position: absolute; top: 8px; left: 8px; right: -8px; bottom: -8px;
            background: var(--black); z-index: -1;
        }
        .step-dots { display: flex; gap: 8px; margin-bottom: 32px; }
        .s-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--light); transition: var(--ease);
        }
        .s-dot.on { background: var(--red); width: 24px; border-radius: 4px; }
        .f-step { display: none; }
        .f-step.on { display: block; animation: fadeUp .4s ease; }
        @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
        .f-title { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
        .f-sub   { font-size: 13px; color: var(--gray); margin-bottom: 26px; }
        .fg { margin-bottom: 18px; }
        .fg label {
            display: block; font-size: 10px; letter-spacing: 2px;
            text-transform: uppercase; font-weight: 700; color: var(--dark-gray); margin-bottom: 7px;
        }
        .fg input, .fg select, .fg textarea {
            width: 100%; padding: 13px 16px; border: 1px solid #E0E0E0;
            font-family: var(--sans); font-size: 14px; color: var(--black);
            transition: var(--ease); outline: none; appearance: none;
            background: var(--white);
        }
        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,18,48,.1);
        }
        .fg textarea { resize: vertical; min-height: 90px; }
        .f-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .f-opt {
            padding: 13px 14px; border: 1px solid #E0E0E0; cursor: pointer;
            font-size: 13px; font-weight: 500; transition: var(--ease);
            text-align: center; color: var(--dark-gray);
        }
        .f-opt:hover, .f-opt.sel { border-color: var(--red); background: rgba(196,18,48,.06); color: var(--red); }
        .f-btn {
            width: 100%; padding: 18px; background: var(--black); color: var(--white);
            font-family: var(--sans); font-size: 11px; letter-spacing: 3px;
            text-transform: uppercase; font-weight: 700; border: none; cursor: pointer;
            transition: var(--ease); margin-top: 8px;
        }
        .f-btn:hover { background: var(--red); }
        .f-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 14px; }
        .f-note span { cursor: pointer; text-decoration: underline; }
        .form-success { display: none; text-align: center; padding: 32px 0; }
        .success-icon {
            width: 64px; height: 64px; background: var(--red); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 24px; font-size: 30px; color: var(--white);
        }

        /* ==================== PROCESS ==================== */
        .process { padding: 120px 0; background: var(--off-white); }
        .process-hd { text-align: center; margin-bottom: 80px; }
        .process-hd h2 { font-family: var(--serif); font-size: clamp(36px,4vw,56px); font-weight: 700; line-height: 1.2; }
        .process-hd h2 em { color: var(--red); font-style: italic; }
        .process-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
        .process-grid::before {
            content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
            height: 1px; background: var(--red);
        }
        .p-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
        .p-num {
            width: 64px; height: 64px; border-radius: 50%; background: var(--black);
            color: var(--white); font-family: var(--serif); font-size: 22px; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 32px; border: 4px solid var(--off-white);
        }
        .p-step:nth-child(2) .p-num,
        .p-step:nth-child(3) .p-num { background: var(--red); }
        .p-step h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .p-step p  { font-size: 14px; color: var(--gray); line-height: 1.8; }

        /* ==================== RESULTS ==================== */
        .results { padding: 120px 0; background: var(--white); }
        .results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .results-copy h2 { font-family: var(--serif); font-size: clamp(34px,4vw,52px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
        .results-copy h2 em { color: var(--red); font-style: italic; }
        .results-copy p { color: var(--dark-gray); line-height: 1.9; margin-bottom: 32px; }
        .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
        .metric { border-left: 3px solid var(--red); padding-left: 20px; }
        .m-num { font-family: var(--serif); font-size: 44px; font-weight: 800; color: var(--black); line-height: 1; }
        .m-lbl { font-size: 12px; color: var(--gray); margin-top: 6px; }
<style>
/* ===== TESTIMONIALS LIGHT GREY OVERRIDE ===== */

.testi {
    background: #EFEFEF !important;
}

/* Main heading */
.testi-hd h2 {
    color: #0A0A0A !important;
}

/* "Are Saying" stays red */
.testi-hd h2 em {
    color: #C41230 !important;
}

/* Testimonial cards */
.t-card {
    background: #FFFFFF !important;
    border: 1px solid #E0E0E0 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.06) !important;
}

/* Testimonial text */
.t-text {
    color: #333333 !important;
}

/* Client name */
.t-name {
    color: #0A0A0A !important;
}

/* Client role */
.t-role {
    color: #777777 !important;
}

/* Keep stars and quote red */
.t-stars,
.t-quote {
    color: #C41230 !important;
}
</style>

        /* ==================== TESTIMONIALS ==================== */
        .testi { padding: 120px 0; background: var(--black); }
        .testi-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; }
        .testi-hd h2 { font-family: var(--serif); font-size: clamp(36px,4vw,56px); font-weight: 700; color: var(--white); line-height: 1.2; max-width: 440px; }
        .testi-hd h2 em { color: var(--red); font-style: italic; }
        .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
        .t-card { background: #111; padding: 40px; position: relative; }
        .t-stars { position: absolute; top: 40px; right: 40px; color: var(--red); font-size: 13px; letter-spacing: 2px; }
        .t-quote { font-family: var(--serif); font-size: 64px; color: var(--red); line-height: .8; margin-bottom: 14px; }
        .t-text { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 32px; font-style: italic; }
        .t-author { display: flex; align-items: center; gap: 16px; }
        .t-avatar {
            width: 48px; height: 48px; border-radius: 50%; background: var(--red);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--serif); font-size: 17px; font-weight: 700;
            color: var(--white); flex-shrink: 0;
        }
        .t-name { font-weight: 700; color: var(--white); font-size: 15px; }
        .t-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

        /* ==================== FULL CTA ==================== */
        .cta-full {
            padding: 120px 0; background: var(--black);
            text-align: center; position: relative; overflow: hidden;
        }
        .cta-full::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse at center, rgba(196,18,48,.18) 0%, transparent 70%);
        }
        .cta-full h2 {
            font-family: var(--serif); font-size: clamp(40px,6vw,76px);
            font-weight: 900; color: var(--white); line-height: 1.05;
            margin-bottom: 24px; position: relative;
        }
        .cta-full h2 em { color: var(--red); font-style: italic; }
        .cta-full p { color: rgba(255,255,255,.55); font-size: 18px; max-width: 540px; margin: 0 auto 48px; position: relative; }
        .cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; }

        /* ==================== CONTACT ==================== */
        .contact { padding: 120px 0; background: var(--off-white); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
        .contact-info h2 { font-family: var(--serif); font-size: clamp(34px,4vw,52px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
        .contact-info p { color: var(--dark-gray); line-height: 1.9; margin-bottom: 40px; }
        .c-items { display: flex; flex-direction: column; gap: 24px; }
        .c-item { display: flex; align-items: flex-start; gap: 16px; }
        .c-icon { width: 46px; height: 46px; background: var(--black); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); font-size: 18px; }
        .c-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 4px; }
        .c-val { font-size: 14px; color: var(--dark-gray); }
        .contact-form { background: var(--white); padding: 48px; }
        .contact-form h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 8px; }
        .contact-form .sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
        .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        /* ==================== FOOTER ==================== */
        .footer { background: var(--black); padding: 80px 0 0; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px; padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .footer-logo img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 20px; }
        .footer-tag { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 24px; }
        .socials { display: flex; gap: 12px; }
        .soc {
            width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,.55); font-size: 13px; font-weight: 700;
            transition: var(--ease);
        }
        .soc:hover { border-color: var(--red); color: var(--red); }
        .footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--white); margin-bottom: 20px; }
        .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: var(--ease); }
        .footer-col ul a:hover { color: var(--red); }
        .footer-bottom {
            padding: 24px 0;
            display: flex; align-items: center; justify-content: space-between;
        }
        .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: var(--ease); }
        .footer-links a:hover { color: var(--red); }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .container { padding: 0 24px; }
            .svc-grid { grid-template-columns: repeat(2,1fr); }
            .testi-grid { grid-template-columns: repeat(2,1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-links + a { display: none; }
            .hamburger { display: flex; }
            .about-grid, .funnel-grid, .results-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .stats-inner { grid-template-columns: repeat(2,1fr); }
            .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 20px; }
            .process-grid { grid-template-columns: repeat(2,1fr); gap: 48px; }
            .process-grid::before { display: none; }
            .svc-grid, .testi-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .testi-hd { flex-direction: column; align-items: flex-start; gap: 24px; }
            .f-opts { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; align-items: flex-start; }
            .about-accent { display: none; }
            .row2 { grid-template-columns: 1fr; }
        }
