/* ============================================
   SEVA LANDING PAGE - STYLES
   Mobile-first, Core Web Vitals Optimized
============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
============================================ */
:root {
    /* Brand Colors */
    --primary: #AD0000;
    --primary-dark: #8A0000;
    --primary-darker: #660000;
    --primary-light: #FFE9EB;
    --primary-lighter: #FFF5F5;
    
    /* Semantic Colors */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --error: #EF4444;
    --error-light: #FEE2E2;
    
    /* Neutrals */
    --text-main: #171717;
    --text-muted: #525252;
    --text-light: #737373;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    
    /* Typography */
    --font-sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 10px 25px -5px rgba(173, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p { margin: 0; }

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

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* ============================================
   3. LAYOUT & CONTAINER
============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.25rem; }
}

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ============================================
   4. NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--neutral-100);
}

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

/* Nav Menu */
.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition-slow), opacity var(--transition-base);
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    z-index: 999;
}

.nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        transform: none;
        opacity: 1;
        overflow: visible;
        box-shadow: none;
        border-radius: 0;
    }
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        flex-direction: row;
        gap: 0;
    }
}

.nav-link {
    display: block;
    padding: 0.875rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

@media (min-width: 768px) {
    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.95rem;
        color: var(--text-muted);
    }
    
    .nav-link:hover {
        background: transparent;
    }
}

.nav-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--neutral-200);
}

.nav-actions .btn {
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .nav-actions {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
    }
    
    .nav-actions .btn {
        flex: none;
    }
}

/* ============================================
   5. BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-sm {
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

.btn-dark:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-light:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

/* ============================================
   6. HERO SECTION
============================================ */
.hero {
    padding: 6.5rem 0 3rem;
    background: linear-gradient(180deg, var(--primary-lighter) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }
}

@media (min-width: 992px) {
    .hero { padding: 8rem 0 5rem; }
}

/* Hero Blob Background */
.hero-blob {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    color: var(--primary);
    opacity: 0.04;
    z-index: 0;
    animation: pulse-blob 12s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes pulse-blob {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(10deg); }
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content { text-align: left; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.875rem, 5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.65;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--text-main);
}

@media (max-width: 991px) {
    .hero-subtitle { margin-left: auto; margin-right: auto; }
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.75rem;
}

@media (min-width: 992px) {
    .hero-cta { justify-content: flex-start; }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (min-width: 992px) {
    .hero-trust { justify-content: flex-start; }
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-trust svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-cards {
        max-width: 480px;
        gap: 1rem;
    }
}

/* Demo Cards */
.demo-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid var(--neutral-200);
    position: relative;
}

@media (min-width: 640px) {
    .demo-card { padding: 1.25rem; }
}

.demo-card--free {
    opacity: 0.75;
    border-color: var(--error-light);
}

.demo-card--hunter {
    border-color: var(--success-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
}

.demo-label {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.demo-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .demo-badge { font-size: 0.7rem; }
}

.demo-badge--muted {
    background: var(--neutral-200);
    color: var(--text-muted);
}

.demo-badge--primary {
    background: var(--primary);
    color: #fff;
}

.demo-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .demo-text { font-size: 0.8rem; }
}

.demo-feedback {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
}

@media (min-width: 640px) {
    .demo-feedback { font-size: 0.75rem; }
}

.demo-feedback svg { flex-shrink: 0; }

.demo-feedback--error {
    background: var(--error-light);
    color: var(--error);
}

.demo-feedback--success {
    background: var(--success-light);
    color: var(--success);
    margin-bottom: 0.5rem;
}

.demo-solution {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

@media (min-width: 640px) {
    .demo-solution { font-size: 0.8rem; }
}

/* ============================================
   7. SECTION HEADER (Reusable)
============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .section-header { margin-bottom: var(--space-3xl); }
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   8. BENTO GRID FEATURES (UPDATED)
============================================ */
.bento-section {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .bento-section { padding: var(--space-4xl) 0; }
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-flow: dense; /* PENTING: Mengisi celah kosong otomatis */
}

/* Desktop: 3 Column Grid */
@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Hapus definisi rows fix agar fleksibel mengikuti konten */
        gap: 1.5rem;
    }
}

