/* ========================================
   The Sweet Escape - Gold Scalper
   ======================================== */

:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --accent: #00D2FF;
    --gold: #F7D774;
    --gold-dark: #E8A838;
    --gold-light: #FFEAA7;
    --bg-dark: #0A0B1A;
    --bg-card: #111228;
    --bg-card-hover: #181A35;
    --bg-elevated: #1A1C3A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A3BD;
    --text-muted: #6B6F8D;
    --border: #252849;
    --border-light: #2D3059;
    --success: #00FFA3;
    --danger: #FF6B6B;
    --gradient-1: linear-gradient(135deg, #6C5CE7, #00D2FF);
    --gradient-gold: linear-gradient(135deg, #F7D774, #E8A838, #F7D774);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(108,92,231,0.3);
    --shadow-gold: 0 4px 20px rgba(232,168,56,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 11, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
}

.logo i {
    font-size: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--text-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.6);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 168, 56, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* Gradient Text */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232,168,56,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,168,56,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-dark);
    top: -150px;
    right: -100px;
    animation: glowFloat 8s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    left: -50px;
    animation: glowFloat 6s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i { color: var(--gold); }

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.25s both;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.3);
    border-radius: var(--radius-md);
}

.price-amount {
    font-size: 40px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-trust .trust-item i {
    color: var(--gold);
    font-size: 14px;
}

/* Hero Image / Preview */
.hero-image {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.indicator-preview-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot.red { background: #FF6B6B; }
.preview-dot.yellow { background: #FFD93D; }
.preview-dot.green { background: #00FFA3; }

.preview-title {
    margin-left: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.preview-chart {
    height: 350px;
    position: relative;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 8px;
}

.chart-placeholder i {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
}

.chart-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

.chart-placeholder span {
    font-size: 13px;
    opacity: 0.6;
}

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

/* ========================================
   FEATURES
   ======================================== */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    background: var(--bg-card-hover);
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.15);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 168, 56, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: #1a1a2e;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 0;
    right: 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a1a2e;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

.step-connector {
    color: var(--gold);
    font-size: 24px;
    opacity: 0.3;
}

.steps-note {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 16px 24px;
    background: rgba(232, 168, 56, 0.05);
    border: 1px solid rgba(232, 168, 56, 0.15);
    border-radius: var(--radius-md);
    text-align: left;
}

.steps-note i {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.steps-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   SCREENSHOT SECTION
   ======================================== */
.screenshot-section {
    padding: 120px 0;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.screenshot-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 8px;
    transition: var(--transition);
}

.screenshot-placeholder:hover {
    border-color: var(--gold-dark);
}

.screenshot-placeholder i {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.2;
}

.screenshot-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

.screenshot-placeholder span {
    font-size: 13px;
    opacity: 0.6;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.08), rgba(108, 92, 231, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-secondary);
}

.cta-price-action {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

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

.cta-amount {
    display: block;
    font-size: 36px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-once {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 120px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-dark);
}

.faq-item.active {
    border-color: var(--gold-dark);
    background: var(--bg-card);
}

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

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    gap: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-payment {
    text-align: right;
}

.footer-payment span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 24px;
    color: var(--text-muted);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 8px;
    font-size: 11px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.checkout-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Order Summary */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-item-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a2e;
    flex-shrink: 0;
}

.order-item-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.order-item-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.order-item-price {
    margin-left: auto;
    font-size: 20px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
}

.order-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.total-price {
    font-size: 28px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-features {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.order-features h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.order-features ul {
    list-style: none;
}

.order-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.order-features li i {
    color: var(--success);
    font-size: 12px;
}

.order-secure {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(0, 255, 163, 0.05);
    border: 1px solid rgba(0, 255, 163, 0.1);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
}

.order-secure i {
    color: var(--success);
}

/* Payment Form */
.payment-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.payment-form-wrapper h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group label i {
    color: var(--gold);
    font-size: 16px;
}

.required {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    margin-left: auto;
    background: rgba(232, 168, 56, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.field-help {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.field-help i {
    color: var(--gold);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.field-error {
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.field-error.visible {
    display: block;
}

/* Stripe Card Element */
.card-element {
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.card-element.StripeElement--focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.1);
}

.card-element.StripeElement--invalid {
    border-color: var(--danger);
}

/* Payment Messages */
.payment-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
}

.payment-message.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: var(--danger);
}

.payment-message.success {
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.2);
    color: var(--success);
}

.hidden { display: none; }

.checkout-footer-trust {
    margin-top: 24px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges i {
    color: var(--gold);
}

/* ========================================
   SUCCESS PAGE
   ======================================== */
.success-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
}

.success-icon {
    font-size: 72px;
    color: var(--success);
    margin-bottom: 24px;
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-card h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.success-steps {
    text-align: left;
    margin-bottom: 32px;
}

.success-steps h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.success-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.success-step:last-child {
    border-bottom: none;
}

.success-step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
    flex-shrink: 0;
}

.success-step strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.success-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.success-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(232, 168, 56, 0.05);
    border: 1px solid rgba(232, 168, 56, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    text-align: left;
}

.success-info i {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.success-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   UPDATES BANNER (in features section)
   ======================================== */
.updates-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.06), rgba(232, 168, 56, 0.06));
    border: 1px solid rgba(0, 255, 163, 0.15);
    border-radius: var(--radius-lg);
}

.updates-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--success);
    flex-shrink: 0;
}

.updates-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.updates-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */
.disclaimer-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 107, 107, 0.03);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-lg);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.disclaimer-header i {
    font-size: 22px;
    color: var(--gold);
}

.disclaimer-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content strong {
    color: var(--text-primary);
}

/* Checkout page disclaimer */
.checkout-disclaimer {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.checkout-disclaimer p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
}

.checkout-disclaimer a {
    color: var(--gold);
    text-decoration: underline;
}

.checkout-disclaimer a:hover {
    color: var(--gold-light);
}

/* Footer disclaimer link */
.footer-bottom .disclaimer a {
    color: var(--gold);
    text-decoration: underline;
}

.footer-bottom .disclaimer a:hover {
    color: var(--gold-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
    /* Base spacing */
    .container {
        padding: 0 16px;
    }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 11, 26, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }
    .nav-links a {
        font-size: 20px;
        padding: 8px 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
        padding: 10px;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-toggle span {
        width: 28px;
        height: 2.5px;
    }

    .nav-actions .btn-sm {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Hero mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .price-tag {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero-trust .trust-item {
        font-size: 12px;
    }

    /* Sections mobile */
    .features,
    .screenshot-section,
    .faq {
        padding: 70px 0;
    }

    .how-it-works {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .section-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Updates banner mobile */
    .updates-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .updates-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .updates-text h3 {
        font-size: 16px;
    }

    .updates-text p {
        font-size: 14px;
    }

    /* Steps mobile */
    .steps-grid {
        flex-direction: column;
        gap: 12px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-card h3 {
        font-size: 17px;
    }

    .steps-note {
        padding: 14px 16px;
    }

    .steps-note p {
        font-size: 13px;
    }

    /* Screenshot mobile */
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-placeholder {
        height: 220px;
    }

    /* CTA mobile */
    .cta-banner {
        padding: 50px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .cta-price-action {
        flex-direction: column;
        width: 100%;
    }

    .cta-price-action .btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 13px;
    }

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

    /* Disclaimer mobile */
    .disclaimer-section {
        padding: 40px 0;
    }

    .disclaimer-box {
        padding: 24px 20px;
    }

    .disclaimer-header h3 {
        font-size: 17px;
    }

    .disclaimer-content p {
        font-size: 13px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .disclaimer {
        font-size: 10px !important;
        padding: 0 8px;
    }

    /* Checkout mobile */
    .checkout-section {
        padding: 90px 0 40px;
    }

    .checkout-grid {
        gap: 20px;
    }

    .payment-form-wrapper,
    .order-summary {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }

    .order-summary h2,
    .payment-form-wrapper h2 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .order-item-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .order-item-info h3 {
        font-size: 14px;
    }

    .order-item-price {
        font-size: 17px;
    }

    .total-price {
        font-size: 24px;
    }

    .form-group input {
        padding: 14px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .card-element {
        padding: 14px 14px;
    }

    .btn-block {
        padding: 16px 24px;
        font-size: 16px;
    }

    .checkout-disclaimer p {
        font-size: 10px;
    }

    /* Success page mobile */
    .success-section {
        padding: 100px 0 40px;
    }

    .success-card {
        padding: 32px 20px;
    }

    .success-icon {
        font-size: 56px;
    }

    .success-card h1 {
        font-size: 24px;
    }

    .success-subtitle {
        font-size: 14px;
    }

    .success-step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .success-step strong {
        font-size: 14px;
    }

    .success-step p {
        font-size: 13px;
    }

    .success-info {
        padding: 14px 16px;
    }

    .success-info p {
        font-size: 13px;
    }

    /* Back to top mobile */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
        font-size: 14px;
    }
}

/* --- Small phones (480px) --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .price-amount {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .cta-amount {
        font-size: 28px;
    }

    .cta-text h2 {
        font-size: 20px;
    }

    .step-number {
        font-size: 48px;
    }

    .order-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .order-item-price {
        width: 100%;
        text-align: right;
    }
}

/* --- Touch-friendly improvements --- */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    .faq-question {
        min-height: 52px;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 44px;
    }

    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Remove hover effects on touch */
    .feature-card:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-gold:hover {
        transform: none;
    }

    .back-to-top:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .faq-question:active {
        background: rgba(255, 255, 255, 0.03);
    }
}
