/* ===========================
   ТОЧКА ПРОРЫВА — Main Styles
   =========================== */

:root {
    --primary: #0f1f3d;
    --primary-light: #1a3561;
    --accent: #ff6b1a;
    --accent-hover: #e55a0d;
    --accent-light: rgba(255, 107, 26, 0.12);
    --red: #e53935;
    --green: #2e7d32;
    --white: #ffffff;
    --gray-light: #f5f7fb;
    --gray-mid: #e8ecf5;
    --gray-text: #6b7280;
    --dark-text: #111827;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(15,31,61,0.12);
    --shadow-lg: 0 20px 60px rgba(15,31,61,0.18);
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.7;
}
.highlight-orange { color: var(--accent); }
.red-text { color: var(--red); }
.red-blink { animation: blink-red 1.2s ease-in-out infinite; }
.mt-20 { margin-top: 20px; }

@keyframes blink-red {
    0%, 100% { color: var(--red); }
    50% { color: #ff6b6b; }
}

/* ===== BUTTONS ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    color: white;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 16px;
    padding: 18px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(255,107,26,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--accent-hover), #e87030);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,107,26,0.55);
}
.btn-cta.large-btn {
    font-size: 18px;
    padding: 22px 44px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* PULSE animation */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,107,26,0.4); transform: scale(1); }
    50% { box-shadow: 0 12px 50px rgba(255,107,26,0.7); transform: scale(1.03); }
}
.pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* ===== STICKY TOP BAR ===== */
.sticky-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    color: white;
    padding: 10px 0;
}
.sticky-topbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-text { font-size: 14px; }
.topbar-text strong { color: var(--accent); }
.topbar-btn {
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background var(--transition);
}
.topbar-btn:hover { background: var(--accent-hover); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2b5e 50%, #1a1035 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,150,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-overlay { display: none; }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cfe8a;
    box-shadow: 0 0 8px #4cfe8a;
    animation: blink-green 1.5s ease-in-out infinite;
}
@keyframes blink-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-title {
    font-family: var(--font-main);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 12px;
}
.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* COUNTDOWN */
.countdown-wrap {
    margin-bottom: 28px;
}
.countdown-label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.countdown {
    display: flex;
    gap: 12px;
    align-items: center;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 18px;
    min-width: 72px;
    backdrop-filter: blur(10px);
}
.countdown-num {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.countdown-text {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.countdown-sep {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 16px;
}

/* SEATS BAR */
.hero-seats {
    margin-bottom: 28px;
}
.seats-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.seats-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff8c42);
    border-radius: 10px;
    position: relative;
    transition: width 1s ease;
}
.seats-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff8c42;
    box-shadow: 0 0 8px rgba(255,107,26,0.8);
}
.seats-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.hero-guarantee {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.hero-guarantee i { margin-right: 4px; color: rgba(255,255,255,0.4); }

/* HERO PHOTO */
.hero-image { display: flex; justify-content: center; }
.hero-photo-wrap {
    position: relative;
    width: 380px;
    height: 480px;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255,255,255,0.1);
}
.hero-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.15);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.hero-photo-placeholder i { font-size: 60px; }
.hero-photo-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--accent);
    color: white;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(255,107,26,0.4);
    text-align: center;
}
.hpb-num {
    display: block;
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.hpb-text {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
}

/* SCROLL HINT */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    z-index: 2;
}
@keyframes bounce-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
.bounce { animation: bounce-y 1.5s ease-in-out infinite; }

