:root {
    --yellow: #ffcf24;
    --orange: #ff7a1a;
    --red: #ef3340;
    --blue: #1d6cff;
    --cyan: #00c2ff;
    --ink: #111827;
    --cream: #fff7df;
    --paper: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

body::selection {
    background: var(--yellow);
    color: var(--ink);
}

.comic-navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 4px solid var(--ink);
    box-shadow: 0 8px 0 rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 3px solid var(--ink);
    background: var(--yellow);
    border-radius: 50%;
    font-family: 'Bangers', cursive;
    font-size: 1.25rem;
    box-shadow: 4px 4px 0 var(--ink);
}

.nav-link {
    font-weight: 800;
    color: var(--ink);
}

.nav-link:hover {
    color: var(--red);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 207, 36, 0.55) 0 12%, transparent 13%),
        radial-gradient(circle at 85% 20%, rgba(29, 108, 255, 0.18) 0 13%, transparent 14%),
        linear-gradient(135deg, #fff7df 0%, #ffffff 48%, #ffe182 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: radial-gradient(var(--ink) 1px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow: 4px 4px 0 var(--ink);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.section-tag.light {
    color: var(--ink);
    background: var(--yellow);
}

.hero-title,
.section-title {
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.hero-title {
    font-family: 'Bangers', cursive;
    color: var(--red);
    text-shadow: 5px 5px 0 var(--ink), 8px 8px 0 var(--yellow);
    letter-spacing: 0.02em;
}

.hero-subtitle,
.section-text {
    font-size: 1.16rem;
    line-height: 1.75;
    color: #374151;
}

.max-width {
    max-width: 760px;
}

.comic-btn,
.comic-btn-outline {
    border: 3px solid var(--ink);
    border-radius: 0;
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.comic-btn {
    background: var(--red);
    border-color: var(--ink);
}

.comic-btn:hover,
.comic-btn-outline:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--ink);
}

.comic-btn-outline {
    background: var(--paper);
}

.stats-row .stat-card {
    padding: 1rem;
    border: 3px solid var(--ink);
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
}

.stat-card strong {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    line-height: 1;
    color: var(--blue);
}

.stat-card span {
    display: block;
    font-weight: 800;
    margin-top: 0.2rem;
}

.hero-comic-card {
    position: relative;
    max-width: 460px;
    padding: 1rem;
    border: 5px solid var(--ink);
    background: var(--paper);
    box-shadow: 12px 12px 0 var(--ink);
    transform: rotate(1.5deg);
}

.speech-bubble {
    position: absolute;
    top: -44px;
    right: 18px;
    z-index: 2;
    width: 245px;
    padding: 0.85rem 1rem;
    border: 4px solid var(--ink);
    background: var(--paper);
    font-weight: 900;
    line-height: 1.15;
    box-shadow: 5px 5px 0 var(--yellow);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 45px;
    width: 28px;
    height: 28px;
    background: var(--paper);
    border-right: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    transform: rotate(45deg);
}

.comic-panel {
    border: 4px solid var(--ink);
    margin-bottom: 0.9rem;
    min-height: 140px;
    overflow: hidden;
}

.panel-yellow {
    display: grid;
    place-items: center;
    min-height: 260px;
    background:
        radial-gradient(circle, rgba(255,255,255,0.8) 0 2px, transparent 3px),
        var(--yellow);
    background-size: 18px 18px;
}

.hero-face {
    position: relative;
    width: 190px;
    height: 190px;
    border: 5px solid var(--ink);
    border-radius: 50%;
    background: #ffd39a;
    box-shadow: 8px 8px 0 rgba(17,24,39,0.18);
}

.mask {
    position: absolute;
    top: 52px;
    left: 25px;
    width: 140px;
    height: 54px;
    border: 4px solid var(--ink);
    border-radius: 45% 45% 50% 50%;
    background: var(--blue);
}

