/* ============================================
   Ashmont Insurance Agency — Global Styles
   Commercial Insurance Brokerage
   ============================================ */

:root {
    --ivory: #F6F1EB;
    --cream: #EDE6DC;
    --warm-white: #FDFBF8;
    --navy: #0B1D3A;
    --navy-light: #162D54;
    --navy-mid: #0F2847;
    --slate: #3A4A5C;
    --muted: #4E5B6A;
    --accent: #C4843E;
    --accent-light: #D4A66A;
    --accent-glow: rgba(196, 132, 62, 0.15);
    --teal: #2A7D6E;
    --teal-light: #3A9D8E;
    --red-soft: #C0392B;
    --border: rgba(11, 29, 58, 0.08);
    --border-light: rgba(255, 255, 255, 0.08);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'General Sans', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.04);
    --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.06);
    --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.08);
    --shadow-xl: 0 20px 60px rgba(11, 29, 58, 0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-full: 100px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ——— Ambient Orb ——— */
.ambient-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    filter: blur(120px);
    background: radial-gradient(circle, var(--accent) 0%, var(--teal) 50%, transparent 70%);
    transition: transform 0.8s var(--ease-out-expo);
    will-change: transform;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(253, 251, 248, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(11, 29, 58, 0.06);
}

/* ——— Nav over dark hero: always show solid background ——— */
body.nav-light .site-nav {
    background: rgba(253, 251, 248, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(11, 29, 58, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo svg {
    height: 44px;
    width: auto;
    display: block;
}

/* Footer logo */
.footer-brand .nav-logo svg {
    height: 36px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.3s var(--ease-out-expo);
    list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--navy);
}

.nav-cta {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--warm-white) !important;
    background: var(--navy);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--navy-light) !important;
    transform: translateY(-1px);
}

.nav-phone {
    font-weight: 600 !important;
    color: var(--navy) !important;
    white-space: nowrap;
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out-expo);
    position: absolute;
    left: 0;
}

.nav-menu-btn span:nth-child(1) { top: 0; }
.nav-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-menu-btn span:nth-child(3) { bottom: 0; }

.nav-menu-btn.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--navy);
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(11, 29, 58, 0.2); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-primary.btn-accent {
    background: var(--accent);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid rgba(11, 29, 58, 0.15);
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--navy);
    background: rgba(11, 29, 58, 0.03);
}

.btn-ghost-light {
    border-color: rgba(255,255,255,0.2);
    color: var(--warm-white);
}

