/* CSS Variables & Theme Setup — SUREBET Brand */
:root {
    --bg-color: #080808;
    --card-bg: rgba(16, 16, 16, 0.85);
    --card-border: rgba(192, 57, 43, 0.18);
    --primary: #C0392B;
    --primary-light: #E74C3C;
    --secondary: #C9A227;
    --secondary-light: #F0C040;
    --text-main: #FFFFFF;
    --text-muted: #9E9E9E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.outfit-font {
    font-family: 'Outfit', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* Gold gradient for highlight text */
.gradient-text {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Red gradient for danger/action text */
.red-text {
    color: var(--primary-light);
}

/* ==============================
   LOGO COMPONENTS
   ============================== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.logo-name .sure {
    color: #FFFFFF;
}

.logo-name .bet {
    color: var(--primary-light);
}

.logo-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55); }
    70%  { box-shadow: 0 0 0 22px rgba(192, 57, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate { opacity: 0; }

.fade-in-up {
    animation: fadeUp 0.8s ease forwards;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 100;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192, 57, 43, 0.25);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -2;
}

/* Red glow radial overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.12) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-color) 75%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
}

.badge {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.35);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.typewriter-cursor {
    display: inline-block;
    color: var(--secondary);
    font-weight: 900;
    margin-left: 3px;
    animation: cursor-blink 0.75s step-end infinite;
}

.typewriter-cursor.hidden {
    display: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    font-weight: 900;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

/* ==============================
   CTA BUTTONS
   ============================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #A93226 0%, #E74C3C 100%);
    color: #FFFFFF;
    padding: 20px 52px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(192, 57, 43, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(192, 57, 43, 0.55);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

/* Gold premium variant */
.cta-button.premium {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
}

.cta-button.premium:hover {
    background: rgba(201, 162, 39, 0.08);
    box-shadow: 0 0 32px rgba(201, 162, 39, 0.35);
}

.cta-button.premium span {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==============================
   HERO AUTH BADGE
   ============================== */
.hero-auth {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: rgba(16, 16, 16, 0.9);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    backdrop-filter: blur(10px);
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid var(--bg-color);
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.hero-auth strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-main);
}

.hero-auth p {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* ==============================
   DIVIDER
   ============================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.3), transparent);
    margin: 0 auto;
    max-width: 800px;
}

/* ==============================
   REALITY SECTION
   ============================== */
.reality-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.reality-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.reality-card:hover { transform: translateY(-5px); }

.reality-card.danger {
    border-top: 4px solid var(--primary);
}

.reality-card.success {
    border-top: 4px solid var(--secondary);
    background: rgba(201, 162, 39, 0.04);
}

.reality-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.reality-card.danger h3 { color: var(--primary-light); }
.reality-card.success h3 { color: var(--secondary); }
.reality-card p { color: var(--text-muted); }

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works { padding: 100px 0; }

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 64px;
    font-weight: 800;
}

.steps {
    display: grid;
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    gap: 0;
    align-items: start;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    margin: 0 4px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.step-card p { color: var(--text-muted); }

/* ==============================
   DELIVERABLES
   ============================== */
.deliverables {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(14, 10, 10, 0.9) 100%);
}

.deliverables-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Subtle gold top accent line */
.deliverables-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.deliverable-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ==============================
   FINAL CTA
   ============================== */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 65%);
    z-index: -1;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    margin-top: 24px;
}

.scarcity {
    color: var(--secondary) !important;
    font-size: 0.95rem !important;
    margin-top: 24px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ==============================
   FOOTER
   ============================== */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(192, 57, 43, 0.15);
    background: #040404;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==============================
   ACTIVITY TICKER
   ============================== */
.activity-ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(12, 12, 12, 0.95);
    border-top: 1px solid rgba(192, 57, 43, 0.15);
    border-bottom: 1px solid rgba(192, 57, 43, 0.15);
    padding: 10px 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.ticker-item .ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.8);
}

.ticker-item .ticker-amount {
    color: var(--secondary);
    font-weight: 700;
}

.ticker-item .ticker-time {
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
}

/* ==============================
   GLASSMORPHISM MESH BLOBS
   ============================== */
.mesh-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
}

