/* ============================================================
   VANTAGE INSURANCE HOLDINGS — Design System CSS
   Built by Strategic AI Architects (strategicaiarchitects.com)
   Client: Matthew Vallier / Nolan & Vinny Senior Products LLC
   Generated: March 2026
   ============================================================ */

/* === TOKENS === */
:root {
    /* Primary palette — Vantage brand colors */
    --navy: #1B3A5C;
    --navy-light: #24506F;
    --navy-dark: #122840;
    --green: #2E8B57;
    --green-light: #3BA86B;
    --green-dark: #247048;
    --cream: #f5f8f6;
    --white: #ffffff;

    /* Text colors */
    --text-dark: #111111;
    --text-body: #1a1a1a;
    --text-muted: #374151;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: #c9d6dd;

    /* Utility */
    --border: #e0e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-accent: 0 4px 20px rgba(46,139,87,0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 120px);
    --container-max: 1200px;
    --container-px: clamp(16px, 4vw, 24px);

    /* Motion */
    --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.7s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    color: var(--text-dark);
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* === TYPOGRAPHY === */
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; }
p { max-width: 65ch; }
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
    color: var(--text-muted);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
    line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn-accent {
    background: var(--green);
    color: var(--white);
}
.btn-accent:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green-light);
}
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover {
    border-color: var(--green);
    color: var(--green);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: none;
    color: var(--green-dark);
    padding: 8px 0;
    font-size: 15px;
}
.btn-ghost:hover { gap: 12px; }

/* === TOP BAR === */
.top-bar {
    background: var(--navy-dark);
    color: var(--text-on-dark-muted);
    font-size: 14px;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-bar a { color: var(--text-on-dark-muted); transition: color 0.2s; }
.top-bar a:hover { color: var(--green); }
.top-bar-phone {
    font-weight: 700;
    color: var(--green-light) !important;
    font-size: 15px;
}
.top-bar-npn { font-size: 12px; opacity: 0.7; }

/* === HEADER / NAVIGATION === */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}
.logo-mark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-mark .logo-top { font-size: 20px; font-weight: 800; color: var(--navy); }
.logo-mark .logo-bottom { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--green); }
.logo-bridge { width: 42px; height: 28px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.logo-bridge-arc { width: 36px; height: 18px; border: 3px solid var(--green); border-bottom: none; border-radius: 36px 36px 0 0; }
.logo-bridge-base { position: absolute; bottom: 0; width: 42px; height: 3px; background: var(--navy); border-radius: 2px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }
.nav-phone {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 9998;
    padding: 100px 24px 40px;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 22px; }
.mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1d4a6e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(46,139,87,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,139,87,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,139,87,0.15);
    border: 1px solid rgba(46,139,87,0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-light);
    margin-bottom: 24px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--green-light); }
.hero-text {
    font-size: 18px;
    color: var(--text-on-dark-muted);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 540px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-on-dark-muted);
    font-size: 14px;
}
.hero-trust-icon { color: var(--green-light); font-size: 20px; }

/* Hero card / quote form */
.hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 440px;
}
.hero-card h3 { color: var(--white); font-size: 22px; margin-bottom: 24px; text-align: center; }
.hero-card .form-group { margin-bottom: 16px; }
.hero-card label {
    display: block;
    color: var(--text-on-dark-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-card input,
.hero-card select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.hero-card input::placeholder { color: rgba(255,255,255,0.4); }
.hero-card input:focus,
.hero-card select:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,0.12); }
.hero-card select option { color: var(--text-dark); background: var(--white); }
.hero-card .btn { width: 100%; justify-content: center; font-size: 17px; padding: 18px; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--text-on-dark-muted); text-align: center; margin-top: 12px; opacity: 0.7; }

/* === TRUST BAR — Carrier logos === */
.trust-bar {
    background: var(--cream);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
}
.trust-bar-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.carrier-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: scroll-logos 35s linear infinite;
}
.carrier-logo-item {
    height: 44px;
    min-width: 130px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0 16px;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s var(--ease-out);
}
.carrier-logo-item:hover { opacity: 1; filter: grayscale(0%); border-color: var(--green); color: var(--navy); }
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SERVICES GRID === */
.services { padding: var(--section-py) 0; }
.services .section-header { text-align: center; margin-bottom: 60px; }
.services .section-subtitle { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; margin-left: auto; margin-right: auto; }
.service-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s var(--ease-out);
}
.service-link:hover { gap: 10px; }