/* ===== URGENCY ALERT ===== */
.urgency-alert {
    background: linear-gradient(90deg, #b71c1c, #c62828, #b71c1c);
    padding: 18px 0;
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.urgency-icon { font-size: 24px; }
.urgency-text {
    color: white;
    font-size: 15px;
    text-align: center;
}
.urgency-text strong { font-weight: 800; }
.urgency-btn {
    background: white;
    color: var(--red);
    font-weight: 800;
    font-size: 14px;
    padding: 8px 22px;
    border-radius: 30px;
    white-space: nowrap;
    transition: all var(--transition);
}
.urgency-btn:hover { background: #fff0f0; transform: scale(1.03); }

/* ===== SOCIAL NUMBERS ===== */
.social-numbers {
    background: var(--gray-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-mid);
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.num-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.num-big {
    font-family: var(--font-main);
    font-size: clamp(44px, 6vw, 64px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.num-plus {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    margin-left: -4px;
    line-height: 1;
}
.num-label {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.4;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0;
    background: white;
}
.problem-section .section-title,
.problem-section .section-eyebrow {
    text-align: center;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.problem-item {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--gray-mid);
    transition: all var(--transition);
}
.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255,107,26,0.2);
}
.problem-icon { font-size: 36px; }
.problem-item p { font-size: 15px; line-height: 1.6; color: var(--dark-text); }

/* AGITATION BLOCK */
.agitation-block {
    margin-top: 20px;
}
.agitation-inner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3561 100%);
    color: white;
    border-radius: var(--radius);
    padding: 48px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.agitation-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,107,26,0.08);
    pointer-events: none;
}
.agitation-inner h3 {
    font-family: var(--font-main);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
}
.agitation-inner p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 8px;
}
.agitation-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 24px auto;
    border-radius: 3px;
}
.agitation-cta-text {
    font-size: 20px !important;
    font-weight: 600;
    opacity: 1 !important;
    margin-bottom: 28px !important;
}
.agitation-cta-text strong { color: var(--accent); }

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}
.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
    text-align: left;
}
.sf-item {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(15,31,61,0.06);
    transition: all var(--transition);
    border: 1px solid var(--gray-mid);
}
.sf-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.sf-icon {
    width: 54px;
    height: 54px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--accent);
}
.sf-text h4 {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.sf-text p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}
.result-item {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--gray-mid);
    transition: all var(--transition);
}
.result-item:hover {
    border-color: rgba(46,125,50,0.3);
    box-shadow: 0 4px 20px rgba(46,125,50,0.08);
    transform: translateY(-2px);
}
.result-check {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.result-item h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}
.result-item p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}
.testimonials-section .section-eyebrow { color: var(--accent); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.6); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}
.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.testi-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testi-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testi-result {
    display: inline-block;
    background: rgba(255,107,26,0.2);
    color: #ffb380;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,107,26,0.3);
}
.testi-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    font-size: 14px;
    color: white;
    font-weight: 700;
}
.testi-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--gray-light);
}
.about-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}
.about-photo-col { display: flex; flex-direction: column; gap: 20px; }
.about-photo-wrap { position: relative; }
.about-photo {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-position: center top;
    max-height: 500px;
    object-fit: cover;
}
.about-photo-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    background: var(--gray-mid);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--gray-text);
    font-size: 14px;
}
.about-photo-placeholder i { font-size: 80px; }
.about-facts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.af-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(15,31,61,0.06);
}
.af-item i { color: var(--accent); width: 18px; }

.about-tagline {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.4;
}
.about-text-col p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-credentials {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ac-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.5;
}
.ac-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }

