/* =======================
   CSS Reset & Variables
   ======================= */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(22, 22, 26, 0.7);
    --bg-card-solid: #151518;
    
    --primary: #FF3B30; /* Red/Orange for alerts */
    --accent: #FFD60A; /* Yellow for CTA */
    --accent-glow: rgba(255, 214, 10, 0.5);
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1A6;
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Bangers', sans-serif; /* For super-punchy moments, though Inter 900 is often cleaner */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-highlight { color: var(--accent); }
.text-accent { color: var(--primary); }
.text-green { color: #32D74B !important; }

/* =======================
   1. Top Bar
   ======================= */
.top-bar {
    background: linear-gradient(90deg, #d32f2f, #ff3b30);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.countdown {
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* =======================
   2. Hero Section
   ======================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero_bg_1776550592516.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed; /* Parallax slightly */
}

.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #E2E2E6;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px var(--accent-glow);
    border: 2px solid transparent;
}

.cta-button i { margin-right: 10px; }

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px var(--accent-glow);
    background: #ffea00;
}

@keyframes pulse-anim {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse-anim 2s infinite; }

/* =======================
   3. Problem / Solution
   ======================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.split-card {
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.problem-card {
    background: linear-gradient(145deg, #1a1a1f, #0d0d10);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.problem-card .icon-wrapper {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff6b6bc7;
}

.solution-card {
    background: linear-gradient(145deg, rgba(255, 214, 10, 0.1), rgba(10, 10, 12, 1));
    border: 1px solid rgba(255, 214, 10, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.solution-card .mockup-img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 15px var(--accent-glow));
    transition: transform 0.4s ease;
}

.solution-card:hover .mockup-img {
    transform: translateY(-10px);
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* =======================
   4. Categories (Single Video)
   ======================= */
.categories {
    background-color: #050506;
}

.explore-video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.smartphone-frame {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #111;
    border: 12px solid #222;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), inset 0 0 10px rgba(255,255,255,0.1);
}

.smartphone-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #222;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.smartphone-screen {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* Allow Wistia to fill securely inside the flex container if needed */
wistia-player {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* =======================
   5. Benefits
   ======================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: background 0.3s ease;
}

.benefit-item:hover { background: rgba(255,255,255,0.06); }

.b-icon {
    font-size: 2rem;
    color: var(--accent);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =======================
   6. Offer Section
   ======================= */
.offer {
    background: radial-gradient(circle at center, #1b1b1f 0%, #0a0a0c 100%);
    padding: 100px 0;
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 214, 10, 0.2);
}

.offer-title {
    color: var(--primary);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-main);
    margin: 20px 0;
}

.currency { font-size: 2rem; font-weight: 600; margin-right: 5px; }
.value { font-size: 6rem; font-weight: 900; line-height: 1; text-shadow: 0 0 20px rgba(255,255,255,0.3); }
.period { font-size: 1.2rem; color: var(--text-muted); margin-left: 5px; }

.price-desc {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.offer-bullets {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 40px auto;
}

.offer-bullets li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-bullets i { color: #32D74B; font-size: 1.2rem; }

.mega-btn {
    display: block;
    font-size: 1.4rem;
    padding: 25px 20px;
    width: 100%;
}

/* =======================
   7. Testimonials
   ======================= */
.testimonial-card {
    background: #111114;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid #32D74B;
}

.stars { color: var(--accent); margin-bottom: 15px; font-size: 0.9rem;}

.testimonial-card p {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

/* =======================
   8. FAQ Accordion
   ======================= */
.faq { background: #050506; }

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #111114;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
}

.accordion-header:hover { background: rgba(255,255,255,0.02); }

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.accordion-item.active .accordion-header i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #0d0d10;
}

.accordion-content p {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
}

/* =======================
   9. Footer
   ======================= */
footer {
    background: #000;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.f-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.f-brand p { color: var(--text-muted); font-size: 0.9rem; }

.f-links {
    display: flex;
    gap: 20px;
}

.f-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.f-links a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
    font-size: 0.85rem;
}

/* =======================
   Responsive (Animations Removed)
   ======================= */
@media (max-width: 900px) {
    html { font-size: 15px; }
    .split-layout { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .value { font-size: 4.5rem; }
    .offer-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
    .value { font-size: 3rem; }
    .cta-button { font-size: 0.9rem; padding: 15px 15px; }
    .mega-btn { font-size: 1.1rem; }
}
