/* ============================================================
   FIXIFIO v3 — Design System Premium Dual-Audience
   Palette : Vert Émeraude #2EC4A0 + Violet #7C3AED + Blanc
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green:        #2EC4A0;
  --green-light:  #4EDBB8;
  --green-dark:   #1FA882;
  --violet:       #7C3AED;
  --violet-light: #9D5CF6;
  --violet-dark:  #5B21B6;
  --white:        #FFFFFF;
  --bg-main:      #F8FAFB;
  --bg-card:      #FFFFFF;
  --bg-dark:      #1a1a2e;
  --bg-dark2:     #16213e;
  --text-dark:    #1a1a2e;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       rgba(46, 196, 160, 0.15);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 32px rgba(46,196,160,0.25);
  --shadow-violet:0 8px 32px rgba(124,58,237,0.25);
  --grad-brand:   linear-gradient(135deg, var(--green) 0%, var(--violet) 100%);
  --grad-green:   linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  --grad-violet:  linear-gradient(135deg, var(--violet) 0%, var(--violet-light) 100%);
  --grad-hero:    linear-gradient(160deg, #F0FDF9 0%, #F5F3FF 50%, #FAFAFA 100%);
  --grad-dark:    linear-gradient(135deg, var(--violet-dark) 0%, var(--bg-dark) 100%);
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================ ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes gradShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.08s; }
.animate-delay-2 { transition-delay: 0.16s; }
.animate-delay-3 { transition-delay: 0.24s; }
.animate-delay-4 { transition-delay: 0.32s; }
.animate-delay-5 { transition-delay: 0.40s; }

/* ============================================================ HEADER */
.main-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.35s ease;
}
.main-header.sticky { background: rgba(255,255,255,0.98); box-shadow: var(--shadow-md); }
.logo-img { height: 28px; width: auto; object-fit: contain; }
.nav-link { color: var(--text-muted) !important; font-weight: 500; font-size: 14px; padding: 8px 18px !important; border-radius: var(--r-full); transition: all 0.25s ease; }
.nav-link:hover { color: var(--green-dark) !important; background: rgba(46,196,160,0.08); }

/* ============================================================ BOUTONS */
.btn-brand {
  background: var(--grad-brand); background-size: 200% 200%; animation: gradShift 6s ease infinite;
  color: white; border: none; padding: 13px 28px; border-radius: var(--r-full);
  font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.3s ease; box-shadow: var(--shadow-green);
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-brand::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transition: left 0.5s ease; }
.btn-brand:hover::before { left: 100%; }
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(46,196,160,0.4); color: white; }

.btn-ghost {
  background: transparent; border: 1.5px solid rgba(46,196,160,0.35); color: var(--text-dark);
  padding: 12px 26px; border-radius: var(--r-full); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); background: rgba(46,196,160,0.06); transform: translateY(-1px); }

.btn-violet {
  background: var(--grad-violet); background-size: 200% 200%; animation: gradShift 6s ease infinite;
  color: white; border: none; padding: 13px 28px; border-radius: var(--r-full);
  font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.3s ease; box-shadow: var(--shadow-violet);
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-violet:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.4); color: white; }

.btn-ghost-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.35); color: white;
  padding: 12px 26px; border-radius: var(--r-full); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); color: white; transform: translateY(-1px); }

/* ============================================================ BADGE */
.badge-custom { display: inline-flex; align-items: center; gap: 7px; background: rgba(46,196,160,0.1); border: 1px solid rgba(46,196,160,0.3); color: var(--green-dark); padding: 6px 16px; border-radius: var(--r-full); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.badge-custom i { color: var(--violet); }
.badge-violet { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.3); color: var(--violet-dark); }
.badge-violet i { color: var(--green); }
.badge-free { background: linear-gradient(135deg, rgba(46,196,160,0.15), rgba(124,58,237,0.15)); border: 1px solid rgba(46,196,160,0.4); color: var(--green-dark); font-size: 12px; padding: 4px 12px; border-radius: var(--r-full); font-weight: 700; display: inline-block; }

/* ============================================================ SECTION HEADER */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; color: var(--text-dark); margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-violet { background: var(--grad-violet); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================================ HERO DUAL */
.hero-banner {
  background: var(--grad-hero);
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; top: -120px; right: -100px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,196,160,0.12) 0%, transparent 65%);
  border-radius: 50%; animation: float 10s ease-in-out infinite; pointer-events: none;
}
.hero-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -80px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 65%);
  border-radius: 50%; animation: float 12s ease-in-out infinite reverse; pointer-events: none;
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-content h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.08; letter-spacing: -2px; color: var(--text-dark); margin-bottom: 20px; }
.hero-content p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }

