:root{--navy:#06285d;--navy2:#0a3f88;--royal:#0f58bd;--red:#e31222;--ink:#0d2147;--muted:#61708a;--line:#dce5f0;--soft:#f5f8fc;--white:#fff;--shadow:0 18px 45px rgba(12,43,89,.12);--r:22px;--r2:32px}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--ink);background:#fff;line-height:1.6}img{max-width:100%;display:block}a{text-decoration:none;color:inherit}.container{width:min(1180px,calc(100% - 40px));margin:auto}.topbar{background:var(--navy);color:#fff;font-size:13px}.topbar .container{display:flex;justify-content:space-between;gap:18px;padding:8px 0;flex-wrap:wrap}.header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.96);backdrop-filter:blur(14px);border-bottom:1px solid rgba(10,63,136,.08)}.nav{min-height:88px;display:flex;align-items:center;gap:26px}.brand img{width:118px;height:72px;object-fit:contain}.navlinks{display:flex;align-items:center;gap:24px;margin-left:auto;font-weight:700;font-size:14px}.navlinks a:hover{color:var(--red)}.nav-actions{display:flex;gap:10px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:14px 20px;border-radius:12px;font-weight:800;border:1px solid transparent;transition:.25s;cursor:pointer;font-size:15px}.btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 24px rgba(227,18,34,.2)}.btn-primary:hover{transform:translateY(-2px);background:#c90f1e}.btn-secondary{background:#fff;color:var(--navy);border-color:#b9c9dd}.btn-secondary:hover{border-color:var(--royal);transform:translateY(-2px)}.menu-btn{display:none;background:none;border:0;font-size:28px;color:var(--navy)}
.hero-premium {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    background: #071d42;
}

/* Background image */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* Dark premium overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 58, .98) 0%,
            rgba(5, 30, 67, .92) 28%,
            rgba(5, 30, 67, .60) 52%,
            rgba(5, 30, 67, .18) 78%,
            rgba(5, 30, 67, .05) 100%
        );
}

/* Content */

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px,calc(100% - 40px));
    padding-top: 95px;
    padding-bottom: 135px;
}

/* Text */

.hero-text {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 9px 17px;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;

    color: #fff;
    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

    margin-bottom: 24px;
}

.hero-text h1 {
    margin: 0;

    font-size: clamp(48px, 5.5vw, 78px);
    line-height: 1.01;

    letter-spacing: -.045em;

    font-weight: 850;

    color: #fff;
}

.hero-text h1 span {
    display: inline-block;
    color: #ed1c24;
}

.hero-line {
    width: 58px;
    height: 4px;

    margin: 27px 0 20px;

    background: #ed1c24;

    border-radius: 20px;
}

.hero-text p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.91);

    font-size: 18px;
    line-height: 1.65;
}

/* Buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 31px;
}

.hero-btn {
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-primary {
    color: #fff;
    background: #ed1c24;

    box-shadow:
        0 14px 30px rgba(237,28,36,.30);
}

.hero-btn-primary:hover {
    background: #d9161e;

    box-shadow:
        0 18px 38px rgba(237,28,36,.40);
}

.hero-btn-outline {
    color: #fff;

    border: 1px solid rgba(255,255,255,.7);

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,.14);
}

.hero-btn .phone {
    font-size: 16px;
}

/* Trust bar */

.hero-trust {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 35px;

    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    border: 1px solid rgba(255,255,255,.28);

    border-radius: 18px;

    background: rgba(4, 27, 61, .78);

    backdrop-filter: blur(16px);

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);
}

.trust-item {
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    border-right: 1px solid rgba(255,255,255,.20);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #1466d8,
            #0b397d
        );

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}

.trust-item strong {
    display: block;

    color: #fff;

    font-size: 13px;
    line-height: 1.3;

    margin-bottom: 5px;
}

.trust-item strong::first-letter {
    color: #ed1c24;
}

.trust-item small {
    display: block;

    max-width: 170px;

    color: rgba(255,255,255,.72);

    font-size: 11px;
    line-height: 1.4;
}

/* Bottom curved divider */

