/* ==========================================================================
   PG Africa Internet — Global stylesheet
   Brand: Navy #1B3A6B / Orange #E8821A
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
[x-cloak] { display: none !important; }

/* --- Tokens --------------------------------------------------------------- */
:root {
    /* Brand colours */
    --color-navy:        #1F355E;
    --color-navy-dark:   #15243F;
    --color-navy-light:  #2A4A82;
    --color-orange:      #EA7200;
    --color-orange-dark: #BB5C00;
    --color-orange-light:#F49333;

    /* Neutrals */
    --color-bg:          #FFFFFF;
    --color-bg-soft:     #F7F9FC;
    --color-border:      #E5E9F0;
    --color-text:        #0F172A;
    --color-text-soft:   #475569;
    --color-text-muted:  #94A3B8;

    /* Status */
    --color-success:     #10B981;
    --color-danger:      #EF4444;
    --color-whatsapp:    #25D366;

    /* Radii */
    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow:    0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, .12);

    /* Spacing helpers */
    --container-max: 1200px;
    --section-y:     64px;

    /* Type */
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* --- Base typography ------------------------------------------------------ */
body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: 40px; letter-spacing: -.02em; }
h2 { font-size: 32px; letter-spacing: -.01em; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { color: var(--color-text-soft); }
p + p { margin-top: 12px; }

a { color: var(--color-navy); transition: color .15s ease; }
a:hover { color: var(--color-orange); }

/* --- Layout primitives ---------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-y) 0; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    max-width: 760px;
}

.section-sub {
    font-size: 18px;
    color: var(--color-text-soft);
    max-width: 720px;
    margin-bottom: 24px;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary,
.btn-orange {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}
.btn-primary:hover,
.btn-orange:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    color: #fff;
    transform: translateY(-1px);
    opacity: 0.95;
}
.btn-primary:active,
.btn-orange:active { transform: translateY(0); opacity: 1; }

.btn-secondary {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}
.btn-secondary:hover { background: var(--color-navy-dark); border-color: var(--color-navy-dark); color: #fff; }

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-border);
}
.btn-outline:hover { color: var(--color-navy); border-color: var(--color-navy); background: var(--color-bg-soft); }

/* --- Card ----------------------------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: 0 4px 16px rgba(27, 58, 107, .12); }

/* --- Navbar --------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 84px;
}
.navbar__logo { display: inline-flex; align-items: center; gap: 12px; }
.navbar__logo-mark { display: block; width: 60px; height: 60px; }
.navbar__brand { display: flex; flex-direction: column; line-height: 1; }
.navbar__brand-name { font-weight: 700; color: var(--color-navy); font-size: 19px; letter-spacing: -0.2px; }
.navbar__brand-tag { font-size: 11.5px; color: var(--color-orange); letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }

.navbar__links { display: none; gap: 28px; }
.navbar__link { font-size: 15px; font-weight: 500; color: var(--color-text-soft); }
.navbar__link:hover { color: var(--color-navy); }
.navbar__link--active { color: var(--color-navy); position: relative; }
.navbar__link--active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
    background: var(--color-orange);
}

.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__wa {
    display: none;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-whatsapp); color: #fff;
    align-items: center; justify-content: center;
}
.navbar__wa:hover { background: #1ea855; color: #fff; }
.navbar__cta { display: none; }

.navbar__hamburger { width: 40px; height: 40px; display: inline-flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.navbar__bar { display: block; width: 22px; height: 2px; background: var(--color-navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; transform-origin: center; }
.navbar__bar--x1 { transform: translateY(7px) rotate(45deg); }
.navbar__bar--x2 { transform: translateY(-7px) rotate(-45deg); }
.navbar__bar--hide { opacity: 0; }

.navbar__mobile {
    border-top: 1px solid var(--color-border);
    background: #fff;
    padding: 16px 0 24px;
}
.navbar__mobile .container { display: flex; flex-direction: column; gap: 4px; }
.navbar__mobile-link {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--color-text-soft);
}
.navbar__mobile-link--active { color: var(--color-navy); background: var(--color-bg-soft); }
.navbar__mobile-cta { margin-top: 12px; align-self: flex-start; }

/* --- Footer --------------------------------------------------------------- */
.footer { background: var(--color-navy); color: #cdd5e2; }
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
}
.footer__brand p, .footer__brand .footer__tagline { color: #cdd5e2; max-width: 320px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.footer__logo-mark { display: block; width: 44px; height: 44px; }
.footer__logo-text { color: #fff; }
.footer__tagline { margin-bottom: 16px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); color: #fff;
}
.footer__social a:hover { background: var(--color-orange); color: #fff; }

.footer__heading { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__list li + li { margin-top: 10px; }
.footer__list a { color: #cdd5e2; font-size: 15px; }
.footer__list a:hover { color: var(--color-orange-light); }

.footer__bottom { background: var(--color-navy-dark); padding: 16px 0; }
.footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    color: #9aa6bb;
    font-size: 14px;
}
.footer__legal { display: flex; gap: 12px; }
.footer__legal a:hover { color: var(--color-orange-light); }

/* --- Floating buttons ----------------------------------------------------- */
.floating-buttons { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
.floating-btn {
    position: fixed;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: var(--shadow);
    pointer-events: auto;
    transition: transform .15s ease;
}
.floating-btn:hover { transform: scale(1.05); }
.floating-btn--wa   { right: 24px; bottom: 24px; background: var(--color-whatsapp); }
.floating-btn--call { left: 24px;  bottom: 24px; background: var(--color-navy); }

.floating-btn--pulse::before {
    content: '';
    position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
    70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-btn__tooltip {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--color-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}
.floating-btn__tooltip--right { right: calc(100% + 12px); }
.floating-btn__tooltip--left  { left:  calc(100% + 12px); }
.floating-btn:hover .floating-btn__tooltip { opacity: 1; }

/* --- Pricing card --------------------------------------------------------- */
.pricing-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.pricing-card--popular {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.pricing-card--popular .pricing-card__name,
.pricing-card--popular .pricing-card__price-value { color: #fff; }
.pricing-card--popular .pricing-card__speed,
.pricing-card--popular .pricing-card__price-suffix,
.pricing-card--popular .pricing-card__features li { color: #cdd5e2; }

.pricing-card__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--color-orange); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    padding: 6px 14px; border-radius: var(--radius-pill);
}
.pricing-card__name { font-size: 20px; }
.pricing-card__speed { font-size: 14px; color: var(--color-text-muted); }
.pricing-card__price { display: flex; align-items: baseline; gap: 6px; }
.pricing-card__price-value { font-size: 36px; font-weight: 600; color: var(--color-navy); }
.pricing-card__price-suffix { font-size: 14px; color: var(--color-text-muted); }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; }
.pricing-card__features li { display: flex; gap: 10px; align-items: flex-start; color: var(--color-text-soft); font-size: 15px; }
.pricing-card__features svg { color: var(--color-success); flex-shrink: 0; margin-top: 2px; }
.pricing-card__cta { margin-top: auto; width: 100%; }

/* --- Prose (blog) --------------------------------------------------------- */
.prose p { margin-bottom: 16px; font-size: 17px; line-height: 1.75; color: var(--color-text-soft); }

/* --- Responsive ----------------------------------------------------------- */
@media (min-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    .section-title { font-size: 44px; }
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }

    .navbar__wa  { display: inline-flex; }
    .navbar__cta { display: inline-flex; }

    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer__bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
    h1 { font-size: 56px; }
    .section-title { font-size: 48px; }
    .navbar__links { display: flex; }
    .navbar__hamburger { display: none; }
    .navbar__mobile { display: none !important; }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Homepage — Hero, Promo banner, Stats bar, Compact pricing
   ========================================================================== */

/* --- Hero ----------------------------------------------------------------- */
.hero { padding: 56px 0 64px; }
.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}
.hero__left { display: flex; flex-direction: column; gap: 16px; }
.hero__accent {
    display: block;
    width: 36px;
    height: 4px;
    background: var(--color-orange);
    border-radius: var(--radius-pill);
}
.hero__title {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--color-text);
    max-width: 18ch;
}
.hero__lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-soft);
    max-width: 56ch;
}
.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.hero__call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: var(--radius-pill);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
}
.hero__call:hover { background: var(--color-bg-soft); }
.hero__call-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--color-navy); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero__call-text { color: var(--color-text-soft); }