/* ===== PROGRAM SECTION ===== */
.program-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.prog-item {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: left;
    border: 1px solid var(--gray-mid);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.prog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff8c42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.prog-item:hover::before { transform: scaleX(1); }
.prog-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255,107,26,0.2);
}
.prog-week {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.prog-content h4 {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.prog-content p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}
.pricing-note {
    background: rgba(229,57,53,0.08);
    border: 1px solid rgba(229,57,53,0.2);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    font-size: 15px;
    color: var(--dark-text);
    margin-bottom: 40px;
    display: inline-block;
}
.pricing-note strong { color: var(--red); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    border: 2px solid var(--gray-mid);
    transition: all var(--transition);
    text-align: left;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(255,107,26,0.3);
    box-shadow: var(--shadow-lg);
}
.pricing-featured {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(255,107,26,0.08), var(--shadow-lg);
}
.pricing-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-badge-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 8px;
}
.pricing-card-header h3 {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}
.price-old {
    font-size: 20px;
    color: var(--gray-text);
    text-decoration: line-through;
}
.price-new {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
}
.pricing-save {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.5;
}
.pricing-features li i {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.pricing-features li .fa-check { color: var(--green); }
.pricing-features li .fa-times { color: #ccc; }
.pricing-features li.disabled { opacity: 0.45; }
.highlight-feature { color: var(--accent) !important; }
.btn-pricing {
    display: block;
    text-align: center;
    background: white;
    color: var(--primary);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-pricing:hover {
    background: var(--primary);
    color: white;
}
.btn-cta-pricing {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    color: white;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 15px;
    padding: 18px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(255,107,26,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-cta-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,107,26,0.5);
}
.pricing-note-small {
    text-align: center;
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 12px;
}

/* GUARANTEES */
.guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 260px;
}
.guarantee-item i {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.guarantee-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}
.guarantee-item span {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}
.faq-list {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-mid);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    transition: all var(--transition);
    user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question i {
    font-size: 14px;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ===== FINAL PUSH ===== */
.final-push-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2b5e 100%);
    text-align: center;
}
.final-push-inner h2 {
    font-family: var(--font-main);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
}
.final-scenarios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.scenario-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px 16px;
    transition: all var(--transition);
}
.scenario-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.scenario-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.scenario-item p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.scenario-item strong { color: white; }

.final-or {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
}
.or-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.final-or span {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
}

.final-bad {
    max-width: 580px;
    margin: 0 auto 32px;
    background: rgba(229,57,53,0.12);
    border: 1px solid rgba(229,57,53,0.2);
    border-radius: var(--radius);
    padding: 20px 28px;
}
.final-bad p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.final-choice {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}
.final-choice .red-text { font-size: 24px; }

.final-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.final-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}
.final-badges i { color: var(--accent); }

/* ===== STICKY FOOTER CTA ===== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.sticky-footer.visible { transform: translateY(0); }
.sf-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.sf-text { color: white; }
.sf-text strong {
    display: block;
    font-family: var(--font-main);
    font-size: 15px;
}
.sf-text span {
    font-size: 13px;
    opacity: 0.65;
}
.sf-btn {
    padding: 12px 28px !important;
    font-size: 14px !important;
    animation: pulse-glow 2s ease-in-out infinite;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #080f1e;
    padding: 40px 0;
    color: rgba(255,255,255,0.5);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-logo {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 18px;
    color: white;
}
.logo-dot { color: var(--accent); }
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    color: white;
}
.footer-copy {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .countdown { justify-content: center; }
    .hero-seats { max-width: 400px; margin: 0 auto 28px; }
    .about-inner { grid-template-columns: 1fr; }
    .about-photo-col { max-width: 380px; margin: 0 auto; }
    .final-scenarios { grid-template-columns: repeat(2, 1fr); }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 90px 0 60px; }
    .hero-title { font-size: 36px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: 1fr; }
    .solution-features { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    .final-scenarios { grid-template-columns: 1fr 1fr; }
    .agitation-inner { padding: 32px 24px; }
    .countdown { flex-wrap: wrap; }
    .countdown-item { min-width: 60px; padding: 10px 14px; }
    .countdown-num { font-size: 26px; }
    .sf-inner { flex-direction: column; text-align: center; gap: 10px; }
    .footer-inner { justify-content: center; text-align: center; }
    .footer-links { justify-content: center; }
    .guarantees { flex-direction: column; align-items: center; }
    .guarantee-item { max-width: 100%; }
    .program-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 30px; }
    .btn-cta { font-size: 14px; padding: 16px 24px; }
    .btn-cta.large-btn { font-size: 15px; padding: 18px 28px; }
    .countdown-sep { display: none; }
    .final-scenarios { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .final-badges { gap: 14px; }
    .final-badges span { font-size: 12px; }
    .sticky-topbar .container { flex-direction: column; gap: 6px; }
    .urgency-inner { flex-direction: column; text-align: center; gap: 12px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pricing-card { padding: 24px 20px; }
}

.button-buy {
    max-width: 100%;
    display: block;
    text-wrap: auto;
}
