/* ============================================================
   DMwithQAF — Landing Page Styles
   Theme: Purple Glow + Gold Accent on Deep Dark
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary-glow: #8b5cf6;
    --primary-dark: #6d28d9;
    --accent-gold: #fbbf24;
    --accent-gold-dim: rgba(251, 191, 36, 0.15);
    --accent-gold-border: rgba(251, 191, 36, 0.3);
    --success-green: #10b981;
    --danger-red: #ef4444;
    --cyan: #06b6d4;
    --cyan-dim: rgba(6, 182, 212, 0.15);
    --cyan-border: rgba(6, 182, 212, 0.3);
    --bg-dark: #050714;
    --bg-card: rgba(0, 0, 0, 0.5);
    --bg-card-strong: rgba(0, 0, 0, 0.7);
    --border-glow: rgba(139, 92, 246, 0.3);
    --border-glow-dim: rgba(139, 92, 246, 0.15);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 40px;
    --font-heading: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --blur: blur(10px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    font-family: var(--font-heading);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- Matrix Canvas Background --- */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
}

.landing-container {
    position: relative;
    z-index: 10;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-glow);
    border-radius: 10px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand i {
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-dark));
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-glow);
    color: var(--accent-gold);
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid var(--success-green);
    margin-bottom: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--success-green);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-dark));
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-glow);
    color: var(--primary-glow);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Hero Stat Cards */
.stats-preview {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.stat-preview-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 22px 30px;
    text-align: center;
    min-width: 150px;
    transition: border-color 0.3s;
}

.stat-preview-card:hover {
    border-color: var(--accent-gold-border);
}

.stat-preview-card i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.trust-badge i {
    color: var(--success-green);
    font-size: 0.7rem;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.new-section {
    padding: 80px 40px;
    position: relative;
}

.new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.section-title--red {
    color: var(--danger-red);
}

.section-title--red span {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.section-title--cyan {
    color: var(--cyan);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1rem;
    font-weight: 400;
}

.section-subtitle--mono {
    color: var(--primary-glow);
    font-family: var(--font-mono);
    font-size: 0.88rem;
}

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-card-strong);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.08);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.card-icon--red {
    color: var(--danger-red);
}

.card-icon--gold {
    color: var(--accent-gold);
}

.problem-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================================
   ENHANCED FEATURE CARDS
   ============================================================ */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-enhanced {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow-dim);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card-enhanced:hover::before {
    opacity: 1;
}

.feature-card-enhanced:hover {
    border-color: var(--accent-gold-border);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.06);
}

.card-icon-emoji {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.feature-card-enhanced h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.feature-card-enhanced p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.tech-badge {
    display: inline-block;
    background: var(--accent-gold-dim);
    border: 1px solid var(--accent-gold-border);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-gold);
    font-family: var(--font-mono);
    margin-top: 14px;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.step-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.55;
}

.step-arrow {
    font-size: 1.4rem;
    color: var(--accent-gold);
    align-self: center;
    padding: 0 10px;
}

/* ============================================================
   PERFORMANCE — STAT CARDS
   ============================================================ */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card-new {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow-dim);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card-new:hover {
    border-color: var(--accent-gold-border);
    transform: translateY(-3px);
}

.big-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label-new {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--font-mono);
}

/* Live Metrics Block */
.live-metrics-block {
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-metrics-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.metric-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), var(--bg-card));
    backdrop-filter: var(--blur);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    text-align: center;
    min-width: 170px;
    border: 1px solid var(--border-glow-dim);
    transition: border-color 0.3s;
}

.metric-card:hover {
    border-color: var(--border-glow);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

.metric-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glow-dim);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.comparison-table th {
    background: rgba(30, 41, 59, 0.9);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-glow);
}

.comparison-table th:last-child {
    color: var(--cyan);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: rgba(139, 92, 246, 0.03);
}

.cell-pass {
    color: var(--success-green);
    font-weight: 600;
}

.cell-pass i {
    margin-right: 6px;
}

.cell-fail {
    color: var(--danger-red);
    font-weight: 500;
}

.cell-fail i {
    margin-right: 6px;
}

.cell-warn {
    color: var(--accent-gold);
    font-weight: 500;
}

