:root {
    --bc-orange: #FF6B35;
    --bc-orange-dark: #DC5F00;
    --bc-orange-light: #FF8E5C;
    --bc-orange-soft: rgba(255, 107, 53, 0.08);
    --bc-orange-glow: rgba(255, 107, 53, 0.35);
    --bc-gold: #D4AF37;
    --bc-gold-soft: rgba(212, 175, 55, 0.12);

    --bg: #0A0A0F;
    --bg-soft: #14141C;
    --bg-card: #1A1A24;
    --bg-elevated: #22222E;
    --line: #2A2A38;
    --line-bright: #38384A;

    --text: #F5F5F7;
    --text-muted: #94949E;
    --text-dim: #5C5C6A;

    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-weight: 400;
    font-size: 15.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

p {
    text-align: justify;
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.10) 0%, transparent 35%),
        radial-gradient(circle at 88% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.container-narrow {
    max-width: 920px;
}

.serif {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bc-orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bc-orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--bc-orange-glow);
}

/* === MINIMAL NAV (conversion-focused) === */
nav.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 32px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 21px;
    color: var(--white);
    letter-spacing: -0.03em;
}

.logo-text strong {
    color: var(--bc-orange);
}

.nav-back {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.nav-back:hover {
    color: var(--bc-orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--bc-orange);
    color: var(--white);
    box-shadow: 0 0 0 1px var(--bc-orange), 0 4px 18px var(--bc-orange-glow);
}

.btn-primary:hover {
    background: var(--bc-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px var(--bc-orange-dark), 0 8px 28px var(--bc-orange-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-bright);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--bc-orange);
}

.btn-large {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
}

.btn-xl {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
}

.btn-wa {
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 0 0 1px #25D366, 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
    background: #1FA855;
    transform: translateY(-1px);
}

/* === HERO === */
.hero-landing {
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
}

.hero-bg-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    opacity: 0.25;
    background: var(--bc-orange);
    top: -250px;
    right: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--line-bright);
    padding: 6px 16px 6px 6px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.hero-pill-tag {
    background: linear-gradient(135deg, var(--bc-orange) 0%, var(--bc-orange-dark) 100%);
    color: var(--white);
    padding: 4px 11px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.hero-landing h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text);
}

.hero-landing h1 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--bc-orange) 0%, var(--bc-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: visible;
    padding: 0.05em 0.05em 0.15em 0;
}

.hero-landing h1 .danger-word {
    color: var(--danger);
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 400;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust .dot {
    color: var(--bc-orange);
}

/* Hero side card */
.hero-side-card {
    background: var(--bg-card);
    border: 1px solid var(--line-bright);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero-side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-orange) 0%, var(--bc-gold) 100%);
}

.hero-side-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--bc-orange);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-side-card h3 {
    font-size: 22px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.hero-side-card>p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-form input,
.quick-form select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line-bright);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    transition: border-color 0.2s;
}

.quick-form input:focus,
.quick-form select:focus {
    outline: none;
    border-color: var(--bc-orange);
}

.quick-form-submit {
    background: var(--bc-orange);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-form-submit:hover {
    background: var(--bc-orange-dark);
    transform: translateY(-1px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.form-success h3 {
    color: var(--bc-orange);
    margin-bottom: 12px;
}

.animated-check {
    width: 64px;
    height: 64px;
    background: var(--bc-orange-soft);
    border: 2px solid var(--bc-orange);
    color: var(--bc-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.hero-side-note {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

.hero-side-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.18em;
}

.hero-side-or::before,
.hero-side-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* === PAIN AGITATION === */
.pain-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text);
    margin: 14px 0 16px;
}

.section-header h2 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--bc-orange) 0%, var(--bc-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: visible;
    padding: 0.05em 0.05em 0.15em 0;
}

.section-header h2 .danger {
    color: var(--danger);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
}

.section-header p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--danger);
    border-radius: 12px;
    padding: 24px 22px;
    transition: all 0.25s;
}

.pain-card:hover {
    transform: translateY(-3px);
    border-color: var(--danger);
}

.pain-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.pain-card h4 {
    font-size: 17px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}

.pain-card-cost {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--danger);
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* === CALCULATOR === */
.calculator-section {
    padding: 100px 0;
}

.calc-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--line-bright);
    border-radius: 20px;
    padding: 44px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .calc-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}

.calc-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--bc-orange-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.calc-controls {
    position: relative;
}

.calc-controls h3 {
    font-size: 26px;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.calc-controls h3 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--bc-orange);
}

.calc-controls>p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.calc-input-group {
    margin-bottom: 18px;
}

.calc-input-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--bc-orange);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.calc-input-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    outline: none;
    border: 1px solid var(--line);
}

.calc-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--bc-orange);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px var(--bc-orange-glow);
    border: 2px solid var(--white);
}

.calc-input-group input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--bc-orange);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
}

.calc-value-display {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

.calc-value-current {
    color: var(--bc-orange);
    font-weight: 700;
    font-size: 14px;
}

.calc-result {
    background: var(--bg);
    border: 2px solid var(--bc-orange);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--bc-orange-soft) 0%, transparent 70%);
    pointer-events: none;
}

