/* ─────────────────────────────────────────────
   BOCCO.AI — Application SaaS Styles
   Dark premium theme + Dashboard + Auth
───────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #050505;
    --black2: #0a0a0a;
    --black3: #111111;
    --black4: #161616;
    --border: rgba(255, 255, 255, 0.06);
    --border2: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
    --white2: rgba(255, 255, 255, 0.6);
    --white3: rgba(255, 255, 255, 0.35);
    --white4: rgba(255, 255, 255, 0.1);
    --accent: #7c5cfc;
    --accent2: #a78bfa;
    --accent-glow: rgba(124, 92, 252, 0.2);
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

::selection {
    background: rgba(124, 92, 252, 0.3);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* ─── UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-sm {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── TYPOGRAPHY ─── */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
    outline: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border2);
}

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

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

.btn-accent:hover {
    background: #6b4fd9;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
    background: transparent;
    color: var(--white2);
}

.btn-ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Language toggle button */
.btn-lang {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white2);
    padding: 8px 16px;
    margin-right: 8px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-lang:hover {
    border-color: var(--border2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Light theme (Creator) adjustments */
body.light-theme .btn-lang {
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

body.light-theme .btn-lang:hover {
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ─── FORMS ─── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--white3);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 14px 20px;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: all 0.3s var(--ease);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white4);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-error {
    font-size: 13px;
    color: var(--error);
    margin-top: 4px;
}

.form-hint {
    font-size: 12px;
    color: var(--white3);
    margin-top: 4px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0 auto;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--white2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   NAVIGATION CREATOR / SALES - STYLE BULLE iOS
   ============================================ */

/* Style de base pour les deux boutons - bulles */
.nav-links a.nav-creator,
.nav-links a.nav-sales {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 100px !important;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    box-sizing: border-box !important;
    min-width: 90px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    line-height: 1 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

/* Mode Sombre - Sales actif (violet style iOS), Creator inactif */
.nav-links a.nav-sales {
    background: #7c5cfc !important;
    color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.nav-links a.nav-creator {
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.nav-links a.nav-creator:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Mode Clair - Creator actif (rose style iOS), Sales inactif */
body.light-theme .nav-links a.nav-creator {
    background: #ec4899 !important;
    color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
    border: none !important;
}

body.light-theme .nav-links a.nav-sales {
    background: transparent !important;
    color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

body.light-theme .nav-links a.nav-sales:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #000000 !important;
}

/* Version mobile plus compacte */
@media (max-width: 768px) {
    .nav-links a.nav-creator,
    .nav-links a.nav-sales {
        font-size: 12px !important;
        padding: 8px 14px !important;
        min-width: 75px !important;
        height: 34px !important;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.nav-credits-icon {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.nav-user:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.nav-user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: center;
}

#hero3d {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
    margin: 0;
    margin-left: 5%;
    padding: 0 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white3);
    text-transform: uppercase;
    margin-bottom: 24px;
}



.hero-title {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--white2);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-demo {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.demo-card {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.demo-video {
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--black2) 0%, var(--black3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.demo-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: avatar-float 3s ease-in-out infinite;
}

@keyframes avatar-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.demo-controls {
    padding: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.demo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-btn:hover {
    transform: scale(1.1);
}

.demo-progress {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.demo-progress-bar {
    width: 60%;
    height: 100%;
    background: var(--white);
    border-radius: 2px;
}

/* ─── TRUSTED BY ─── */
.trusted {
    background: var(--black2);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.trusted-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white3);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--white3);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.trusted-logo:hover {
    opacity: 1;
}

/* ─── SECTIONS COMMON ─── */
.section {
    padding: 120px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent2);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--white2);
    line-height: 1.6;
}

/* ─── FEATURES SECTION ─── */
.features {
    background: var(--black);
}

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

.feature-card {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s var(--ease);
}

.feature-card:hover {
    border-color: var(--border2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--white2);
    line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
    background: var(--black2);
    border-top: 1px solid var(--border);
}

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

.steps-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-centered .step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ─── CREDITS VERTICAL ─── */
.credits-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.credit-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s var(--ease);
}

.credit-item:hover {
    border-color: var(--border2);
    background: var(--black4);
}

.credit-number {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.credit-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.credit-content p {
    font-size: 14px;
    color: var(--white2);
    line-height: 1.6;
}

.step-card {
    position: relative;
    padding: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--white2);
    line-height: 1.6;
}

/* ─── PRICING SECTION ─── */
.pricing {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s var(--ease);
}

.pricing-card:hover {
    border-color: var(--border2);
}

.pricing-card.popular {
    background: var(--black2);
    border-color: var(--white3);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 15px;
    opacity: 0.8;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.period {
    font-size: 16px;
    opacity: 0.7;
}

.pricing-note {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.popular .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.pricing-features .check {
    color: var(--accent2);
    font-weight: 700;
}

.pricing-card.popular .check {
    color: var(--white);
}

/* Interactive Pricing Calculator */
.pricing-calculator {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-calculator h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.formation-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--black2);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.formation-option:hover {
    border-color: var(--border2);
}

.formation-option input[type="checkbox"] {
    display: none;
}

.formation-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.formation-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.formation-option input[type="checkbox"]:checked+.formation-option-label .formation-checkbox {
    background: var(--accent);
    border-color: var(--accent);
}

.formation-checkbox::after {
    content: '✓';
    font-size: 14px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s;
}

.formation-option input[type="checkbox"]:checked+.formation-option-label .formation-checkbox::after {
    opacity: 1;
}

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

.formation-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.formation-price {
    font-size: 14px;
    color: var(--white3);
}

.formation-savings {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

/* Price display with discount */
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-current {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-original {
    font-size: 24px;
    font-weight: 500;
    color: var(--white3);
    text-decoration: line-through;
}

.price-period {
    font-size: 16px;
    color: var(--white2);
}

.pricing-card .price-current {
    color: var(--white);
}

.pricing-card .price-current.discounted {
    color: var(--success);
}

.pricing-card.popular .price-current {
    color: var(--white);
}

.pricing-card.popular .price-current.discounted {
    color: var(--success);
}

/* ─── FORMATIONS SECTION ─── */
.formations {
    background: var(--black2);
    border-top: 1px solid var(--border);
}

.formations-grid {
    max-width: 600px;
    margin: 0 auto;
}

.formation-card {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.formation-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.formation-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.formation-features {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 32px;
}

.formation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.formation-features li:last-child {
    border-bottom: none;
    color: var(--accent2);
    font-weight: 600;
}

.formation-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.formation-price .price {
    font-size: 48px;
}

.formation-price .reduction {
    font-size: 18px;
    color: var(--success);
    font-weight: 600;
}

/* ─── FAQ SECTION ─── */
.faq {
    background: var(--black);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent2);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--white2);
    line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black2);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--white2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.footer-socials a:hover {
    border-color: var(--border2);
    color: var(--white);
    background: var(--white4);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--white2);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--white3);
}

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

.footer-legal a {
    font-size: 14px;
    color: var(--white3);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── AUTH PAGES ─── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black2) 100%);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo a {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.auth-logo a span {
    color: var(--accent);
}

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

.auth-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 15px;
    color: var(--white2);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--white2);
}

.auth-footer a {
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ─── DASHBOARD ─── */
.dashboard {
    padding-top: 72px;
    min-height: 100vh;
    background: var(--black);
}

.dashboard-header {
    background: var(--black2);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.dashboard-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dashboard-title h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.dashboard-title p {
    font-size: 15px;
    color: var(--white2);
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px 0;
}

.stat-card {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.stat-label {
    font-size: 13px;
    color: var(--white3);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 13px;
    color: var(--white2);
}

.dashboard-content {
    padding: 32px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.dashboard-section {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.dashboard-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view-all {
    font-size: 13px;
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--black2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--white2);
    margin-bottom: 20px;
}

/* Avatar Grid */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.avatar-card {
    aspect-ratio: 1;
    background: var(--black2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.avatar-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-card.add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border-style: dashed;
}

.avatar-card.add:hover {
    background: var(--white4);
}

.avatar-add-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.avatar-add-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--white2);
}

/* Video List */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--black2);
    border-radius: 12px;
    transition: background 0.2s;
}

.video-item:hover {
    background: var(--black4);
}

.video-thumb {
    width: 80px;
    height: 60px;
    background: var(--black3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.video-info {
    flex: 1;
    min-width: 0;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-meta {
    font-size: 12px;
    color: var(--white3);
}

.video-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-status.ready {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.video-status.processing {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

/* ─── CREATE PAGES ─── */
.create-page {
    padding-top: 72px;
    min-height: 100vh;
    background: var(--black);
}

.create-header {
    background: var(--black2);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.create-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.back-btn {
    width: 40px;
    height: 40px;
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
}

.back-btn:hover {
    background: var(--black4);
    border-color: var(--border2);
}

.create-header h1 {
    font-size: 24px;
    font-weight: 800;
}

.create-content {
    padding: 40px 0;
}

.create-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.create-form {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-section {
    margin-bottom: 32px;
}

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

.form-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-number {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--black2);
}

.upload-zone:hover {
    border-color: var(--accent);
    background: var(--black4);
}

.upload-zone.dragover {
    border-color: var(--accent);
    background: rgba(124, 92, 252, 0.1);
}

.upload-icon {
    width: 64px;
    height: 64px;
    background: var(--black3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.upload-zone h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.upload-zone p {
    font-size: 14px;
    color: var(--white2);
    margin-bottom: 16px;
}

.upload-hint {
    font-size: 12px;
    color: var(--white3);
}

.upload-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.upload-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.upload-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--error);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.upload-remove:hover {
    transform: scale(1.1);
}

/* Avatar Selector */
.avatar-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.avatar-option {
    aspect-ratio: 1;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.avatar-option:hover {
    border-color: var(--border2);
}

.avatar-option.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
}

.avatar-option.selected .avatar-option-check {
    opacity: 1;
}

/* Create Sidebar */
.create-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credit-box {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.credit-box h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white3);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credit-amount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.credit-desc {
    font-size: 14px;
    color: var(--white2);
}

.cost-box {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cost-row:last-child {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 4px;
}

.cost-label {
    font-size: 15px;
    color: var(--white2);
}

.cost-value {
    font-size: 15px;
    font-weight: 600;
}

.cost-total {
    font-size: 20px;
    font-weight: 800;
}

/* ─── TOAST NOTIFICATIONS ─── */
#toast-container {
    position: fixed;
    top: 88px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: toast-in 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.success {
    border-color: var(--success);
}

.toast.error {
    border-color: var(--error);
}

.toast.warning {
    border-color: var(--warning);
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.toast.warning .toast-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    color: var(--white2);
}

.toast-close {
    background: none;
    border: none;
    color: var(--white3);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--white);
}

/* ─── LOADING OVERLAY ─── */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.loading-overlay.hidden {
    display: none;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

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

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

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

    .create-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {

    /* Garder Creator et Sales visibles, cacher le reste */
    .nav-links {
        display: flex;
        gap: 4px;
        margin-right: 8px;
    }
    
    .nav-links a:not(.nav-creator):not(.nav-sales) {
        display: none;
    }
    
    .nav-creator,
    .nav-sales {
        padding: 4px 8px !important;
        font-size: 11px !important;
        min-width: auto !important;
        height: 32px !important;
        line-height: 1 !important;
    }
    
    /* Boutons plus compacts sur mobile */
    .nav-right .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-right .btn-ghost {
        padding: 8px 12px;
        font-size: 13px;
        margin-right: 4px;
    }
    
    .nav-credits {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        gap: 24px;
    }

    .section {
        padding: 80px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

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

    .auth-card {
        padding: 32px 24px;
    }

    .create-form {
        padding: 24px;
    }

    .container,
    .container-lg {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Navbar très compacte sur petits écrans */
    .nav-logo {
        font-size: 16px;
    }

    .nav-creator,
    .nav-sales {
        padding: 3px 6px !important;
        font-size: 10px !important;
    }

    .nav-right .btn,
    .nav-right .btn-ghost {
        padding: 6px 10px;
        font-size: 12px;
    }

    .nav-inner {
        padding: 0 12px;
    }
}

/* ─── MOBILE NAV ─── */
.nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.nav-links.open a {
    display: flex !important;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    /* Animation 3D décalée à droite */
    #hero3d {
        right: -20% !important;
        left: auto !important;
        opacity: 0.6;
    }
    
    /* Hero content plus à gauche */
    .hero-content {
        padding-left: 24px;
        padding-right: 40%;
    }
}

/* ─── AMÉLIORATIONS MOBILE ─── */
@media (max-width: 768px) {
    /* Pricing cards en 1 colonne */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    /* Dashboard stats en 2 colonnes puis 1 */
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    /* Meilleure lisibilité des textes */
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    /* Formulaires plus larges */
    .form-input,
    .form-textarea {
        font-size: 16px; /* Évite le zoom sur iOS */
    }
    
    /* Cards plus compactes */
    .pricing-card {
        padding: 32px 24px;
    }
    
    .step-card {
        padding: 24px;
    }
    
    /* Tableaux de bord */
    .dashboard-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Dashboard stats en 1 colonne */
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    /* Textes encore plus grands */
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Meilleure navigation mobile */
    .navbar {
        height: 64px;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    /* Footer plus compact */
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Boutons plus grands pour tactile */
    .btn {
        min-height: 48px;
        font-size: 16px;
    }
    
    /* Pas de hover sur mobile */
    .pricing-card:hover,
    .step-card:hover {
        transform: none;
    }
    
    /* Formulaires */
    .form-label {
        font-size: 14px;
    }
    
    /* Upload zone */
    .upload-zone {
        padding: 32px 20px;
    }
}

/* ─── OPTIMISATIONS TACTILES ─── */
@media (hover: none) {
    /* Désactiver les hovers complexes sur tactile */
    .pricing-card:hover,
    .step-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    /* Boutons plus grands */
    .btn,
    .nav-links a,
    .form-input {
        min-height: 44px;
    }
}

/* ─── SUPPORT NOTCH IPHONE ─── */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    
    .nav-links.open {
        padding-top: calc(16px + env(safe-area-inset-top));
    }
    
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}