/* Social proof */
.social-proof { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatar { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid white; margin-left: -10px; box-shadow: var(--shadow-sm); }
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--text-muted); }
.proof-text strong { color: var(--text-dark); font-weight: 700; }
.stars { color: #FBBF24; font-size: 13px; }

/* Dashboard card hero */
.hero-image-wrapper { animation: fadeRight 1s cubic-bezier(.22,1,.36,1) 0.2s both; }
.dashboard-card {
  background: white; border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border); position: relative;
}
.dashboard-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dashboard-title { display: flex; align-items: center; gap: 12px; }
.dashboard-icon { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
.dashboard-title-text h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 0; }
.dashboard-title-text span { font-size: 12px; color: var(--text-muted); }
.productivity-badge { background: rgba(46,196,160,0.1); color: var(--green-dark); padding: 5px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; white-space: nowrap; }
.dashboard-body { padding: 20px 24px; }
.screenshot-container img { width: 100%; border-radius: var(--r-md); }

/* ============================================================ STATS STRIP */
.stats-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stat-item { text-align: center; padding: 12px; }
.stat-number { font-size: clamp(28px, 4vw, 40px); font-weight: 900; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ============================================================ AUDIENCE TOGGLE */
.audience-toggle-section { background: white; padding: 48px 0 0; }
.audience-tabs { display: flex; background: var(--bg-main); border-radius: var(--r-full); padding: 6px; gap: 4px; max-width: 420px; margin: 0 auto 48px; border: 1px solid var(--border); }
.audience-tab {
  flex: 1; padding: 12px 24px; border-radius: var(--r-full); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.3s ease; text-align: center; border: none; background: transparent; color: var(--text-muted);
}
.audience-tab.active-client { background: var(--grad-green); color: white; box-shadow: var(--shadow-green); }
.audience-tab.active-repairer { background: var(--grad-violet); color: white; box-shadow: var(--shadow-violet); }
.audience-tab:hover:not(.active-client):not(.active-repairer) { background: rgba(46,196,160,0.06); color: var(--text-dark); }

/* ============================================================ DUAL AUDIENCE SECTIONS */
/* Section Clients */
.section-clients {
  padding: 80px 0;
  background: linear-gradient(160deg, #F0FDF9 0%, #FAFAFA 100%);
  position: relative;
  overflow: hidden;
}
.section-clients::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,196,160,0.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

/* Section Réparateurs */
.section-repairers {
  padding: 80px 0;
  background: linear-gradient(160deg, #F5F3FF 0%, #FAFAFA 100%);
  position: relative;
  overflow: hidden;
}
.section-repairers::before {
  content: ''; position: absolute; top: -60px; left: -60px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

/* ============================================================ FEATURE CARDS */
.feature-card {
  background: white; border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.35s ease; height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(46,196,160,0.3); }
.feature-card.violet-hover:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-violet); }
.feature-icon { width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feature-icon.green { background: linear-gradient(135deg, rgba(46,196,160,0.15), rgba(78,219,184,0.15)); color: var(--green-dark); }
.feature-icon.violet { background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(157,92,246,0.15)); color: var(--violet-dark); }
.feature-icon.mixed { background: var(--grad-brand); color: white; }
.feature-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================ FREE BADGE HIGHLIGHT */
.free-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2EC4A0, #7C3AED);
  color: white; padding: 8px 20px; border-radius: var(--r-full);
  font-weight: 800; font-size: 14px; letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(46,196,160,0.3);
  margin-bottom: 20px;
}

/* ============================================================ IMAGE SHOWCASE */
.showcase-img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}
.img-wrapper-float { animation: float 8s ease-in-out infinite; }
.img-badge-overlay {
  position: absolute; bottom: 24px; left: 24px;
  background: white; border-radius: var(--r-lg); padding: 14px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.img-badge-overlay .badge-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.img-badge-overlay .badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.img-badge-overlay .badge-text span { font-size: 12px; color: var(--text-muted); }

/* ============================================================ PROCESS STEPS */
.process-step { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-number { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; flex-shrink: 0; }
.step-number.green { background: var(--grad-green); color: white; box-shadow: var(--shadow-green); }
.step-number.violet { background: var(--grad-violet); color: white; box-shadow: var(--shadow-violet); }
.step-content h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================================ SEARCH SECTION */
.search-section { background: white; padding: 64px 0; }
.search-container { background: var(--bg-main); border-radius: var(--r-xl); padding: 48px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.search-container h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.search-container p { color: var(--text-muted); margin-bottom: 28px; }
.search-box { display: flex; gap: 12px; max-width: 540px; }
.search-input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: 15px; font-family: 'Inter', sans-serif; outline: none; transition: all 0.3s ease; background: white; }
.search-input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(46,196,160,0.12); }
.search-btn { flex-shrink: 0; }
.search-hint { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* Results */
.search-results { margin-top: 40px; }
.results-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.results-header h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.results-count-badge { background: var(--grad-brand); color: white; padding: 3px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 700; margin-left: 8px; }
.selection-hint { font-size: 13px; color: var(--text-muted); }
.repairers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* Repairer card */
.repairer-card { background: white; border-radius: var(--r-lg); padding: 22px; border: 2px solid var(--border); cursor: pointer; transition: all 0.3s ease; }
.repairer-card:hover { border-color: var(--green); box-shadow: var(--shadow-green); transform: translateY(-3px); }
.repairer-card.selected { border-color: var(--green); background: rgba(46,196,160,0.04); box-shadow: var(--shadow-green); }
.repairer-card.disabled { opacity: 0.5; cursor: not-allowed; }
.repairer-card.disabled:hover { transform: none; box-shadow: none; border-color: var(--border); }
.repairer-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.repairer-city { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.repairer-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.repairer-rating .stars { color: #FBBF24; }
.repairer-selected-badge { display: none; background: var(--grad-brand); color: white; padding: 4px 12px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; margin-top: 10px; }
.repairer-card.selected .repairer-selected-badge { display: inline-block; }

/* Selection bar */
.selection-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: white; border-radius: var(--r-xl);
  padding: 16px 28px; box-shadow: 0 20px 60px rgba(46,196,160,0.3);
  display: flex; align-items: center; gap: 20px; z-index: 999;
  animation: fadeUp 0.4s cubic-bezier(.22,1,.36,1);
  border: 1px solid rgba(255,255,255,0.2);
}
.selection-bar-text { font-size: 14px; font-weight: 600; }
.selection-bar-count { background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: var(--r-full); font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,0.3); }

/* ============================================================ TESTIMONIALS */
.testimonial-card {
  background: white; border-radius: var(--r-xl); padding: 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative; height: 100%;
}
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-size: 80px; color: rgba(46,196,160,0.1); font-family: Georgia, serif; line-height: 1; }
.testimonial-text { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ============================================================ PRICING / FREE SECTION */
.free-section {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.free-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,160,0.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.free-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.free-section .container { position: relative; z-index: 1; }
.free-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 40px; backdrop-filter: blur(10px); height: 100%;
  transition: all 0.35s ease;
}
.free-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(46,196,160,0.3); transform: translateY(-4px); }
.free-card.violet-card:hover { border-color: rgba(124,58,237,0.4); }
.free-card h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 12px; }
.free-card p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.free-card .price-tag { font-size: 48px; font-weight: 900; color: white; line-height: 1; margin-bottom: 4px; }
.free-card .price-tag span { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.6); }
.free-card .price-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.free-list { list-style: none; padding: 0; margin: 0 0 32px; }
.free-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.free-list li:last-child { border-bottom: none; }
.free-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.free-list li i.violet-icon { color: var(--violet-light); }

