:root {
    --bg-color: #000000;
    --card-bg: rgba(18, 18, 18, 0.6);
    --gold-primary: #FFD700;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-dark: #B38728;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-red: #FF1744;
    --font-main: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 215, 0, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Cinematic Vignette */
    background-image: 
        radial-gradient(circle at 50% 0%, #1a1500 0%, #000000 70%),
        linear-gradient(to bottom, transparent 0%, #000 100%);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

/* TYPOGRAPHY CINEMATIC */
h1, h2, h3 {
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.text-gold {
    color: var(--gold-primary);
}

.text-red {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
}

.center-text { text-align: center; }

h2.section-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PREMIUM BUTTONS */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 20px 50px;
    border-radius: 4px; /* Sharp corners tailored like a suit */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(179, 135, 40, 0.3);
    border: 1px solid #FCF6BA;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(179, 135, 40, 0.6);
}

.final-cta {
    width: 100%;
    max-width: 600px;
    font-size: 1.4rem;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* AMBIENT GLOWS */
section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(179, 135, 40, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    background: url('img/bg-noise.png'), radial-gradient(circle at center top, #1c1808 0%, #000 60%);
    /* If user doesn't have bg-noise, it falls back gracefully */
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* GLASSMORPHISM CARDS */
.faq-item, .bonus-card, .testimonial-item, .pricing-box {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* MOCKUPS - CINEMATIC */
.phone-mockup {
    position: relative;
    width: 280px;
    margin: 20px auto;
    border: 8px solid #000;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 
                0 0 0 1px rgba(255,255,255,0.1); /* Subtle rim light */
    background: #000;
}
.phone-mockup img { width: 100%; display: block; }

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 0;
    background: #0a0a0a;
    border-radius: 12px 12px 0 0;
    padding: 5px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.05);
}
.laptop-mockup img { width: 100%; display: block; border-radius: 4px; }

/* GRID SYSTEMS */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-text {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 20px;
    border-left: 2px solid var(--gold-primary);
    padding-left: 25px;
    line-height: 1.4;
}

/* TWIN PHONES */
/* TWIN PHONES ANIMATION */
@keyframes swapPhones {
    0%, 45% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
    50%, 95% { opacity: 0.6; z-index: 1; transform: translateX(-80px) scale(0.85); filter: blur(2px); }
    100% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
}

@keyframes swapPhonesReverse {
    0%, 45% { opacity: 0.6; z-index: 1; transform: translateX(-80px) scale(0.85); filter: blur(2px); }
    50%, 95% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
    100% { opacity: 0.6; z-index: 1; transform: translateX(-80px) scale(0.85); filter: blur(2px); }
}

.twin-phones {
    display: flex;
    justify-content: center;
    position: relative;
    height: 600px;
    align-items: center;
}

/* Base style for both phones to ensure absolute stacking */
.twin-phones .phone-mockup {
    position: absolute; /* Changed from relative/absolute mix to pure absolute */
    transition: all 1s ease-in-out;
    margin: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

/* Phone 1 (Starts Back) */
.twin-phones .phone-mockup:first-child {
    animation: swapPhonesReverse 6s infinite ease-in-out;
}

/* Phone 2 (Starts Front) */
.twin-phones .phone-mockup.overlay-mockup {
     margin-left: 0; /* Override previous margins */
     animation: swapPhones 6s infinite ease-in-out;
}

/* FEATURES */
.feature-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.icon-box {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a1a1a, #000);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--gold-primary);
}

/* ARSENAL SECTION */
.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.arsenal-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.arsenal-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(0,0,0,0.9));
}

.arsenal-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.2));
}

.arsenal-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.arsenal-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* TESTIMONIALS */
/* TESTIMONIALS SLIDER */
.testimonials-grid {
    display: flex; /* Flexbox for horizontal alignment */
    overflow-x: auto; /* Allow horizontal scrolling */
    gap: 30px;
    padding: 40px 0 50px 0; /* Extra bottom padding for scrollbar/shadow */
    scroll-snap-type: x mandatory; /* Smooth snapping */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--gold-dark) #111;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

/* Custom Scrollbar for Webkit */
.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}
.testimonials-grid::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}
.testimonial-item {
    flex: 0 0 350px; /* Fixed width for desktop cards */
    min-width: 300px;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
    background: #000;
}
.testimonial-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(255, 215, 0, 0.3);
}
.testimonial-item img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: contain; /* Prevents stretching */
}

