/* ============================================
   Core Ascent Hub Site — Shared Stylesheet
   coreascent.net | 2026
   ============================================ */

:root {
    --navy: #183459;
    --navy-dark: #0f2340;
    --navy-light: #1e4070;
    --gold: #CB9F3C;
    --gold-dark: #b08a2f;
    --gold-light: #d9b35a;
    --gray: #7B7F7E;
    --gray-light: #a8abaa;
    --gray-dark: #555857;
    --teal: #0D9488;
    --teal-dark: #0f766e;
    --teal-light: #14b8a6;
    --off-white: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(24,52,89,0.06);
    --shadow-md: 0 8px 24px rgba(24,52,89,0.08);
    --shadow-lg: 0 20px 40px rgba(24,52,89,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Utility ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(24,52,89,0.08);
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo { display: flex; align-items: center; }
.header-logo img { height: 65px; width: auto; }

.header-nav { display: flex; gap: 1.75rem; align-items: center; }

.header-nav a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--navy);
    transition: color var(--transition);
    position: relative;
}

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

.header-nav a.active {
    color: var(--gold);
}

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

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-trigger::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition);
}

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

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    border: 1px solid rgba(24,52,89,0.06);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--teal);
}

/* Header CTA */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(203,159,60,0.25);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid var(--navy);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-teal {
    display: inline-block;
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.25);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--navy) !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    text-align: center;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile nav toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
    display: block;
}

/* ---- Section Spacing ---- */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.section-bg { background: var(--off-white); }
.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

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

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--gold-light); }

/* ---- Homepage Hero ---- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 60%, #0c1e38 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 70%; height: 180%;
    background: radial-gradient(ellipse, rgba(203,159,60,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 50%; height: 120%;
    background: radial-gradient(ellipse, rgba(13,148,136,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA button equal sizing & centering */
.hero-btns .btn-primary,
.hero-btns .btn-white,
.hero-btns .btn-teal {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---- Routing Cards (Homepage) ---- */
.routing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.routing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(24,52,89,0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.routing-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.routing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.routing-card:hover::before { transform: scaleX(1); }

.routing-card .card-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.routing-card .card-icon svg {
    width: 30px; height: 30px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.routing-card.teal-accent .card-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.routing-card.teal-accent .card-icon svg { stroke: var(--white); }

.routing-card.teal-accent::before {
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.routing-card.teal-accent .card-link { color: var(--teal); }

/* Gold accent card variant */
.routing-card.gold-accent .card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.routing-card.gold-accent .card-icon svg { stroke: var(--white); }

.routing-card.gold-accent::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.routing-card.gold-accent .card-link { color: var(--gold-dark); }

.routing-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.routing-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.routing-card .card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition);
    margin-top: auto;
}

.routing-card:hover .card-link { gap: 0.7rem; }

/* ---- Verticals Grid ---- */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.vertical-tile {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(24,52,89,0.06);
    transition: all var(--transition);
    display: block;
}

.vertical-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13,148,136,0.2);
}

.vertical-tile .tile-icon {
    width: 52px; height: 52px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition);
}

.vertical-tile:hover .tile-icon {
    background: var(--teal);
}

.vertical-tile .tile-icon svg {
    width: 24px; height: 24px;
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
    transition: stroke var(--transition);
}

.vertical-tile:hover .tile-icon svg { stroke: var(--white); }

.vertical-tile h4 {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}

/* ---- Trust Bar ---- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.section-dark .trust-num { color: var(--gold-light); }

.trust-label {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 500;
}

.section-dark .trust-label { color: rgba(255,255,255,0.65); }

/* ---- Value Prop Row ---- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-item { text-align: center; }

.value-item .val-icon {
    width: 56px; height: 56px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-item .val-icon svg {
    width: 26px; height: 26px;
    stroke: var(--teal);
    stroke-width: 1.5;
    fill: none;
}

.value-item h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.value-item p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
    text-align: center;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(203,159,60,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ---- Products Callout (verticals) ---- */
.products-callout {
    background: linear-gradient(135deg, rgba(13,148,136,0.06) 0%, rgba(13,148,136,0.02) 100%);
    border: 1px solid rgba(13,148,136,0.15);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.products-callout-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.products-callout-icon svg {
    width: 24px; height: 24px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.products-callout-text h3 {
    font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem;
}

.products-callout-text p {
    font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 0 !important;
}

.products-callout .btn-teal { flex-shrink: 0; }

/* ---- Forms ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(24,52,89,0.2);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(203,159,60,0.1);
}

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

.form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy-dark);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    transition: color var(--transition);
}

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

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

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(203,159,60,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(24,52,89,0.06);
    transition: all var(--transition);
    display: block;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    background: rgba(13,148,136,0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-date {
    font-size: 0.82rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* Blog Article */
.blog-content {
    max-width: 720px;
    margin: 0 auto;
}

.blog-content p {
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content strong {
    color: var(--navy);
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.blog-back {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition);
}

.blog-back:hover {
    color: var(--gold) !important;
}

.blog-meta {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.5) !important;
    font-weight: 400 !important;
}

.page-hero .blog-tag {
    background: rgba(13,148,136,0.2);
    color: var(--teal-light);
}

.blog-cta {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.blog-cta p {
    color: var(--gray) !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .routing-grid { grid-template-columns: repeat(2, 1fr); }
    .verticals-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    .header-nav {
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(24,52,89,0.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu { display: block; }

    .routing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .verticals-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar { gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .section { padding: 4rem 1.5rem; }
    .products-callout { flex-direction: column; text-align: center; gap: 1.25rem; padding: 1.5rem; }
    .blog-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .blog-hero-meta { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .verticals-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn-primary,
    .hero-btns .btn-white,
    .hero-btns .btn-teal { width: 100%; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
