/* ============================================
   EzyLi Design System
   Couleurs extraites du logo officiel
   E, I = Teal (#1a8a8a)
   Z, Y = Orange (#f5a623)
   L = Bleu (#1ab8e3)
============================================ */

:root {
    /* Couleurs du Logo EzyLi */
    --ezyli-teal: #1a8a8a;
    --ezyli-teal-dark: #14706f;
    --ezyli-teal-light: #e0f2f2;
    --ezyli-orange: #f5a623;
    --ezyli-orange-dark: #e09000;
    --ezyli-orange-light: #fff8e7;
    --ezyli-blue: #1ab8e3;
    --ezyli-blue-dark: #0d9bc4;
    --ezyli-blue-light: #e0f7fa;
    
    /* Couleur principale (gradient du logo) */
    --ezyli-gradient: linear-gradient(135deg, var(--ezyli-teal) 0%, var(--ezyli-blue) 50%, var(--ezyli-orange) 100%);
    --ezyli-gradient-soft: linear-gradient(135deg, var(--ezyli-teal-light) 0%, var(--ezyli-blue-light) 50%, var(--ezyli-orange-light) 100%);
    
    /* Neutres */
    --white: #ffffff;
    --black: #1a1a2e;
    --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;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
    --shadow-teal: 0 12px 32px rgba(26, 138, 138, 0.25);
    --shadow-orange: 0 12px 32px rgba(245, 166, 35, 0.25);
    --shadow-blue: 0 12px 32px rgba(26, 184, 227, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ============================================
   LOGO - Couleurs multicolores
============================================ */
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-e { color: var(--ezyli-teal); }
.logo-z { color: var(--ezyli-orange); }
.logo-y { color: var(--ezyli-orange); }
.logo-l { color: var(--ezyli-blue); }
.logo-i { color: var(--ezyli-teal); }

/* Version claire (pour fond sombre) */
.logo-light .logo-e,
.logo-light .logo-i { color: #4dd4d4; }
.logo-light .logo-z,
.logo-light .logo-y { color: #ffc857; }
.logo-light .logo-l { color: #5cd6f7; }

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

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

.navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
}

.nav-link {
    position: relative;
    padding: var(--space-3) var(--space-4);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform var(--transition-base);
}

.nav-link:hover::before {
    transform: scale(1);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link::before {
    background: var(--gray-100);
}

.navbar.scrolled .nav-link:hover {
    color: var(--ezyli-teal);
}

/* Nav Buttons avec animations */
.nav-btn {
    position: relative;
    padding: var(--space-3) var(--space-6);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.nav-btn:hover::after {
    width: 300px;
    height: 300px;
}

.nav-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.navbar.scrolled .nav-btn-outline {
    color: var(--ezyli-teal);
    border-color: var(--ezyli-teal);
}

.nav-btn-primary {
    background: var(--ezyli-gradient);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.nav-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(26, 138, 138, 0.35);
}

/* Region selector */
.nav-region {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-region:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-region {
    color: var(--gray-600);
    background: var(--gray-100);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-region {
    cursor: pointer;
    border: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    padding: var(--space-2) 0;
    margin-top: var(--space-2);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
    z-index: 1001;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--ezyli-teal);
}

.nav-dropdown.active .nav-region svg {
    transform: rotate(180deg);
}

.nav-region svg {
    transition: transform var(--transition-base);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--gray-700);
}

/* Hamburger animation when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--ezyli-teal) 0%, var(--ezyli-blue) 100%);
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    list-style: none;
    padding: var(--space-8) var(--space-6);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-4) var(--space-4);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-primary {
    background: var(--ezyli-orange);
    text-align: center;
    margin-top: var(--space-4);
}

.mobile-nav-primary:hover {
    background: var(--ezyli-orange-dark);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ezyli-teal) 0%, var(--ezyli-blue) 60%, #0d8ab0 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--ezyli-orange);
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--white);
    bottom: -100px;
    left: -50px;
    animation-delay: 3s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--ezyli-orange);
    top: 40%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-24) 0 var(--space-16);
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--ezyli-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Hero Typography */
.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--ezyli-orange) 0%, #ffd54f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    max-width: 520px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Store Buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: all var(--transition-base);
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: rgba(0, 0, 0, 0.9);
}

.store-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.store-btn-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.1);
}

.hero-phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--ezyli-teal-light) 0%, var(--white) 25%);
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 56px;
}