/* Individual Bento Item */
.bento-item {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    height: 100%; /* Pastikan tinggi kartu mengisi grid cell */
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Modifiers for Layout Spanning */
@media (min-width: 992px) {
    .bento-span-2 {
        grid-column: span 2;
    }
    
    .bento-span-3 {
        grid-column: span 3;
    }
    
    .bento-tall {
        grid-row: span 2;
    }
}

/* Styling Modifiers */
.bento-item.bg-dark {
    background: #171717;
    color: #fff;
    border: none;
}

.bento-item.bg-primary-subtle {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 100%);
    border-color: var(--primary-light);
}

.bento-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

/* Typography & Elements */
.bento-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.bento-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bento-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bento-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.bento-item.bg-dark p {
    color: #A3A3A3;
}

.bento-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

/* Icons */
.bento-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bg-white-10 { background: rgba(255, 255, 255, 0.1); color: #fff; }
.bg-muted-light { background: var(--neutral-100); }
.bg-primary-light { background: var(--primary-light); }

/* Visualization: Core Tech Bars */
.bento-comparison {
    margin-top: auto;
    padding-top: 2rem;
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.comp-label { width: 60px; flex-shrink: 0; }
.color-primary { color: var(--primary); }

.comp-bar-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    height: 24px;
    flex-grow: 1;
}

.comp-bar {
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    height: 24px;
    font-size: 0.7rem;
    color: #fff;
    border-radius: 4px;
}

.bg-muted { background: var(--neutral-300); color: var(--text-muted); }
.bg-primary { background: var(--primary-light); color: var(--primary); border-radius: 0; }
.bg-dark { background: var(--text-main); color: #fff; border-radius: 0; }

/* Visualization: Rewrite Preview */
.bento-preview {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.preview-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.w-75 { width: 75%; }
.w-50 { width: 50%; }

.preview-card-floating {
    background: var(--success);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    bottom: 15px;
    right: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Visualization: X-Factor Chart */
.x-factor-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .x-factor-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .x-factor-text {
        max-width: 50%;
    }
}

.x-factor-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

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

.stat-val { font-weight: 800; font-size: 1.25rem; color: var(--primary); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   9. PRICING SECTION
============================================ */
.pricing {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .pricing { padding: var(--space-4xl) 0; }
}

.pricing-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.5rem;
    border: 2px solid var(--neutral-200);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

@media (min-width: 640px) {
    .pricing-card { padding: 2rem; }
}

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

/* Featured Pricing Card */
.pricing-card--featured {
    background: linear-gradient(135deg, var(--text-main) 0%, #000 100%);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 992px) {
    .pricing-card--featured {
        transform: scale(1.03);
        z-index: 1;
    }
    
    .pricing-card--featured:hover {
        transform: scale(1.03) translateY(-4px);
    }
}

.pricing-card--featured .pricing-desc,
.pricing-card--featured .credits-note {
    color: #A3A3A3;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pricing-badge--dark {
    background: var(--text-main);
    color: #fff;
    border: 2px solid #fff;
}

.pricing-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.crown-icon {
    color: var(--warning);
}

.pricing-name {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.375rem;
}

.price-prefix {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card--featured .price-prefix {
    color: #A3A3A3;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price-original {
    font-size: 1rem;
    color: #A3A3A3;
    text-decoration: line-through;
    margin-right: 0.25rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card--featured .price-period {
    color: #A3A3A3;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Pricing Credits */
.pricing-credits {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    margin-bottom: 1.25rem;
}

.pricing-credits--featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.credits-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.credits-row strong {
    font-size: 0.95rem;
}

.credits-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--neutral-200);
    color: var(--text-muted);
}

.credits-badge--success {
    background: var(--success);
    color: #fff;
}

.credits-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Top Up Options */
.topup-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.topup-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    text-align: left;
    width: 100%;
}

.topup-option strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.125rem;
}

.topup-option span {
    font-size: 0.8rem;
    color: var(--primary);
}

.topup-credits {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.625rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    white-space: nowrap;
}

/* Pricing Features List */
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--warning);
}

.pricing-engine {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.875rem;
}

.pricing-tip {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-xl);
}

/* ============================================
   10. FAQ SECTION
============================================ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .faq { padding: var(--space-4xl) 0; }
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.125rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--neutral-50);
}

.faq-item[open] .faq-question {
    background: var(--primary-lighter);
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   11. FOOTER
============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: #fff;
    border-top: 1px solid var(--neutral-200);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 2fr;
        gap: 3rem;
    }
}

.footer-brand .navbar-brand {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 280px;
}

.studev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: var(--neutral-100);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.studev-badge:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.studev-badge svg {
    flex-shrink: 0;
}

/* Footer Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* Footer Bottom */
.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   12. UTILITIES
============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   13. REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   14. PRINT STYLES
============================================ */
@media print {
    .navbar,
    .hero-blob,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .hero {
        padding: 1rem 0;
        min-height: auto;
        background: none;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}

/* ============================================
   14. MOBILE PRICING CAROUSEL (OPTIMIZATION)
============================================ */

/* Swipe Hint Animation */
.swipe-hint {
    display: none; /* Default hidden di desktop */
}

@media (max-width: 767px) {
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        padding-right: 0.5rem;
        animation: bounce-right 2s infinite;
    }

    @keyframes bounce-right {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(3px); }
    }
    
    /* Utility class */
    .mobile-only {
        display: flex !important;
    }

    /* Container Scroll Setup */
    .pricing-grid {
        display: flex; /* Ganti dari Grid ke Flex */
        flex-wrap: nowrap; /* Paksa satu baris */
        overflow-x: auto; /* Aktifkan scroll samping */
        scroll-snap-type: x mandatory; /* Snap effect agar kartu pas di tengah */
        gap: 1rem;
        
        /* Layout Adjustment for Full Bleed */
        padding-bottom: 2rem; /* Ruang untuk shadow kartu */
        margin-left: -1rem; /* Mengabaikan padding container kiri */
        margin-right: -1rem; /* Mengabaikan padding container kanan */
        padding-left: 1.5rem; /* Spacer awal */
        padding-right: 1.5rem; /* Spacer akhir */
        
        /* Hide Scrollbar */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .pricing-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    /* Card Sizing */
    .pricing-card {
        flex: 0 0 85%; /* Lebar kartu 85% dari layar */
        min-width: 280px; /* Lebar minimum aman */
        scroll-snap-align: center; /* Posisi berhenti di tengah */
        height: auto; /* Reset height */
    }
    
    /* Visual Hint (Optional: Scale down non-active cards slightly) */
    .pricing-card:not(.pricing-card--featured) {
        margin-top: 1rem; /* Sedikit turun biar Hunter menonjol */
    }
}

/* ============================================
   15. REGISTER PAGE STYLES (ADDED)
============================================ */

.split-screen {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel (Branding) */
.left-panel {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: white;
}

.blob {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.blob-1 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
}

.left-content {
    position: relative;
    z-index: 2;
}

/* Use brand-logo from Navbar style if possible, or override here */
.left-panel .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    margin-bottom: 3rem;
    color: white;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Info Box (Left) - Updated for Public Launch */
.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0;
}

.studev-tag {
    font-size: 0.85rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

/* Right Panel (Form) */
.right-panel {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.6s ease-out;
}

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

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: #171717;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #404040;
}

.form-control {
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--neutral-50);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(173, 0, 0, 0.1);
    background: white;
}