.eye {
    position: absolute;
    top: 70px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--paper);
    border: 3px solid var(--ink);
    z-index: 2;
}

.eye.left { left: 62px; }
.eye.right { right: 62px; }

.smile {
    position: absolute;
    left: 68px;
    bottom: 42px;
    width: 54px;
    height: 28px;
    border-bottom: 5px solid var(--ink);
    border-radius: 0 0 50px 50px;
}

.panel-blue {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.6rem;
    min-height: 95px;
    background: var(--blue);
    color: var(--paper);
}

.panel-blue span {
    padding: 0.4rem 0.7rem;
    border: 3px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    font-weight: 900;
    transform: rotate(-3deg);
}

.panel-red {
    display: grid;
    place-items: center;
    min-height: 130px;
    margin-bottom: 0;
    background: var(--red);
    color: var(--paper);
    text-align: center;
}

.panel-red strong {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    line-height: 0.9;
    color: var(--yellow);
    text-shadow: 4px 4px 0 var(--ink);
}

.panel-red p {
    margin: 0;
    font-weight: 900;
}

.section-padding {
    padding: 6.5rem 0;
}

.bg-cream {
    background: var(--cream);
}

.feature-card,
.benefit-card,
.contact-card,
.lead-form {
    border: 4px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
}

.feature-card {
    padding: 2rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 1rem 0 0.7rem;
}

.feature-card p,
.timeline-content p,
.contact-card span,
.form-note {
    color: #4b5563;
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border: 3px solid var(--ink);
    background: var(--yellow);
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    box-shadow: 4px 4px 0 var(--ink);
}

.program-section {
    background:
        radial-gradient(circle at top right, rgba(239, 51, 64, 0.35), transparent 28%),
        #111827 !important;
}

.program-title-block {
    top: 105px;
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.2rem;
    align-items: stretch;
}

.timeline-number {
    display: grid;
    place-items: center;
    min-height: 118px;
    border: 4px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    font-family: 'Bangers', cursive;
    font-size: 1.7rem;
    box-shadow: 6px 6px 0 rgba(255,255,255,0.22);
}

.timeline-content {
    padding: 1.5rem;
    border: 4px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 6px 6px 0 rgba(255,255,255,0.22);
}

.timeline-content h3 {
    font-weight: 900;
    margin-bottom: 0.55rem;
}

.benefit-card {
    min-height: 145px;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.35;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px) rotate(-1deg);
}

.cta-strip {
    padding: 4rem 0;
    background:
        linear-gradient(90deg, rgba(17,24,39,0.9), rgba(17,24,39,0.75)),
        radial-gradient(circle at 20% 20%, var(--yellow), transparent 24%),
        var(--red);
    color: var(--paper);
    border-block: 5px solid var(--ink);
}

.cta-strip h2 {
    font-weight: 900;
    letter-spacing: -0.04em;
}

.cta-strip p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
}

.contact-card {
    display: grid;
    gap: 0.45rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-card strong {
    font-size: 1.15rem;
    font-weight: 900;
}

.lead-form {
    padding: 2rem;
}

.form-label {
    font-weight: 900;
}

.form-control,
.form-select {
    min-height: 52px;
    border: 3px solid var(--ink);
    border-radius: 0;
    font-weight: 700;
}

textarea.form-control {
    min-height: 130px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 0.25rem rgba(239, 51, 64, 0.18);
}

.form-note {
    margin: 0;
    font-size: 0.9rem;
}

.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .speech-bubble {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .program-title-block {
        position: static !important;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 4.5rem 0;
    }

    .hero-title {
        font-size: 4rem;
        text-shadow: 3px 3px 0 var(--ink), 5px 5px 0 var(--yellow);
    }

    .hero-comic-card,
    .feature-card,
    .benefit-card,
    .lead-form,
    .contact-card {
        box-shadow: 5px 5px 0 var(--ink);
    }

    .lead-form {
        padding: 1.25rem;
    }
}
