/* ── IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* ── TOKENS ── */
:root {
    --blue: #2563eb;
    --blue-dark: #1e40af;
    --blue-light: #3b82f6;
    --green: #2f6f5e;
    --green-light: #4c9a7a;
    --green-bright: #22c55e;
    --green-pale: #e6f4ee;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --border: #e2e8f0;
    --surface: #f8fafc;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--surface);
    color: var(--dark);
    line-height: 1.6;
}

/* ── LAYOUT ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 6rem 2rem; }
.section-alt { background: var(--white); }
.section-dark { background: linear-gradient(135deg, #0f172a, #1e3a8a, #065f46); }
.section-surface { background: var(--surface); }

/* ── TYPOGRAPHY ── */
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title-light { color: var(--white); }

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
}

.section-sub-light { color: #cbd5e1; }

/* ── HERO BASE ── */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #065f46);
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem 5rem;
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-green { background: rgba(34,197,94,0.18); width: 420px; height: 420px; top: 5%; left: 5%; }
.glow-blue  { background: rgba(59,130,246,0.18); width: 380px; height: 380px; bottom: 5%; right: 5%; }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

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

/* ── BADGES ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.badge-green  { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.badge-blue   { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); color: #93c5fd; }
.badge-gold   { background: rgba(234,179,8,0.15);  border: 1px solid rgba(234,179,8,0.3);  color: #fbbf24; }
.badge-white  { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #e2e8f0; }

.badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* ── GLASS CARD ── */
.glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
}

.glass-light {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ── SURFACE CARD ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
    box-shadow: 0 16px 48px rgba(15,23,42,0.1);
    transform: translateY(-3px);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-green {
    background: var(--green-bright);
    color: var(--dark);
}
.btn-green:hover { background: #16a34a; transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-2px); }

.btn-outline-dark {
    background: transparent;
    color: var(--dark-2);
    border: 1px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--green-light); color: var(--green); }

.btn-blue {
    background: var(--blue);
    color: #fff;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-gold {
    background: #eab308;
    color: var(--dark);
}
.btn-gold:hover { background: #ca8a04; transform: translateY(-2px); }

/* ── DIVIDERS / DOTS ── */
.dot-green { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); flex-shrink: 0; }
.dot-blue  { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light);   flex-shrink: 0; }
.dot-gold  { width: 8px; height: 8px; border-radius: 50%; background: #eab308;              flex-shrink: 0; }

/* ── CHECK ICON ── */
.check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check svg { width: 11px; height: 11px; color: #4ade80; }

.check-gold {
    background: rgba(234,179,8,0.15);
    border-color: rgba(234,179,8,0.3);
}
.check-gold svg { color: #fbbf24; }

/* ── FEATURE ROW ── */
.feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ── STAT CELLS ── */
.stat-cell { text-align: center; }
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-light);
}

/* ── CTA STRIP ── */
.cta-strip {
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #065f46);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    color: #fff;
    max-width: 680px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.cta-strip p {
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fade-up    { animation: fadeUp    0.9s ease forwards; }
.fade-left  { animation: fadeLeft  0.9s ease forwards; }
.fade-right { animation: fadeRight 0.9s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section { padding: 4rem 1.25rem; }
    .page-hero { padding: 5rem 1.25rem 4rem; }
    .cta-strip { padding: 5rem 1.25rem; }
}

@media (max-width: 480px) {
    .btn { width: 100%; justify-content: center; }
    .cta-strip-btns { flex-direction: column; }
}
/* ── HIDE BLAZOR ERROR POPUP ── */
#blazor-error-ui {
    display: none !important;
}