.btn-primary-lumi {
    width: 100%;
    min-height: 52px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: 0.2s;
}

.btn-primary-lumi:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 0, 0, 0.2);
}

.alert-custom {
    display: none;
    background: #FFF1F2;
    border: 1px solid #FECDD3;
    color: #9F1239;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

@media (max-width: 991px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        align-items: flex-start;
        padding-top: 3rem;
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
}

/* ============================================
   REGISTER SUCCESS PAGE STYLES
   Prefix: reg-success-
============================================ */

/* Body override untuk halaman success */
body.reg-success-body {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Blobs - Success Page */
.reg-success-blob {
    position: absolute;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.reg-success-blob-1 {
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    animation: regSuccessFloat 8s ease-in-out infinite;
}

.reg-success-blob-2 {
    bottom: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    animation: regSuccessFloat 10s ease-in-out infinite reverse;
}

@keyframes regSuccessFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Success Card */
.reg-success-card {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: regSuccessCardEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes regSuccessCardEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Success Icon Animation */
.reg-success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.reg-success-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: regSuccessPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

@keyframes regSuccessPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5); }
}

.reg-success-circle i {
    color: white;
    animation: regSuccessCheckDraw 0.5s ease-out 0.3s both;
}

@keyframes regSuccessCheckDraw {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Confetti Particles */
.reg-success-confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: regSuccessConfettiFall 3s ease-out forwards;
}

@keyframes regSuccessConfettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(200px) rotate(720deg);
    }
}

