/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Palette réduite */
    --primary: #E2552C;
    --secondary: #6B73FF;
    
    /* Light Mode */
    --bg: #F2F2F7;
    --surface: #FFFFFF;
    --text-primary: #1C1C1E;
    --text-secondary: #3A3A3C;
    --text-tertiary: #8E8E93;
    --border: #E5E5EA;
    
    /* Semantic Colors */
    --success: #34C759;
    
    /* Shadows - Simplifiées */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    
    /* Spacing - Mobile-first optimisé */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    
    /* Border Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ====================================
   TYPOGRAPHY - Hiérarchie simplifiée
   ==================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.2s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

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

.nav-links .cta-btn {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.nav-links .cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu a {
    font-weight: 600;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: var(--bg);
    color: var(--primary);
}

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

/* ====================================
   HERO SECTION - Compact
   ==================================== */
.hero {
    position: relative;
    padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero h1 {
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 10;
}

/* Hero Image - Réduit */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 24px 32px rgba(0, 38, 225, 0.15));
}

/* Floating Elements - Simplifiés */
.floating-element {
    position: absolute;
    background: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 1;
}

.element-1 {
    top: 8%;
    right: -3%;
    color: var(--success);
}

.element-2 {
    top: 50%;
    left: -5%;
    color: var(--secondary);
}

.element-3 {
    bottom: 12%;
    right: -3%;
    color: #FF9500;
}

/* Hero Background - Subtil */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -180px;
    right: -150px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    bottom: -120px;
    left: -100px;
}

@media (max-width: 968px) {
    .hero {
        padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .phone-mockup-img {
        max-width: 200px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: calc(70px + var(--space-md)) 0 var(--space-md);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .phone-mockup-img {
        max-width: 180px;
    }
}

/* ====================================
   BUTTONS - Avec badges PNG
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

/* Badge store buttons */
.btn-store {
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    z-index: 10;
}

.btn-store img {
    height: 48px;
    width: auto;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-store:hover img {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn i {
    font-size: 1.25rem;
}

.btn small {
    display: block;
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn strong {
    display: block;
    font-size: 0.9375rem;
}

.btn-block {
    width: 100%;
}

@media (max-width: 576px) {
    .btn-store img {
        height: 44px;
    }
}

/* ====================================
   PROBLEM SECTION - Compact
   ==================================== */
.problem-section {
    padding: var(--space-xl) 0;
    background: white;
}

.problem-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    color: #FF9500;
}

.problem-content h2 {
    margin-bottom: var(--space-lg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.problem-item {
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius);
    text-align: center;
}

.problem-item i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.problem-item h3 {
    margin-bottom: var(--space-xs);
}

.problem-item p {
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .problem-section {
        padding: var(--space-lg) 0;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

/* ====================================
   WHY SECTION - Épuré
   ==================================== */
.why-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    background: rgba(226, 85, 44, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    position: relative;
}

.feature-card.featured {
    border: 2px solid var(--primary);
}

.feature-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.feature-icon.primary {
    background: rgba(226, 85, 44, 0.1);
    color: var(--primary);
}

.feature-icon.secondary {
    background: rgba(107, 115, 255, 0.1);
    color: var(--secondary);
}

.feature-icon.success {
    background: rgba(52, 199, 89, 0.1);
    color: var(--success);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.feature-highlight i {
    color: var(--success);
}

@media (max-width: 768px) {
    .why-section {
        padding: var(--space-xl) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   HOW IT WORKS - Liste à puces
   ==================================== */
.how-section {
    padding: var(--space-2xl) 0;
    background: white;
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.how-step {
    display: flex;
    gap: var(--space-md);
}

.step-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.step-content p {
    font-size: 0.9375rem;
}

.how-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.how-mockup img {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 32px rgba(0, 38, 225, 0.15));
}

@media (max-width: 968px) {
    .how-section {
        padding: var(--space-xl) 0;
    }
    
    .how-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .how-mockup {
        order: -1;
    }
    
    .how-mockup img {
        max-width: 200px;
    }
}

/* ====================================
   SHOWCASE - Compact
   ==================================== */
.showcase-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

.showcase-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-item img {
    width: 45%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: var(--space-lg) auto;
    filter: drop-shadow(0 12px 24px rgba(0, 38, 225, 0.15));

}

.showcase-caption {
    padding: 0 var(--space-md) var(--space-md);
    text-align: center;
    width: 100%;
}

.showcase-caption h4 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.showcase-caption p {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .showcase-section {
        padding: var(--space-xl) 0;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item img {
        width: 50%;
        max-width: 180px;
    }
}

/* ====================================
   CITIES - Simplifié
   ==================================== */
.cities-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
}

.city-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius);
    text-align: center;
}

.city-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.city-card h4 {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cities-section {
        padding: var(--space-xl) 0;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================
   FAQ - Compact
   ==================================== */
.faq-section {
    padding: var(--space-2xl) 0;
    background: white;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

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

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.75rem;
}

.cta-content h2,
.cta-content p {
    color: white;
}

.cta-content h2 {
    margin-bottom: var(--space-sm);
}

.cta-content > p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 10;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
    .cta-section {
        padding: var(--space-xl) 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ====================================
   FOOTER - Compact
   ==================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-img {
    height: 32px;
    width: auto;
    
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.footer-column h4 {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ====================================
   MODAL
   ==================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius);
    padding: var(--space-xl);
    max-width: 480px;
    width: 100%;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-tertiary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.modal-close:hover {
    background: var(--bg);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.75rem;
    color: white;
}

.modal-header h3 {
    margin-bottom: var(--space-xs);
}

.modal-header p {
    font-size: 0.875rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input {
    padding: var(--space-sm);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: 'Nunito', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(226, 85, 44, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.success-message {
    text-align: center;
    padding: var(--space-lg);
}

.success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.success-message h4 {
    margin-bottom: var(--space-xs);
}

/* ====================================
   UTILITIES
   ==================================== */
.btn-loading {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.fa-spin {
    animation: spin 1s linear infinite;
}

::selection {
    background: var(--primary);
    color: white;
}

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