.cell-warn i {
    margin-right: 6px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow-dim);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card--popular {
    border-color: var(--accent-gold);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.08);
}

.pricing-card--popular:hover {
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.14);
}

.popular-badge {
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: var(--bg-dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 10px 0;
}

.price span {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.savings {
    font-size: 0.8rem;
    color: var(--success-green);
    margin-bottom: 14px;
    font-family: var(--font-mono);
}

.pricing-features {
    list-style: none;
    margin: 18px 0 24px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.84rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(30, 41, 59, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-green);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary-glow), var(--primary-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.25);
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
}

.pricing-card--popular .pricing-btn {
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: var(--bg-dark);
    box-shadow: 0 4px 18px rgba(251, 191, 36, 0.3);
}

.pricing-card--popular .pricing-btn:hover {
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.45);
}

.money-back {
    text-align: center;
    margin-top: 40px;
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

.money-back i {
    color: var(--accent-gold);
    margin-right: 4px;
}

.money-back--final {
    margin-top: 48px;
}

/* ============================================================
   TECHNICAL SPECS
   ============================================================ */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow-dim);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: border-color 0.3s;
}

.spec-card:hover {
    border-color: var(--border-glow);
}

.spec-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-card h3 i {
    font-size: 1rem;
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.35);
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.spec-card ul li i {
    color: var(--success-green);
    font-size: 0.68rem;
    flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glow-dim);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent-gold-border);
    transform: translateY(-3px);
}

.stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.quote {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}

.author {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-item h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.faq-item h3 i {
    color: var(--cyan);
    font-size: 0.45rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    padding-left: 20px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    text-align: center;
    padding: 80px 40px;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.btn-outline-purple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid var(--primary-glow);
    color: var(--primary-glow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-purple:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #a78bfa;
    color: #a78bfa;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 40px 24px;
    border-top: 1px solid var(--border-glow);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-info h3 {
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-email {
    font-family: var(--font-mono);
    font-size: 0.82rem !important;
}

.footer-email i {
    color: var(--primary-glow);
    margin-right: 6px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copyright p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.72rem !important;
    color: var(--danger-red) !important;
    margin-top: 14px !important;
    line-height: 1.6;
    opacity: 0.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 7, 20, 0.97);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border-glow);
        z-index: 99;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a,
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .navbar {
        padding: 14px 20px;
    }

    .hero-section {
        padding: 60px 16px 40px;
    }

    .new-section {
        padding: 60px 20px;
    }

    .step-arrow {
        display: none;
    }

    .steps-container {
        gap: 16px;
    }

    .step-card {
        min-width: 100%;
        max-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .final-cta {
        padding: 60px 20px;
    }

    .footer {
        padding: 36px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .stats-preview {
        gap: 14px;
    }

    .stat-preview-card {
        min-width: 120px;
        padding: 16px 18px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   COMPARISON TABLE — COLUMN CONTRAST
   Other EAs = danger/red tint  |  DMwithQAF = gold/green tint
   ============================================================ */

/* --- Header cells --- */
.comparison-table th:nth-child(2) {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger-red);
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.comparison-table th:nth-child(3) {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

/* --- "Other EAs" column rows --- */
.comparison-table td:nth-child(2) {
    background: rgba(239, 68, 68, 0.04);
    border-left: 1px solid rgba(239, 68, 68, 0.1);
    border-right: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-table tr:hover td:nth-child(2) {
    background: rgba(239, 68, 68, 0.08);
}

/* --- "DMwithQAF" column rows --- */
.comparison-table td:nth-child(3) {
    background: rgba(16, 185, 129, 0.04);
    border-left: 1px solid rgba(16, 185, 129, 0.1);
    border-right: 1px solid rgba(16, 185, 129, 0.1);
}

.comparison-table tr:hover td:nth-child(3) {
    background: rgba(16, 185, 129, 0.08);
}

/* --- Icon text colors per column --- */
.comparison-table td:nth-child(2).cell-fail {
    color: #f87171;
}

.comparison-table td:nth-child(2).cell-warn {
    color: #fb923c;
}

.comparison-table td:nth-child(3).cell-pass {
    color: #34d399;
}

/* --- Stronger glow on DMwithQAF header --- */
.comparison-table th:nth-child(3) {
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.comparison-table th:nth-child(2) {
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}