/* ══════════════════════════════════════════════════════════════════
   Infinity2X GlassOne — theme stylesheet
   Colors / style lifted from CNet Software Solutions' Infinity2x
   GlassOne landing page so this stand-alone site matches the brand.
══════════════════════════════════════════════════════════════════ */

:root {
    --brand: #284389;
    --brand-dark: #1a2d5e;
    --brand-light: #3d5fad;
    --accent: #0ea5e9;
    --accent-dark: #0369a1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    margin: 0;
}

main {
    padding-top: 62px; /* clears the fixed nav on inner pages */
}

/* ── NAV ─────────────────────────────────────────── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(40,67,137,.97);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.lp-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-nav .brand-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-nav .brand-text {
    line-height: 1;
}

.lp-nav .brand-top {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

.lp-nav .brand-sub {
    font-size: 9px;
    color: rgba(255,255,255,.65);
    letter-spacing: 1.5px;
}

.lp-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px !important;
    transition: color .15s;
    white-space: nowrap;
}

.lp-nav .nav-link:hover,
.lp-nav .nav-link.active {
    color: #fff !important;
}

.lp-nav .btn-signin {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.lp-nav .btn-signin:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
}

.lp-nav .btn-signup {
    background: #fff;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity .15s;
    white-space: nowrap;
}

.lp-nav .btn-signup:hover {
    opacity: .9;
    color: var(--brand);
}

.lp-nav-toggle {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;
    color: #fff;
    width: 36px;
    height: 34px;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, #3d6abf 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.hero-eyebrow span {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: normal;
    color: #93c5fd;
}

.hero p.lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-hero-primary {
    background: #fff;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    color: var(--brand);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.45);
    text-decoration: none;
    transition: border-color .15s, background .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* Solid brand button — for use on light backgrounds (forms/cards),
   where btn-hero-primary (white-on-transparent) would be invisible. */
.btn-solid {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-solid:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(40,67,137,.25);
    color: #fff;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

.hero-badge i {
    color: #4ade80;
    font-size: 11px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    margin-top: 3px;
}

/* ── PAGE HEADER (inner pages) ──────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    padding: 150px 0 60px;
    text-align: center;
}

.page-header .sec-eyebrow {
    color: rgba(255,255,255,.7);
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SECTION COMMON ─────────────────────────────── */
section {
    padding: 72px 0;
}

.sec-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sec-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
}

/* ── APP MOCKUP ──────────────────────────────────── */
.app-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1);
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
}

.app-mockup-bar {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }

.mock-url {
    margin-left: 12px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    padding: 2px 10px;
    flex: 1;
    text-align: center;
}

.app-mockup-screen {
    position: relative;
    line-height: 0;
}

.app-screenshot {
    width: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.app-mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(40,67,137,.08) 100%);
    pointer-events: all;
    user-select: none;
}

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
    background: #f1f5f9;
    border-bottom: 1px solid #e5e7eb;
}

.trust-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

/* ── BENEFITS ────────────────────────────────────── */
.benefits {
    background: #f8fafc;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 20px;
    height: 100%;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}

