/* ══════════════════════════════════════════
   Donara — Landing Page styles
   ══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: #0d0d1a; color: #e8e8f0; overflow-x: hidden; }

/* ── Color tokens ── */
:root {
    --navy-deep:    #0d0d1a;
    --navy-1:       #1a1a2e;
    --navy-2:       #16213e;
    --navy-3:       #0f3460;
    --purple:       #6c5ce7;
    --purple-lt:    #a29bfe;
    --purple-glow:  rgba(108,92,231,.35);
    --glass-bg:     rgba(255,255,255,.04);
    --glass-border: rgba(255,255,255,.09);
}

/* ── Navbar ── */
.navbar-landing {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(13,13,26,.85);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
}
.navbar-brand-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -.5px; }
.navbar-brand-logo .dot { color: var(--purple-lt); }
.navbar-pill {
    background: rgba(108,92,231,.15); border: 1px solid rgba(108,92,231,.3);
    color: #c8c4ff; border-radius: 999px; padding: 7px 20px;
    font-size: .85rem; cursor: pointer; transition: all .2s;
}
.navbar-pill:hover { background: rgba(108,92,231,.3); color: #fff; }
.btn-nav-cta {
    background: var(--purple); color: #fff; border-radius: 999px;
    padding: 8px 22px; font-size: .85rem; font-weight: 700;
    text-decoration: none; transition: all .2s; display: inline-block;
}
.btn-nav-cta:hover { background: #7d6cf0; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 18px var(--purple-glow); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(108,92,231,.3) 0%, transparent 68%),
        linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 55%, #0f3460 100%);
    display: flex; align-items: center; padding-top: 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(108,92,231,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,92,231,.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 20%, transparent 100%);
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
    animation: floatOrb 9s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: rgba(108,92,231,.17); top: -100px; left: -120px; animation-delay: 0s; }
.orb-2 { width: 340px; height: 340px; background: rgba(15,52,96,.45); bottom: 5%; right: -80px; animation-delay: -4s; }
.orb-3 { width: 220px; height: 220px; background: rgba(162,155,254,.13); top: 38%; left: 58%; animation-delay: -6s; }
@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-28px) scale(1.05); }
}

/* Hero badge — coluna de linhas, cada uma com seu dot */
.hero-badge {
    display: inline-flex; flex-direction: column; align-items: flex-start; gap: 7px;
    background: rgba(108,92,231,.14); border: 1px solid rgba(108,92,231,.4);
    border-radius: 16px; padding: 14px 22px; font-size: .85rem; color: var(--purple-lt);
    margin-bottom: 32px; text-align: left;
}
.hero-badge-row { display: flex; align-items: center; gap: 10px; }
.dot-pulse {
    width: 7px; height: 7px; border-radius: 50%; background: #7BF1A8; flex-shrink: 0;
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.75)} }

.hero-title {
    font-size: 3.5rem; font-weight: 800; line-height: 1.1;
    letter-spacing: -.6px; color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, #c4b5fd 0%, var(--purple-lt) 50%, #818cf8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: rgba(255,255,255,.52); font-size: 1.12rem; line-height: 1.75; }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--purple) 0%, #8b79f5 100%);
    color: #fff; border: none; border-radius: 999px;
    padding: 15px 38px; font-size: 1.05rem; font-weight: 700;
    text-decoration: none; display: inline-block; transition: all .25s;
    box-shadow: 0 8px 32px rgba(108,92,231,.45);
}
.btn-hero-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 44px rgba(108,92,231,.6); }
.btn-hero-ghost {
    background: transparent; color: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
    padding: 14px 32px; font-size: 1rem; font-weight: 500; cursor: pointer;
    transition: all .25s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.hero-stats { border-top: 1px solid var(--glass-border); margin-top: 60px; padding-top: 44px; }
.stat-num {
    font-size: 2.1rem; font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--purple-lt));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .09em; margin-top: 3px; }