/* === STATS / ANIMATED COUNTERS === */
.stats {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats .container { position: relative; z-index: 2; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label { font-size: 16px; color: var(--text-on-dark-muted); font-weight: 500; }

/* === WHY CHOOSE US === */
.why-us { padding: var(--section-py) 0; background: var(--cream); }
.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-us-content .section-subtitle { margin-bottom: 36px; }
.value-props { display: flex; flex-direction: column; gap: 28px; }
.value-prop { display: flex; gap: 20px; align-items: flex-start; }
.value-prop-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green);
}
.value-prop h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.value-prop p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.why-us-visual { position: relative; }
.why-us-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}
.experience-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--green);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.experience-badge .number { font-family: var(--font-heading); font-size: 40px; font-weight: 800; line-height: 1; }
.experience-badge .label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* === TESTIMONIALS === */
.testimonials { padding: var(--section-py) 0; }
.testimonials .section-header { text-align: center; margin-bottom: 60px; }
.testimonials .section-subtitle { margin: 0 auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.testimonial-source { font-size: 12px; color: var(--green-dark); font-weight: 600; }

/* === REVIEWS CTA === */
.reviews-cta {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
}
.reviews-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.reviews-aggregate { display: flex; align-items: center; gap: 16px; }
.reviews-aggregate .stars { color: #f59e0b; font-size: 28px; letter-spacing: 4px; }
.reviews-aggregate .rating { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--white); }
.reviews-aggregate .count { color: var(--text-on-dark-muted); font-size: 16px; }
.reviews-aggregate .count strong { color: var(--white); }

/* === FAQ ACCORDION === */
.faq { padding: var(--section-py) 0; background: var(--cream); }
.faq .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.faq-content { position: sticky; top: 120px; }
.faq-content .section-subtitle { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
    font-size: 24px;
    color: var(--green);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* === TEAM === */
.team { padding: var(--section-py) 0; }
.team .section-header { text-align: center; margin-bottom: 60px; }
.team .section-subtitle { margin: 0 auto; }
.team-feature {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.team-photo-wrap { text-align: center; }
.team-photo {
    width: 280px; height: 280px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    box-shadow: 0 8px 30px rgba(27,58,92,0.3);
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.team-info .title { color: var(--green); font-size: 16px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-heading); }
.team-info .npn { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.team-info .bio { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.team-info .team-quote {
    font-style: italic;
    color: var(--navy);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 4px solid var(--green);
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,139,87,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta-banner p { color: var(--text-on-dark-muted); font-size: 18px; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BLOG CARDS === */
.blog { padding: var(--section-py) 0; background: var(--cream); }
.blog .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.blog-body { padding: 28px; }
.blog-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-dark);
    margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--green-dark); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { font-size: 13px; color: var(--text-muted); }

/* === CONTACT === */
.contact { padding: var(--section-py) 0; }
.contact .section-header { text-align: center; margin-bottom: 60px; }
.contact .section-subtitle { margin: 0 auto; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 24px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Location cards */
.locations-wrap { display: flex; flex-direction: column; gap: 24px; }
.location-card { background: var(--cream); border-radius: var(--radius); padding: 28px; }
.location-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
}
.location-detail .icon { color: var(--green); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.location-detail a { color: var(--text-dark); font-weight: 600; }
.location-detail a:hover { color: var(--green-dark); }
.location-hours { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.location-hours h5 {
    font-size: 14px; font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
}

/* === FOOTER === */
.footer {
    background: var(--navy-dark);
    color: var(--text-on-dark-muted);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 16px;
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.footer-contact-item .icon { color: var(--green); flex-shrink: 0; }
.footer-contact-item a { font-weight: 600; }
.footer-contact-item a:hover { color: var(--green); }
.footer-carrier-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: center;
}
.footer-carrier-logos span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}
.footer-carrier-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    font-size: 12px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; }
.footer-bottom-links a:hover { color: var(--green); }

/* === COOKIE CONSENT === */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy-dark);
    color: var(--text-on-dark-muted);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; max-width: 700px; }
.cookie-banner p a { color: var(--green); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}
.cookie-accept { background: var(--green); color: var(--white); }
.cookie-decline { background: rgba(255,255,255,0.1); color: var(--white); }

/* === STICKY MOBILE CTA === */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 12px 16px;
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-cta .container {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

/* === PAGE-SPECIFIC: Inner page hero === */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(46,139,87,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(32px, 4vw, 48px); text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.page-hero .subtitle { color: var(--text-on-dark-muted); font-size: 18px; max-width: 640px; margin: 0 auto 24px; line-height: 1.7; }
.page-hero .breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; color: var(--text-on-dark-muted); margin-bottom: 24px; }
.page-hero .breadcrumb a { color: var(--green-light); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* === PAGE-SPECIFIC: Content sections === */
.content-section { padding: var(--section-py) 0; }
.content-section.alt { background: var(--cream); }
.content-section h2 { margin-bottom: 20px; }
.content-section p { margin-bottom: 16px; }
.content-section ul { margin-bottom: 16px; padding-left: 0; }
.content-section ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-body);
    line-height: 1.7;
}
.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.content-grid.reverse .content-text { order: 2; }
.content-grid.reverse .content-visual { order: 1; }

/* === SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto 36px; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us .container { grid-template-columns: 1fr; }
    .why-us-visual { order: -1; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .faq .container { grid-template-columns: 1fr; }
    .faq-content { position: static; }
    .team-feature { grid-template-columns: 1fr; text-align: center; }
    .team-info .team-quote { text-align: left; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid.reverse .content-text { order: 1; }
    .content-grid.reverse .content-visual { order: 2; }
    .page-hero { padding: 60px 0 40px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .nav-phone { display: none; }
    .hero { padding: 60px 0 80px; min-height: auto; }
    .hero h1 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-photo { width: 200px; height: 200px; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .reviews-cta .container { flex-direction: column; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 72px; }
    .page-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .logo-mark .logo-top { font-size: 16px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
