/* ================================================================
   B&B ENERGIE - DESIGN SYSTEM
   Version 2.0 - Unified Design Tokens & Components
   ================================================================ */

/* ==================== DESIGN TOKENS ==================== */
:root {
    /* === COULEURS PRIMAIRES === */
    --primary: #0F172A;
    --primary-light: #1E293B;
    --primary-dark: #020617;

    /* === COULEURS ACCENT (Vert B&B) === */
    --accent: #00D863;
    --accent-dark: #00B854;
    --accent-light: #00F06E;
    --accent-bg: rgba(0, 216, 99, 0.08);
    --accent-bg-hover: rgba(0, 216, 99, 0.12);

    /* === NEUTRES === */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* === COULEURS SEMANTIQUES === */
    --success: #10B981;
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning: #F59E0B;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error: #EF4444;
    --error-bg: rgba(239, 68, 68, 0.1);
    --info: #3B82F6;
    --info-bg: rgba(59, 130, 246, 0.1);

    /* === TYPOGRAPHIE === */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 3.75rem;
    /* 60px */

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;

    /* === ESPACEMENTS (systeme 8px) === */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* === OMBRES === */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-accent: 0 4px 14px 0 rgba(0, 216, 99, 0.3);
    --shadow-accent-lg: 0 8px 24px 0 rgba(0, 216, 99, 0.4);

    /* === BORDER RADIUS === */
    --radius-none: 0;
    --radius-sm: 0.25rem;
    /* 4px */
    --radius: 0.5rem;
    /* 8px */
    --radius-md: 0.75rem;
    /* 12px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.5rem;
    /* 24px */
    --radius-2xl: 2rem;
    /* 32px */
    --radius-full: 9999px;

    /* === TRANSITIONS === */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* === Z-INDEX === */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-modal-backdrop: 1500;
    --z-modal: 2000;
    --z-toast: 3000;

    /* === CONTAINER === */
    --container-max: 1200px;
    --container-padding: var(--space-6);

    /* === BREAKPOINTS (pour reference JS) === */
    --bp-sm: 640px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1200px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--gray-700);
    background: var(--white);
}

/* ==================== TYPOGRAPHIE ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--primary);
    letter-spacing: var(--letter-spacing-tight);
}

h1 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
}

h3 {
    font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-2xl));
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

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

a:hover {
    color: var(--accent-dark);
}

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--space-20) 0;
}

.section-sm {
    padding: var(--space-12) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

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

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-4);
}

/* ==================== BOUTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

/* Primary Button - Vert accent */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

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

/* Secondary Button - Fond sombre */
.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-xl);
}

/* Button avec icone */
.btn i {
    font-size: 1.25em;
}

/* Button full width */
.btn-block {
    width: 100%;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.card-sm {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.card-lg {
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
}

.card-flat {
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

.card-flat:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.card-accent {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-bg) 100%);
}

/* Card avec icone */
.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.card-icon-lg {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-3xl);
}

/* ==================== FORMULAIRES ==================== */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--gray-300);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-bg);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Input avec icone */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .form-input {
    padding-left: var(--space-12);
}

.input-icon-wrapper i {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: var(--font-size-lg);
}

/* Etats */
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
    border-color: var(--error);
}

.form-input.is-success,
.form-select.is-success,
.form-textarea.is-success {
    border-color: var(--success);
}

.form-error {
    font-size: var(--font-size-sm);
    color: var(--error);
    margin-top: var(--space-1);
}

.form-hint {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--space-1);
}

/* ==================== BADGES ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.badge-accent {
    background: var(--accent-bg);
    color: var(--accent-dark);
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.badge-error {
    background: var(--error-bg);
    color: var(--error);
}

.badge-info {
    background: var(--info-bg);
    color: var(--info);
}

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

/* ==================== GRILLES ==================== */
.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

/* ==================== UTILITAIRES ==================== */
/* Text alignment */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

/* Text colors */
.text-primary {
    color: var(--primary);
}

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

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

.text-muted {
    color: var(--gray-500);
}

/* Backgrounds */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--primary);
}

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