.btn-ghost-light:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.btn-arrow {
    width: 16px;
    height: 16px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1rem;
    max-width: 650px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 4rem;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered .section-title {
    max-width: 100%;
}

.section-header-centered .section-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HERO — Home
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 6rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: var(--accent-glow);
    border: 1px solid rgba(196, 132, 62, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.35s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.65s forwards;
}

/* Hero — centered variant (homepage, quote section below) */
.hero--centered {
    min-height: auto;
    padding: 9rem 3rem 5rem;
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero--centered .hero-sub {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.hero--centered .hero-actions {
    justify-content: center;
}

@media (max-width: 680px) {
    .hero--centered {
        padding: 7rem 1.5rem 4rem;
    }
}

/* Hero Visual — Quote Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-visual .quote-form-card {
    width: min(100%, 640px);
    box-shadow: var(--shadow-sm), var(--shadow-xl);
}

.hero-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm), var(--shadow-lg), 0 30px 60px rgba(11, 29, 58, 0.04);
    width: 100%;
    max-width: 460px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
}

.card-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-status .dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.policy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.policy-row:nth-child(2) { animation-delay: 0.8s; }
.policy-row:nth-child(3) { animation-delay: 1.1s; }
.policy-row:nth-child(4) { animation-delay: 1.4s; }

.policy-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.policy-icon.gl { background: #E8F4FD; }
.policy-icon.wc { background: #FDF2E8; }
.policy-icon.cp { background: #E8FDF4; }

.policy-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.policy-carrier { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.policy-price { text-align: right; }
.policy-amount { font-weight: 700; font-size: 1rem; color: var(--navy); }
.policy-period { font-size: 0.75rem; color: var(--muted); }
.policy-savings { font-size: 0.72rem; font-weight: 600; color: var(--teal); margin-top: 2px; }

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-savings { font-size: 0.8rem; color: var(--muted); }
.total-savings strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--teal);
    margin-top: 0.25rem;
}

.card-btn {
    padding: 0.7rem 1.5rem;
    background: var(--navy);
    color: var(--warm-white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-btn:hover { background: var(--navy-light); transform: translateY(-1px); }

/* Floating badges */
.float-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.float-badge.carriers { top: 10%; right: -30px; animation-delay: 0s; }
.float-badge.time { bottom: 15%; left: -20px; animation-delay: 1.5s; }

.float-badge .badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.float-badge .badge-icon.blue { background: #E8F4FD; }
.float-badge .badge-icon.green { background: #E8FDF4; }

/* ============================================
   HERO — Subpages
   ============================================ */
.hero-sub-page {
    padding: 10rem 3rem 5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-sub-page .hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-sub-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero-sub-page h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub-page .hero-sub {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.hero-sub-page .hero-actions {
    justify-content: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================
   CARRIERS / LOGOS
   ============================================ */
.logos-strip {
    padding: 4rem 3rem;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.logos-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.logos-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.logos-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.carrier-logo-card {
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(12, 33, 68, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(12, 33, 68, 0.05);
}

.carrier-logo {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 2.2rem;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.carrier-logo-card:hover .carrier-logo {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-1px);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before { opacity: 1; }
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 132, 62, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cream);
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================
   COVERAGE GRID
   ============================================ */
.coverage {
    padding: 8rem 3rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 132, 62, 0.1), transparent 70%);
}

.coverage .section-label { color: var(--accent-light); }
.coverage .section-title { color: var(--warm-white); }
.coverage .section-subtitle { color: rgba(246, 241, 235, 0.6); }

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.coverage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 132, 62, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coverage-card:hover::before { opacity: 1; }
.coverage-card:hover {
    border-color: rgba(196, 132, 62, 0.25);
    transform: translateY(-4px);
}

.coverage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(196, 132, 62, 0.18);
    border: 1px solid rgba(196, 132, 62, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--accent-light);
}

.coverage-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--warm-white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.coverage-card p {
    font-size: 0.92rem;
    color: rgba(246, 241, 235, 0.55);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.coverage-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease, color 0.3s ease;
}

.coverage-link:hover {
    gap: 0.65rem;
    color: var(--warm-white);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 6rem 3rem;
    background: var(--ivory);
    position: relative;
    z-index: 1;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item { text-align: center; padding: 2rem 1rem; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

/* ============================================
   WHY SECTION (light bg variant)
   ============================================ */
.why-section {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.why-section .section-label {
    font-size: 1rem;
    letter-spacing: 0.08em;
}


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

.why-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 132, 62, 0.15);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.65;
}

/* ============================================
   COVERAGE DETAIL (subpages)
   ============================================ */
.detail-section {
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
}

.detail-section.alt { background: var(--cream); }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }

.detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.detail-content p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.5;
}

.detail-list .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-list .check svg {
    width: 12px;
    height: 12px;
    color: var(--accent);
}

.detail-visual {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.detail-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, var(--accent-glow), transparent 60%);
}

.detail-visual .visual-icon {
    font-size: 6rem;
    position: relative;
    z-index: 1;
    filter: grayscale(0.2);
}

.detail-visual .detail-svg {
    width: 100%;
    height: auto;
    max-height: 320px;
    position: relative;
    z-index: 1;
    display: block;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    color: var(--slate);
    transition: transform 0.35s var(--ease-out-expo);
}

.faq-item.open .faq-toggle {
    background: var(--navy);
}

.faq-item.open .faq-toggle svg {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out-expo), padding 0.45s var(--ease-out-expo);
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

.faq-resource-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-resource-link:hover {
    color: var(--navy);
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.quote-section {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.quote-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1rem;
}

.quote-info > p {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-text {
    font-size: 0.92rem;
    color: var(--slate);
}

.contact-text strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 1px;
}

.contact-text a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-text a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--slate);
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--navy);
}

.social-link:hover svg { color: var(--warm-white); }

/* Form */
.quote-form-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.quote-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.quote-form-card > p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(11, 29, 58, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--warm-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A8694' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    color: var(--warm-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-submit:hover::before { opacity: 1; }
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-submit span { position: relative; z-index: 1; }

.form-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.cta-card {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(196, 132, 62, 0.08), transparent 60%);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(42, 125, 110, 0.08), transparent 60%);
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--warm-white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(246, 241, 235, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary {
    background: var(--accent);
    position: relative;
    z-index: 1;
}

.cta-card .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 4rem 3rem 2rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 1.25rem;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-contact-mini a {
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-mini a:hover { color: var(--navy); }

.footer-offices-mini {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.footer-office-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-office-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--navy);
    background: rgba(11, 29, 58, 0.07);
    padding: 0.2em 0.45em;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 0.15em;
    text-transform: uppercase;
}

.footer-office-item address {
    font-style: normal;
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-office-item address a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-office-item address a:hover { color: var(--navy); }

.footer-col h3 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--navy); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--navy); }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
    padding: 8rem 3rem;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.industries-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.industries-header .section-title {
    max-width: 100%;
}

.industries-header .section-subtitle {
    max-width: 100%;
    margin-bottom: 0;
}

.industry-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.industry-group {
    display: flex;
    flex-direction: column;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 100%;
}

.industry-group:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 132, 62, 0.25);
}