/* ============================================================ FAQ */
.faq-section { padding: 80px 0; background: var(--bg-main); }
.accordion-item { background: white; border-radius: var(--r-lg) !important; margin-bottom: 12px; border: 1px solid var(--border) !important; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-button { font-weight: 700; font-size: 15px; color: var(--text-dark); background: white; padding: 20px 24px; }
.accordion-button:not(.collapsed) { color: var(--green-dark); background: rgba(46,196,160,0.04); box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--text-muted); font-size: 14px; line-height: 1.75; padding: 0 24px 20px; }

/* ============================================================ CTA SECTION */
.cta-section {
  background: var(--grad-brand); background-size: 200% 200%; animation: gradShift 8s ease infinite;
  border-radius: var(--r-xl); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.cta-section h3 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-section .cta-btns { position: relative; z-index: 1; }

/* ============================================================ FOOTER */
.modern-footer { background: var(--bg-dark); padding: 64px 0 32px; }
.footer-top { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-info p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--r-md); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 16px; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--green); color: white; }
.footer-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding-top: 28px; }
.copyright { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.made-with { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.made-with a { color: var(--green); font-weight: 600; }

/* ============================================================ TOAST */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast-item { background: white; border-radius: var(--r-lg); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--text-dark); animation: fadeUp 0.4s ease; border-left: 4px solid var(--green); min-width: 280px; }
.toast-item.error { border-left-color: #EF4444; }
.toast-item i { font-size: 18px; color: var(--green); }
.toast-item.error i { color: #EF4444; }

/* ============================================================ DEVICES */
.device-card { background: white; border-radius: var(--r-lg); padding: 24px 16px; border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.device-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(46,196,160,0.3); }
.device-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-top: 12px; margin-bottom: 0; }

/* ============================================================ RESPONSIVE */
@media (max-width: 991px) {
  .hero-banner { padding: 100px 0 60px; }
  .hero-content h1 { font-size: 36px; }
  .search-box { flex-direction: column; }
  .search-btn { width: 100%; justify-content: center; }
  .cta-section { padding: 48px 28px; }
}
@media (max-width: 767px) {
  .hero-banner { padding: 90px 0 48px; }
  .stats-strip { padding: 24px 0; }
  .section-clients, .section-repairers { padding: 56px 0; }
  .free-section { padding: 56px 0; }
  .free-card { padding: 28px 24px; }
  .search-container { padding: 28px 20px; }
  .audience-tabs { max-width: 100%; }
  .selection-bar { width: calc(100% - 32px); flex-direction: column; text-align: center; gap: 12px; }
}

/* ============================================================ BG GRADIENT LIGHT */
.bg-gradient-light { background: linear-gradient(160deg, #F8FAFB 0%, #F5F3FF 100%); }
