/* ================================================================================
   PROMPTCRAFT AI - MASTER STYLESHEET
   Created: December 2024
   Description: Main stylesheet for PromptCraft AI website
   Usage: Link this file on all pages with <link rel="stylesheet" href="styles.css">
================================================================================ */

/* ========================================
   CSS VARIABLES & COLOR PALETTE
======================================== */
:root {
    /* Tier 1 - Base Foundation */
    --primary: #2A7F8F;
    --primary-light: #3A9AAB;
    --secondary: #2A7F8F;
    --accent: #2A7F8F;
    --accent-alt: #D4AF37;
    
    /* Functional Colors */
    --success: #22C55E;
    --warning: #D4AF37;
    --danger: #C0392B;
    --info: #2A7F8F;
    
    /* Neutral Colors - deep navy foundation */
    --dark: #070B14;
    --dark-alt: #0F1624;
    --light: #111827;
    --gray: #7F8899;
    --gray-light: #1E2840;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Accent Colors - Gold is the ONE strong accent */
    --gold: #D4AF37;
    --gold-dark: #B8963A;
    --platinum: #B8C0D0;
    --platinum-dark: #7F8899;
    
    /* Gradients - dark and disciplined */
    --gradient-primary: linear-gradient(135deg, #2A7F8F, #1E5F6A);
    --gradient-secondary: linear-gradient(135deg, #2A7F8F, #1E5F6A);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #B8963A);
    --gradient-platinum: linear-gradient(135deg, #B8C0D0, #7F8899);
    --gradient-hero: linear-gradient(180deg, #070B14 0%, #0D1520 50%, #0A0F1A 100%);
    --gradient-dark: linear-gradient(180deg, #070B14, #0A0F1A);
    
    /* Shadows - dark and structural */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.7);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #070B14;
    color: #E6EAF2;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   LAYOUT & CONTAINER
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-spacing {
    padding: 120px 0;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
    background: rgba(7, 11, 20, 0.97);
    box-shadow: 0 1px 0 rgba(212, 275, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #D4AF37;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #D4AF37;
    background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-button {
    width: 65px;
    height: 120px;
    border-radius: var(--radius-sm);
    font-weight: 400;
    font-size: 0.9rem;
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(-38deg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-button:hover::before {
    left: 100%;
}

.nav-button:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.nav-button.ai-prompts {
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.25);
}

.nav-button.pricing {
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.25);
}

.nav-button.tools {
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.25);
}

.nav-button.contact {
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.25);
}

.nav-button.about {
    background: linear-gradient(135deg, #0F1624, #1A2848);
    border: 1px solid rgba(212, 275, 55, 0.25);
}

.user-actions {
    display: flex;
    gap: 45px;
    align-items: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 400;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: #FFD700;
    color: #05070F;
    box-shadow: 0 4px 16px rgba(212, 275, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: #2A7F8F;
    border: 2px solid #2A7F8F;
}

.btn-outline:hover {
    background: #2A7F8F;
    color: white;
}

.btn-hero {
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 10px;
    transition: var(--transition);
}

.btn-hero-primary {
    background: #FFD700;
    color: var(--dark);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(212, 275, 55, 0.1);
    color: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-5px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 500px;
    background: var(--gradient-hero);
    padding: 80px 0;
    overflow: hidden;
}

.hero h1,
.hero .hero-tagline,
.hero .hero-description,
.hero-content h1,
.hero-content p {
    color: white !important;
}

.hero .stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero .stat {
    text-align: center;
}

.hero .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.hero .stat-label {
    color: white !important;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--gradient-hero);
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1400px;
    padding: 60px 20px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 400;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #D4AF37, #B8963A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: #FFFFFF;
    font-size: 1.1rem;
    opacity: 1;
    margin-top: 10px;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: rgba(42, 127, 143, 0.15);
    color: #2A7F8F;
    border: 1px solid rgba(42, 127, 143, 0.3);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #E6C35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #E6EAF2;
    text-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TRUST BADGES
======================================== */
.trust-badges-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 28px;
    background: #131C2E;
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-left: 3px solid #D4AF37;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-badge-text {
    text-align: left;                 /* keeps headings readable */
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 275, 55, 0.1);
    border: 1px solid rgba(212, 275, 55, 0.25);
    border-radius: var(--radius-md);
    color: #D4AF37;
    font-size: 1.8rem;
}

.trust-badge-icon.gold {
    background: rgba(212, 275, 55, 0.15);
    color: #D4AF37;
}

.trust-badge-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
}

.trust-badge-text h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.trust-badge-text p {
    font-size: 0.9rem;
    color: #7F8899;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,275,55,0.04), transparent),
        linear-gradient(to bottom, #111827 0%, #0E1520 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: #131C2E;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-top: 3px solid #D4AF37;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #D4AF37;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 24px 64px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(42, 127, 143, 0.2);
    border: 1px solid rgba(42, 127, 143, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.review-author-role {
    color: #7F8899;
    font-size: 0.95rem;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--gold);
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #E6EAF2;
    font-style: italic;
}

.review-verified {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========================================
   COMPARISON TABLE
======================================== */
.comparison-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,275,55,0.04), transparent),
        linear-gradient(to bottom, #0A0F1A 0%, #0C1320 100%);
}


/* ========================================
   COMPARISON TABLE - MOBILE RESPONSIVE
======================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
    border-radius: 16px;
}

/* Mobile scroll hint */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        position: relative;
    }
    
    .comparison-table-wrapper::after {
        content: "← Scroll to see more →";
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.85rem;
        color: var(--gold);
        font-weight: 600;
        white-space: nowrap;
    }
}

.comparison-table {
    width: 100%;
    min-width: 800px; /* Ensures table doesn't squish on mobile */
    border-collapse: collapse;
    background: rgba(46, 52, 64, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    color: #E6EAF2;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(212, 275, 55, 0.2);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    white-space: nowrap;
}

.comparison-table th.highlight-col {
    background: rgba(212, 275, 55, 0.4);
    color: var(--white);
}

.comparison-table td.highlight-col {
    background: rgba(212, 275, 55, 0.1);
    font-weight: 600;
    color: var(--gold);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Savings Grid - Mobile Responsive */
.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.savings-card {
    padding: 30px;
    text-align: center;
}

.savings-card h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.savings-card .usage-amount {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--platinum);
}

.savings-card .old-price {
    color: var(--platinum);
    margin-bottom: 8px;
    font-size: 1rem;
}

.savings-card .strikethrough {
    text-decoration: line-through;
}

.savings-card .new-price {
    color: #22C55E;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 12px 0;
}

.savings-card .savings-amount {
    color: var(--gold);
    font-weight: 600;
    margin-top: 12px;
    font-size: 1.1rem;
}

/* Mobile optimization for savings cards */
@media (max-width: 768px) {
    .savings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .savings-card {
        padding: 24px;
    }
    
    .savings-card h4 {
        font-size: 1.2rem;
    }
}

/* ========================================
   SHOWCASE SECTION (3-BOX IMAGE GRID)
======================================== */
.showcase-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,275,55,0.04), transparent),
        linear-gradient(to bottom, #0F1624 0%, #0C1420 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.showcase-card {
    background: #131C2E;
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 24px 64px rgba(0, 0, 0, 0.5);
}

.showcase-image {
    width: 100%;
    height: 400px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.showcase-image::after {
    content: 'Your Generated Image Here';
    position: absolute;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    padding: 20px;
}

.showcase-content {
    padding: 30px;
}

.showcase-category {
    display: inline-block;
    background: rgba(42, 127, 143, 0.15);
    color: #2A7F8F;
    border: 1px solid rgba(42, 127, 143, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.showcase-prompt {
    background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid #D4AF37;
    margin-bottom: 20px;
}

.showcase-prompt-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-prompt-text {
    font-size: 0.95rem;
    color: #E6EAF2;
    line-height: 1.6;
    font-family: 'Courier New', monospace;
}

.showcase-copy-btn {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.showcase-copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   GENERATOR DEMO SECTION (SCREENSHOT)
======================================== */
.demo-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,275,55,0.04), transparent),
        linear-gradient(to bottom, #111827 0%, #0E1520 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 127, 143, 0.05) 0%, rgba(212, 275, 55, 0.05) 100%);
}

.demo-content {
    position: relative;
    z-index: 1;
}

.generator-screenshot {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 10px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    margin-top: 60px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.generator-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 10;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0A0F1A 0%, #070B14 100%);
}

.video-container {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-hero);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-play-btn {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 30px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.5);
}

.video-play-btn i {
    font-size: 3rem;
    margin-left: 8px;
}

.video-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212,275,55,0.04), transparent),
        linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(42, 127, 143, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 275, 55, 0.06) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Removed - was causing 4th card to be full width */
/* .pricing-card:nth-child(4) {
    grid-column: 1 / -1;
    margin-top: 20px;
    text-align: center;
}

.pricing-card:nth-child(4) .pricing-features {
    display: inline-block;
    text-align: left;
}

.pricing-card:nth-child(4) .pricing-features li {
    justify-content: center;
}

.pricing-card {
    background: rgba(46, 52, 64, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 275, 55, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-free {
    background: rgba(42, 127, 143, 0.2);
    color: #2A7F8F;
    border: 1px solid rgba(42, 127, 143, 0.4);
}

.badge-apprentice {
    background: rgba(42, 127, 143, 0.2);
    color: #2A7F8F;
    border: 1px solid rgba(42, 127, 143, 0.4);
}

.badge-adventurer {
    background: linear-gradient(135deg, #D4AF37, #B8963A);
    color: var(--dark);
}

.badge-archmage {
    background: var(--gradient-platinum);
    color: var(--dark);
}

.pricing-title {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.pricing-description {
    opacity: 0.8;
    margin-bottom: 30px;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-price span {
    font-size: 1.5rem;
    opacity: 0.8;
}

.pricing-period {
    opacity: 0.7;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--gold);
    font-size: 1.2rem;
}

.pricing-features .highlight {
    font-weight: 700;
}

.pricing-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.free-btn {
    background: rgba(212, 275, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 275, 55, 0.3);
}

.apprentice-btn {
    background: linear-gradient(135deg, #2A7F8F, #1E5F6A);
    color: white;
}

.adventurer-btn {
    background: #FFD700;
    color: var(--dark);
}

.archmage-btn {
    background: var(--gradient-platinum);
    color: var(--dark);
}

.pricing-info {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-info p {
    margin-bottom: 0.5rem;
}

.money-back-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 275, 55, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 400;
}

.money-back-guarantee i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.category-showcase {
    margin-top: 80px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.showcase-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.category-showcase-card:hover::before {
    left: 100%;
}

.category-showcase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.category-showcase-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: white;
}

.category-showcase-name {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.category-showcase-count {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ========================================
   CATEGORY GROUP CARDS (D&D GENERATORS)
======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.category-group-card {
    background: #131C2E;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 275, 55, 0.12);
    border-top: 2px solid #2A7F8F;
    position: relative;
    overflow: visible;
    height: 100%;
}

.category-group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 127, 143, 0.04), transparent);
    transition: left 0.5s;
}

.category-group-card:hover::before {
    left: 100%;
}

.category-group-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 275, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.category-group-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.category-group-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.category-group-count {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.category-group-description {
    color: #7F8899;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-sub-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #1E2840;
}

.category-sub-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-sub-list li {
    padding: 8px 0;
    color: #7F8899;
    font-size: 0.85rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.category-sub-list li:last-child {
    border-bottom: none;
}

.category-sub-list li strong {
    color: #E6EAF2;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.category-sub-list li span {
    display: block;
    font-size: 0.8rem;
    color: #7F8899;
    margin-top: 2px;
}

/* Custom scrollbar for sub-lists */
.category-sub-list ul::-webkit-scrollbar {
    width: 6px;
}

.category-sub-list ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.category-sub-list ul::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.category-sub-list ul::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive adjustments for category cards */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-group-card {
        padding: 25px;
    }
    
    .category-group-name {
        font-size: 1.1rem;
    }
    
    .category-sub-list ul {
        max-height: none;
    }
}