.bg-accent-light {
    background: var(--accent-bg);
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

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

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: var(--space-2);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

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

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

/* Animation classes */
.animate-fade-in {
    animation: fadeIn var(--transition-normal) ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp var(--transition-normal) ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown var(--transition-normal) ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft var(--transition-normal) ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight var(--transition-normal) ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn var(--transition-normal) ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Animation on scroll (initial state) */
[data-animate] {
    opacity: 0;
}

[data-animate].is-visible {
    animation-fill-mode: forwards;
}

[data-animate="fade-up"].is-visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

[data-animate="fade-down"].is-visible {
    animation: fadeInDown 0.6s ease-out forwards;
}

[data-animate="slide-left"].is-visible {
    animation: slideInLeft 0.6s ease-out forwards;
}

[data-animate="slide-right"].is-visible {
    animation: slideInRight 0.6s ease-out forwards;
}

[data-animate="scale"].is-visible {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered animations */
[data-animate-delay="100"] {
    animation-delay: 100ms;
}

[data-animate-delay="200"] {
    animation-delay: 200ms;
}

[data-animate-delay="300"] {
    animation-delay: 300ms;
}

[data-animate-delay="400"] {
    animation-delay: 400ms;
}

[data-animate-delay="500"] {
    animation-delay: 500ms;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: var(--space-5);
    }

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

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

    .section {
        padding: var(--space-16) 0;
    }

    .section-lg {
        padding: var(--space-20) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-12) 0;
    }

    .section-lg {
        padding: var(--space-16) 0;
    }

    .btn-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-base);
    }

    /* Hide on mobile */
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .card {
        padding: var(--space-6);
    }

    .card-lg {
        padding: var(--space-6);
    }

    .btn {
        padding: var(--space-3) var(--space-5);
    }
}

/* Show only on mobile */
@media (min-width: 769px) {
    .show-mobile-only {
        display: none !important;
    }
}

/* ==================== HERO SECTIONS ==================== */
.page-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 216, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(0, 216, 99, 0.15);
    color: var(--accent);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-5);
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-tight);
    color: var(--accent);
}

.page-hero .subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-6);
    line-height: var(--line-height-relaxed);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.hero-tag i {
    color: var(--accent);
}

.scroll-indicator {
    margin-top: var(--space-8);
}

.scroll-indicator a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: color var(--transition);
}

.scroll-indicator a:hover {
    color: var(--accent);
}

.scroll-indicator i {
    font-size: var(--font-size-xl);
    animation: bounce 2s infinite;
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: var(--space-20) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.cta-section p {
    opacity: 0.95;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-lg);
    color: var(--white);
}

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

.cta-section .btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* CTA Section Dark variant */
.cta-section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-sticky);
    display: none;
    transition: all var(--transition);
}

.floating-cta.hidden {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--accent);
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-accent-lg);
    text-decoration: none;
    transition: all var(--transition);
}

.floating-cta a:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
        bottom: var(--space-4);
        left: var(--space-4);
        right: var(--space-4);
        transform: none;
    }

    .floating-cta.hidden {
        transform: translateY(100px);
    }

    .floating-cta a {
        width: 100%;
        justify-content: center;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: var(--space-12) var(--space-4);
    }

    .cta-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: var(--space-3);
    }

    .cta-section p {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }

    .cta-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0;
        padding: var(--space-4) var(--space-6);
    }

    .cta-section .btn-white {
        margin-left: 0;
        background: var(--white);
        border: 2px solid transparent;
    }
}

/* ==================== SECTION BACKGROUNDS ==================== */
.section-alt {
    background: var(--gray-50);
}

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

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.section-gradient h2,
.section-gradient h3,
.section-gradient p {
    color: var(--white);
}

/* ==================== SECTION BADGES ==================== */
.section-badge {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
}

/* ==================== ICON UTILITIES ==================== */
.icon-accent {
    color: var(--accent);
}

.icon-primary {
    color: var(--primary);
}

.icon-sm {
    font-size: var(--font-size-lg);
}

.icon-md {
    font-size: var(--font-size-xl);
}

.icon-lg {
    font-size: var(--font-size-2xl);
}

.icon-xl {
    font-size: var(--font-size-3xl);
}

/* Icon with background */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: var(--radius-lg);
}

.icon-box-lg {
    width: 64px;
    height: 64px;
    font-size: var(--font-size-2xl);
}

/* ==================== UTILITY CLASSES ==================== */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text Colors */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Font Size */
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.75; }
.leading-loose { line-height: 2; }

/* Margin */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Padding */
.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }
.p-48 { padding: 48px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.py-32 { padding-top: 32px; padding-bottom: 32px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.px-24 { padding-left: 24px; padding-right: 24px; }

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-center-gap { display: flex; align-items: center; gap: 16px; }

/* Gap */
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* Grid Utilities */
.grid { display: grid; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }

/* Width */
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.max-w-center { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-accent-light { background: rgba(0, 216, 99, 0.1); }
.bg-accent-soft { background: var(--accent-bg); }

/* Border Radius */
.rounded { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* Opacity */
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Visibility */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* ==================== PRINT ==================== */
@media print {

    .btn,
    .header,
    .footer,
    .floating-cta,
    .sticky-cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}