/* CardCounter.VIP - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #15151f;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;

    --accent-green: #00d97e;
    --accent-green-dark: #00b368;
    --accent-gold: #ffd700;
    --accent-gold-dark: #d4af00;

    --positive: #00d97e;
    --negative: #ff4757;
    --neutral: #a0a0b0;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --gradient-green: linear-gradient(135deg, #00d97e 0%, #00b368 100%);
    --gradient-dark: linear-gradient(180deg, #15151f 0%, #0a0a0f 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-padding: 30px;
    --border-radius: 12px;
    --border-radius-lg: 20px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-green);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 217, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 126, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color-light);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.logo-text .vip {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 10px 20px !important;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 217, 126, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    z-index: 1;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

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

/* Hero Overlay Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Screenshot Image */
.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 100, 255, 0.15),
        0 0 100px rgba(0, 217, 126, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-screenshot:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 100, 255, 0.2),
        0 0 120px rgba(0, 217, 126, 0.15);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
    pointer-events: none;
}

.overlay-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    width: 320px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 217, 126, 0.1);
}

.overlay-preview.large {
    width: 360px;
}

.preview-header {
    text-align: center;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.preview-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.preview-stat .value.positive {
    color: var(--positive);
}

.preview-stat .value.negative {
    color: var(--negative);
}

.preview-edge {
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-edge.hot {
    background: rgba(0, 217, 126, 0.15);
    border-color: rgba(0, 217, 126, 0.3);
}

.edge-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.edge-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--positive);
}

/* ===== Features Overview ===== */
.features-overview {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 126, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

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

.feature-card.featured:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

/* ===== How It Works ===== */
.how-it-works {
    padding: var(--section-padding) 0;
}

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

.steps.horizontal {
    gap: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== Page Header ===== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--bg-secondary);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 16px;
}

/* ===== Features Detailed ===== */
.features-detailed {
    padding: var(--section-padding) 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: rgba(0, 217, 126, 0.1);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-content h2 {
    margin-bottom: 16px;
}

.feature-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.feature-list .check {
    color: var(--accent-green);
    font-weight: bold;
}

/* Card Values Visual */
.card-values {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.card-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.card-group:last-child {
    border-bottom: none;
}

.card-group .cards {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 8px;
}

.card-group .value {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
}

.card-group.positive .value {
    background: rgba(0, 217, 126, 0.1);
    color: var(--positive);
}

.card-group.neutral .value {
    background: rgba(160, 160, 176, 0.1);
    color: var(--neutral);
}

.card-group.negative .value {
    background: rgba(255, 71, 87, 0.1);
    color: var(--negative);
}

/* Hotkey Display */
.hotkey-display {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

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

.hotkey-row:last-child {
    margin-bottom: 0;
}

.hotkey-row.special {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hotkey-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Deck Selector */
.deck-selector {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
}

.deck-label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deck-options {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.deck-option {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.deck-option.active {
    background: var(--gradient-green);
    border-color: var(--accent-green);
    color: #000;
}

/* Deviations Display */
.deviations-display {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dev-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dev-label {
    min-width: 60px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a9eff;
    padding: 6px 0;
}

.dev-label.soft {
    color: #00d97e;
}

.dev-label.surr {
    color: #ff6b9d;
}

.dev-label.ins {
    color: #ffd700;
}

.dev-plays {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dev-play {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dev-play.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.feature-badge.featured-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

/* Bet Indicator Display */
.bet-indicator-display {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bet-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    transition: all var(--transition-fast);
}

.bet-level.min {
    border-left: 4px solid #ffffff;
}

.bet-level.med {
    border-left: 4px solid #ffd700;
}

.bet-level.high {
    border-left: 4px solid #90EE90;
}

.bet-level.max {
    border-left: 4px solid #00ff00;
}

.bet-level.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-gold);
}

.bet-level.active .bet-name {
    color: var(--accent-gold);
}

.bet-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.bet-condition {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: monospace;
}

/* Additional Features */
.additional-features {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 60px 0 80px;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent-green);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 217, 126, 0.15);
}

.pricing-card.featured:hover {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(0, 217, 126, 0.2);
}

.price-savings {
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-gold);
    color: #000;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    padding: 40px 30px 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h2 {
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-green);
}

.price-period {
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-features .check {
    color: var(--accent-green);
    font-weight: bold;
}

.pricing-features .check.gold {
    color: var(--accent-gold);
}

.pricing-cta {
    padding: 0 30px 40px;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* What You Get */
.what-you-get {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.guarantee-box p {
    color: var(--text-secondary);
}

/* FAQ Preview */
.faq-preview {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

/* ===== FAQ Page ===== */
.faq-section {
    padding: 40px 0 var(--section-padding);
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion .faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    border-color: var(--accent-green);
}

.faq-question.active {
    border-color: var(--accent-green);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-green);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

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

.faq-answer p {
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
}

.contact-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
}

.contact-box h2 {
    margin-bottom: 12px;
}

.contact-box > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== Success Page ===== */
.success-section {
    min-height: calc(100vh - 70px);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: #000;
}

.success-card h1 {
    margin-bottom: 12px;
}

.success-message {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.success-details {
    margin-bottom: 50px;
}

.detail-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.detail-box h3 {
    margin-bottom: 10px;
}

.detail-box p {
    color: var(--text-secondary);
}

.next-steps {
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 40px;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.steps-list {
    counter-reset: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.steps-list li {
    display: flex;
    gap: 20px;
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.step-content h4 {
    margin-bottom: 6px;
}

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

.step-content code {
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.success-help {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.success-help h3 {
    margin-bottom: 12px;
}

.success-help > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.success-help ul {
    padding-left: 20px;
}

.success-help li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    list-style: disc;
}

.success-help a {
    color: var(--accent-green);
}

.success-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid,
    .features-grid.compact {
        grid-template-columns: 1fr;
    }

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

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

    .hotkey-display {
        padding: 20px;
    }

    kbd {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .success-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        margin: 0 -10px;
        border-radius: var(--border-radius);
    }

    .overlay-preview {
        width: 100%;
        max-width: 300px;
    }

    .card-group .cards {
        letter-spacing: 4px;
        font-size: 1.25rem;
    }

    .deck-options {
        gap: 10px;
    }

    .deck-option {
        width: 44px;
        height: 44px;
    }
}

/* ===== Mobile Menu (JS Toggled) ===== */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-visual {
    animation-delay: 0.2s;
}