.hero__right {
    background: #f4f6fb;
    border-radius: var(--radius-lg);
    padding: 28px 24px 32px;
    display: flex; flex-direction: column; gap: 16px;
}
.hero__right-label { color: var(--color-orange); }
.hero__plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* --- Pricing card — compact variant -------------------------------------- */
.pricing-card__price-currency {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    align-self: flex-start;
    margin-top: 8px;
}
.pricing-card--popular .pricing-card__price-currency { color: #cdd5e2; }
.pricing-card__speed {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-card__speed-num {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
}
.pricing-card--popular .pricing-card__speed-num { color: #fff; }
.pricing-card__speed-unit {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: .04em;
}
.pricing-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.pricing-card__pills {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.pricing-card__pill {
    background: var(--color-bg-soft);
    color: var(--color-text-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
}
.pricing-card--popular .pricing-card__pill {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
}
.pricing-card--compact { padding: 20px 20px 22px; }
.pricing-card--compact .pricing-card__price-value { font-size: 28px; }
.pricing-card--compact.pricing-card--popular .pricing-card__cta {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

/* --- Promo banner --------------------------------------------------------- */
.promo-banner {
    background: var(--color-orange);
    color: #fff;
}
.promo-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
}
.promo-banner__msg {
    display: flex; align-items: center; gap: 14px;
}
.promo-banner__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.promo-banner__title {
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    line-height: 1.3;
}
.promo-banner__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    margin-top: 4px;
}
.promo-banner__cta {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
}
.promo-banner__cta:hover {
    background: var(--color-bg-soft);
    color: var(--color-navy-dark);
    border-color: var(--color-bg-soft);
}

/* --- Stats bar ----------------------------------------------------------- */
.stats-bar { background: #f4f6fb; padding: 40px 0; }
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.stats-bar__item:nth-child(2n) { border-right: 0; }
.stats-bar__item:nth-last-child(-n+2) { border-bottom: 0; }
.stats-bar__num {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.1;
}
.stats-bar__label {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--color-text-soft);
}

/* --- Responsive overrides for homepage sections -------------------------- */
@media (min-width: 768px) {
    .hero__title { font-size: 44px; }
    .promo-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
    }
    .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
    .stats-bar__item { border-bottom: 0; }
    .stats-bar__item:last-child { border-right: 0; }
    .stats-bar__num { font-size: 36px; }
}

@media (min-width: 1024px) {
    .hero { padding: 80px 0 96px; }
    .hero__inner {
        grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
        gap: 56px;
    }
    .hero__title { font-size: 52px; }
    .hero__right { padding: 32px; }
    .promo-banner__inner { padding: 28px 24px; }
    .promo-banner__title { font-size: 19px; }
}

/* =========================================================
   SECTION HEADERS (shared)
   ========================================================= */
.section-header { margin-bottom: 32px; }
.section-header--center { text-align: center; }
.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1B3A6B;
    margin: 8px 0 12px;
}
.section-lede {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 56ch;
    margin: 0 0 24px;
}

/* =========================================================
   SECTION 4 — HOW IT WORKS
   ========================================================= */
.how-it-works {
    padding: 56px 0;
    background: #ffffff;
}
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}
.step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.step__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.step__icon--navy { background: #1B3A6B; }
.step__icon--orange { background: #E8821A; }
.step__num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E8821A;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.step__title {
    font-size: 19px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 8px;
}
.step__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   SECTION 5 — WHY PG AFRICA
   ========================================================= */
.why {
    padding: 56px 0;
    background: #fafbfc;
}
.why__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}
.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}
.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.feature__icon--navy { background: #1B3A6B; }
.feature__icon--orange { background: #E8821A; }
.feature__title {
    font-size: 17px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 4px;
}
.feature__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.why__right {
    display: grid;
    gap: 16px;
    align-content: start;
}
.testimonial {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    border-left: 4px solid transparent;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.05);
}
.testimonial--orange { border-left-color: #E8821A; }
.testimonial--navy { border-left-color: #1B3A6B; }
.testimonial__quote {
    font-size: 15px;
    line-height: 1.65;
    color: #1f2937;
    margin: 0 0 16px;
    font-style: italic;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.testimonial__avatar--navy { background: #1B3A6B; }
.testimonial__avatar--orange { background: #E8821A; }
.testimonial__meta { display: grid; }
.testimonial__name { font-weight: 700; font-size: 14px; color: #1B3A6B; }
.testimonial__role { font-size: 12px; color: #6b7280; }

/* =========================================================
   SECTION 6 — COVERAGE TEASER
   ========================================================= */
.coverage-teaser {
    padding: 56px 0;
    background: #f4f6fb;
}
.coverage-teaser__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
.coverage-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.coverage-form__input {
    flex: 1 1 200px;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    outline: none;
}
.coverage-form__input::placeholder { color: #9ca3af; }
.coverage-form__btn {
    flex: 0 0 auto;
    padding: 10px 22px;
}
.coverage-result {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}
.coverage-result--yes {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.coverage-result--no {
    background: rgba(232, 130, 26, 0.08);
    color: #92400e;
    border: 1px solid rgba(232, 130, 26, 0.3);
}
.coverage-result a { color: inherit; font-weight: 600; text-decoration: underline; }
.coverage-teaser__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
}
.pill--live {
    background: #fff;
    color: #1B3A6B;
    border-color: #d6deea;
}
.pill--soon {
    background: rgba(232, 130, 26, 0.1);
    color: #E8821A;
    border-color: rgba(232, 130, 26, 0.35);
}

.coverage-teaser__right {
    align-self: stretch;
}
.coverage-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 50% 50%, rgba(27, 58, 107, 0.08), transparent 70%),
        repeating-linear-gradient(45deg, #e7ebf3 0 12px, #eef1f7 12px 24px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d6deea;
}
.coverage-map__radius {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 1;
    border: 2px dashed #E8821A;
    border-radius: 50%;
    background: rgba(232, 130, 26, 0.08);
}
.coverage-map__pin {
    position: absolute;
    background: #fff;
    color: #1B3A6B;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #1B3A6B;
    white-space: nowrap;
}
.coverage-map__pin--1 { top: 30%; left: 32%; }
.coverage-map__pin--2 { top: 48%; left: 64%; }
.coverage-map__pin--3 { top: 70%; left: 38%; }
.coverage-map__pin--4 { top: 22%; left: 60%; }
.coverage-map__label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 58, 107, 0.92);
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

/* =========================================================
   SECTION 7 — BLOG PREVIEW
   ========================================================= */
.blog-preview {
    padding: 56px 0;
    background: #ffffff;
}
.blog-preview__view-all {
    color: #E8821A;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}
.blog-preview__view-all:hover { text-decoration: underline; }
.blog-preview__empty {
    text-align: center;
    color: #6b7280;
    padding: 32px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.blog-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card__media--0 { background: linear-gradient(135deg, #1B3A6B, #2d57a0); }
.blog-card__media--1 { background: linear-gradient(135deg, #E8821A, #f5a14b); }
.blog-card__media--2 { background: linear-gradient(135deg, #1B3A6B, #E8821A); }
.blog-card__media-icon {
    opacity: 0.85;
    color: #fff;
}
.blog-card__body { padding: 18px 20px 22px; }
.blog-card__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E8821A;
    margin-bottom: 8px;
}
.blog-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
    color: #1B3A6B;
}
.blog-card__title a {
    color: inherit;
    text-decoration: none;
}
.blog-card__title a:hover { color: #E8821A; }
.blog-card__meta {
    font-size: 13px;
    color: #6b7280;
}

/* =========================================================
   SECTION 8 — CTA BAND
   ========================================================= */
.cta-band {
    background: #1B3A6B;
    color: #fff;
    padding: 56px 0;
}
.cta-band__inner { text-align: center; }
.cta-band__title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.cta-band__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 56ch;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.btn-outline--invert {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: transparent;
}
.btn-outline--invert:hover {
    background: #fff;
    color: #1B3A6B;
}

/* =========================================================
   RESPONSIVE — Section 4–8 overrides
   ========================================================= */
@media (min-width: 768px) {
    .section-heading { font-size: 32px; }
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 16%;
        right: 16%;
        border-top: 2px dashed #E8821A;
        z-index: 1;
        opacity: 0.55;
    }
    .why__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .coverage-teaser__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .cta-band__title { font-size: 36px; }
}

@media (min-width: 1024px) {
    .how-it-works,
    .why,
    .coverage-teaser,
    .blog-preview,
    .cta-band { padding: 80px 0; }
    .section-heading { font-size: 36px; }
    .why__inner { gap: 64px; }
}

/* =========================================================
   COVERAGE PAGE
   ========================================================= */
.section-label--invert {
    color: rgba(255, 255, 255, 0.85);
}

/* SECTION 1 — Coverage hero */
.coverage-hero {
    background: linear-gradient(180deg, #1B3A6B 0%, #234578 100%);
    color: #fff;
    padding: 56px 0 72px;
}
.coverage-hero__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.coverage-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 12px;
    line-height: 1.15;
}
.coverage-hero__lede {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 28px;
    max-width: 56ch;
    line-height: 1.6;
}
.coverage-checker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
    max-width: 600px;
}
.coverage-checker__input {
    flex: 1 1 220px;
    border: 0;
    background: transparent;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: #1f2937;
    outline: none;
}
.coverage-checker__input::placeholder { color: #9ca3af; }
.coverage-checker__btn { flex: 0 0 auto; padding: 12px 22px; }

.coverage-panel {
    margin: 24px auto 0;
    max-width: 600px;
    border-radius: 14px;
    padding: 18px;
    text-align: left;
    color: #1f2937;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.coverage-panel--success { border-left: 6px solid #16a34a; }
.coverage-panel--soon    { border-left: 6px solid #E8821A; }
.coverage-panel--miss    { border-left: 6px solid #dc2626; }
.coverage-panel__body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}
.coverage-panel__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.coverage-panel--success .coverage-panel__icon { background: #16a34a; }
.coverage-panel--soon    .coverage-panel__icon { background: #E8821A; }
.coverage-panel--miss    .coverage-panel__icon { background: #dc2626; }
.coverage-panel__msg {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 12px;
    color: #1f2937;
}

/* SECTION 2 — Coverage map */
.coverage-map-section { padding: 0; background: #f4f6fb; }
.coverage-map-frame {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.coverage-map-iframe { width: 100%; height: 100%; border: 0; display: block; }
.coverage-map-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(27, 58, 107, 0.08), transparent 70%),
        repeating-linear-gradient(45deg, #e7ebf3 0 14px, #eef1f7 14px 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B3A6B;
    text-align: center;
}
.coverage-map-placeholder__radius {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    aspect-ratio: 1;
    border: 2px dashed #E8821A;
    border-radius: 50%;
    background: rgba(232, 130, 26, 0.08);
}
.coverage-map-placeholder__center {
    position: relative;
    z-index: 2;
    background: #1B3A6B;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}
.coverage-map-placeholder__note {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: #4a5568;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.coverage-map-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
    max-width: 240px;
    z-index: 3;
}
.coverage-map-overlay__title {
    font-size: 13px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.coverage-map-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.coverage-map-overlay__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1f2937;
}
.coverage-map-overlay__list small { color: #6b7280; margin-left: 4px; }
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.dot--live { background: #16a34a; box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); }
.dot--soon { background: #E8821A; box-shadow: 0 0 0 3px rgba(232, 130, 26, 0.2); }

/* SECTION 3 — Areas grid */
.areas-grid-section { padding: 56px 0; background: #fff; }
.areas-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.area-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.area-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    border-color: #d6deea;
}
.area-card__pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B3A6B;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.area-card__pin--soon { background: #E8821A; }
.area-card__body { min-width: 0; }
.area-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 4px;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge--live { background: rgba(22, 163, 74, 0.12); color: #15803d; }
.badge--soon { background: rgba(232, 130, 26, 0.12); color: #b45309; }
.area-card__link {
    color: #E8821A;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.area-card__link:hover { text-decoration: underline; }
.area-card--soon { opacity: 0.92; }

/* SECTION 4 — Waitlist */
.waitlist-section { padding: 56px 0 80px; background: #f4f6fb; }
.waitlist-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
}
.waitlist-card .section-heading { margin-top: 0; }
.waitlist-card .section-lede { margin-left: auto; margin-right: auto; }
.waitlist-status {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 14px;
}
.waitlist-form {
    display: grid;
    gap: 14px;
    text-align: left;
    margin-top: 8px;
}
.waitlist-form__row { display: grid; gap: 6px; }
.waitlist-form__label {
    font-size: 13px;
    font-weight: 600;
    color: #1B3A6B;
}
.waitlist-form__input {
    width: 100%;
    border: 1px solid #d6deea;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.waitlist-form__input:focus {
    outline: none;
    border-color: #1B3A6B;
    box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.15);
}
.waitlist-form__error {
    color: #dc2626;
    font-size: 13px;
}
.waitlist-form__submit { margin-top: 4px; justify-self: stretch; }

@media (min-width: 768px) {
    .coverage-hero { padding: 72px 0 88px; }
    .coverage-hero__title { font-size: 44px; }
    .coverage-map-frame { height: 500px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .waitlist-card { padding: 36px 40px; }
    .waitlist-form__submit { justify-self: center; min-width: 220px; }
}

@media (min-width: 1024px) {
    .coverage-hero__title { font-size: 52px; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-grid-section, .waitlist-section { padding-top: 80px; padding-bottom: 96px; }
}

/* =========================================================
   PACKAGES PAGE
   ========================================================= */

/* Hero */
.packages-hero {
    background: linear-gradient(180deg, #1B3A6B 0%, #234578 100%);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}
.packages-hero__inner { max-width: 720px; margin: 0 auto; }
.packages-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 12px;
    line-height: 1.15;
}
.packages-hero__lede {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 28px;
    max-width: 56ch;
    line-height: 1.6;
}

/* Toggle switch */
.plan-toggle {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 4px;
    overflow: hidden;
}
.plan-toggle__btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
    transition: color 0.22s ease;
    font-family: inherit;
    letter-spacing: 0.02em;
}
.plan-toggle__btn--active { color: #1B3A6B; }
.plan-toggle__indicator {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.plan-toggle__indicator--right { transform: translateX(100%); }

/* Plans section */
.plans-section { padding: 48px 0; background: #f4f6fb; }
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Full plan card */
.plan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08); }
.plan-card--popular {
    background: #1B3A6B;
    color: #fff;
    border-color: #1B3A6B;
    box-shadow: 0 16px 32px rgba(27, 58, 107, 0.22);
}
.plan-card--popular:hover { box-shadow: 0 22px 36px rgba(27, 58, 107, 0.3); }
.plan-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8821A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(232, 130, 26, 0.32);
}
.plan-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.plan-card__name {
    font-size: 20px;
    font-weight: 700;
    color: inherit;
    margin: 0;
}
.plan-card--popular .plan-card__name { color: #fff; }
.plan-card__speed-badge {
    background: rgba(232, 130, 26, 0.14);
    color: #E8821A;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.plan-card--popular .plan-card__speed-badge {
    background: rgba(232, 130, 26, 0.22);
    color: #ffd09a;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
    color: inherit;
}
.plan-card__price-currency {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.04em;
}
.plan-card--popular .plan-card__price-currency { color: rgba(255, 255, 255, 0.7); }
.plan-card__price-value {
    font-size: 40px;
    font-weight: 700;
    color: #1B3A6B;
    line-height: 1;
}
.plan-card--popular .plan-card__price-value { color: #fff; }
.plan-card__price-suffix {
    font-size: 13px;
    color: #6b7280;
}
.plan-card--popular .plan-card__price-suffix { color: rgba(255, 255, 255, 0.7); }

.plan-card__divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 0 0 18px;
}
.plan-card--popular .plan-card__divider { background: rgba(255, 255, 255, 0.18); }

.plan-card__features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
    flex: 1;
}
.plan-card__features li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
}
.plan-card__features li svg {
    color: #16a34a;
    margin-top: 2px;
    flex-shrink: 0;
}
.plan-card--popular .plan-card__features li { color: rgba(255, 255, 255, 0.92); }
.plan-card--popular .plan-card__features li svg { color: #ffd09a; }

.plan-card__cta { width: 100%; margin-top: auto; }
.plan-card--popular .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}
.plan-card--popular .btn-outline:hover { background: #fff; color: #1B3A6B; }

/* Custom (call us) card */
.plan-card--custom {
    background: linear-gradient(135deg, #fef3e6, #ffffff 60%);
    border-color: #f4d6b3;
}
.plan-card__custom-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 22px;
}

/* Comparison table */
.comparison-section { padding: 56px 0; background: #ffffff; }
.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 14px;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eef0f5;
}
.comparison-table thead th {
    background: #1B3A6B;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 700;
    border-bottom: 0;
}
.comparison-table thead th:first-child {
    background: #122a4f;
}
.comparison-table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) th { background: #f8f9fc; }
.comparison-table__feature {
    background: #fff;
    color: #1B3A6B;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 1;
    box-shadow: 1px 0 0 #eef0f5;
    white-space: nowrap;
}
.comparison-table tbody tr:nth-child(even) .comparison-table__feature { background: #f8f9fc; }
.cmp-yes { color: #16a34a; font-weight: 700; }
.cmp-no { color: #dc2626; font-weight: 700; }

/* FAQ accordion */
.faq-section { padding: 56px 0; background: #f4f6fb; }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.faq-item--open {
    border-color: #d6deea;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.faq-item__q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1B3A6B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item__chevron {
    color: #E8821A;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}
.faq-item--open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a {
    padding: 0 20px 18px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.65;
}
.faq-item__a p { margin: 0; }

/* Standalone promo banner (reuses .promo-banner from home) */
.promo-banner--standalone { padding: 32px 0; }

/* Responsive — packages */
@media (min-width: 768px) {
    .packages-hero { padding: 72px 0 64px; }
    .packages-hero__title { font-size: 44px; }
    .plans-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
    .plans-grid--biz { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
    .plan-card--popular { transform: translateY(-12px); }
    .plan-card--popular:hover { transform: translateY(-15px); }
}

@media (min-width: 1024px) {
    .packages-hero { padding: 88px 0 72px; }
    .packages-hero__title { font-size: 52px; }
    .plans-section,
    .comparison-section,
    .faq-section { padding: 80px 0; }
    .plan-card { padding: 32px 28px; }
    .plan-card__price-value { font-size: 48px; }
}

/* =========================================================
   SIGN-UP PAGE
   ========================================================= */
.signup-hero {
    background: #f4f6fb;
    padding: 32px 0 24px;
}
.breadcrumb {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.breadcrumb a {
    color: #1B3A6B;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb a:hover { color: #E8821A; }
.breadcrumb [aria-current="page"] { color: #6b7280; }
.signup-hero__title {
    font-size: 30px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 4px 0 8px;
    line-height: 1.15;
}
.signup-hero__lede {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 60ch;
    margin: 0;
}

.signup-section {
    background: #f4f6fb;
    padding: 12px 0 40px;
}
.signup-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.signup-tabs__btn {
    background: transparent;
    border: 0;
    padding: 10px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}
.signup-tabs__btn--active {
    background: #1B3A6B;
    color: #fff;
}
.signup-panel { width: 100%; }
.signup-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
}
.signup-card--widget { padding: 18px 18px 6px; }
.signup-card__intro { margin-bottom: 10px; }
.signup-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 6px;
}
.signup-card__sub {
    font-size: 14px;
    color: #4a5568;
    margin: 0 0 6px;
    line-height: 1.55;
}
.signup-card__note {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

/* Lead form */
.lead-form { display: grid; gap: 14px; }
.lead-form__row { display: grid; gap: 6px; }
.lead-form__label {
    font-size: 13px;
    font-weight: 600;
    color: #1B3A6B;
}
.lead-form__optional {
    color: #9ca3af;
    font-weight: 400;
    font-size: 12px;
}
.lead-form__input {
    width: 100%;
    border: 1px solid #d6deea;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lead-form__input:focus {
    outline: none;
    border-color: #1B3A6B;
    box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.15);
}
.lead-form__input--textarea {
    resize: vertical;
    min-height: 80px;
}
.lead-form__error {
    color: #dc2626;
    font-size: 13px;
    line-height: 1.4;
}
.lead-form__error--general {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
}
.lead-form__submit {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    margin-top: 4px;
}
.lead-form__hint {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    text-align: center;
}

/* Success state */
.signup-success {
    text-align: center;
    padding: 24px 8px;
}
.signup-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.signup-success__title {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
    margin: 0 0 6px;
}
.signup-success__msg {
    font-size: 15px;
    color: #1f2937;
    margin: 0 0 18px;
    line-height: 1.55;
}

/* Splynx fallback */
.splynx-fallback {
    text-align: center;
    padding: 32px 16px;
    background: #f4f6fb;
    border-radius: 14px;
    border: 1px dashed #d6deea;
}
.splynx-fallback__title {
    font-size: 18px;
    color: #1B3A6B;
    margin: 0 0 8px;
}
.splynx-fallback__msg {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 18px;
    max-width: 50ch;
}
.splynx-fallback__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Contact alternatives */
.contact-alts { padding: 56px 0 80px; background: #fff; }
.contact-alts__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.contact-alt {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.contact-alt__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
}
.contact-alt__icon--whatsapp { background: #25D366; }
.contact-alt__icon--3cx      { background: #1B3A6B; }
.contact-alt__icon--phone    { background: #E8821A; }
.contact-alt__title {
    font-size: 17px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 8px;
}
.contact-alt__desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.55;
    margin: 0 0 14px;
}
.contact-alt__link {
    display: inline-block;
    color: #E8821A;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.contact-alt__link:hover { text-decoration: underline; }
.contact-alts__note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .signup-hero { padding: 48px 0 32px; }
    .signup-hero__title { font-size: 38px; }
    .signup-card { padding: 26px 32px; }
    .signup-card--widget { padding: 26px 32px 8px; }
    .contact-alts__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
    .signup-hero__title { font-size: 44px; }
    .signup-section { padding-bottom: 64px; }
    .contact-alts { padding: 80px 0 96px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* Section 1 — Hero */
.contact-hero {
    background: linear-gradient(135deg, #1B3A6B 0%, #122a4f 100%);
    color: #fff;
    padding: 36px 0 28px;
}
.contact-hero .breadcrumb--on-dark a,
.contact-hero .breadcrumb--on-dark span { color: rgba(255, 255, 255, 0.85); }
.contact-hero .breadcrumb--on-dark a:hover { color: #fff; }
.contact-hero__title {
    font-size: 30px;
    line-height: 1.15;
    margin: 8px 0 12px;
    font-weight: 600;
    color: #fff;
}
.contact-hero__lede {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 0 20px;
}
.contact-hero__row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    color: rgba(255, 255, 255, 0.92);
}
.contact-hero__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
.contact-hero__item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.contact-hero__item a:hover { color: #ffb978; text-decoration: underline; }
.contact-hero__icon {
    font-size: 17px;
    line-height: 1;
}

/* Section 2 — Contact Options */
.contact-options {
    background: #f7f9fc;
    padding: 48px 0 56px;
}
.contact-options__grid {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.contact-option {
    background: #fff;
    border: 1px solid #e3e9f1;
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(27, 58, 107, 0.10);
}
.contact-option__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.contact-option--whatsapp .contact-option__icon { background: #e8f7ee; color: #25d366; }
.contact-option--3cx .contact-option__icon { background: #e6ecf5; color: #1B3A6B; }
.contact-option--phone .contact-option__icon { background: #fdebd9; color: #E8821A; }
.contact-option__title {
    font-size: 18px;
    font-weight: 600;
    color: #1B3A6B;
    margin: 0 0 8px;
}
.contact-option__desc {
    color: #4b5b73;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1;
}
.contact-option__cta {
    width: 100%;
    justify-content: center;
}

/* Section 3 — Form + Map split */
.contact-split {
    padding: 48px 0 56px;
    background: #fff;
}
.contact-split__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.contact-split__form {
    background: #fff;
    border: 1px solid #e3e9f1;
    border-radius: 14px;
    padding: 28px 22px;
}
.contact-split__head {
    margin-bottom: 18px;
}
.contact-split__head .section-heading {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 24px;
}
.contact-split__sub {
    color: #4b5b73;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.contact-flash {
    background: #e8f7ee;
    border: 1px solid #b3e0c4;
    color: #166534;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-split__map {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e3e9f1;
    background: #f4f6fb;
    min-height: 280px;
    position: relative;
}
.contact-map iframe { display: block; }
.contact-map__placeholder {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f4f6fb 0%, #e6ecf5 100%);
}
.contact-map__pin {
    font-size: 40px;
    margin-bottom: 8px;
}
.contact-map__placeholder-text {
    color: #1B3A6B;
    font-weight: 500;
    margin: 0 0 10px;
}
.contact-map__placeholder-link {
    color: #E8821A;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}
.contact-map__placeholder-link:hover { text-decoration: underline; }

.contact-hours {
    background: #f7f9fc;
    border: 1px solid #e3e9f1;
    border-radius: 14px;
    padding: 18px 20px;
}
.contact-hours__title {
    font-size: 16px;
    font-weight: 600;
    color: #1B3A6B;
    margin: 0 0 10px;
}
.contact-hours__list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.contact-hours__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e3e9f1;
    font-size: 14px;
    color: #4b5b73;
}
.contact-hours__row:last-child { border-bottom: 0; }
.contact-hours__row strong { color: #1B3A6B; font-weight: 600; }
.contact-hours__note {
    margin: 8px 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Section 4 — Social Links */
.contact-social {
    background: #f7f9fc;
    padding: 48px 0 64px;
}
.contact-social__list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.contact-social__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e3e9f1;
    border-radius: 999px;
    padding: 12px 22px;
    color: #1B3A6B;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-social__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 58, 107, 0.10);
    border-color: #E8821A;
    color: #E8821A;
}

@media (min-width: 768px) {
    .contact-hero { padding: 56px 0 44px; }
    .contact-hero__title { font-size: 38px; }
    .contact-options__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .contact-split__form { padding: 36px 36px; }
    .contact-map, .contact-map__placeholder { min-height: 320px; }
}

@media (min-width: 1024px) {
    .contact-hero { padding: 72px 0 56px; }
    .contact-hero__title { font-size: 44px; }
    .contact-options { padding: 72px 0; }
    .contact-split { padding: 72px 0 88px; }
    .contact-split__grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: 32px;
        align-items: start;
    }
    .contact-social { padding: 64px 0 96px; }
}

/* =========================================================
   BLOG INDEX
   ========================================================= */
.blog-hero {
    background: #f7f9fc;
    padding: 36px 0 56px;
}
.blog-hero__title {
    font-size: 30px;
    line-height: 1.15;
    margin: 8px 0 10px;
    color: #1B3A6B;
    font-weight: 600;
}
.blog-hero__lede {
    font-size: 16px;
    color: #4b5b73;
    margin: 0 0 24px;
    max-width: 580px;
}

.blog-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
}
.blog-pill {
    background: #fff;
    border: 1px solid #d6deea;
    color: #1B3A6B;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.blog-pill:hover {
    border-color: #E8821A;
    color: #E8821A;
}
.blog-pill--active {
    background: #1B3A6B;
    color: #fff;
    border-color: #1B3A6B;
}
.blog-pill--active:hover {
    color: #fff;
    background: #122a4f;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.blog-empty {
    background: #fff;
    border: 1px dashed #d6deea;
    border-radius: 14px;
    padding: 48px 24px;
    text-align: center;
    color: #6b7280;
}

/* Category-coloured card media */
.blog-card__media--guide { background: linear-gradient(135deg, #1B3A6B, #2d57a0); }
.blog-card__media--comparison { background: linear-gradient(135deg, #E8821A, #f5a14b); }
.blog-card__media--business { background: linear-gradient(135deg, #1B3A6B, #E8821A); }
.blog-card__media--news { background: linear-gradient(135deg, #122a4f, #1B3A6B); }

.blog-card__category--guide { color: #1B3A6B; }
.blog-card__category--comparison { color: #E8821A; }
.blog-card__category--business { color: #6b7280; }
.blog-card__category--news { color: #166534; }

.blog-card__excerpt {
    color: #4b5b73;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 12px;
}
.blog-card__meta {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}
.blog-card__link {
    display: inline-block;
    color: #E8821A;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.blog-card__link:hover { text-decoration: underline; }

.blog-pagination {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}
.blog-pagination nav { display: inline-flex; }
.blog-pagination svg { width: 18px; height: 18px; }
.blog-pagination .pagination,
.blog-pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-pagination span,
.blog-pagination a,
.blog-pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d6deea;
    border-radius: 8px;
    background: #fff;
    color: #1B3A6B;
    font-weight: 500;
    text-decoration: none;
}
.blog-pagination a:hover { border-color: #E8821A; color: #E8821A; }
.blog-pagination .active span,
.blog-pagination [aria-current="page"] span,
.blog-pagination [aria-current="page"] {
    background: #1B3A6B;
    color: #fff;
    border-color: #1B3A6B;
}
.blog-pagination .disabled span,
.blog-pagination [aria-disabled="true"] {
    color: #9ca3af;
    cursor: not-allowed;
    background: #f7f9fc;
}

/* =========================================================
   BLOG SHOW (single article)
   ========================================================= */
.post-container {
    max-width: 800px;
}
.post-header {
    background: #f7f9fc;
    padding: 32px 0 24px;
}
.post-category {
    display: inline-block;
    margin: 12px 0 14px;
}
.post-title {
    font-size: 28px;
    line-height: 1.2;
    color: #1B3A6B;
    font-weight: 700;
    margin: 0 0 14px;
}
.post-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
}
.post-divider {
    border: 0;
    border-top: 1px solid #e3e9f1;
    margin: 24px 0 0;
}

.post .prose,
.prose {
    font-size: 17px;
    line-height: 1.8;
    color: #1f2937;
    margin: 32px 0;
}
.prose p { margin: 0 0 1.2em; }
.prose h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 1.6em 0 0.6em;
    line-height: 1.3;
}
.prose h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1B3A6B;
    margin: 1.4em 0 0.5em;
    line-height: 1.35;
}
.prose a {
    color: #E8821A;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.prose a:hover { color: #c46a0d; }
.prose blockquote {
    border-left: 4px solid #E8821A;
    background: #fdf6ee;
    margin: 1.5em 0;
    padding: 12px 18px;
    color: #4b5b73;
    font-style: italic;
}
.prose ul, .prose ol {
    margin: 0 0 1.2em 1.4em;
    padding: 0;
}
.prose li { margin-bottom: 0.5em; }
.prose code {
    background: #eef2f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-author {
    color: #6b7280;
    font-style: italic;
    margin: 32px 0 24px;
}

.post-share {
    margin: 28px 0 12px;
    padding: 20px 0 24px;
    border-top: 1px solid #e3e9f1;
    border-bottom: 1px solid #e3e9f1;
}
.post-share__label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
}
.post-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.post-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s ease;
}
.post-share__btn:hover { opacity: 0.92; }
.post-share__btn--whatsapp { background: #25d366; }
.post-share__btn--twitter { background: #0f1419; }

/* Related posts */
.post-related {
    background: #f7f9fc;
    padding: 56px 0;
}
.post-related__title {
    font-size: 22px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 24px;
    text-align: center;
}
.post-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA card */
.post-cta {
    padding: 48px 0 64px;
    background: #fff;
}
.post-cta__card {
    background: linear-gradient(135deg, #1B3A6B 0%, #122a4f 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.post-cta__title {
    font-size: 22px;
    margin: 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
}
.post-cta__lede {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .blog-hero { padding: 56px 0 64px; }
    .blog-hero__title { font-size: 40px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .post-header { padding: 56px 0 32px; }
    .post-title { font-size: 36px; }
    .post-related__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .post-cta__card {
        padding: 36px 40px;
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    .post-cta__btn { flex-shrink: 0; }
}

@media (min-width: 1024px) {
    .blog-hero__title { font-size: 44px; }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .post-header { padding: 72px 0 36px; }
    .post-title { font-size: 42px; }
    .post .prose { font-size: 18px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Section 1 — Hero */
.about-hero {
    background: linear-gradient(135deg, #1B3A6B 0%, #122a4f 100%);
    color: #fff;
    padding: 40px 0 48px;
}
.about-hero__title {
    font-size: 30px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    margin: 8px 0 14px;
    max-width: 720px;
}
.about-hero__lede {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0;
}

/* Section 2 — Story + Metrics */
.about-story {
    padding: 56px 0;
    background: #fff;
}
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
.about-story__copy .section-heading {
    margin-top: 6px;
    margin-bottom: 16px;
}
.about-story__copy p {
    color: #4b5b73;
    line-height: 1.7;
    font-size: 15.5px;
    margin: 0 0 14px;
}
.about-story__cta {
    margin-top: 14px;
}

.about-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.about-metric {
    background: #f7f9fc;
    border: 1px solid #e3e9f1;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-metric--orange {
    background: linear-gradient(135deg, #fdf6ee 0%, #fbe6cb 100%);
    border-color: #f4cfa6;
}
.about-metric__value {
    font-size: 32px;
    font-weight: 700;
    color: #1B3A6B;
    line-height: 1;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}
.about-metric--orange .about-metric__value { color: #E8821A; }
.about-metric__unit {
    font-size: 16px;
    font-weight: 600;
    margin-left: 2px;
}
.about-metric__label {
    font-size: 13px;
    color: #4b5b73;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* Section 3 — Values */
.about-values {
    background: #f7f9fc;
    padding: 56px 0;
}
.about-values__grid {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.about-value {
    background: #fff;
    border: 1px solid #e3e9f1;
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
}
.about-value__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.about-value__icon--navy { background: #e6ecf5; color: #1B3A6B; }
.about-value__icon--orange { background: #fdebd9; color: #E8821A; }
.about-value__title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 10px;
}
.about-value__copy {
    color: #4b5b73;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Section 4 — Coverage Timeline */
.about-timeline {
    background: #fff;
    padding: 56px 0;
}
.timeline {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(to bottom, #1B3A6B 0%, #1B3A6B 70%, #E8821A 100%);
    z-index: 0;
}
.timeline__step {
    position: relative;
    padding-left: 56px;
    z-index: 1;
}
.timeline__dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B3A6B;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #d6deea;
}
.timeline__dot--cta {
    background: #E8821A;
    box-shadow: 0 0 0 1px #f4cfa6;
}
.timeline__title {
    font-size: 16px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 6px 0 4px;
}
.timeline__copy {
    color: #4b5b73;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.timeline__copy a {
    color: #E8821A;
    font-weight: 600;
    text-decoration: none;
}
.timeline__copy a:hover { text-decoration: underline; }
.timeline__step--cta .timeline__title { color: #E8821A; }

/* Section 5 — Bottom CTA */
.about-cta {
    background: linear-gradient(135deg, #1B3A6B 0%, #122a4f 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.about-cta__title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}
.about-cta__lede {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
    font-size: 16px;
}
.about-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .about-hero { padding: 60px 0 64px; }
    .about-hero__title { font-size: 38px; }
    .about-story { padding: 72px 0; }
    .about-story__grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        gap: 48px;
    }
    .about-values { padding: 72px 0; }
    .about-values__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .about-timeline { padding: 72px 0; }

    /* Horizontal timeline on tablet+ */
    .timeline {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0 8px;
    }
    .timeline::before {
        left: 8%;
        right: 8%;
        top: 19px;
        bottom: auto;
        width: auto;
        height: 2px;
        background: linear-gradient(to right, #1B3A6B 0%, #1B3A6B 70%, #E8821A 100%);
    }
    .timeline__step {
        padding-left: 0;
        padding-top: 56px;
        text-align: center;
        flex: 1;
        position: relative;
    }
    .timeline__dot {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    .timeline__title { font-size: 15px; }
    .timeline__copy { font-size: 13px; padding: 0 8px; }
    .about-cta { padding: 72px 0; }
    .about-cta__title { font-size: 32px; }
}

@media (min-width: 1024px) {
    .about-hero { padding: 80px 0 88px; }
    .about-hero__title { font-size: 44px; }
    .about-cta__title { font-size: 36px; }
    .timeline__title { font-size: 16px; }
    .timeline__copy { font-size: 14px; }
}

/* =========================================================
   ERROR PAGES (404, 500)
   ========================================================= */
.error-page {
    background: linear-gradient(135deg, #f7f9fc 0%, #e6ecf5 100%);
    padding: 64px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-page__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.error-page__code {
    display: inline-block;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    color: #1B3A6B;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.error-page__code--orange { color: #E8821A; }
.error-page__title {
    font-size: 28px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 14px;
}
.error-page__lede {
    color: #4b5b73;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.error-page__links {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
}
.error-page__link {
    display: block;
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #1B3A6B;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.error-page__link:hover {
    transform: translateY(-2px);
    border-color: #E8821A;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.error-page__link strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.error-page__link span {
    color: #4b5b73;
    font-size: 14px;
}
.error-page__cta { margin-top: 8px; }
.error-page__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.error-page__hint {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}
.error-page__hint a {
    color: #E8821A;
    font-weight: 600;
    text-decoration: none;
}
.error-page__hint a:hover { text-decoration: underline; }

@media (min-width: 768px) {
    .error-page__code { font-size: 112px; }
    .error-page__title { font-size: 36px; }
    .error-page__links { grid-template-columns: repeat(3, 1fr); }
}

/* --- Hero carousel -------------------------------------------------------- */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-navy);
    box-shadow: 0 4px 24px rgba(15, 36, 71, .14);
    margin-bottom: 18px;
}
.hero-carousel__track {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-carousel__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--color-navy);
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 36, 71, .18);
    transition: background .15s ease, transform .15s ease;
    opacity: 0;
}
.hero-carousel:hover .hero-carousel__nav,
.hero-carousel:focus-within .hero-carousel__nav { opacity: 1; }
.hero-carousel__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero-carousel__nav--prev { left: 12px; }
.hero-carousel__nav--next { right: 12px; }

.hero-carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hero-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, width .2s ease;
}
.hero-carousel__dot.is-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}
.hero-carousel__dot:hover { background: rgba(255, 255, 255, .85); }

@media (max-width: 480px) {
    .hero-carousel__nav { display: none; }
    .hero-carousel { aspect-ratio: 16 / 10; }
}

/* --- Fade-in on scroll (IntersectionObserver-driven) ----------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in.is-visible { opacity: 1; transform: none; transition: none; }
    .floating-btn--pulse::before { animation: none; }
}

/* --- Honeypot (anti-spam): visually hidden but accessible to bots -------- */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* --- Mobile / tablet safety nets ----------------------------------------- */
@media (max-width: 480px) {
    /* Prevent horizontal overflow on small screens */
    body { overflow-x: hidden; }
    .container { padding-left: 16px; padding-right: 16px; }
    /* Floating buttons: smaller and closer to corners on tiny screens */
    .floating-btn { width: 52px; height: 52px; }
    .floating-btn--wa   { right: 14px; bottom: 14px; }
    .floating-btn--call { left:  14px; bottom: 14px; }
    /* Mobile menu z-index above sticky navbar so it's never hidden */
    .navbar__mobile { z-index: 60; }
    /* Tap-friendly buttons */
    .btn { padding: 12px 18px; font-size: 14.5px; }
}