.industry-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.industry-group-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.industry-group-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-group-list li::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
}

.industry-group-list a {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.industry-group-list a:hover {
    color: var(--accent);
}

.industries-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   STATES SERVED
   ============================================ */
.states-section {
    padding: 6rem 3rem;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.state-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--slate);
    font-weight: 500;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { justify-content: flex-start; }
    .hero-visual .quote-form-card { width: 100%; }
    .hero-card { max-width: 100%; }
    .float-badge.carriers { right: 10px; }
    .float-badge.time { left: 10px; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .coverage-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .detail-grid.reverse { direction: ltr; }
    .quote-layout { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
    .site-nav { padding: 1rem 1.5rem; }
    body.menu-open { overflow: hidden; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--warm-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        z-index: 105;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 5.5rem 2rem 3rem;
    }
    .nav-links.open { display: flex; }
    .nav-links > li {
        width: 100%;
        text-align: center;
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links > li:last-child { border-bottom: none; margin-top: 0.5rem; }
    .nav-links a { font-size: 1.15rem; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.25rem 0 0.5rem;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        background: transparent;
        display: none;
    }
    .nav-dropdown.mob-open .nav-dropdown-menu { display: block; }
    .nav-dropdown.mob-open .nav-dropdown-icon { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-menu { transform: none; opacity: 1; visibility: visible; }
    .nav-dropdown-menu a {
        text-align: center;
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
    .nav-menu-btn { display: block; }
    .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
    .hero-sub-page { padding: 8rem 1.5rem 4rem; }
    .hero-content { max-width: 100%; }
    .hero-sub { max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { justify-content: center; }
    .how-it-works, .coverage, .faq, .cta-section, .why-section,
    .detail-section, .quote-section, .industries { padding: 5rem 1.5rem; }
    .stats { padding: 4rem 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .cta-card { padding: 3.5rem 2rem; border-radius: var(--radius-lg); }
    .cta-card .cta-actions { flex-direction: column; }
    .logos-strip { padding: 3rem 1.5rem; }
    .logos-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .section-subtitle { margin-bottom: 3rem; }
    .states-section { padding: 4rem 1.5rem; }
    .industry-groups { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
    .logos-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .carrier-logo-card { min-height: 4.75rem; padding: 1rem; }
    .carrier-logo { max-height: 1.9rem; }
    .industry-groups { grid-template-columns: 1fr; }
}

/* ─── Industry Pages ─────────────────────────────── */
.related-section { padding: 6rem 2rem; }
.related-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.related-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    color: var(--accent);
}
.related-card-arrow { font-size: 1.1rem; opacity: 0.6; }

/* ─── Industries Hub Page ────────────────────────── */
.industry-hub-grid {
    margin-top: 0;
}
.industry-hub-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    color: inherit;
    min-height: 100%;
}
.industry-hub-card:hover {
    color: inherit;
}
.industry-hub-card .industry-group-label {
    margin-bottom: 0;
}
.industry-hub-card-desc {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.65;
}
.industry-hub-card-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
}