/* Text Content */
.reg-success-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: #171717;
    margin-bottom: 0.75rem;
}

.reg-success-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.reg-success-subtitle strong {
    color: #171717;
}

/* User Info Badge */
.reg-success-user-badge {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.reg-success-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reg-success-user-info {
    flex: 1;
    min-width: 0;
}

.reg-success-user-name {
    font-weight: 700;
    color: #171717;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reg-success-user-email {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Countdown Timer */
.reg-success-redirect-info {
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #1E40AF;
    font-size: 0.95rem;
}

.reg-success-redirect-info i {
    flex-shrink: 0;
}

.reg-success-countdown-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #1E40AF;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 2px;
}

/* CTA Button - Override untuk success page */
.reg-success-btn {
    width: 100%;
    min-height: 52px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-top: 0;
}

.reg-success-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(173, 0, 0, 0.25);
    color: white;
}

/* Brand Footer */
.reg-success-brand-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reg-success-brand-footer-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reg-success-brand-footer strong {
    color: #171717;
}

/* Progress Bar */
.reg-success-progress-wrapper {
    width: 100%;
    height: 4px;
    background: var(--neutral-200);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.reg-success-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #10B981 100%);
    border-radius: 2px;
    animation: regSuccessProgressFill 3s linear forwards;
}

@keyframes regSuccessProgressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Spinning Loader Icon */
.reg-success-spin {
    animation: regSuccessSpin 1s linear infinite;
}

@keyframes regSuccessSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 480px) {
    .reg-success-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .reg-success-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .reg-success-title {
        font-size: 1.5rem;
    }

    .reg-success-subtitle {
        font-size: 0.95rem;
    }

    .reg-success-redirect-info {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
    }
}/* ============================================
   SEVA LANDING PAGE - ENHANCED STYLES
   Tambahan CSS untuk section baru
============================================ */

/* ============================================
   SOCIAL PROOF BAR
============================================ */
.social-proof-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    padding: 1.25rem 0;
    color: #fff;
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .proof-content {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.proof-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.proof-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
    .proof-divider { display: block; }
}

