/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 168, 83, 0.3);
    --gold-subtle: rgba(212, 168, 83, 0.08);
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #1a1a1a;
    --black-4: #222222;
    --black-5: #2a2a2a;
    --gray-900: #1f1f1f;
    --gray-800: #333333;
    --gray-700: #4a4a4a;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e0e0e0;
    --white: #ffffff;
    --green: #10b981;
    --green-light: rgba(16, 185, 129, 0.15);
    --yellow-light: rgba(245, 158, 11, 0.15);
    --red-light: rgba(239, 68, 68, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.2);
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--gray-300);
    line-height: 1.6;
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--black);
    box-shadow: 0 4px 25px var(--gold-glow);
    font-weight: 800;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 83, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-dark {
    background: var(--black-3);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
    font-weight: 800;
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-wa {
    background: #25d366;
    color: var(--white);
    width: 100%;
    font-size: 1.05rem;
    padding: 18px 32px;
}

.btn-wa:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ===== FLOATING CTA (Mobile) ===== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.floating-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .floating-cta { display: block; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo-badge {
    background: var(--gold-subtle);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(212, 168, 83, 0.03) 0%, transparent 40%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-live {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-limited {
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 48px;
}

.hero-cta-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--black-5);
}

/* ===== TICKER ===== */
.ticker {
    background: var(--black-3);
    padding: 12px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

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

/* ===== SECTION COMMON ===== */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.tag-white {
    background: rgba(255,255,255,0.08);
    color: var(--gold-light);
    border-color: rgba(212, 168, 83, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== SCHEDULE ===== */
.schedule {
    background: var(--black-2);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.schedule-card {
    background: var(--black-3);
    border: 1px solid var(--black-5);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.schedule-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-date {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.schedule-time {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.schedule-topic {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.schedule-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.schedule-status.available {
    background: var(--green-light);
    color: #34d399;
}

.schedule-status.full {
    background: var(--red-light);
    color: #f87171;
}

.schedule-status.almost-full {
    background: var(--yellow-light);
    color: #fbbf24;
}

.schedule-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px;
    color: var(--gray-500);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--black-5);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 14px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== PROBLEMS ===== */
.problems {
    background: var(--black);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--black-5);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: var(--shadow-gold);
}

.problem-visual {
    margin-bottom: 18px;
}

.problem-emoji {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.problem-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.problems-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.05rem;
    color: var(--gray-300);
}

.problems-cta strong {
    color: var(--gold);
}

/* ===== SOLUTIONS ===== */
.solutions {
    background: var(--black-2);
}

.solutions-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--black-5);
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

.solution-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-subtle);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
}

.solution-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.solution-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience {
    background: var(--black);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.audience-card {
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--black-5);
    transition: all 0.3s ease;
}

.audience-card:hover {
    background: var(--gold-subtle);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.audience-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.audience-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.audience-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--black-2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.benefit-card {
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--black-5);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.3);
}

.benefit-highlight {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
}

.benefit-highlight h3,
.benefit-highlight p {
    color: var(--black);
}

.benefit-icon-wrap {
    font-size: 2rem;
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== URGENCY / COUNTDOWN ===== */
.urgency {
    background: var(--black);
    padding: 0;
}

.urgency .container {
    padding: 0;
    max-width: 100%;
}

.urgency-card {
    position: relative;
    background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 100%);
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.urgency-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.urgency-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    position: relative;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius);
    padding: 16px 24px;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    margin-top: 6px;
    text-transform: uppercase;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.urgency-card .btn {
    position: relative;
}

.urgency-card .section-tag {
    position: relative;
    margin-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--black-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
}

.testimonial-card {
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--black-5);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
    border-color: rgba(212, 168, 83, 0.3);
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 14px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq {
    background: var(--black);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-3);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid var(--black-5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    font-family: var(--font);
    gap: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
    padding: 90px 0 120px;
}

.cta-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--black-3);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 168, 83, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.cta-price-box {
    text-align: center;
    margin-bottom: 32px;
}

.price-slash {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 4px 0 8px;
}

.price-rp {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.price-save {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.payment-box {
    background: var(--black-4);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid var(--black-5);
}

.payment-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.payment-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.qris-wrapper {
    max-width: 260px;
    margin: 0 auto 14px;
    background: var(--white);
    padding: 8px;
    border-radius: 8px;
}

.qris-img {
    width: 100%;
    border-radius: 4px;
}

.payment-info {
    margin-top: 8px;
}

.payment-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
}

.payment-nmid {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.steps-box {
    margin-bottom: 24px;
}

.steps-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.step-item strong {
    color: var(--gold);
}

.guarantee-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--black-5);
}

.guarantee-item {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== REGISTRATION FORM ===== */
.registration-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--black-5);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--white);
    background: var(--black-4);
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-600);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--black-3);
    color: var(--white);
}

.registration-form .btn {
    margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-2);
    color: var(--gray-500);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}

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

.footer .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gold);
}

.footer-copy {
    font-size: 0.75rem;
    margin-top: 12px;
    color: var(--gray-600);
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: var(--gray-600);
    max-width: 450px;
    margin-top: 8px;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .countdown-item { padding: 12px 16px; min-width: 65px; }
    .countdown-number { font-size: 2rem; }
    .cta-card { padding: 28px 20px; }
    section { padding: 64px 0; }
    .urgency-card { padding: 60px 20px; }
    body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .hero-badges { flex-direction: column; }
    .schedule-grid { grid-template-columns: 1fr; }
    .problems-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .solutions-list { gap: 12px; }
    .solution-item { padding: 20px; gap: 14px; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .problem-card,
    .solution-item,
    .audience-card,
    .benefit-card,
    .testimonial-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .problem-card:nth-child(1) { animation-delay: 0.1s; }
    .problem-card:nth-child(2) { animation-delay: 0.2s; }
    .problem-card:nth-child(3) { animation-delay: 0.3s; }
    .solution-item:nth-child(1) { animation-delay: 0.1s; }
    .solution-item:nth-child(2) { animation-delay: 0.15s; }
    .solution-item:nth-child(3) { animation-delay: 0.2s; }
    .solution-item:nth-child(4) { animation-delay: 0.25s; }
    .solution-item:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== GUARANTEE HIGHLIGHT ===== */
.guarantee-highlight {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    animation: blink-gold 1.5s ease-in-out infinite;
}

.guarantee-sub {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 12px;
}

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

/* ===== LOGO IMAGE ===== */
.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

/* ===== ENDORSEMENT / VIDEO ===== */
.endorsement {
    background: var(--black-2);
    padding: 70px 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.video-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(212, 168, 83, 0.3);
    box-shadow: var(--shadow-gold);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