.hero-bottom-shape {
    position: absolute;

    z-index: 4;

    left: -5%;
    right: -5%;
    bottom: -62px;

    height: 105px;

    background: #fff;

    border-radius: 50% 50% 0 0 / 55% 55% 0 0;

    box-shadow:
        0 -7px 0 rgba(19, 72, 145, .95),
        0 -12px 0 rgba(237, 28, 36, .9);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .hero-premium {
        min-height: 780px;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 155px;
    }

    .hero-text {
        max-width: 650px;
    }

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        bottom: 30px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.20);
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,25,58,.96),
                rgba(4,25,58,.65)
            );
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

    .hero-premium {
        min-height: 920px;
        align-items: flex-start;
    }

    .hero-bg img {
        object-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4,25,58,.95) 0%,
                rgba(4,25,58,.82) 48%,
                rgba(4,25,58,.70) 100%
            );
    }

    .hero-content {
        padding-top: 55px;
        padding-bottom: 155px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 9px;
        padding: 8px 12px;
        margin-bottom: 18px;
    }

    .hero-text h1 {
        font-size: clamp(42px, 11vw, 54px);
        line-height: 1.02;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
        min-height: 54px;
    }

    .hero-trust {
        left: 15px;
        right: 15px;
        bottom: 25px;

        grid-template-columns: 1fr 1fr;

        border-radius: 16px;
    }

    .trust-item {
        min-height: 82px;
        padding: 12px;
        gap: 9px;
    }

    .trust-icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .trust-item strong {
        font-size: 10px;
    }

    .trust-item small {
        font-size: 9px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .hero-bottom-shape {
        bottom: -48px;
        height: 80px;
    }
}
.section{padding:92px 0}.section.soft{background:var(--soft)}.section.navy{background:linear-gradient(135deg,var(--navy),#0b458e);color:#fff}.section-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:38px}.kicker{color:var(--red);font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:12px}.section h2{font-size:clamp(34px,4vw,54px);line-height:1.08;letter-spacing:-.035em;margin:8px 0;color:var(--navy)}.navy h2{color:#fff}.lead{font-size:18px;color:var(--muted);max-width:720px}.navy .lead{color:#cfe0f6}.feature-grid,.service-grid,.values-grid,.audience-grid,.testimonial-grid{display:grid;gap:20px}.feature-grid{grid-template-columns:repeat(4,1fr);margin-top:-56px;position:relative;z-index:5}.feature{background:var(--navy);color:#fff;border-radius:20px;padding:26px;box-shadow:var(--shadow);border:1px solid rgba(255,255,255,.1)}.feature .icon,.value .icon{width:48px;height:48px;border-radius:15px;display:grid;place-items:center;background:rgba(255,255,255,.1);margin-bottom:18px}.feature h3,.value h3{margin:0 0 7px;font-size:18px}.feature p{margin:0;color:#ccdbef;font-size:14px}.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}.media-card{border-radius:var(--r2);overflow:hidden;box-shadow:var(--shadow);min-height:460px}.media-card img{width:100%;height:100%;min-height:460px;object-fit:cover}.card{background:#fff;border:1px solid var(--line);border-radius:var(--r);box-shadow:0 10px 30px rgba(14,49,96,.07)}.founder-note{display:flex;align-items:center;gap:14px;margin:24px 0}.founder-badge{width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:#fff;font-weight:900}.service-grid{grid-template-columns:repeat(3,1fr)}.service-card{overflow:hidden;transition:.25s}.service-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}.service-card img{width:100%;height:190px;object-fit:cover}.service-card .body{padding:22px}.service-card h3{font-size:19px;line-height:1.25;margin:0 0 9px;color:var(--navy)}.service-card p{color:var(--muted);font-size:14px}.text-link{color:var(--royal);font-weight:900}.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.step{padding:30px;position:relative}.step-num{font-size:12px;font-weight:900;color:#fff;background:var(--royal);width:40px;height:40px;border-radius:50%;display:grid;place-items:center;margin-bottom:18px}.step h3{color:var(--navy);font-size:21px}.audience-grid{grid-template-columns:1fr 1fr}.audience-card{padding:36px;min-height:420px;position:relative;overflow:hidden;color:#fff}.audience-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}.audience-card:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,29,70,.96),rgba(3,29,70,.35));z-index:1}.audience-card.red:after{background:linear-gradient(90deg,rgba(205,14,31,.94),rgba(205,14,31,.35))}.audience-content{position:relative;z-index:2;max-width:70%}.audience-content ul,.clean-list{padding:0;margin:18px 0 0;list-style:none}.audience-content li,.clean-list li{margin:8px 0}.audience-content li:before,.clean-list li:before{content:"✓";margin-right:9px;font-weight:900}.partner-strip{padding:28px;background:#fff;border:1px solid var(--line);border-radius:20px;display:grid;grid-template-columns:repeat(6,1fr);gap:18px;text-align:center;font-weight:900;color:#6c7890}.values-grid{grid-template-columns:repeat(3,1fr)}.value{padding:26px;border:1px solid rgba(255,255,255,.14);border-radius:20px;background:rgba(255,255,255,.06)}.value p{color:#cbdcf0}.testimonial-grid{grid-template-columns:repeat(3,1fr)}.testimonial{padding:28px}.testimonial .label{font-size:11px;text-transform:uppercase;color:var(--red);font-weight:900;letter-spacing:.08em}.quote-mark{font-size:52px;color:var(--red);line-height:1}.final-cta{display:grid;grid-template-columns:1.2fr .8fr;overflow:hidden;background:linear-gradient(135deg,var(--navy),var(--navy2));color:#fff;border-radius:30px;box-shadow:var(--shadow)}.final-cta .copy{padding:50px}.final-cta h2{color:#fff;margin-top:0}.final-cta img{width:100%;height:100%;object-fit:cover;min-height:330px}
.page-hero{padding:105px 0 80px;background:linear-gradient(135deg,#edf5ff,#fff);position:relative;overflow:hidden}.page-hero .inner{max-width:860px}.page-hero p{font-size:20px;color:var(--muted)}.stat-row{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:38px}.stat{padding:22px;background:#fff;border:1px solid var(--line);border-radius:16px}.stat strong{font-size:28px;color:var(--navy)}.detail-grid{display:grid;grid-template-columns:1fr 360px;gap:42px}.sticky-card{position:sticky;top:120px;padding:26px}.faq{max-width:900px;margin:auto}.faq-item{border-bottom:1px solid var(--line)}.faq-q{width:100%;background:none;border:0;text-align:left;padding:22px 0;font-size:18px;font-weight:800;color:var(--navy);display:flex;justify-content:space-between;cursor:pointer}.faq-a{max-height:0;overflow:hidden;transition:.3s;color:var(--muted)}.faq-item.open .faq-a{max-height:220px;padding-bottom:20px}.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:32px}.contact-card{padding:28px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.field{display:flex;flex-direction:column;gap:7px}.field.full{grid-column:1/-1}.field label{font-size:13px;font-weight:800;color:var(--navy)}.field input,.field select,.field textarea{width:100%;padding:14px 15px;border:1px solid #cad7e7;border-radius:11px;font:inherit;color:var(--ink);background:#fff}.field textarea{min-height:140px;resize:vertical}.map{min-height:360px;border-radius:24px;overflow:hidden;border:1px solid var(--line)}.map iframe{width:100%;height:100%;min-height:360px;border:0}.footer{background:#041f4a;color:#d9e4f4;padding:70px 0 28px}.footer-grid{display:grid;grid-template-columns:1.2fr .9fr .8fr .8fr;gap:34px}.footer img{width:150px;background:#fff;border-radius:14px;padding:8px}.footer h4{color:#fff;margin-top:0}.footer a{display:block;margin:8px 0;color:#d9e4f4}.footer a:hover{color:#fff}.disclaimer{margin-top:38px;padding-top:24px;border-top:1px solid rgba(255,255,255,.13);font-size:13px;color:#b9c9df}.mobile-cta{display:none}.reveal{opacity:0;transform:translateY(20px);transition:.65s}.reveal.visible{opacity:1;transform:none}
@media(max-width:980px){.navlinks{position:fixed;top:88px;left:20px;right:20px;background:#fff;border-radius:18px;box-shadow:var(--shadow);padding:24px;display:none;flex-direction:column;align-items:flex-start}.navlinks.open{display:flex}.nav-actions .btn-secondary{display:none}.menu-btn{display:block;margin-left:auto}.hero-grid,.split,.contact-grid,.detail-grid,.final-cta{grid-template-columns:1fr}.hero-copy{padding:64px 0 28px}.hero-media{min-height:500px}.feature-grid{grid-template-columns:1fr 1fr;margin-top:24px}.service-grid{grid-template-columns:1fr 1fr}.values-grid{grid-template-columns:1fr 1fr}.partner-strip{grid-template-columns:repeat(3,1fr)}.footer-grid{grid-template-columns:1fr 1fr}.sticky-card{position:static}.mobile-cta{display:flex;position:fixed;bottom:12px;left:12px;right:12px;z-index:50;background:#fff;padding:10px;border-radius:16px;box-shadow:0 15px 35px rgba(0,0,0,.18);gap:8px}.mobile-cta .btn{flex:1}.footer{padding-bottom:110px}}
@media(max-width:680px){.container{width:min(100% - 26px,1180px)}.topbar .container{justify-content:center}.topbar .hours{display:none}.nav{min-height:76px}.brand img{width:95px;height:60px}.nav-actions .btn-primary{display:none}.navlinks{top:76px}.hero-grid{min-height:auto}.hero-copy{padding-top:50px}.hero h1,.page-hero h1{font-size:44px}.hero p,.page-hero p{font-size:17px}.hero-media{min-height:380px}.feature-grid,.service-grid,.steps,.audience-grid,.values-grid,.testimonial-grid,.stat-row,.form-grid,.footer-grid{grid-template-columns:1fr}.section{padding:68px 0}.section-head{display:block}.feature-grid{margin-top:20px}.audience-content{max-width:90%}.partner-strip{grid-template-columns:1fr 1fr}.final-cta .copy{padding:34px}.contact-grid{gap:20px}.field.full{grid-column:auto}}