/* ── Shared section ── */
section { padding: 100px 0; }
.section-tag {
    display: inline-block; font-size: .68rem; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    background: rgba(108,92,231,.15); color: var(--purple-lt);
    border: 1px solid rgba(108,92,231,.3); border-radius: 999px;
    padding: 4px 14px; margin-bottom: 16px;
}
.section-tag.dark { background: rgba(108,92,231,.12); color: var(--purple); border-color: rgba(108,92,231,.25); }
.section-title  { font-size: 2.25rem; font-weight: 800; letter-spacing: -.3px; }
.section-sub    { color: rgba(255,255,255,.48); font-size: 1rem; line-height: 1.75; }
.section-sub-dk { color: #6b7280; font-size: 1rem; line-height: 1.75; }

/* ── Features ── */
.section-features { background: #f7f6ff; padding: 100px 0; }
.feature-card {
    border: 1px solid #ede9ff; border-radius: 20px; background: #fff;
    padding: 32px 28px; height: 100%;
    transition: all .3s cubic-bezier(.25,.8,.25,1); position: relative; overflow: hidden;
}
.feature-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(108,92,231,.07), transparent 55%);
    opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(108,92,231,.16); border-color: rgba(108,92,231,.32); }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; margin-bottom: 20px;
    box-shadow: 0 6px 22px rgba(108,92,231,.32);
}
.feature-card h6 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.feature-card p  { font-size: .875rem; color: #6b7280; line-height: 1.68; margin: 0; }

/* ── Differentials ── */
.section-differentials { background: var(--navy-1); position: relative; overflow: hidden; }
.section-differentials::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 50% at 50% 105%, rgba(108,92,231,.13), transparent);
}
.diff-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 38px 28px; text-align: center; height: 100%;
    transition: all .3s; backdrop-filter: blur(4px);
}
.diff-card:hover { border-color: rgba(108,92,231,.45); background: rgba(108,92,231,.09); transform: translateY(-5px); }
.diff-icon-wrap {
    width: 66px; height: 66px; border-radius: 18px; margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(108,92,231,.22), rgba(162,155,254,.1));
    border: 1px solid rgba(108,92,231,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem; color: var(--purple-lt);
}
.diff-card h5 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.diff-card p  { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.72; margin: 0; }

/* ── CTA Band ── */
.band-cta {
    background: linear-gradient(135deg, var(--purple) 0%, #4a3cc4 45%, var(--navy-3) 100%);
    position: relative; overflow: hidden; padding: 90px 0;
}
.band-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(162,155,254,.22), transparent);
}
.band-cta::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 36px 36px;
}
.band-cta-inner { position: relative; z-index: 1; }
.btn-cta-white {
    background: #fff; color: var(--purple); border-radius: 999px;
    padding: 15px 38px; font-weight: 800; font-size: 1.05rem;
    text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.25); color: var(--purple); }

