/* WinTuner Landing — Black & Gold WOW Theme */

:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --bg-card: #1a1a1a;
    --accent: #FBBF24;
    --accent-amber: #F59E0B;
    --accent-dark: #B45309;
    --green: #10b981;
    --green-glow: #34d399;
    --yellow: #FBBF24;
    --red: #ef4444;
    --text: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #555555;
    --border: #2a2a2a;
    --radius: 12px;
    --radius-lg: 20px;
    --glow: rgba(251, 191, 36, 0.25);
    --glow-strong: rgba(251, 191, 36, 0.5);
    --glow-mega: rgba(251, 191, 36, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.center { text-align: center; }

/* ══════════════════════════════════════
   WOW Keyframes — AGGRESSIVE
   ══════════════════════════════════════ */

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 25px var(--glow), 0 0 60px rgba(251, 191, 36, 0.15), inset 0 0 25px rgba(251, 191, 36, 0.05); }
    50% { box-shadow: 0 0 40px var(--glow-strong), 0 0 100px rgba(251, 191, 36, 0.25), inset 0 0 30px rgba(251, 191, 36, 0.1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes border-glow {
    0%, 100% { border-color: rgba(251, 191, 36, 0.3); box-shadow: 0 0 30px var(--glow); }
    50% { border-color: rgba(251, 191, 36, 0.7); box-shadow: 0 0 60px var(--glow-strong), 0 0 120px rgba(251, 191, 36, 0.1); }
}

@keyframes scale-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px) scale(0); opacity: 0; }
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.2); }
    50% { text-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 0 100px rgba(251, 191, 36, 0.3), 0 0 150px rgba(251, 191, 36, 0.1); }
}

@keyframes card-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* ══════════════════════════════════════
   Global gold-grid background
   ══════════════════════════════════════ */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #FFD700 50%, var(--accent-amber) 100%);
    background-size: 200% auto;
    color: #0a0a0a;
    font-weight: 700;
    animation: pulse-gold 2.5s ease-in-out infinite;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}

/* Shimmer sweep across button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: card-shine 3s ease-in-out infinite;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 50px var(--glow-strong), 0 0 0 2px rgba(251, 191, 36, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 14px; }
.btn-xl { padding: 20px 48px; font-size: 20px; border-radius: 16px; }

/* ══════════════════════════════════════
   Hero — DRAMATIC
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

/* Animated radial gold glow */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 50% 40%, rgba(251, 191, 36, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 20% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 80% 30%, rgba(234, 179, 8, 0.06) 0%, transparent 70%);
    animation: hero-glow-pulse 4s ease-in-out infinite;
}

/* Rotating gold rays */
.hero::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: repeating-conic-gradient(
        rgba(251, 191, 36, 0.04) 0deg,
        transparent 2deg,
        transparent 15deg
    );
    animation: glow-rotate 30s linear infinite;
    pointer-events: none;
}

