:root {
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --primary: #d4a373;
    --primary-glow: rgba(212, 163, 115, 0.4);
    --primary-dark: #a17350;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --success: #4ade80;
    --danger: #ef4444;
    --font-heading: 'Medula One', cursive;
    --font-body: 'Outfit', sans-serif;
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* UTILS */
.container {
    width: 90%;
    max-width: 600px;
    /* Mobile focused max-width */
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

/* STICKY NAV */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn {
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary);
    color: #000;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.dark-section {
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* HERO */
.sales-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.headline {
    font-size: clamp(2.8rem, 8vw, 4rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-glow);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-badge {
    background: var(--primary);
    color: #000;
    display: inline-block;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* VIDEO */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    margin-bottom: 0.5rem;
}

.video-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* CTA BUTTONS */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:active {
    transform: scale(0.98);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 163, 115, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 163, 115, 0);
    }
}

.cta-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.cta-small {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

/* CALCULATOR */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px 20px;
    backdrop-filter: blur(10px);
}

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

.calculator-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.input-wrapper {
    margin: 15px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input-wrapper input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 100px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.calc-row.lost strong {
    color: var(--danger);
}

.calc-row.saved strong {
    color: var(--success);
}

.calc-divider {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 5px 0;
    font-weight: bold;
}

.calc-total {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.big-savings {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

/* FEATURES STACK */
/* FEATURES STACK -> GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Increased gap for mobile breathing room */
    gap: 30px;
}

/* Feature Cards Gold Border */
.feature-grid .glass-panel {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    text-align: left;
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* TRUST */
.trust-section {
    text-align: center;
}

.large-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

/* OFFER SECTION (REDESIGN) */
.offer-section {
    text-align: center;
}

.offer-card-premium {
    background: radial-gradient(circle at top right, #1a1510, #000);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.1);
}

.premium-header {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.founder-badge {
    background: #000;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 25px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
}

.price-big {
    font-size: 4.5rem;
    color: #fff;
    margin: 20px 0 0;
    font-weight: 800;
    line-height: 1;
}

.price-big .period {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.scarcity-bar {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--danger);
    text-align: left;
    padding: 10px 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.scarcity-text {
    color: var(--danger);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.scarcity-sub {
    font-size: 0.85rem;
    color: #ccc;
}

.lock-promise {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 30px;
}

.lock-promise .icon {
    font-size: 1.5rem;
}

.premium-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.premium-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    font-size: 1.05rem;
    align-items: center;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.annual-promo {
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 600;
    border: 1px dashed var(--primary);
    padding: 10px;
    border-radius: 8px;
}

.gold-cta {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
}

/* FAQ */
.faq-accordion {
    border-bottom: 1px solid var(--glass-border);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    padding: 20px 0;
    font-size: 1.2rem;
    /* Slightly larger text */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ensure vertical center */
}

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

.faq-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

.active .faq-btn {
    color: var(--primary);
    /* Gold Title */
}

.active .faq-content {
    max-height: 500px;
    /* Restored & Increased for safety */
}

/* Custom CSS Plus Icon */
.plus {
    position: relative;
    width: 24px;
    /* Larger target */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    /* Smooth rotation */
}

.plus::before,
.plus::after {
    content: '';
    position: absolute;
    background-color: #fff;
    /* Explicit White Default */
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s;
}

/* Horizontal Line (Always there) */
.plus::before {
    width: 100%;
    height: 2px;
}

/* Vertical Line (Disappears/Rotates to make minus) */
.plus::after {
    width: 2px;
    height: 100%;
}

/* Active State Animation */
.active .plus {
    transform: rotate(180deg);
}

.active .plus::before,
.active .plus::after {
    background-color: var(--primary);
    /* Turn Gold */
}

.active .plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* FORM */
.clean-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.clean-form input {
    width: 100%;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: #fff;
    font-size: 1rem;
}

.checkbox-group {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    /* Align to top if text wraps */
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    /* Visual alignment with first line of text */
    width: 20px;
    height: 20px;
    /* Revert generic input styling for checkbox */
    background: none;
    border: 1px solid var(--primary);
    border-radius: 4px;
    -webkit-appearance: checkbox;
    /* Ensure native look or custom */
    appearance: auto;
    accent-color: var(--primary);
}

.checkbox-group a {
    color: var(--primary);
}

.full-width {
    width: 100%;
}

/* FOOTER */
.simple-footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.brand-footer {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.9rem;
}

.copy {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-card {
    background: #111;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-content {
    flex: 1;
    overflow: hidden;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}