/* ── How it works ── */
.section-how { background: #f3f1fc; }
.step-num {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800; color: #fff;
    box-shadow: 0 6px 26px rgba(108,92,231,.42);
}
.step-connector {
    position: absolute; top: 28px;
    left: calc(50% + 38px); width: calc(100% - 76px); height: 2px;
    background: linear-gradient(90deg, var(--purple-lt), rgba(162,155,254,.2));
}
.step-icon-lg { font-size: 2.5rem; color: var(--purple); margin-bottom: 18px; }
.step-card { padding: 8px; position: relative; text-align: center; }
.step-card h5 { font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.step-card p  { font-size: .875rem; color: #6b7280; line-height: 1.68; margin: 0; }

/* ── Plans ── */
.section-planos { background: var(--navy-deep); }
.plans-row { padding-top: 22px; } /* espaço para o badge "Mais popular" sobressair */
.plan-card {
    border-radius: 20px; height: 100%;
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
    transition: all .3s; overflow: visible; position: relative;
}
.plan-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, transparent, rgba(108,92,231,.35), transparent);
}
.plan-card:hover { transform: translateY(-7px); border-color: rgba(108,92,231,.42); }
.plan-card.featured {
    background: rgba(108,92,231,.1); border-color: rgba(108,92,231,.6);
    box-shadow: 0 0 0 1px rgba(108,92,231,.28), 0 28px 64px rgba(108,92,231,.22);
}
.plan-card.featured::before { background: linear-gradient(90deg, transparent, var(--purple-lt), transparent); }
.plan-card.featured:hover { box-shadow: 0 0 0 1px rgba(108,92,231,.5), 0 36px 88px rgba(108,92,231,.32); }
.plan-body { padding: 32px 28px; }

/* Badge "Mais popular" centralizado na borda superior */
.badge-popular-wrap {
    position: absolute; top: -16px; left: 0; right: 0;
    display: flex; justify-content: center; z-index: 2;
}
.badge-popular {
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: #fff; border-radius: 999px; font-size: .75rem; font-weight: 800;
    padding: 5px 20px; letter-spacing: .05em; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(108,92,231,.55);
}

/* Nome do plano mais destacado */
.plan-name {
    font-size: .9rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .16em; color: var(--purple-lt); margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(108,92,231,.2);
}
.plan-price { font-size: 3.1rem; font-weight: 900; color: #fff; line-height: 1; }
.plan-currency { font-size: 1.05rem; font-weight: 700; vertical-align: top; display: inline-block; margin-top: 10px; padding-right: 2px; color: rgba(255,255,255,.6); }
.plan-price .cts { font-size: 1.3rem; font-weight: 700; }
.plan-period { font-size: .8rem; color: rgba(255,255,255,.38); margin-bottom: 22px; }
.plan-taxa {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px; padding: 12px 14px; margin-bottom: 20px;
}
.plan-taxa-lbl  { font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.33); margin-bottom: 7px; }
.plan-taxa-item { font-size: .78rem; color: rgba(255,255,255,.58); display: flex; align-items: flex-start; gap: 7px; }
.plan-taxa-item + .plan-taxa-item { margin-top: 6px; }
.plan-divider { border-color: rgba(255,255,255,.08); margin: 18px 0; }
.plan-feat     { font-size: .84rem; display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.plan-feat.ok  { color: rgba(255,255,255,.78); }
.plan-feat.off { color: rgba(255,255,255,.23); text-decoration: line-through; }
.btn-plan { border-radius: 999px; padding: 12px 0; font-weight: 700; font-size: .95rem; width: 100%; margin-top: 8px; transition: all .25s; text-decoration: none; display: block; text-align: center; }
.btn-plan-outline { background: transparent; border: 1px solid rgba(108,92,231,.5); color: var(--purple-lt); }
.btn-plan-outline:hover { background: rgba(108,92,231,.18); border-color: var(--purple-lt); color: #fff; }
.btn-plan-fill { background: linear-gradient(135deg, var(--purple), #8b79f5); border: none; color: #fff; box-shadow: 0 6px 26px rgba(108,92,231,.42); }
.btn-plan-fill:hover { transform: translateY(-1px); box-shadow: 0 11px 36px rgba(108,92,231,.58); color: #fff; }
.btn-simulator {
    color: var(--purple-lt); border: 1px solid rgba(108,92,231,.35); border-radius: 999px;
    padding: 10px 26px; font-size: .9rem; text-decoration: none; display: inline-flex;
    align-items: center; gap: 8px; transition: all .2s;
}
.btn-simulator:hover { color: #fff; border-color: var(--purple-lt); background: rgba(108,92,231,.12); }

/* ── FAQ ── */
.section-faq { background: var(--navy-1); }
.faq-accordion .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border) !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background: transparent;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .95rem;
    padding: 20px 24px;
    box-shadow: none !important;
    transition: color .2s, background .2s;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(108,92,231,.12);
    color: var(--purple-lt);
}
.faq-accordion .accordion-button::after {
    filter: invert(1) brightness(.55);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(75%) sepia(60%) saturate(500%) hue-rotate(215deg);
}
.faq-accordion .accordion-body {
    background: transparent;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.78;
    padding: 0 24px 22px;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Simulator ── */
.sim-hero {
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(108,92,231,.25) 0%, transparent 65%),
        linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 60%, #0f3460 100%);
    padding: 130px 0 64px; position: relative; overflow: hidden;
}
.sim-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(108,92,231,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,92,231,.06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 100%);
}
.sim-hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
    animation: floatOrb 10s ease-in-out infinite;
}
.sim-orb-1 { width: 380px; height: 380px; background: rgba(108,92,231,.15); top: -60px; left: -80px; animation-delay: 0s; }
.sim-orb-2 { width: 260px; height: 260px; background: rgba(15,52,96,.4); bottom: -20px; right: -60px; animation-delay: -5s; }
.btn-sim-back {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.7); border-radius: 999px; padding: 7px 18px;
    font-size: .85rem; text-decoration: none; transition: all .2s;
}
.btn-sim-back:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Scenario selector */
.sim-scenario-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 6px; display: inline-flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.sim-scenario-btn {
    background: transparent; border: none; color: rgba(255,255,255,.55);
    border-radius: 10px; padding: 9px 20px; font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 7px;
}
.sim-scenario-btn:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
.sim-scenario-btn.active { background: var(--purple); color: #fff; box-shadow: 0 4px 16px rgba(108,92,231,.4); }
.sim-scenario-btn.active-calc { background: rgba(255,255,255,.1); color: #fff; }

/* Scenario blocks */
.scenario-block {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px; padding: 32px;
}
.sim-section-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: rgba(255,255,255,.35); margin-bottom: 10px;
}
.sim-scenario-desc {
    font-size: .85rem; color: rgba(255,255,255,.45); text-align: center; margin-bottom: 24px;
}
.sim-scenario-desc strong { color: rgba(255,255,255,.65); }

/* Tables — override Bootstrap's white --bs-table-bg */
.sim-table {
    font-size: .83rem; color: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.09);
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    --bs-table-border-color: rgba(255,255,255,.09);
    --bs-table-color: rgba(255,255,255,.78);
}
.sim-table > :not(caption) > * > * {
    background-color: transparent;
    color: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.09);
}
.sim-table thead th {
    font-size: .78rem; vertical-align: middle;
    background: rgba(255,255,255,.06) !important;
    border-color: rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.6);
}
.sim-table td, .sim-table th { vertical-align: middle; padding: .38rem .55rem; }
.sim-table .col-receita { background: rgba(108,92,231,.1) !important; }
.th-starter { background: rgba(108,92,231,.75) !important; color: #fff !important; }
.th-pro     { background: rgba(9,132,227,.75)  !important; color: #fff !important; }
.th-premium { background: rgba(0,184,148,.7)   !important; color: #fff !important; }
.col_qtde   { width: 80px; }
.col_valor  { width: 180px; }
.col_receita { width: 180px; }
.sim-subtotal td { background: rgba(108,92,231,.18) !important; font-weight: 700; color: rgba(255,255,255,.92); }
.table-bordered { border-color: rgba(255,255,255,.09); }

/* Total cards */
.total-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.total-card .tc-header { padding: 12px 16px; color: #fff; font-weight: 700; font-size: .9rem; }
.total-card .tc-body { padding: 18px 16px; background: transparent; }
.total-card .tc-monthly { font-size: 2rem; font-weight: 800; line-height: 1; }
.total-card .text-muted { color: rgba(255,255,255,.4) !important; }
.total-card hr { border-color: rgba(255,255,255,.08); }
.total-card .fw-bold { color: rgba(255,255,255,.85); }
.total-card.cheapest { box-shadow: 0 0 0 2px #00b894, 0 8px 28px rgba(0,184,148,.2); }
.cheapest-badge { background: rgba(255,255,255,.2); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 10px; border-radius: 20px; }

/* Nota box */
.nota-box { background: rgba(249,168,37,.08); border-left: 4px solid #f9a825; border-radius: 8px; padding: .9rem 1.1rem; font-size: .83rem; color: rgba(255,255,255,.65); }
.nota-box strong { color: rgba(255,255,255,.8); }
.nota-box .bi { color: #f9a825; }

/* Calc inputs */
#scenario-calc .sim-table .form-control { font-size: .82rem; padding: .25rem .4rem; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
#scenario-calc .sim-table .form-control::placeholder { color: rgba(255,255,255,.25); }
#scenario-calc .sim-table .input-group-text { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
.calc-input-qty { width: 70px; text-align: center; }
.calc-input-val { width: 100px; }
.calc-row-remove { width: 36px; }
.btn-outline-danger { border-color: rgba(255,100,100,.4); color: rgba(255,120,120,.8); }
.btn-outline-danger:hover { background: rgba(255,80,80,.15); border-color: rgba(255,100,100,.6); color: #ff8080; }
.btn-add-row {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.6); border-radius: 8px; padding: 7px 16px;
    font-size: .83rem; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
}
.btn-add-row:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.9); }

/* CTA bottom */
.btn-sim-cta {
    background: linear-gradient(135deg, var(--purple), #8b79f5); color: #fff;
    border: none; border-radius: 999px; padding: 14px 36px; font-weight: 700;
    font-size: 1rem; text-decoration: none; display: inline-block; transition: all .25s;
    box-shadow: 0 6px 24px rgba(108,92,231,.4);
}
.btn-sim-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(108,92,231,.55); }
.sim-footer-note { color: rgba(255,255,255,.32); font-size: .83rem; }
.sim-footer-note strong { color: rgba(255,255,255,.5); }

/* ── Footer ── */
footer { background: #080810; padding: 44px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand .dot { color: var(--purple-lt); }

/* ── Modal ── */
.modal-content  { background: #1a1a2e; border: 1px solid rgba(108,92,231,.3); border-radius: 18px; }
.modal-header   { border-bottom: 1px solid rgba(255,255,255,.08); }
.modal-title    { color: #fff; }
.btn-close      { filter: invert(1) brightness(.6); }
.form-label     { color: rgba(255,255,255,.58); }
.form-control   { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.form-control:focus { background: rgba(255,255,255,.09); border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,92,231,.22); color: #fff; }
.form-control::placeholder { color: rgba(255,255,255,.22); }
.input-group-text { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.38); }

/* ── Scroll reveal ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: .1s; }
.fd2 { transition-delay: .2s; }

/* ── Responsive ── */
@media (max-width: 991px) { .step-connector { display: none !important; } }
@media (max-width: 768px) {
    .hero-title    { font-size: 2.2rem; }
    .section-title { font-size: 1.85rem; }
    section        { padding: 72px 0; }
    .band-cta      { padding: 68px 0; }
    .hero-badge    { font-size: .8rem; }
}