/* Particle dots */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(251, 191, 36, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 70%, rgba(251, 191, 36, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 50% 30%, rgba(251, 191, 36, 0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 60%, rgba(251, 191, 36, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 40%, rgba(251, 191, 36, 0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 15% 50%, rgba(251, 191, 36, 0.3) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 45% 90%, rgba(251, 191, 36, 0.2) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 65% 10%, rgba(251, 191, 36, 0.3) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 85% 80%, rgba(251, 191, 36, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 25% 40%, rgba(255, 215, 0, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 55% 55%, rgba(255, 215, 0, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 75% 25%, rgba(255, 215, 0, 0.4) 50%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    animation: border-glow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: text-glow 4s ease-in-out infinite;
}

.accent {
    background: linear-gradient(135deg, var(--accent), #FFD700, var(--accent-amber), var(--accent));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat {
    text-align: center;
    animation: float 4s ease-in-out infinite;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 30px var(--glow);
    transform: translateY(-4px);
}

.stat:nth-child(2) { animation-delay: 0.5s; }
.stat:nth-child(3) { animation-delay: 1s; }

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ── Sections ── */
.section { padding: 80px 0; }

.section-dark {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ══════════════════════════════════════
   Problem Cards — GLOWING
   ══════════════════════════════════════ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.problem-card {
    background: var(--bg-panel);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Gold top-line on hover */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-amber), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

/* Gold gradient overlay on hover */
.problem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow:
        0 20px 50px rgba(251, 191, 36, 0.15),
        0 0 0 1px rgba(251, 191, 36, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.03);
}

.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover::after { opacity: 1; }

.problem-icon {
    font-size: 40px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ── Steps ── */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    width: 260px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.step:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px var(--glow), 0 0 80px rgba(251, 191, 36, 0.05);
    transform: translateY(-6px);
}

.step:hover::after { opacity: 1; }

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #FFD700, var(--accent-amber));
    color: #0a0a0a;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 25px var(--glow), 0 0 60px rgba(251, 191, 36, 0.1);
    position: relative;
    z-index: 1;
}

.step-arrow {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.6;
    text-shadow: 0 0 20px var(--glow);
}

.step h3, .step p { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   Features Grid — INTERACTIVE
   ══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--bg-panel);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Moving shine sweep on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.08), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 35px var(--glow), 0 0 60px rgba(251, 191, 36, 0.05);
}

.feature-card:hover::before { left: 200%; }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, filter 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.5));
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   Showcase — 5 Killer Features
   ══════════════════════════════════════ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Last card (odd) spans full width centered */
.showcase-grid .showcase-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
}

.showcase-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-amber), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(251, 191, 36, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px var(--glow), 0 0 80px rgba(251, 191, 36, 0.05);
}

.showcase-card:hover::before { transform: scaleX(1); }
.showcase-card:hover::after { opacity: 1; }

.showcase-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.3));
    transition: transform 0.3s;
}

.showcase-card:hover .showcase-icon {
    transform: scale(1.15);
}

.showcase-badge-pro, .showcase-badge-free {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

.showcase-badge-pro {
    background: linear-gradient(135deg, var(--accent), #FFD700, var(--accent-amber));
    color: #0a0a0a;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.showcase-badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.showcase-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.showcase-headline {
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.showcase-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.showcase-card:hover .tag {
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--text);
}

/* ══════════════════════════════════════
   Comparison Table
   ══════════════════════════════════════ */
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: 14px;
}

.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    background: var(--bg-panel);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
}

.compare-competitor {
    color: var(--text-secondary) !important;
}

