/*
Theme Name: BRAVE Elite Landing Page
Theme URI: https://elite.brave-br.com
Author: Victor Takayama
Author URI: https://brave-br.com
Description: Landing page para BRAVE Elite - Nivel de Lideranca da comunidade antifraude. Tema premium com design executivo, cores douradas e secoes otimizadas para C-Levels.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brave-elite
Tags: one-page, custom-logo, custom-colors, featured-images
*/

/* ============================================
   BRAVE Elite Landing Page - Main Stylesheet
   Color Scheme: Gold (Leadership Level)
   ============================================ */

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
    /* Elite Gold Color Palette */
    --color-accent-primary: #f59e0b;
    --color-accent-secondary: #fbbf24;
    --color-accent-tertiary: #fcd34d;
    --color-accent-light: rgba(245, 158, 11, 0.1);
    --color-accent-glow: rgba(245, 158, 11, 0.4);

    /* Dark Theme Base */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-bg-card: rgba(26, 26, 37, 0.8);
    --color-bg-card-hover: rgba(35, 35, 50, 0.9);

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a1a1aa;
    --color-text-tertiary: #71717a;
    --color-text-muted: #52525b;

    /* Status Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-accent-primary) 0%, #d97706 100%);
    --gradient-premium: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fbbf24 100%);
    --gradient-card: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0) 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-accent-glow);
    --shadow-gold: 0 0 60px rgba(245, 158, 11, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    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;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-primary);
    background: var(--color-accent-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
}

.section-title .highlight-gold {
    color: var(--color-accent-primary);
    position: relative;
}

.section-title .highlight-red {
    color: var(--color-danger);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent-primary);
}

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

.btn-outline:hover {
    background: var(--color-accent-light);
}

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

.btn-block {
    width: 100%;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text .level {
    font-size: 0.9rem;
    color: var(--color-accent-primary);
    font-weight: 600;
    padding: 2px 8px;
    background: var(--color-accent-light);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-accent-primary);
}

.nav-cta {
    margin-left: 16px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent-light);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--color-accent-secondary);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .title-highlight {
    display: block;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-level {
    display: block;
    font-size: 0.5em;
    color: var(--color-accent-secondary);
    letter-spacing: 0.2em;
    margin-top: 8px;
}

.hero-title .title-sub {
    display: block;
    font-size: 0.35em;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-top: 16px;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

.hero-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent-primary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   Problem Section
   ============================================ */
.problem {
    background: var(--color-bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

.problem-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-danger);
}

.problem-icon.warning {
    background: rgba(245, 158, 11, 0.1);
}

.problem-icon.warning svg {
    stroke: var(--color-warning);
}

.problem-icon.gold {
    background: rgba(245, 158, 11, 0.1);
}

.problem-icon.gold svg {
    stroke: var(--color-accent-primary);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.problem-question {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent-primary);
    font-weight: 500;
}

/* ============================================
   Solution Section
   ============================================ */
.solution {
    background: var(--color-bg-primary);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text .section-title {
    margin-bottom: 20px;
}

.solution-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.solution-features {
    margin-bottom: 40px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.solution-features .check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent-primary);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-visual {
    position: relative;
}

.visual-card {
    background: var(--gradient-card);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.visual-shield {
    font-size: 6rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.5));
}

.visual-nodes {
    position: absolute;
    inset: 0;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 15%; right: 25%; animation-delay: 0.3s; }
.node-3 { top: 50%; left: 10%; animation-delay: 0.6s; }
.node-4 { top: 50%; right: 10%; animation-delay: 0.9s; }
.node-5 { bottom: 20%; left: 25%; animation-delay: 1.2s; }
.node-6 { bottom: 15%; right: 20%; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ============================================
   Plans Section
   ============================================ */
.plans {
    background: var(--color-bg-secondary);
}

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

.plan-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--transition-base);
}

.plan-card:hover:not(.disabled) {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.15) 0%, var(--color-bg-card) 100%);
    border-color: var(--color-accent-primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.plan-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-premium);
    color: var(--color-bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-primary);
    background: var(--color-accent-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.plan-badge.ground-badge {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.plan-badge.core-badge {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-tagline {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
}

.plan-features {
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.plan-features li.highlight {
    color: var(--color-text-primary);
    font-weight: 500;
}

.plan-features .feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-features li.included .feature-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent-primary);
}

.plan-features li.not-included .feature-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
}

.stats-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-4px);
}

.stats-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
}

.stats-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent-primary);
}

.stats-icon.warning {
    background: rgba(245, 158, 11, 0.1);
}

.stats-icon.warning svg {
    stroke: var(--color-warning);
}

.stats-icon.danger {
    background: rgba(239, 68, 68, 0.1);
}

.stats-icon.danger svg {
    stroke: var(--color-danger);
}

.stats-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    display: block;
}

.stats-unit {
    font-size: 1rem;
    color: var(--color-accent-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.stats-desc {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    line-height: 1.5;
}

/* ============================================
   Founder Section
   ============================================ */
.founder {
    background: var(--color-bg-secondary);
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-card);
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-gold);
}

.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.image-badge span {
    display: block;
    text-align: center;
}

.image-badge span:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-primary);
}

.image-badge span:last-child {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
}

.founder-text .section-title {
    margin-bottom: 20px;
}

.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.highlight-tag {
    background: var(--color-accent-light);
    color: var(--color-accent-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.founder-bio p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.founder-timeline {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.timeline-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(245, 158, 11, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 150px;
}

.timeline-age {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--color-bg-primary);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
}

.testimonial-card.placeholder {
    opacity: 0.6;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-accent-primary);
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   Application Section
   ============================================ */
.apply {
    background: var(--color-bg-secondary);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.apply-text .section-title {
    margin-bottom: 20px;
}

.apply-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.apply-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    color: var(--color-bg-primary);
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

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

.pricing-box {
    background: var(--color-bg-card);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-gold);
}

.pricing-box h4 {
    font-size: 1rem;
    color: var(--color-accent-primary);
    margin-bottom: 16px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-option:last-child {
    border-bottom: none;
}

.pricing-label {
    color: var(--color-text-secondary);
}

.pricing-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-primary);
}

.pricing-savings {
    display: block;
    font-size: 0.75rem;
    color: var(--color-success);
    text-align: right;
}

/* Application Form */
.apply-card {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, var(--color-bg-card) 100%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-gold);
}

.apply-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.shield-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.apply-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.apply-card-header p {
    color: var(--color-text-tertiary);
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group select {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    transition: var(--transition-base);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-secondary);
}

.footer-social a:hover svg {
    fill: var(--color-bg-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .solution-content,
    .founder-content,
    .apply-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-highlights {
        justify-content: center;
    }

    .founder-timeline {
        justify-content: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .nav-links {
        display: none;
    }

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

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-stats .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .apply-card {
        position: static;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .apply-card {
        padding: 24px;
    }

    .founder-timeline {
        flex-direction: column;
    }
}