.mesh-blob--red  { background: radial-gradient(circle, #C0392B, transparent 70%); }
.mesh-blob--gold { background: radial-gradient(circle, #C9A227, transparent 70%); }
.mesh-blob--cyan { background: radial-gradient(circle, #00B4FF, transparent 70%); }

.reality-section,
.social-proof {
    position: relative;
    overflow: hidden;
}

.reality-section .container,
.social-proof .container {
    position: relative;
    z-index: 1;
}

/* ==============================
   STEP CONNECTORS
   ============================== */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    margin-top: 60px; /* align with card center roughly */
}

.connector-svg {
    width: 100%;
    height: 40px;
    overflow: visible;
}

.connector-line {
    stroke: url(#connectorGrad);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.connector-line.lit {
    opacity: 1;
    animation: dash-flow 1.2s linear infinite;
}

@keyframes dash-flow {
    to { stroke-dashoffset: -20; }
}

/* ==============================
   COUNTDOWN TIMER
   ============================== */
.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.3);
    border-radius: 12px;
    padding: 12px 24px;
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 8px;
    padding: 6px 10px;
}

.countdown-unit span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
}

.countdown-unit small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.countdown-sep {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ==============================
   SOCIAL PROOF / TESTIMONIALS
   ============================== */
.social-proof {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: rgba(192, 57, 43, 0.07);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card.featured {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.04);
}

.testimonial-card.featured::after {
    content: '⭐ Destaque';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 100px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 57, 43, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-header > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.testimonial-header strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.verified {
    font-size: 0.72rem;
    color: #4CAF50;
    font-weight: 600;
}

.stars {
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.proof-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
}

/* Stats bar */
.proof-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes counter-flash {
    0%   { opacity: 1; }
    40%  { opacity: 0.4; text-shadow: 0 0 20px rgba(201, 162, 39, 0.9); }
    100% { opacity: 1; text-shadow: none; }
}

.counter.done {
    animation: counter-flash 0.5s ease forwards;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

/* ==============================
   FAQ
   ============================== */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(192, 57, 43, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-muted);
    padding: 0 28px 24px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ==============================
   FLOATING TELEGRAM BUTTON
   ============================== */
.float-telegram {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 136, 204, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float-bounce 3s ease-in-out infinite;
}

.float-telegram:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 136, 204, 0.6);
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {

    /* --- Layout grids --- */
    .reality-grid       { grid-template-columns: 1fr; }
    .steps              { grid-template-columns: 1fr; }
    .step-connector     { display: none; }
    .testimonials-grid  { grid-template-columns: 1fr; }

    /* --- Container padding --- */
    .container { padding: 0 16px; }

    /* --- Navbar --- */
    .navbar { padding: 14px 0; }
    .logo-name    { font-size: 1.2rem; }
    .logo-tagline { font-size: 0.48rem; letter-spacing: 1.5px; }

    /* --- Hero --- */
    .hero {
        padding: 110px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        padding: 0 16px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 7px 14px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 16px;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    /* --- Countdown --- */
    .countdown-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 16px;
        width: 100%;
    }

    .countdown { justify-content: center; }

    .countdown-unit { min-width: 48px; }
    .countdown-unit span { font-size: 1.4rem; }

    /* --- CTA button --- */
    .cta-button {
        padding: 16px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* --- Hero auth badge --- */
    .hero-auth {
        flex-direction: column;
        text-align: center;
        border-radius: 16px;
        padding: 14px 20px;
        width: 100%;
    }

    .avatars { justify-content: center; }

    /* --- Section titles --- */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: -28px;
        margin-bottom: 40px;
    }

    /* --- Reality cards --- */
    .reality-section { padding: 60px 0; }
    .reality-card { padding: 28px 24px; }

    /* --- How it works --- */
    .how-it-works { padding: 60px 0; }
    .step-card {
        padding: 28px 24px;
        margin: 0;
        text-align: center;
    }
    .step-icon { margin: 0 auto 20px; }
    .step-number { right: 12px; font-size: 3rem; }

    /* --- Deliverables --- */
    .deliverables { padding: 60px 0; }
    .deliverables-box { padding: 28px 20px; }
    .deliverable-item { font-size: 1rem; gap: 12px; padding: 16px 0; }

    /* --- Social proof --- */
    .social-proof { padding: 60px 0; }
    .testimonial-card { padding: 24px 20px; }

    .proof-stats {
        flex-direction: column;
        gap: 24px;
        padding: 28px 20px;
        text-align: center;
    }

    .stat-number { font-size: 1.8rem; }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    /* --- FAQ --- */
    .faq-section { padding: 60px 0; }
    .faq-question { font-size: 0.9rem; padding: 18px 16px; }
    .faq-answer p { padding: 0 16px 18px; font-size: 0.9rem; }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* --- Final CTA --- */
    .final-cta { padding: 60px 0; }
    .final-cta h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .final-cta p  { font-size: 1rem; margin-bottom: 32px; }

    /* --- Floating Telegram --- */
    .float-telegram span { display: none; }
    .float-telegram {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    /* --- Footer --- */
    footer { padding: 28px 0; }
}