/* ========================================
   EMAIL POPUP
======================================== */
.email-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
    border: 1px solid rgba(212, 275, 55, 0.2);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    max-width: 400px;
    display: none;
    animation: slideInRight 0.5s ease-out;
}

.email-popup.active {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.email-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.email-popup-close:hover {
    color: var(--dark);
}

.email-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.email-popup p {
    color: #7F8899;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-form input {
    padding: 15px;
    border: 1px solid #1E2840;
    background: #070B14;
    color: #E6EAF2;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.email-form input:focus {
    outline: none;
    border-color: #D4AF37;
}

.email-form button {
    padding: 15px;
    background: #FFD700;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.email-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CHAT WIDGET
======================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.chat-bubble:hover .chat-tooltip {
    opacity: 1;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: #000000;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 50px;
}

.footer-content > div {
    padding: 30px;
    border-right: 2px solid rgba(212, 275, 55, 0.3);
    min-height: 250px;
}

.footer-content > div:last-child {
    border-right: none;
}

.footer-content > div:first-child {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.legal-info {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 275, 55, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* ========================================
   HOW IT WORKS SECTION - BOXES WITH BORDERS
======================================== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.how-step {
    text-align: left;
    padding: 30px;
    background: #131C2E;
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.how-step:hover {
    border-color: rgba(212, 275, 55, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.how-step .step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    text-align: left;
}

.how-step h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: left;
}

.how-step p {
    color: var(--platinum);
    line-height: 1.8;
    flex-grow: 1;
    text-align: left;
}

.how-step p strong {
    color: var(--white);
    font-weight: 600;
}

/* Ensure all boxes are same height - Responsive */
@media (min-width: 1024px) {
    .how-step {
        min-height: 500px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .how-step {
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .how-step {
        min-height: auto;
    }
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card:nth-child(4) {
        margin: 0;
    }
    
    /* Footer tablet - 2x2 grid */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .footer-content > div:nth-child(odd) {
        border-right: 2px solid rgba(212, 275, 55, 0.3);
    }
    
    .footer-content > div:nth-child(even) {
        border-right: none;
    }
    
    .footer-content > div:nth-child(1),
    .footer-content > div:nth-child(2) {
        border-bottom: 2px solid rgba(212, 275, 55, 0.3);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    .user-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .user-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid,
    .showcase-grid,
    .pricing-grid,
    .category-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .email-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    /* Footer responsive - stack columns */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content > div {
        border-right: none;
        border-bottom: 2px solid rgba(212, 275, 55, 0.3);
        padding: 30px 20px;
    }
    
    .footer-content > div:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-price {
        font-size: 3rem;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-gold {
    color: var(--gold);
}

.bg-primary {
    background: var(--primary);
}

.bg-gradient {
    background: var(--gradient-primary);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* ========================================
   ACCESSIBILITY
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .navbar,
    .email-popup,
    .chat-widget,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ========================================
   DARK BACKGROUND SECTIONS - PROMPTCRAFT REDESIGN 2024
======================================== */
.section-dark {
    background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
    color: #E6EAF2;
    padding: 80px 0;
}

.section-dark-alt {
    background: #070B14;
    color: #E6EAF2;
    padding: 80px 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark-alt h1,
.section-dark-alt h2,
.section-dark-alt h3,
.section-dark-alt h4,
.section-dark-alt h5,
.section-dark-alt h6 {
    color: #E6EAF2;
}

.section-dark p,
.section-dark div,
.section-dark span,
.section-dark li,
.section-dark td,
.section-dark-alt p,
.section-dark-alt div,
.section-dark-alt span,
.section-dark-alt li,
.section-dark-alt td {
    color: #E6EAF2;
}

.section-dark .section-subtitle,
.section-dark-alt .section-subtitle {
    color: #B8C0D0;
}

.section-dark a,
.section-dark-alt a {
    color: #E6EAF2;
}

/* Text Color Utilities */
.text-gold {
    color: #D4AF37 !important;
}

.text-silver {
    color: #B8C0D0 !important;
}

.text-muted {
    color: #7F8899 !important;
}

.text-white {
    color: #FFFFFF !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(46, 52, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 275, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E6EAF2;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(212, 275, 55, 0.4);
    border-color: rgba(212, 275, 55, 0.5);
}

.glass-card h1,
.glass-card h2,
.glass-card h3,
.glass-card h4,
.glass-card h5,
.glass-card h6 {
    color: #E6EAF2;
}

.glass-card p,
.glass-card div,
.glass-card span,
.glass-card li {
    color: #E6EAF2;
}

/* Category Cards Portrait Style - UNIFORM HEIGHT */
.category-card-portrait {
    height: 850px;
    max-width: 330px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #E6EAF2;
    overflow: hidden;
}

.category-card-portrait .card-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 16px;
}

.category-card-portrait .card-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    min-height: 3.6rem;
    max-height: 3.6rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #D4AF37, #E6EAF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card-portrait .card-content {
    text-align: left;
    flex: 1;
    margin-bottom: 12px;
}

.category-card-portrait .generator-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
}

.category-card-portrait .breakdown-list {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #B8C0D0;
    margin-bottom: 10px;
}

.category-card-portrait .breakdown-item {
    margin-bottom: 3px;
    color: #B8C0D0;
    font-size: 0.85rem;
}

.category-card-portrait .total-options {
    font-size: 0.75rem;
    font-weight: 400;
    color: #E6EAF2;
    margin-top: 10px;
    line-height: 1.4;
}

.badge-live {
    background: linear-gradient(135deg, #D4AF37, #B8963A);
    color: #1A1D2E;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 275, 55, 0.6);
    animation: pulse-gold 2s infinite;
    font-size: 0.9rem;
    margin-top: 16px;
}

.badge-coming {
    background: rgba(74, 85, 104, 0.7);
    color: #B8C0D0;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 400;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 16px;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 12px rgba(212, 275, 55, 0.6); }
    50% { box-shadow: 0 4px 20px rgba(212, 275, 55, 0.9); }
}

/* Stats Section */
.massive-stats-section {
    background: linear-gradient(to bottom, #111827 0%, #0E1520 100%);
    padding: 80px 0;
    text-align: center;
    color: #E6EAF2;
}

.massive-stats-section .stats-headline {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #D4AF37, #E6C35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.massive-stats-section .primary-stat {
    font-size: 34px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    margin: 20px 0;
}

.massive-stats-section .stat-label {
    font-size: 1.25rem;
    color: #B8C0D0;
    margin-bottom: 30px;
}

.massive-stats-section h3 {
    color: #D4AF37;
}

.massive-stats-section div {
    color: #E6EAF2;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-collapse: collapse;
    background: rgba(46, 52, 64, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    color: #E6EAF2;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 275, 55, 0.2);
    color: #E6EAF2;
}

.comparison-table th {
    background: rgba(26, 29, 46, 0.8);
    font-weight: 700;
    color: #D4AF37;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    color: #E6EAF2;
    font-weight: 400;
}

.comparison-table tr:hover {
    background: none;
}

.comparison-table .highlight-col {
    background: rgba(212, 275, 55, 0.15);
    font-weight: 400;
    color: #E6EAF2;
}

/* Responsive Grid */
.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid-new {
        grid-template-columns: 1fr;
    }
    
    .massive-stats-section .primary-stat {
        font-size: 2rem;
    }
    
    .massive-stats-section .stats-headline {
        font-size: 1.75rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #D4AF37;
}

.feature-item p {
    color: #7F8899;
    line-height: 1.6;
}

/* Scrollbar styling for card content */



/* Pricing Grid Layouts */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-4,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Uniform Pricing Card Content */
.pricing-card .features-list {
    flex-grow: 1;
    margin: 20px 0;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card h3 {
    min-height: 2.5rem;
}

.pricing-card .card-description {
    min-height: 1.5rem;
}

.pricing-card .price-amount {
    min-height: 4rem;
}

.pricing-card .billing-info {
    min-height: 1.5rem;
}

.pricing-card .trial-note {
    min-height: 2.5rem;
}

.pricing-card .value-text {
    min-height: 2rem;
}

/* ========================================
   PRICING CARDS - FORCED UNIFORM STYLING
======================================== */
.pricing-card {
    background: #131C2E !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(212, 275, 55, 0.18) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 650px !important;
    text-align: center !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.pricing-card:hover {
    transform: translateY(-8px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 16px 48px rgba(0, 0, 0, 0.4) !important;
}

.pricing-card.featured {
    border: 2px solid rgba(212, 275, 55, 0.6) !important;
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12), 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

.pricing-card .features-list {
    flex-grow: 1 !important;
    margin: 20px 0 !important;
    text-align: left !important;
}

.pricing-card .btn {
    margin-top: auto !important;
    width: 100% !important;
}

.pricing-card h3 {
    min-height: 2.5rem !important;
    margin: 16px 0 !important;
}

.pricing-card .card-description {
    min-height: 1.5rem !important;
    margin-bottom: 20px !important;
}

.pricing-card .price-amount {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #D4AF37 !important;
    min-height: 4rem !important;
    margin-bottom: 8px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.pricing-card .price-amount span {
    font-size: 1.25rem !important;
    color: #B8C0D0 !important;
    font-weight: 400 !important;
}

.pricing-card .billing-info {
    min-height: 1.5rem !important;
    margin-bottom: 30px !important;
}

.pricing-card .trial-note {
    min-height: 2.5rem !important;
    margin-bottom: 20px !important;
}

.pricing-card .value-text {
    min-height: 2rem !important;
    margin-bottom: 20px !important;
}


/* Total Options Box - Red Border */
.total-options {
    border: 1px solid rgba(42, 127, 143, 0.3);
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(42, 127, 143, 0.05);
    margin: 16px 0;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #E6EAF2;
}

/* ========================================
   MOBILE MENU SYSTEM
======================================== */

/* Hamburger button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile styles */
@media (max-width: 968px) {
    /* Show hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide nav-links and user-actions by default on mobile */
    .nav-links,
    .user-actions {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    /* Show when active */
    .nav-links.active,
    .user-actions.active {
        display: flex;
    }
    
    /* Stack nav buttons vertically on mobile */
    .nav-links {
        list-style: none;
        padding: 20px;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Make nav buttons horizontal and full width on mobile */
    .nav-button {
        width: 100%;
        height: auto !important;
        min-height: 50px;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
    }
    
    .nav-button:hover {
        transform: translateY(-2px) !important;
    }
    
    /* User actions on mobile */
    .user-actions {
        padding: 20px;
        gap: 10px;
        border-top: 1px solid rgba(212, 275, 55, 0.2);
    }
    
    .user-actions .nav-button {
        width: 100%;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-links,
    .user-actions {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
}
.banner-released-v2 {
    background: linear-gradient(135deg, #080C18 0%, #05070F 100%);
    border-top: 3px solid #22C55E;
    border-bottom: 3px solid #D4AF37;
    border-radius: 60px;
    padding: 16px 0 16px 40px;
    width: 98%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-coming-v2 {
    background: linear-gradient(135deg, #080C18 0%, #05070F 100%);
    border-top: 3px solid #2A7F8F;
    border-bottom: 3px solid #D4AF37;
    border-radius: 60px;
    padding: 16px 0 16px 40px;
    width: 98%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-label-v2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 14px 32px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    animation: pulse-badge 3s ease-in-out infinite;
}

.banner-released-v2 .banner-label-v2 {
    background: linear-gradient(135deg, 
        rgba(76, 275, 80, 0.95) 0%, 
        rgba(102, 187, 106, 0.95) 100%);
    color: #FFFFFF;
    border: 2px solid rgba(129, 199, 132, 0.6);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-coming-v2 .banner-label-v2 {
    background: linear-gradient(135deg, 
        rgba(42, 127, 143, 0.95) 0%, 
        rgba(30, 95, 106, 0.95) 100%);
    color: #FFFFFF;
    border: 2px solid rgba(42, 127, 143, 0.6);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 6px 30px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.banner-scroll-v2 {
    flex: 1;
    overflow: hidden;
    display: flex;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.banner-text-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: scroll-smooth 80s linear infinite;
    white-space: nowrap;
    padding-right: 20px;
}

.announcement-banner-v2:hover .banner-text-v2 {
    animation-play-state: paused;
}

@keyframes scroll-smooth {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-item-v2 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.banner-released-v2 .banner-item-v2 {
    background: linear-gradient(135deg, 
        rgba(212, 275, 55, 0.3) 0%, 
        rgba(244, 208, 63, 0.25) 100%);
    color: #D4AF37;
    border: 1.5px solid rgba(212, 275, 55, 0.4);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.banner-released-v2 .banner-item-v2:hover {
    background: linear-gradient(135deg, 
        rgba(212, 275, 55, 0.5) 0%, 
        rgba(244, 208, 63, 0.45) 100%);
    border-color: rgba(212, 275, 55, 0.7);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 6px 24px rgba(212, 275, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.banner-coming-v2 .banner-item-v2 {
    background: rgba(42, 127, 143, 0.15);
    color: #3A9AAB;
    border: 1.5px solid rgba(42, 127, 143, 0.35);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.banner-coming-v2 .banner-item-v2:hover {
    background: rgba(42, 127, 143, 0.25);
    border-color: rgba(42, 127, 143, 0.6);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 6px 24px rgba(42, 127, 143, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.banner-separator-v2 {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
}

.banner-released-v2 .banner-separator-v2 {
    color: rgba(76, 275, 80, 0.6);
}

.banner-coming-v2 .banner-separator-v2 {
    color: rgba(42, 127, 143, 0.6);
}

/* ========================================
   D&D GENERATORS PAGE - STRATEGIC ADDITIONS
   Added: January 2025
======================================== */


        .onboarding-guidance {
            background: #070B14;
            padding: 60px 0;
            margin: 0;
        }
        .onboarding-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37, #E6C35C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 15px;
        }
        .onboarding-intro {
            text-align: center;
            color: #7F8899;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }
        .onboarding-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .onboarding-path {
            background: #0F1624;
            padding: 30px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(212, 275, 55, 0.12);
            border-top: 2px solid #2A7F8F;
            transition: all 0.3s ease;
        }
        .onboarding-path:hover {
            border-color: rgba(212, 275, 55, 0.3);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .path-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: white;
        }
        .onboarding-path h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }
        .onboarding-path p {
            color: #7F8899;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        .path-links {
            padding-top: 15px;
            border-top: 1px solid #1E2840;
            font-size: 0.9rem;
        }
        .path-links a {
            color: #2A7F8F;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .path-links a:hover {
            color: #3A9AAB;
            text-decoration: underline;
        }
        .onboarding-note {
            text-align: center;
            color: #7F8899;
            font-size: 0.95rem;
            font-style: italic;
            max-width: 700px;
            margin: 0 auto;
        }
        .platform-value-statement {
            background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
            padding: 60px 0;
            border-top: 1px solid rgba(212, 275, 55, 0.15);
            border-bottom: 1px solid rgba(212, 275, 55, 0.15);
            position: relative;
            width: 100%;
        }
        
        .platform-value-statement .container {
            max-width: 100% !important;
            width: 100% !important;
        }
        .platform-value-statement::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        }
        .value-content {
            max-width: 95%;
            width: 95%;
            margin: 0 auto;
            background: #131C2E;
            padding: 45px 55px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(212, 275, 55, 0.18);
        }
        .value-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #D4AF37, #E6C35C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-align: center;
        }
        .value-primary {
            font-size: 1.15rem;
            color: #E6EAF2;
            line-height: 1.8;
            margin-bottom: 25px;
            font-weight: 500;
        }
        .value-secondary {
            font-size: 1.05rem;
            color: #7F8899;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .value-tertiary {
            font-size: 0.98rem;
            color: #D4AF37;
            line-height: 1.7;
            padding: 25px 30px;
            background: rgba(212, 275, 55, 0.05);
            border-left: 4px solid #D4AF37;
            border-radius: 12px;
            margin-top: 30px;
            box-shadow: none;
        }
        .value-tertiary em {
            font-style: normal;
            font-weight: 500;
        }
        .categories-section {
            padding-top: 60px;
        }
        @media (max-width: 768px) {
            .onboarding-title { font-size: 1.8rem; }
            .onboarding-paths { grid-template-columns: 1fr; gap: 20px; }
            .onboarding-path { padding: 25px; }
            .value-content h2 { font-size: 1.6rem; }
            .value-primary { font-size: 1.05rem; }
        }
    
        /* 4-column categories grid - full width */
        .categories-grid {
            display: grid !important;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 25px !important;
            margin-top: 40px;
            margin-bottom: 80px !important;
            width: 99% !important;
            max-width: 99% !important;
        }
        
        .categories-section .container {
            max-width: 99% !important;
            width: 99% !important;
        }
        
        @media (max-width: 1400px) {
            .categories-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }
        
        @media (max-width: 900px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        
        @media (max-width: 600px) {
            .categories-grid {
                grid-template-columns: 1fr !important;
            }
        }
        
        /* Scroll to top button */
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #D4AF37, #B8963A);
            color: #05070F;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(212, 275, 55, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #scrollToTop.visible {
            opacity: 1;
            visibility: visible;
        }
        
        #scrollToTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(212, 275, 55, 0.4);
        }
    
    


/* Data Cards - Business Proposal */
        .data-card {
            background: #131C2E;
            padding: 45px 40px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(212, 275, 55, 0.18);
            border-top: 2px solid #D4AF37;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .data-card:hover {
            border-color: rgba(212, 275, 55, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12);
        }
        
        .data-card .number {
            font-size: 3rem;
            font-weight: 900;
            color: #D4AF37;
            font-family: 'Montserrat', sans-serif;
            display: block;
            margin-bottom: 15px;
            line-height: 1.2;
            white-space: nowrap;
        }
        
        .data-card .label {
            color: #7F8899;
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            display: block;
        }

/* BUSINESS PROPOSAL PAGE STYLES */

        .proposal-container {
            max-width: 90%;
            width: 90%;
            margin: 0 auto;
            padding: 60px 40px;
            background: #070B14;
        }
        
        .proposal-cover {
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(135deg, #080C18, #0F1528);
            border: 1px solid rgba(212, 275, 55, 0.2);
            color: white;
            border-radius: 24px;
            margin-bottom: 60px;
        }
        
        .proposal-cover h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .proposal-cover .subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .proposal-cover .meta {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 40px;
        }
        
        .proposal-section {
            margin-bottom: 60px;
            padding: 40px;
            background: #131C2E;
            border-radius: 16px;
            border-left: 5px solid #D4AF37;
        }
        
        .proposal-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .proposal-section .page-number {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37, #B8963A);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-right: 15px;
        }
        
        .proposal-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2A7F8F;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .proposal-section p {
            color: #E6EAF2;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .proposal-section ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }
        
        .proposal-section ul li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #E6EAF2;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .proposal-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .highlight-box {
            background: #131C2E;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid rgba(212, 275, 55, 0.18);
            border-left: 4px solid #D4AF37;
            margin: 25px 0;
        }
        
        .highlight-box strong {
            color: #D4AF37;
        }
        
        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 25px 0;
            max-width: 100%;
        }
        
        .data-card {
            background: #131C2E;
            padding: 45px 40px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(212, 275, 55, 0.18);
            border-top: 2px solid #D4AF37;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .data-card:hover {
            border-color: rgba(212, 275, 55, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12);
        }
        
        .data-card .number {
            font-size: 3rem;
            font-weight: 900;
            color: #D4AF37;
            font-family: 'Montserrat', sans-serif;
            display: block;
            margin-bottom: 15px;
            line-height: 1.2;
            white-space: nowrap;
        }
        
        .data-card .label {
            color: #7F8899;
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            display: block;
        }
        
        .pricing-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        
        .pricing-tier {
            background: #0F1624;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(212, 275, 55, 0.15);
            transition: all 0.3s ease;
        }
        
        .pricing-tier:hover {
            border-color: rgba(212, 275, 55, 0.3);
            transform: translateY(-5px);
        }
        
        .pricing-tier .price {
            font-size: 2rem;
            font-weight: 900;
            color: #D4AF37;
            margin-bottom: 5px;
        }
        
        .pricing-tier .tier-name {
            color: #E6EAF2;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .table-container {
            overflow-x: auto;
            margin: 25px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0F1624;
            border-radius: 12px;
            overflow: hidden;
        }
        
        table th {
            background: rgba(212, 275, 55, 0.15);
            color: #D4AF37;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        table td {
            padding: 15px;
            border-bottom: 1px solid #1E2840;
            color: #E6EAF2;
        }
        
        table tr:last-child td {
            border-bottom: none;
        }
        
        table tr:hover {
            background: rgba(212, 275, 55, 0.04);
        }
        
        .key-point {
            background: rgba(212, 275, 55, 0.05);
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            border-left: 4px solid #D4AF37;
        }
        
        .key-point strong {
            color: #D4AF37;
            font-size: 1.1rem;
        }
        
        @media print {
            .proposal-section {
                page-break-inside: avoid;
            }
        }
        
        @media (max-width: 768px) {
            .proposal-cover h1 {
                font-size: 2rem;
            }
            
            .proposal-section {
                padding: 25px 20px;
            }
            
            .proposal-section h2 {
                font-size: 1.5rem;
            }
        }
    

@media (max-width: 768px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
        }

/* Print Section Button */
.print-section-btn {
    background: #D4AF37;
    color: #05070F;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.print-section-btn:hover {
    background: #B8963A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 275, 55, 0.3);
}

.print-section-btn i {
    font-size: 0.9rem;
}

@media print {
    .print-section-btn {
        display: none;
    }
}
.particle,
.particles-container,
canvas.particles {
    pointer-events: none;
}
section {
    position: relative;
    z-index: 1;
}
.announcement-banner-v2 {
    margin-bottom: 60px; /* adjust to taste */
}
/* ═══════════════════════════════════════════════════════════════════════════
   Visinvoke Roadmap Section — vis-roadmap-* namespace
   Paste this block at the END of styles.css (after all existing rules).
   No global element selectors — zero risk of colliding with anything else.
═══════════════════════════════════════════════════════════════════════════ */

/* Outer container ─────────────────────────────────────────────────────── */
.vis-roadmap-section {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    padding: 36px 32px 28px;
    background: #0A0F1A;
    border: 1px solid rgba(212, 275, 55, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55),
                0 1px 0 rgba(212, 275, 55, 0.08) inset;
    position: relative;
    z-index: 9999;
}

/* Section heading ─────────────────────────────────────────────────────── */
.vis-roadmap-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #D4AF37;
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

/* Disclaimer / footer note ────────────────────────────────────────────── */
.vis-roadmap-disclaimer,
.vis-roadmap-footer-note {
    text-align: center;
    color: #7F8899;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 820px;
}
.vis-roadmap-footer-note {
    margin-top: 24px;
    margin-bottom: 0;
}

/* Grid rows ───────────────────────────────────────────────────────────── */
.vis-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.vis-roadmap-grid:last-of-type {
    margin-bottom: 0;
}

/* Individual card ─────────────────────────────────────────────────────── */
.vis-roadmap-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #131C2E;
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-radius: 14px;
    padding: 20px 16px;
    cursor: pointer;
    transition: background 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
}
.vis-roadmap-card:hover {
    background: #1A2438;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 275, 55, 0.12);
}

/* Future / long-term card variant ─────────────────────────────────────── */
.vis-roadmap-card--future {
    background: #0D1320;
    border-color: rgba(212, 275, 55, 0.08);
}
.vis-roadmap-card--future:hover {
    background: #121B2E;
    border-color: rgba(212, 275, 55, 0.4);
}

/* Emoji ───────────────────────────────────────────────────────────────── */
.vis-roadmap-card-emoji {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 10px;
}
.vis-roadmap-card--future .vis-roadmap-card-emoji {
    opacity: 0.75;
}

/* Count (large number) ────────────────────────────────────────────────── */
.vis-roadmap-card-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.1;
    margin-bottom: 6px;
}

/* Category title ──────────────────────────────────────────────────────── */
.vis-roadmap-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}
.vis-roadmap-card--future .vis-roadmap-card-title {
    color: #B8C0D0;
    margin-top: 4px;
}

/* Description text ────────────────────────────────────────────────────── */
.vis-roadmap-card-desc {
    font-size: 0.76rem;
    color: #B8C0D0;
    line-height: 1.45;
    flex-grow: 1;
}
.vis-roadmap-card--future .vis-roadmap-card-desc {
    color: #7F8899;
}

/* Status badges ───────────────────────────────────────────────────────── */
.vis-roadmap-card-status {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* "8,000 LIVE NOW" */
.vis-roadmap-status-live {
    color: #22C55E;
}

/* "ROADMAP 2026 – 2029" */
.vis-roadmap-status-roadmap {
    color: #D4AF37;
}

/* "ROADMAP 2029–2030" */
.vis-roadmap-status-future {
    color: #7F8899;
}

/* "LONG-TERM ROADMAP" */
.vis-roadmap-status-longterm {
    color: #7F8899;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .vis-roadmap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vis-roadmap-section {
        padding: 28px 18px 22px;
        max-width: 100%;
        border-radius: 12px;
    }
    .vis-roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .vis-roadmap-heading {
        font-size: 1.2rem;
    }
    .vis-roadmap-card-count {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vis-roadmap-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================
   Visinvoke Authority Bar
   ================================ */

.vis-authority-bar {
    width: 100%;
    background: #0F1624;
    color: #E6EAF2;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    padding: 26px 0;
    margin: 40px 0;
    letter-spacing: 0.6px;
    border-left: 4px solid #D4AF37;
    border-top: 1px solid rgba(212,275,55,0.25);
    border-bottom: 1px solid rgba(212,275,55,0.25);
}

.vis-authority-bar strong {
    color: #D4AF37;
    font-weight: 900;
}
/* ═══════════════════════════════════════════════════════════
   Roadmap Teaser Strip
═══════════════════════════════════════════════════════════ */

.roadmap-teaser {
    background: linear-gradient(to bottom, #0F1624 0%, #0C1320 100%);
    border-top: 1px solid rgba(212, 275, 55, 0.2);
    border-bottom: 1px solid rgba(212, 275, 55, 0.2);
    padding: 56px 0;
    text-align: center;
}

.roadmap-teaser h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #E6C35C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.roadmap-teaser p {
    color: #B8C0D0;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 28px;
}

.btn-roadmap {
    display: inline-block;
    background: transparent;
    color: #D4AF37;
    border: 1px solid rgba(212, 275, 55, 0.45);
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-roadmap:hover {
    background: rgba(212, 275, 55, 0.1);
    border-color: #D4AF37;
    color: #FFD700;
}

@media (max-width: 768px) {
    .roadmap-teaser {
        padding: 40px 0;
    }
    .roadmap-teaser p {
        font-size: 0.95rem;
        padding: 0 18px;
    }
}
/* ============================================================
   PLATFORM EXPANSION MOMENTUM SECTION
   Add this block to styles.css
   ============================================================ */

.platform-momentum {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(to bottom, #09090E 0%, #0D0D14 60%, #0A0A0F 100%);
    overflow: hidden;
}

.platform-momentum::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(212, 275, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.momentum-header {
    text-align: center;
    margin-bottom: 52px;
}

.momentum-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.momentum-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #7A7A90;
    margin: 0;
    letter-spacing: 0.02em;
}

.momentum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.momentum-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 275, 55, 0.18);
    border-radius: 18px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.momentum-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 275, 55, 0.04), transparent);
    pointer-events: none;
    border-radius: inherit;
}

.momentum-card:hover {
    border-color: rgba(212, 275, 55, 0.38);
    box-shadow: 0 0 28px rgba(212, 275, 55, 0.10), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.momentum-card-featured {
    border-color: rgba(212, 275, 55, 0.28);
    background: linear-gradient(145deg, rgba(212, 275, 55, 0.07) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.momentum-card-featured:hover {
    border-color: rgba(212, 275, 55, 0.55);
    box-shadow: 0 0 40px rgba(212, 275, 55, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.momentum-card-pro {
    background: linear-gradient(145deg, rgba(180, 212, 100, 0.04) 0%, rgba(212, 275, 55, 0.03) 100%);
    border-color: rgba(160, 200, 80, 0.18);
}

.momentum-card-pro:hover {
    border-color: rgba(160, 200, 80, 0.35);
    box-shadow: 0 0 28px rgba(160, 200, 80, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.momentum-card-inner {
    padding: 28px 26px 30px;
}

.momentum-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 275, 55, 0.1);
    color: #D4AF37;
    margin-bottom: 18px;
}

.momentum-icon-featured {
    background: rgba(212, 275, 55, 0.15);
    color: #FFD700;
}

.momentum-icon-pro {
    background: rgba(160, 200, 80, 0.12);
    color: #A8D060;
}

.momentum-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #E8E8F0;
    margin: 0 0 14px;
    line-height: 1.4;
}

.momentum-card-body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #8A8AA0;
    line-height: 1.7;
    margin: 0;
}

.momentum-highlight {
    color: #FFD700;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.momentum-highlight-pro {
    color: #B8DC70;
}

.momentum-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #A8D060;
    background: rgba(160, 200, 80, 0.12);
    border: 1px solid rgba(160, 200, 80, 0.25);
    border-radius: 6px;
    padding: 2px 8px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1024px) {
    .momentum-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .platform-momentum {
        padding: 60px 0 70px;
    }
    .momentum-header {
        margin-bottom: 36px;
    }
    .momentum-card-inner {
        padding: 22px 20px 24px;
    }
    .momentum-grid {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE FIXES - Banner running text + Hero CTA buttons
   Appended fix block - surgical mobile corrections only
═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── Running banner: stack label above scroller on mobile ── */
    .banner-released-v2,
    .banner-coming-v2 {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        border-radius: 20px;
        gap: 10px;
        width: calc(100% - 24px);
    }

    .banner-label-v2 {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
        padding: 9px 18px;
        text-align: center;
        align-self: center;
        white-space: normal;
        max-width: 100%;
    }

    .banner-scroll-v2 {
        width: 100%;
        min-width: 0;
    }

    .banner-text-v2 {
        gap: 12px;
        font-size: 0.82rem;
    }

    .banner-item-v2 {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    /* ── Hero CTA buttons: full-width stacked column ── */
    div[style*="display: flex; justify-content: center; gap: 16px"],
    div[style*="display:flex;justify-content:center;gap:16px"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 0 4px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-hero {
        width: 100% !important;
        min-height: 52px !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        margin: 0 !important;
        white-space: normal;
        line-height: 1.3;
    }

    .btn-hero + .btn-hero {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {

    .banner-released-v2,
    .banner-coming-v2 {
        border-radius: 14px;
        padding: 12px 12px;
        width: calc(100% - 16px);
    }

    .banner-label-v2 {
        font-size: 0.68rem;
        letter-spacing: 1px;
        padding: 8px 14px;
    }

    .banner-item-v2 {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .btn-hero {
        font-size: 0.95rem !important;
        padding: 13px 20px !important;
        min-height: 48px !important;
    }
}
.nav-logo small {
  font-size: 0.65em;
  opacity: 0.8;
  letter-spacing: 0.08em;
}
/* ================================================================================
   VISINVOKE LAYOUT SYSTEM — REPLACES ALL INLINE MAX-WIDTH OVERRIDES
   All section containers now use named classes instead of inline styles.
   Container base is already 1400px in .container above.
================================================================================ */

/* ── Section containers ─────────────────────────────────────────────────── */
/* Default: use .container (1400px) with 32px side padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Narrow reading container — authority/FAQ text blocks */
.container-reading {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

/* ── Paragraph reading widths ───────────────────────────────────────────── */
/* Section description / intro paragraphs — constrain text width for readability */
.section-p {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.82;
}
.section-p-wide {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.82;
}
.section-p-narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.82;
}

/* ── Uniform grid systems ───────────────────────────────────────────────── */

/* 3-column equal-height grid — phase cards, pricing, feature tiles */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* 3-column card with flex column interior — forces equal height */
.grid-3col > * {
    display: flex;
    flex-direction: column;
}

/* 2-column grid */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* 4-column grid */
.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* Feature tiles — 3 col, 6 items = 2 clean rows */
.grid-feature-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Auto-fit grids for organic content (categories, trust badges) */
.grid-auto-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: stretch;
}
.grid-auto-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Steps — 3 equal columns */
.grid-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
}

/* ── Comparison grid — 2 equal columns ─────────────────────────────────── */
.grid-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* ── Advantages / tick list grid — 3 columns ───────────────────────────── */
.grid-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Hobby packs grid — 4 columns ──────────────────────────────────────── */
.grid-hobby {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

/* ── Milestones / roadmap strip ─────────────────────────────────────────── */
.grid-milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: stretch;
}

/* ── Flex body — forces card body text to fill remaining space ──────────── */
.card-body-flex {
    flex: 1;
}

/* ── Responsive breakpoints ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .grid-3col,
    .grid-feature-tiles,
    .grid-steps { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-4col,
    .grid-hobby,
    .grid-milestones { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-advantages { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 700px) {
    .container,
    .container-reading { padding: 0 18px; }
    .grid-3col,
    .grid-feature-tiles,
    .grid-steps,
    .grid-2col,
    .grid-compare,
    .grid-advantages { grid-template-columns: 1fr !important; }
    .grid-4col,
    .grid-hobby,
    .grid-milestones { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-auto-3,
    .grid-auto-4 { grid-template-columns: 1fr !important; }
}

@media (max-width: 420px) {
    .grid-4col,
    .grid-hobby,
    .grid-milestones { grid-template-columns: 1fr !important; }
}

/* ================================================================================
   HERO ZONE SYSTEM — glass panel layout for hero section
================================================================================ */

/* Stat chips grid */
.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto 32px;
}

/* Glass card — shared base for zone 2 and zone 4 */
.hero-glass-card {
    max-width: 1320px;
    margin: 0 auto 32px;
    padding: 36px 60px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    text-align: center;
}

/* Zone 2 — value prop card (gold tint) */
.hero-glass-vp {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(212,175,55,0.2);
    background-image: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 55%);
}

/* Zone 4 — explanation card (darker) */
.hero-glass-exp {
    background: rgba(10,10,20,0.55);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 32px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Zone 6 — gold closing strip */
.hero-gold-strip {
    text-align: center;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,215,0,0.06));
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    max-width: 1320px;
    margin: 0 auto;
}

/* Inner paragraph text inside glass cards */
.hero-card-p {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
    line-height: 1.85;
    text-align: center;
    color: #C0C0C0;
}

/* Stat chip individual card */
.hero-stat-chip {
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-stat-chip-gold {
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(212,175,55,0.25);
}
.hero-stat-chip-neutral {
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-chip-green {
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(16,185,129,0.25);
}
.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: #A0A0B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hero-glass-card,
    .hero-glass-vp,
    .hero-glass-exp { padding: 28px 28px !important; }
}
@media (max-width: 500px) {
    .hero-stat-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
}