.proof-scholarships {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .proof-scholarships {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.scholarship-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.scholarship-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   PAIN POINTS SECTION
============================================ */
.pain-section {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .pain-section { padding: var(--space-4xl) 0; }
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pain-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pain-card {
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.pain-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   BENTO GRID ENHANCEMENTS
============================================ */
.bento-hero-item {
    grid-column: span 1;
}

@media (min-width: 992px) {
    .bento-hero-item {
        grid-column: span 2;
    }
}

.bento-wide {
    grid-column: span 1;
}

@media (min-width: 992px) {
    .bento-wide {
        grid-column: span 3;
    }
}

/* Enhanced Rewrite Preview */
.preview-original {
    background: rgba(255,255,255,0.08);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.preview-original .preview-label {
    font-size: 0.7rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.25rem;
}

.preview-original p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.preview-arrow {
    text-align: center;
    color: var(--success);
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.bento-preview .preview-card-floating {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 0.5rem;
}

.preview-card-floating span {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
}

.preview-card-floating p {
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
}

/* Demo card enhancement */
.demo-question {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .how-it-works { padding: var(--space-4xl) 0; }
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
}

.step-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--neutral-200);
    max-width: 280px;
    width: 100%;
    position: relative;
}

.step-card--highlight {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-connector {
    display: none;
    color: var(--neutral-300);
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .step-connector { display: block; }
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .testimonials { padding: var(--space-4xl) 0; }
}

.testimonial-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.testimonial-card {
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.testimonial-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content strong {
    color: var(--primary);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--neutral-200);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.author-detail {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

/* ============================================
   PRICING ENHANCEMENTS
============================================ */
.pricing-ribbon {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--success);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.05em;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.75rem;
}

.pricing-comparison {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--neutral-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
}

.pricing-comparison .pricing-tip {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-comparison strong {
    color: var(--text-main);
}

/* ============================================
   FINAL CTA SECTION
============================================ */
.final-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    color: #fff;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta { padding: var(--space-4xl) 0; }
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-content .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE FIXES
============================================ */
@media (max-width: 767px) {
    .bento-tall {
        grid-row: auto;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-card--hunter {
        transform: none;
    }
}

/* Text utilities */
.text-sm { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }

/* ============================================
   HELP CENTER PAGE STYLES
   Prefix: help-
============================================ */

/* Help Hero Section */
.help-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(180deg, var(--primary-lighter) 0%, #fff 100%);
    text-align: center;
}

@media (min-width: 768px) {
    .help-hero {
        padding: 8rem 0 4rem;
    }
}

.help-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.help-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.help-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Help Search Box */
.help-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.help-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.help-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.25rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    background: #fff;
    color: var(--text-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.help-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.help-search-input::placeholder {
    color: var(--text-light);
}

/* Quick Links Section */
.help-quick-links {
    padding: 2rem 0 3rem;
    background: #fff;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.quick-link-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.quick-link-card h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.quick-link-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Help Categories Section */
.help-categories {
    padding: 2rem 0 4rem;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .help-categories {
        padding: 3rem 0 5rem;
    }
}

.help-category {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

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

.help-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-200);
}

.help-category-icon {
    font-size: 1.5rem;
}

.help-category-header h2 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin: 0;
}

/* Help FAQ List */
.help-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-faq-item {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.help-faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.help-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition-fast);
}

.help-faq-question::-webkit-details-marker {
    display: none;
}

.help-faq-question:hover {
    background: var(--neutral-50);
}

.help-faq-item[open] .help-faq-question {
    background: var(--primary-lighter);
    color: var(--primary);
}

.help-faq-question .faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.help-faq-item[open] .help-faq-question .faq-chevron {
    transform: rotate(180deg);
}

.help-faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.help-faq-answer p {
    margin-bottom: 0.75rem;
}

.help-faq-answer p:last-child {
    margin-bottom: 0;
}

.help-faq-answer ul,
.help-faq-answer ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.help-faq-answer ul {
    list-style: disc;
}

.help-faq-answer ol {
    list-style: decimal;
}

.help-faq-answer li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.help-faq-answer li:last-child {
    margin-bottom: 0;
}

.help-faq-answer strong {
    color: var(--text-main);
}

.help-faq-answer ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Help Contact Section */
.help-contact {
    padding: 3rem 0;
    background: #fff;
}

@media (min-width: 768px) {
    .help-contact {
        padding: 4rem 0;
    }
}

.help-contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .help-contact-card {
        padding: 3rem;
    }
}

.help-contact-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.help-contact-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.help-contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .help-contact-options {
        flex-direction: row;
    }
}

.help-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    min-width: 180px;
}

.help-contact-btn:hover {
    transform: translateY(-2px);
}

.help-contact-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.help-contact-btn--whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.help-contact-btn--email {
    background: #fff;
    color: var(--primary);
}

.help-contact-btn--email:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.help-contact-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   LEGAL PAGES STYLES (Terms, Privacy)
   Prefix: legal-
============================================ */

/* Legal Hero Section */
.legal-hero {
    padding: 7rem 0 2.5rem;
    background: linear-gradient(180deg, var(--primary-lighter) 0%, #fff 100%);
    text-align: center;
}

@media (min-width: 768px) {
    .legal-hero {
        padding: 8rem 0 3rem;
    }
}

.legal-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.legal-hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Legal Content Section */
.legal-content {
    padding: 2rem 0 4rem;
    background: #fff;
}

@media (min-width: 768px) {
    .legal-content {
        padding: 3rem 0 5rem;
    }
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .legal-wrapper {
        grid-template-columns: 260px 1fr;
        gap: 3rem;
    }
}

/* Table of Contents */
.legal-toc {
    display: none;
}

@media (min-width: 992px) {
    .legal-toc {
        display: block;
    }
}

.legal-toc-sticky {
    position: sticky;
    top: 100px;
}

.legal-toc h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--neutral-200);
}

.legal-toc nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-toc nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.legal-toc nav a:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

.legal-toc nav a.active {
    color: var(--primary);
    background: var(--primary-lighter);
    border-left-color: var(--primary);
    font-weight: 600;
}

/* Legal Article */
.legal-article {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--neutral-200);
    scroll-margin-top: 100px;
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--text-main);
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    text-decoration: none;
}

/* Legal Contact Info */
.legal-contact-info {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.legal-contact-info p {
    margin-bottom: 0.35rem;
}

.legal-contact-info p:last-child {
    margin-bottom: 0;
}

/* Legal Acceptance Box */
.legal-acceptance {
    background: var(--primary-lighter);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.legal-acceptance p {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 500;
}

/* ============================================
   PRODUCT PAGE STYLES
   Prefix: product-
============================================ */

/* Product Hero Section */
.product-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(180deg, var(--primary-lighter) 0%, #fff 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-hero {
        padding: 8rem 0 4rem;
    }
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
    }
}

.product-hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .product-hero-content {
        text-align: left;
    }
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.product-badge-icon {
    font-size: 1.1rem;
}

.product-hero h1 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.product-hero h1 span {
    color: var(--primary);
}

.product-hero-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 540px;
}