.calc-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--danger);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}

.calc-result-amount {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    background: linear-gradient(135deg, var(--danger) 0%, var(--bc-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: visible;
    padding: 0.05em 0.05em 0.15em 0;
    margin-bottom: 8px;
    position: relative;
    font-weight: 400;
}

.calc-result-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
}

.calc-result-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    position: relative;
}

.calc-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.calc-detail-row span:first-child {
    color: var(--text-muted);
}

.calc-detail-row span:last-child {
    color: var(--text);
    font-weight: 600;
}

.calc-cta {
    margin-top: 22px;
    width: 100%;
    position: relative;
}

/* === CHECKLIST === */
.checklist-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.checklist-card {
    background: var(--bg-card);
    border: 1px solid var(--line-bright);
    border-radius: 18px;
    padding: 36px;
    max-width: 720px;
    margin: 0 auto;
}

.checklist-card h3 {
    font-size: 22px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-align: center;
}

.checklist-card>p {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.checklist-item:hover {
    border-color: var(--bc-orange);
}

.checklist-item.checked {
    background: var(--bc-orange-soft);
    border-color: var(--bc-orange);
}

.checklist-checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--line-bright);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.2s;
}

.checklist-item.checked .checklist-checkbox {
    background: var(--bc-orange);
    border-color: var(--bc-orange);
}

.checklist-item.checked .checklist-checkbox::after {
    content: '✓';
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.checklist-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
}

.checklist-result {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.checklist-result.active {
    display: block;
}

.checklist-result-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 36px;
    color: var(--bc-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.checklist-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.checklist-result p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* === SOLUTION SECTION === */
.solution-section {
    padding: 100px 0;
}

.solution-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 48px 0;
}

@media (max-width: 1024px) {
    .solution-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .solution-flow {
        grid-template-columns: 1fr;
    }
}

.solution-step {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
    transition: all 0.3s;
}

.solution-step:hover {
    background: var(--bg-elevated);
    border-color: var(--bc-orange);
    transform: translateY(-3px);
}

.solution-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bc-orange);
    opacity: 0.6;
    border-radius: 14px 14px 0 0;
}

.solution-step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 44px;
    color: var(--bc-orange);
    line-height: 0.85;
    margin-bottom: 16px;
}

.solution-step h4 {
    font-size: 17px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.solution-step p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.solution-step-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--bc-gold);
    letter-spacing: 0.1em;
    background: var(--bc-gold-soft);
    border: 1px solid var(--bc-gold);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* === MODULES INCLUDED === */
.modules-included {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--line-bright);
    border-radius: 18px;
    padding: 36px;
    margin-top: 32px;
}

.modules-included h4 {
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .modules-list {
        grid-template-columns: 1fr;
    }
}

.module-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--text);
    transition: all 0.2s;
}

.module-item:hover {
    border-color: var(--bc-orange);
}

.module-item::before {
    content: '✓';
    color: var(--bc-orange);
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--bc-orange-soft);
    border: 1px solid var(--bc-orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* === CASES === */
.cases-landing {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--line-bright);
    border-radius: 16px;
    padding: 28px 26px;
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-3px);
    border-color: var(--bc-orange);
}

.case-sector {
    display: inline-flex;
    background: var(--bc-orange-soft);
    border: 1px solid var(--bc-orange);
    color: var(--bc-orange);
    padding: 4px 11px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.case-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.case-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--bc-orange);
    display: block;
    line-height: 0.4;
    margin-bottom: 8px;
}

.case-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.case-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.case-result-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--bc-orange);
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 400;
}

.case-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* === BIG CTA === */
.big-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.big-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--bc-orange-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-card h2 {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
}

.cta-card h2 em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--bc-orange) 0%, var(--bc-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: visible;
    padding: 0.05em 0.05em 0.15em 0;
}

.cta-card>p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.cta-options span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-options .check {
    color: var(--success);
    font-weight: 700;
}

/* === FAQ === */
.faq-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--bc-orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 15.5px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-orange);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer-inner strong {
    color: var(--text);
}

/* === STICKY CTA BAR === */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--bc-orange);
    padding: 14px 24px;
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 40px rgba(255, 107, 53, 0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.sticky-cta-text strong {
    color: var(--bc-orange);
}

.sticky-cta-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .sticky-cta-text {
        display: none;
    }

    .sticky-cta-inner {
        justify-content: center;
    }
}

/* === FOOTER === */
footer.landing-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 40px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-inner .logo-link {
    gap: 10px;
}

.footer-inner .logo-img {
    height: 28px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .footer-meta {
        align-items: flex-start;
    }
}

.footer-disclaimer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* === WhatsApp floating === */
.wa-float {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    z-index: 49;
    transition: transform 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.15);
    }
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive utility */
@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}


.logo-link.logo-only .logo-img {
    height: 48px;
}

nav.scrolled .logo-link.logo-only .logo-img {
    height: 42px;
}

.footer-brand .logo-link.logo-only .logo-img {
    height: 44px;
}