/* OFFER SECTION */
.section-offer {
    background: radial-gradient(circle at center, #151100 0%, #000 80%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.bonus-card {
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
}

.bonus-card:hover { /* Gold ambient hover */
    box-shadow: 0 0 30px rgba(179, 135, 40, 0.15); 
    border-color: rgba(255, 215, 0, 0.4);
}

.bonus-icon { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 0 20px rgba(255,215,0,0.2); }
.bonus-subtitle { color: var(--gold-primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 10px; }

.pricing-box {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0;
    padding: 60px;
    background: linear-gradient(180deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    position: relative;
}

/* Glowing border effect for pricing */
.pricing-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.price-final {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-anchor { font-size: 1.2rem; color: #666; }
.strike { color: #888; position: relative; }
.strike::after {
    content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 2px;
    background: var(--accent-red); transform: rotate(-5deg);
}

/* FAQ - ACCORDION STYLE */
.faq-wrapper { max-width: 800px; margin: 60px auto 0; }
.faq-item { 
    background: transparent !important; 
    border: none !important; 
    border-bottom: 1px solid rgba(255,255,255,0.1) !important; 
    box-shadow: none !important;
    backdrop-filter: none !important;
    margin-bottom: 0;
}
.faq-question {
    padding: 30px 0;
    font-size: 1.2rem;
    color: var(--text-main);
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}
.faq-question:hover { color: var(--gold-primary); }
.faq-question .arrow-icon { transition: transform 0.3s ease; }
.faq-question.active .arrow-icon { transform: rotate(180deg); color: var(--gold-primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p { color: #aaa; padding-bottom: 30px; line-height: 1.7; }

/* SECURE BADGE IMAGE */
.secure-badge {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FOOTER */
footer {
    padding: 60px 0;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* RESPONSIVE DESIGN (MOBILE FIRST OPTIMIZATION) */
@media (max-width: 900px) {
    .hero-headline { font-size: 2.8rem; }
    .grid-2-cols { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .impact-text { border-left: none; border-top: 2px solid var(--gold-primary); padding-top: 20px; padding-left: 0; }
    .twin-phones { height: 400px; }
    .twin-phones .phone-mockup:first-child { transform: translateX(-40px) scale(0.8); }
    .twin-phones .overlay-mockup { transform: translateX(40px) scale(0.9); }
    .feature-list li { flex-direction: column; align-items: center; text-align: center; }
    
    /* Adjust Arsenal Grid for Tablets */
    .arsenal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    /* Global Mobile Adjustments */
    section { padding: 60px 0; } /* Reduce padding */
    .container { width: 92%; }

    /* Typography */
    .hero-headline { font-size: 2.2rem; margin-bottom: 20px; }
    .hero-subheadline { font-size: 1rem; }
    h2.section-title { font-size: 2rem; }
    
    /* Hero */
    .hero-section { padding-top: 100px; min-height: auto; }
    .laptop-mockup { margin-top: 40px; }
    
    /* Arsenal Grid - 1 Col on Mobile */
    .arsenal-grid { grid-template-columns: 1fr; gap: 20px; }
    
    /* Buttons */
    .cta-button { width: 100%; padding: 18px; font-size: 1rem; }
    
    /* Pricing */
    .pricing-box { padding: 30px 20px; }
    .price-final { font-size: 3.5rem; }
    
    /* Testimonials Carousel feel */
    .testimonials-grid { 
        display: flex; 
        overflow-x: auto; 
        padding-bottom: 20px; 
        gap: 15px; 
        scroll-snap-type: x mandatory; 
    }
    .testimonial-item { 
        min-width: 85vw; 
        scroll-snap-align: center; 
    }

    /* Twin Phones Mobile */
    .twin-phones { height: 350px; }
    .twin-phones .phone-mockup { width: 220px; }
}