@media (max-width: 991px) {
    .product-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.product-hero-desc strong {
    color: var(--text-main);
}

.product-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .product-hero-cta {
        justify-content: flex-start;
    }
}

.product-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .product-hero-stats {
        justify-content: flex-start;
    }
}

.product-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    .product-stat {
        align-items: flex-start;
    }
}

.product-stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

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

.product-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--neutral-300);
}

/* Product Mockup */
.product-hero-visual {
    display: flex;
    justify-content: center;
}

.product-mockup {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--neutral-200);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.mockup-dots {
    display: flex;
    gap: 0.375rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neutral-300);
}

.mockup-dots span:first-child {
    background: #EF4444;
}

.mockup-dots span:nth-child(2) {
    background: #F59E0B;
}

.mockup-dots span:last-child {
    background: #10B981;
}

.mockup-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mockup-body {
    padding: 1.25rem;
}

.mockup-input {
    margin-bottom: 1rem;
}

.mockup-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.mockup-text {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 0.875rem;
}

.mockup-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

.mockup-output {
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.mockup-result {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-issue {
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
}

.issue-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.issue-badge--warning {
    color: #B45309;
}

.issue-text {
    font-size: 0.8rem;
    color: #92400E;
    margin: 0;
}

.mockup-suggestion {
    background: var(--success-light);
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
}

.suggestion-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.35rem;
}

.suggestion-text {
    font-size: 0.8rem;
    color: #065F46;
    margin: 0;
    font-weight: 500;
}

/* Product Scholarships */
.product-scholarships {
    padding: 1.5rem 0;
    background: var(--text-main);
    color: #fff;
}

.scholarships-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    text-align: center;
}

