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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --success: #10b981;
    --danger: #ef4444;
    --bg-dark: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #1a1a24;
    --bg-elevated: #16161f;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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;
}

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

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

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: white;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: linear-gradient(90deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    color: #e9d5ff;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.countdown {
    background: rgba(245, 158, 11, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--accent);
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ===== NAVIGATION ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-icon {
    font-size: 24px;
}

.brand-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
}

.mobile-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 20px !important;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--success);
    margin-bottom: 24px;
}

.badge-star {
    font-size: 14px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.highlight-number {
    color: var(--accent);
    font-family: 'Orbitron', monospace;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.usdt-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 8px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.btn-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

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

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

.trust-icon {
    font-size: 16px;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

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

.sp-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sp-count {
    color: var(--accent);
    font-weight: 700;
}

.sp-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-logo {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
}

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

.section-header.light h2,
.section-header.light p {
    color: var(--text-primary);
}

.section-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--danger);
    opacity: 0.7;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-dark);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

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

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

/* ===== SOLUTION SECTION ===== */
.solution-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-elevated) 100%);
}

.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-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.feature-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-gold);
    color: #1a0a00;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.5px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

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

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

.feature-meta {
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* ===== SCRIPTS SECTION ===== */
.scripts-section {
    background: var(--bg-dark);
}

.scripts-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.script-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.script-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.script-item:hover {
    border-color: var(--primary-light);
    background: var(--bg-card-hover);
}

.script-emoji {
    font-size: 20px;
}

.script-name {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
}

.script-tag {
    font-size: 10px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    background: var(--bg-elevated);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    display: flex;
    flex-direction: column;
}

.comp-header {
    background: var(--bg-card);
    padding: 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.header-col .comp-header {
    background: var(--bg-elevated);
    text-align: left;
}

.comp-row {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.header-col .comp-row {
    color: var(--text-secondary);
    font-weight: 500;
}

.diy-col .comp-row {
    text-align: center;
    justify-content: center;
    color: var(--text-secondary);
}

.kit-col .comp-row {
    text-align: center;
    justify-content: center;
    color: var(--success);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.03);
}

.total-row {
    font-size: 18px;
    font-weight: 800;
    padding: 18px 20px;
}

.diy-col .total-row {
    color: var(--danger);
}

.kit-col .total-row.highlight {
    color: var(--success);
    font-size: 24px;
    background: rgba(16, 185, 129, 0.08);
}

.time-row.highlight {
    color: var(--accent);
    font-weight: 700;
    background: rgba(245, 158, 11, 0.05);
}

.savings-badge {
    text-align: center;
    margin-top: 32px;
}

.savings-amount {
    display: inline-block;
    background: var(--gradient-gold);
    color: #1a0a00;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.savings-text {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.author-title {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

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

/* ===== PRICING ===== */
.pricing-section {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.popular-badge {
    background: var(--gradient-gold);
    color: #1a0a00;
    padding: 4px 16px;
    border-radius: 20px;
    display: inline-block;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.4;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    background: transparent;
    text-align: center;
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}

.popular-btn {
    background: var(--gradient-gold);
    color: #1a0a00;
    border: none;
}

.popular-btn:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1a 100%);
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.payment-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

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

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

.wallet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wallet-icon {
    font-size: 24px;
}

.wallet-title {
    font-size: 16px;
    font-weight: 700;
}

.wallet-network {
    margin-left: auto;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.wallet-address-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.wallet-address {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 13px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-primary);
    word-break: break-all;
    line-height: 1.5;
}

.copy-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 16px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    white-space: nowrap;
}

.copy-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.wallet-warning {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.wallet-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.amount-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    border-color: var(--primary);
}

.amount-btn.active {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.08);
}

.amount-pack {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.amount-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.amount-btn.active .amount-value {
    color: var(--accent);
}

/* TXID Form */
.txid-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.txid-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.txid-form > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.txid-form input,
.txid-form select {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.txid-form input:focus,
.txid-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.form-note {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-elevated);
}

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    font-size: 20px;
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

.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: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-countdown {
    margin-bottom: 28px;
}

.cta-urgency {
    display: block;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.timer-unit {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    min-width: 80px;
}

.timer-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    color: var(--accent);
}

.timer-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-sep {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-muted);
    align-self: center;
}

.btn-cta-final {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-gold);
    color: #1a0a00;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
    margin-bottom: 16px;
}

.btn-cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
}

.cta-sub {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 4px;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

/* ===== SOCIAL POPUP ===== */
.social-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    z-index: 1000;
    transform: translateY(200%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
}

.social-popup.show {
    transform: translateY(0);
}

.popup-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.popup-text {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
}

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

.popup-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

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

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

    .script-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .payment-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .problem-grid,
    .features-grid,
    .script-grid,
    .testimonials-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .header-col {
        display: none;
    }

    .comparison-col {
        margin-bottom: 16px;
    }

    .comp-header {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .comp-row {
        justify-content: space-between !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .wallet-amounts {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-popup {
        left: 12px;
        right: 12px;
        max-width: none;
    }

    section {
        padding: 60px 0;
    }

    .cta-timer {
        gap: 4px;
    }

    .timer-unit {
        padding: 8px 12px;
        min-width: 60px;
    }

    .timer-num {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .wallet-address-box {
        flex-direction: column;
    }

    .copy-btn {
        padding: 12px;
    }

    .pricing-card.popular:hover {
        transform: none;
    }

    .hero {
        padding: 40px 16px;
    }

    .urgency-bar {
        font-size: 11px;
        padding: 8px 12px;
    }
}