.compare-price {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.compare-winner {
    background: rgba(251, 191, 36, 0.08) !important;
    border-left: 2px solid rgba(251, 191, 36, 0.3);
    border-right: 2px solid rgba(251, 191, 36, 0.3);
}

.compare-price-gold {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

.compare-table td {
    color: var(--text-secondary);
}

.compare-table td.gold {
    color: var(--accent);
    font-weight: 600;
    background: rgba(251, 191, 36, 0.05);
}

.compare-table tbody tr {
    transition: background 0.2s;
}

.compare-table tbody tr:hover {
    background: rgba(251, 191, 36, 0.03);
}

.compare-total {
    background: var(--bg-panel) !important;
    border-top: 2px solid var(--accent);
}

.compare-total td {
    padding: 18px;
    font-size: 16px;
}

.compare-total td.gold {
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* ══════════════════════════════════════
   Pricing — PRO CARD GOLD FIRE
   ══════════════════════════════════════ */
.pricing {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 340px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-4px);
}

/* PRO card — THE STAR */
.price-card.pro {
    border-color: var(--accent);
    position: relative;
    animation: border-glow 3s ease-in-out infinite;
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, var(--bg-dark) 40%);
}

.price-card.pro:hover {
    transform: scale(1.08) translateY(-4px);
}

/* Animated gradient border */
.price-card.pro::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-amber), #FFD700, var(--accent));
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Gold glow around PRO card */
.price-card.pro::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.price-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: var(--bg-panel);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pro-badge {
    background: linear-gradient(135deg, var(--accent), #FFD700, var(--accent-amber));
    background-size: 200% auto;
    color: #0a0a0a;
    font-weight: 800;
    animation: shimmer 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 6px 20px;
}

.price-card h3 { font-size: 22px; margin-bottom: 12px; }

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pro .price {
    background: linear-gradient(135deg, var(--accent), #FFD700, var(--accent-amber));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 14px; color: var(--text-secondary); }
.price-card.pro li { color: var(--text); }

/* ── Modal ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.modal.active { display: flex; }

.modal-content {
    background: var(--bg-panel);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 80px var(--glow-strong), 0 0 200px rgba(251, 191, 36, 0.1);
    animation: scale-in 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s, text-shadow 0.3s;
}

.modal-close:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--glow);
}

.modal-content h2 { margin-bottom: 12px; }
.modal-content p { color: var(--text-secondary); margin-bottom: 20px; }

.modal-content input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    font-size: 16px;
    margin-bottom: 16px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.modal-content input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--glow), 0 0 40px rgba(251, 191, 36, 0.1);
}

.modal-note { font-size: 12px; color: var(--text-muted) !important; margin-top: 12px; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(251, 191, 36, 0.4); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.faq-q:hover {
    background: rgba(251, 191, 36, 0.05);
    color: var(--accent);
}

.faq-arrow {
    font-size: 24px;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--accent); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ── Download ── */
.download-info { margin-top: 16px; font-size: 13px; color: var(--text-muted); }

.download-note {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg-panel) !important;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Trust grid ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.trust-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 15px 45px var(--glow), inset 0 0 30px rgba(251, 191, 36, 0.02);
}

.trust-card:hover::before { transform: scaleX(1); }

.trust-icon { font-size: 40px; margin-bottom: 14px; }
.trust-card h3 { font-size: 16px; margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ── Footer ── */
.footer { padding: 40px 0 20px; border-top: 1px solid var(--border); }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px var(--glow);
}

.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, text-shadow 0.3s;
}
.footer-links a:hover { color: var(--accent); text-shadow: 0 0 10px var(--glow); }

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════
   Scroll Animations — DRAMATIC ENTRY
   ══════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered delays for grids */
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
[data-animate]:nth-child(5) { transition-delay: 0.35s; }
[data-animate]:nth-child(6) { transition-delay: 0.4s; }
[data-animate]:nth-child(7) { transition-delay: 0.45s; }
[data-animate]:nth-child(8) { transition-delay: 0.5s; }
[data-animate]:nth-child(9) { transition-delay: 0.55s; }
[data-animate]:nth-child(10) { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat { padding: 12px 16px; }
    .steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-grid .showcase-card:last-child:nth-child(odd) { max-width: 100%; }
    .pricing { flex-direction: column; align-items: center; }
    .price-card.pro { transform: scale(1); }
    .price-card.pro:hover { transform: scale(1.02) translateY(-4px); }
    .stat { animation: none; }
    .compare-table { font-size: 12px; }
    .compare-table th, .compare-table td { padding: 10px 8px; }
}

@media (max-width: 600px) {
    .navbar-brand {
        font-size: 16px;
    }

    .navbar-links {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .navbar-links a {
        font-size: 10px;
        padding: 4px 6px;
        white-space: nowrap;
    }

    .navbar-support {
        padding: 4px 8px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .compare-table th:not(:first-child):not(:last-child) { display: none; }
    .compare-table td:not(:first-child):not(:last-child) { display: none; }

    .navbar-brand {
        font-size: 14px;
    }

    .navbar-links {
        gap: 4px;
    }

    .navbar-links a {
        font-size: 9px;
        padding: 3px 5px;
    }

    .navbar-support {
        padding: 3px 6px !important;
        font-size: 9px !important;
    }
}

/* ══════════════════════════════════════
   Navbar
   ══════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    text-shadow: 0 0 20px var(--glow);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.navbar-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--glow);
}

.navbar-support {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 6px 16px;
    border-radius: 8px;
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.navbar-support:hover {
    background: rgba(251, 191, 36, 0.2) !important;
    border-color: var(--accent);
}

/* ══════════════════════════════════════
   Support Modal
   ══════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover { color: var(--text); }

.modal-card h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.modal-input, .modal-textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input:focus, .modal-textarea:focus {
    border-color: var(--accent);
}

.modal-input {
    margin-bottom: 12px;
}

.modal-textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

.modal-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.modal-success {
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
}