/* Phone Screen Content */
.phone-header {
    text-align: center;
    padding: var(--space-4);
}

.phone-logo {
    width: 56px;
    height: 56px;
    background: var(--ezyli-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2);
    color: var(--white);
    font-weight: 800;
    font-size: 1.125rem;
}

.phone-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
}

.phone-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    padding: var(--space-4);
}

.phone-service {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.phone-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.phone-service-icon {
    width: 44px;
    height: 44px;
    background: var(--ezyli-teal-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2);
    color: var(--ezyli-teal);
}

.phone-service-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 8%;
    right: -50px;
}

.floating-card-2 {
    bottom: 18%;
    left: -50px;
    animation-delay: 2.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.floating-card-icon {
    width: 52px;
    height: 52px;
    background: var(--ezyli-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.floating-card-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.floating-card-content p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ezyli-teal);
}

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

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

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

.section-gradient {
    background: var(--ezyli-gradient-soft);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--ezyli-teal-light), var(--ezyli-blue-light));
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ezyli-teal);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-title-accent {
    background: var(--ezyli-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   SERVICE CARDS
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ezyli-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--ezyli-teal-light), var(--ezyli-blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--ezyli-teal);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--ezyli-gradient);
    color: var(--white);
    transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.service-scope {
    display: inline-flex;
    padding: var(--space-1) var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.service-feature {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.service-feature svg {
    width: 14px;
    height: 14px;
    color: var(--ezyli-teal);
}

.service-card:hover .service-feature {
    background: var(--ezyli-teal-light);
    color: var(--ezyli-teal-dark);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    background: var(--ezyli-gradient);
    padding: var(--space-16) 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.stat-value span {
    color: var(--ezyli-orange);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   ADVANTAGES SECTION
============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.advantages-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

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

.advantage-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--ezyli-teal-light);
}

.advantage-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ezyli-teal-light), var(--ezyli-blue-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ezyli-teal);
    transition: all var(--transition-base);
}

.advantage-item:hover .advantage-icon {
    background: var(--ezyli-gradient);
    color: var(--white);
}

.advantage-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.advantage-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Advantages Visual */
.advantages-visual {
    display: flex;
    justify-content: center;
}

.advantages-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    background: var(--ezyli-gradient-soft);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advantages-image-content {
    text-align: center;
    padding: var(--space-8);
}

.advantages-image-icon {
    width: 140px;
    height: 140px;
    background: var(--ezyli-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

/* ============================================
   STEPS / HOW IT WORKS
============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--ezyli-teal), var(--ezyli-blue), var(--ezyli-orange));
    z-index: 0;
}

.step-card {
    position: relative;
    text-align: center;
    padding: var(--space-6);
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--ezyli-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-teal);
    transition: all var(--transition-base);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(-5deg);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-4);
    color: var(--ezyli-orange);
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--ezyli-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--space-8);
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--ezyli-teal-light);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: color var(--transition-base);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--ezyli-teal);
}

.faq-answer {
    display: none;
    padding-bottom: var(--space-5);
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: var(--ezyli-gradient);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--ezyli-orange);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-primary {
    background: var(--ezyli-gradient);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 138, 138, 0.35);
}

.btn-orange {
    background: var(--ezyli-orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
    background: var(--ezyli-orange-dark);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--ezyli-teal);
    transform: translateY(-4px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-5);
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-link:hover {
    color: var(--ezyli-teal);
    padding-left: var(--space-2);
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color var(--transition-base);
}

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

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-visual {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
