/* ============================================
   SEVO Landing Page, Styles
   Design: Brass Hands inspired (dark, minimal)
   Accent: #FF2100
   Fonts: Inter + Space Mono
   ============================================ */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #adb3b7;
    --text-muted: #666666;
    --accent: #FF2100;
    --accent-hover: #FF4520;
    --accent-glow: rgba(255, 33, 0, 0.15);
    --border: #222222;
    --border-light: #333333;
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================
   Page Loader
   ======================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.done {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    gap: 4px;
}

.loader-letter {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
    animation: letterIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loader-letter:nth-child(1) { animation-delay: 0.1s; }
.loader-letter:nth-child(2) { animation-delay: 0.2s; }
.loader-letter:nth-child(3) { animation-delay: 0.3s; }
.loader-letter:nth-child(4) { animation-delay: 0.4s; }

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: barFill 1.2s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes barFill {
    to { width: 100%; }
}

/* ========================
   Custom Cursor
   ======================== */
.cursor-dot,
.cursor-ring {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--accent);
    }

    .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1.5px solid rgba(255, 33, 0, 0.4);
        transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .cursor-ring.hover {
        width: 60px;
        height: 60px;
        border-color: rgba(255, 33, 0, 0.6);
        background: rgba(255, 33, 0, 0.05);
    }

    .cursor-ring.click {
        width: 30px;
        height: 30px;
    }

    body {
        cursor: none;
    }

    a, button, input, textarea, select, [role="button"] {
        cursor: none;
    }
}

/* ========================
   Scroll Progress
   ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    z-index: 10001;
    transition: none;
}

/* ========================
   Grid Overlay
   ======================== */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent
    );
    background-size: calc(100% / 12) 100%;
}

/* ========================
   Utilities
   ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* ========================
   Reveal Animation
   ======================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========================
   Navigation
   ======================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-supreme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-family: var(--font);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    padding: 10px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-1px);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px;
}

.lang-btn {
    padding: 5px 10px;
    font-size: 0.688rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.lang-btn:hover {
    color: var(--text-secondary);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
}

.mobile-lang {
    margin-top: 16px;
}

/* Mobile Nav Right Group */
.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

.lang-mobile-nav {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Proof Bar */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: var(--font-mono);
}

.proof-star {
    color: var(--accent);
    font-size: 0.8em;
}

.proof-label {
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Gradient Orb */
.hero-gradient {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 33, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ========================
   Marquee
   ======================== */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Animation is fully controlled by JS for pixel-perfect looping */
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    min-width: max-content;
    padding-right: 40px;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--accent) !important;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* Keyframes are injected by JS with exact pixel values for cross-browser support */

/* ========================
   Sections (Shared)
   ======================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: var(--font-mono);
}

.label-line {
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 64px;
}

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

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 33, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.problem-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-closer {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
}

/* ========================
   Services Section
   ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-line {
    width: 100%;
}

.service-card:hover .service-number {
    transform: scale(1.2);
}

.service-number {
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-mono);
    transition: transform var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================
   Results Section
   ======================== */
.section-results {
    background: var(--bg-secondary);
}

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

.result-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.result-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.result-plus {
    color: var(--accent);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================
   Process Section
   ======================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-card {
    padding: 32px 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.process-step span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    font-family: var(--font-mono);
}

.process-line-h {
    flex: 1;
    height: 1px;
    background: var(--border);
    position: relative;
}

.process-line-h::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '„';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.813rem;
    flex-shrink: 0;
    font-family: var(--font-mono);
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.founder-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founder-image-frame {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: border-color var(--transition);
}

.founder-image-frame:hover {
    border-color: var(--accent);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

.founder-image-frame:hover .founder-image {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.03);
}

.founder-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.founder-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.813rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.founder-content {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.founder-quote {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    font-style: italic;
}

.founder-bio {
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.founder-bio br + br {
    display: block;
    content: '';
    margin-top: 16px;
}

.founder-stats {
    display: flex;
    gap: 32px;
}

.founder-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.founder-stat-label {
    font-size: 0.813rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Founder Responsive */
@media (max-width: 1024px) {
    .founder-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .founder-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--accent);
        padding-top: 20px;
    }

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

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

/* ========================
   CTA / Contact Section
   ======================== */
.section-cta {
    padding: 120px 0;
}

.cta-wrapper {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 1rem;
    transition: all var(--transition);
    outline: none;
}

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

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-note {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: var(--font-mono);
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--text-secondary);
}

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

/* ========================
   Footer
   ======================== */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.125rem;
}

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

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

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

.footer-emails {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.footer-email-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-email-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-email-item a {
    font-size: 0.875rem;
    color: var(--accent);
    transition: color var(--transition);
}

.footer-email-item a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

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

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

.footer-legal a {
    font-size: 0.813rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) {
    .problem-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .nav-right-mobile {
        display: flex;
    }

    .lang-mobile-nav {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .problem-grid,
    .services-grid,
    .process-grid,
    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-emails {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .section-cta {
        padding: 80px 0;
    }

    .grid-overlay {
        background-size: calc(100% / 4) 100%;
    }
}

/* ========================
   Custom Scrollbar
   ======================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ========================
   Selection
   ======================== */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}