.benefit-card:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(40,67,137,.12);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.bi-tint-navy { background: #EEF2FF; }
.bi-tint-purple { background: #F5F3FF; }
.bi-tint-green { background: #F0FDF4; }
.bi-tint-orange { background: #FFF7ED; }
.bi-tint-blue { background: #EFF6FF; }
.bi-tint-teal { background: #F0FDFA; }
.bi-tint-sky { background: #E0F2FE; }

.benefit-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.benefit-card p, .why-card p, .step-body p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── MODULES STRIP ───────────────────────────────── */
.modules-strip {
    background: var(--brand);
}

.module-pill {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .12s;
    cursor: default;
}

.module-pill:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

.module-pill .mp-icon {
    font-size: 18px;
    margin-bottom: 5px;
    color: rgba(255,255,255,.9);
    line-height: 1;
}

.module-pill .mp-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.module-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 20px;
    height: 100%;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}

.module-card:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(40,67,137,.12);
    transform: translateY(-3px);
}

.module-card .mc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(40,67,137,.08);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.module-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.module-card p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how-it-works {
    background: #fff;
}

.step-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 20px;
    height: 100%;
    width: 100%;
    transition: border-color .15s, box-shadow .15s, transform .12s;
}

.step-card:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(40,67,137,.1);
    transform: translateY(-3px);
}

.step-num {
    min-width: 42px;
    height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-heading {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.step-card.sc-blue { background: #EFF6FF; border-color: #BFDBFE; }
.step-card.sc-blue .step-num { background: #2563EB; }

.step-card.sc-green { background: #F0FDF4; border-color: #BBF7D0; }
.step-card.sc-green .step-num { background: #16A34A; }

.step-card.sc-purple { background: #FAF5FF; border-color: #E9D5FF; }
.step-card.sc-purple .step-num { background: #7C3AED; }

.step-card.sc-orange { background: #FFF7ED; border-color: #FED7AA; }
.step-card.sc-orange .step-num { background: #EA580C; }

/* ── WHY CHOOSE ──────────────────────────────────── */
.why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
}

.why-card .wc-num {
    width: 48px;
    height: 48px;
    background: rgba(40,67,137,.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--brand);
    margin-bottom: 14px;
}

.why-heading {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

/* ── PRICING ─────────────────────────────────────── */
.pricing {
    background: #f8fafc;
}

.plan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid var(--brand);
    box-shadow: 0 8px 32px rgba(40,67,137,.15);
    position: relative;
}

.plan-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.plan-tier {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.plan-price {
    margin-bottom: 20px;
}

.plan-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
}

.plan-price .period {
    font-size: 12px;
    color: #9ca3af;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.plan-features li {
    font-size: 12px;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li.off {
    color: #d1d5db;
    text-decoration: line-through;
}

.plan-features li.off::before {
    content: '—';
    font-size: 10px;
    color: #d1d5db;
}

.plan-features li:not(.off)::before {
    content: '\2713';
    font-size: 11px;
    color: #15803D;
    font-weight: 700;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s, transform .12s;
    border: none;
}

.btn-plan:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-plan-outline {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-plan-fill {
    background: var(--brand);
    color: #fff;
    border: 2px solid var(--brand);
}

/* ── CTA BAND ────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 28px;
}

/* ── FOOTER ──────────────────────────────────────── */
.lp-footer {
    background: #0f172a;
    padding: 40px 0 24px;
}

.lp-footer-brand {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.lp-footer-sub {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}

.lp-footer-sub a {
    color: rgba(255,255,255,.6);
}

.lp-footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,.35);
}

.lp-footer-links {
    font-size: 11px;
}

.lp-footer-link {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}

.lp-footer-link:hover {
    color: #fff;
}

.lp-footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
}

.lp-footer-nav a {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    text-decoration: none;
    padding: 4px 0;
}

.lp-footer-nav a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255,255,255,.08);
    margin: 24px 0;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-section {
    background: #fff;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    transition: color .15s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: var(--brand);
}

.faq-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.75;
    padding: 0 4px 18px;
    margin: 0;
}

.faq-answer a {
    color: var(--brand);
}

/* ── AUTH PAGES (Sign In / Sign Up / Forgot / Reset) ─────────────── */
/* Glass-manufacturing motif: a faint glazing-bar grid (curtain-wall
   panes) + a soft diagonal glare sweeping across the glass + two
   brand-color glow blobs for depth. Pure CSS, no image assets. */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    background-color: #eef3fb;
    background-image:
        linear-gradient(115deg, transparent 32%, rgba(255,255,255,.6) 46%, transparent 62%),
        repeating-linear-gradient(90deg, rgba(40,67,137,.06) 0, rgba(40,67,137,.06) 1px, transparent 1px, transparent 84px),
        repeating-linear-gradient(0deg, rgba(40,67,137,.06) 0, rgba(40,67,137,.06) 1px, transparent 1px, transparent 84px),
        radial-gradient(650px circle at 88% 6%, rgba(14,165,233,.18), transparent 60%),
        radial-gradient(550px circle at 6% 96%, rgba(40,67,137,.16), transparent 60%),
        linear-gradient(160deg, #eef3fb 0%, #f7f9fc 45%, #e7eefa 100%);
    background-attachment: fixed;
}

.auth-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.25rem 2.25rem 2rem;
    border: 1px solid #dce3ef;
    box-shadow: 0 4px 0 0 #b8c8e0, 0 6px 16px rgba(30,58,110,.1);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.75rem;
    text-decoration: none;
}

.auth-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--brand);
    box-shadow: 0 4px 12px rgba(40,67,137,.28);
}

.auth-brand-icon img {
    width: 21px;
    height: 21px;
}

.auth-brand span {
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
}

.auth-input {
    font-size: .9rem;
    padding: .55rem .8rem;
    border-radius: 7px;
    border: 1px solid #d7deea;
}

.auth-input:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 .2rem rgba(40,67,137,.12);
}

.auth-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef1f6;
    font-size: 12px;
    color: #6b7280;
}

.auth-trust i {
    color: var(--brand);
    margin-right: 4px;
}

/* ── FORM PAGES (Request Demo) ──────────────────── */
.form-page {
    background: #f8fafc;
}

.form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(15,23,42,.05);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
}

.contact-info-item i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(40,67,137,.08);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-success-soft {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 13px;
}

/* ── UTILITY ─────────────────────────────────────── */
@media (max-width: 767px) {
    section {
        padding: 48px 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .page-header {
        padding: 120px 0 48px;
    }
}