.scholarships-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scholarship-item {
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.scholarship-item--more {
    color: rgba(255,255,255,0.6);
}

/* Product Problem Section */
.product-problem {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .product-problem {
        padding: var(--space-4xl) 0;
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.problem-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Product Features Section */
.product-features {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .product-features {
        padding: var(--space-4xl) 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

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

.feature-card--large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .feature-card--large {
        grid-template-columns: auto 1fr;
        padding: 2rem;
    }
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-icon-box--primary {
    background: var(--primary-light);
    color: var(--primary);
}

.feature-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.feature-card p,
.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-content p strong {
    color: var(--text-main);
}

.feature-example {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
}

@media (min-width: 768px) {
    .feature-example {
        flex-direction: row;
        align-items: flex-start;
    }
}

.example-before,
.example-after {
    flex: 1;
}

.example-before span,
.example-after span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.example-before span {
    color: var(--error);
}

.example-after span {
    color: var(--success);
}

.example-before p,
.example-after p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.example-before p {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.8;
}

.example-after p {
    color: var(--text-main);
    font-weight: 500;
}

.example-arrow {
    display: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .example-arrow {
        display: block;
        padding-top: 1.25rem;
    }
}

/* Product How It Works */
.product-how-it-works {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .product-how-it-works {
        padding: var(--space-4xl) 0;
    }
}

.how-it-works-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .how-step {
        grid-template-columns: auto 1fr 1fr;
    }
}

.how-step--highlight {
    background: var(--primary-lighter);
    border-color: var(--primary-light);
}

.how-step-number {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.how-step-content h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.how-step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.how-step-visual {
    display: none;
}

@media (min-width: 640px) {
    .how-step-visual {
        display: block;
    }
}

.step-mockup {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.75rem;
}

.step-mockup-header {
    padding: 0.5rem 0.75rem;
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-200);
    font-weight: 600;
    color: var(--text-muted);
}

.step-mockup-body {
    padding: 0.75rem;
}

.typing-animation {
    color: var(--text-muted);
    font-style: italic;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.processing-animation {
    text-align: center;
}

.processing-bar {
    height: 6px;
    background: var(--neutral-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.processing-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
    animation: processing 1.5s ease-in-out infinite;
}

@keyframes processing {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.processing-animation span {
    color: var(--text-light);
    font-size: 0.7rem;
}

.result-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.result-score {
    display: flex;
    align-items: baseline;
}

.score-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--success);
}

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

.result-summary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-item {
    font-size: 0.7rem;
    font-weight: 600;
}

.summary-item--success {
    color: var(--success);
}

.summary-item--warning {
    color: #B45309;
}

.how-step-connector {
    display: flex;
    justify-content: center;
    color: var(--neutral-300);
}

/* Product Comparison */
.product-comparison {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .product-comparison {
        padding: var(--space-4xl) 0;
    }
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--neutral-200);
}

.comparison-table th {
    background: var(--neutral-100);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.comparison-table th.highlight {
    background: var(--primary);
    color: #fff;
}

.comparison-table td.highlight {
    background: var(--primary-lighter);
    color: var(--text-main);
    font-weight: 600;
}

.comparison-table .check {
    color: var(--success);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--error);
    font-weight: 700;
}

.comparison-table .partial {
    color: #F59E0B;
    font-weight: 700;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Product Use Cases */
.product-use-cases {
    padding: var(--space-3xl) 0;
    background: #fff;
}

@media (min-width: 768px) {
    .product-use-cases {
        padding: var(--space-4xl) 0;
    }
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.use-case-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.use-case-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.use-case-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.use-case-card h3 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.use-case-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Product CTA */
.product-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
}

@media (min-width: 768px) {
    .product-cta {
        padding: var(--space-4xl) 0;
    }
}

.product-cta-card {
    text-align: center;
    color: #fff;
}

.product-cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.product-cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.product-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.product-cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Product FAQ */
.product-faq {
    padding: var(--space-3xl) 0;
    background: var(--neutral-50);
}

@media (min-width: 768px) {
    .product-faq {
        padding: var(--space-4xl) 0;
    }
}

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