/*
Theme Name: DEPA RESEAUX
Theme URI: https://depareseaux.arkane.me/
Author: Arkane EI
Author URI: https://arkane.me/
Description: Thème landing page professionnel pour DEPA RESEAUX — Blanc épuré × Orange, formulaire de devis multi-étapes personnalisable, emails configurables avec pièces jointes, sécurité renforcée.
Version: 1.3.4
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: depareseaux
Tags: landing-page, one-page, light, clean, business, technology, devis
*/

/* ===================================================
   DEPA RESEAUX - Custom WordPress Theme v4
   Style: Clean White × Orange — Épuré & Professionnel
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ── CSS Variables — Palette Blanc Épuré × Orange DEPA ── */
:root {
  --color-bg:        #FFFFFF;
  --color-surface:   #F7F8FA;
  --color-surface2:  #EEF0F4;
  --color-border:    #E2E5EA;
  --color-accent:    #F47C20;
  --color-accent2:   #E05A00;
  --color-accent-dk: #C44E00;
  --color-text:      #2C3340;
  --color-muted:     #7A8494;
  --color-white:     #FFFFFF;
  --color-dark:      #1A1D23;
  --font-display:    'Barlow Condensed', sans-serif;
  --font-mono:       'Space Mono', monospace;
  --font-body:       'Barlow', sans-serif;
  --max-w:           1200px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow:            0 4px 20px rgba(244, 124, 32, 0.25);
  --glow-strong:     0 8px 40px rgba(244, 124, 32, 0.4);
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.05);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.10), 0 16px 48px rgba(0,0,0,0.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dk); }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8vw, 7.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1.05rem; color: var(--color-text); line-height: 1.7; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--xl { padding: 9rem 0; }
.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: var(--glow);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  color: #fff;
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── ━━━━━━━━━━━━ HEADER / NAV ━━━━━━━━━━━━ ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.8rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo span { color: var(--color-accent); }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* Logo has black bg — we clip it cleanly and tint on dark bg */
  filter: brightness(0.95) contrast(1.1);
  transition: filter var(--transition), transform var(--transition);
}
.site-logo:hover .logo-img {
  filter: brightness(0.9) contrast(1.1) drop-shadow(0 2px 6px rgba(244,124,32,0.35));
  transform: scale(1.03);
}
.site-logo .logo-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: var(--glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Nav */
.nav-primary { display: flex; align-items: center; gap: 2.5rem; }
.nav-primary a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-primary a:hover { color: var(--color-dark); }
.nav-primary a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: 6px;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  color: var(--color-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

/* Overlay backdrop quand le menu est ouvert */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 35, 0.4);
  z-index: 997;
  backdrop-filter: blur(2px);
}
.menu-overlay.active { display: block; }

/* ── ━━━━━━━━━━━━ HERO ━━━━━━━━━━━━ ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #fff 0%, #FFF7F0 55%, #FFF1E6 100%);
}

/* Subtle grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 124, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 124, 32, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* Soft orange orb */
#hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(244, 124, 32, 0.06);
  border: 1px solid rgba(244, 124, 32, 0.3);
  padding: 0.35rem 0.85rem;
}
.hero-tag-line {
  width: 40px; height: 1px;
  background: var(--color-border);
}
.hero-title {
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-title .line-accent {
  color: var(--color-accent);
  text-shadow: none;
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats row */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}
.stat-item { }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-value span { color: var(--color-accent); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-diagram {
  width: 100%;
  max-width: 520px;
  position: relative;
}
.hero-diagram svg { width: 100%; height: auto; overflow: visible; }

/* ── ━━━━━━━━━━━━ TICKER BAR ━━━━━━━━━━━━ ── */
.ticker-bar {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ━━━━━━━━━━━━ SERVICES ━━━━━━━━━━━━ ── */
#services { background: var(--color-surface); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-header p { color: var(--color-muted); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--color-surface); box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(244,124,32,0.25); }
.service-card:hover .service-icon { color: var(--color-accent); }
.service-icon {
  width: 48px; height: 48px;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}
.service-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--color-border);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.service-card p { font-size: 0.9rem; color: var(--color-muted); line-height: 1.65; }

/* ── ━━━━━━━━━━━━ À PROPOS / WHY US ━━━━━━━━━━━━ ── */
#about {
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
  transition: filter 0.6s ease;
}
.about-image-wrap:hover img { filter: saturate(1) brightness(1); }
/* Accent frame */
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--color-accent), transparent 40%, transparent 60%, var(--color-accent-dk));
  z-index: 0;
  opacity: 0.7;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-white);
  z-index: 1;
}
.about-image-wrap img { position: relative; z-index: 2; }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-accent);
  color: #fff;
  padding: 1.5rem;
  z-index: 10;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: var(--glow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-content { }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--color-muted); margin-bottom: 1.5rem; }

.feature-list { margin: 2rem 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.feature-item:last-child { border-bottom: none; }
.feature-check {
  width: 20px; height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--color-dark);
}
.feature-text p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ── ━━━━━━━━━━━━ EXPERTISE / TECH ━━━━━━━━━━━━ ── */
#expertise { background: var(--color-bg); }
.expertise-header { text-align: center; margin-bottom: 4rem; }
.expertise-header h2 { margin-bottom: 1rem; }
.expertise-header p { color: var(--color-muted); max-width: 550px; margin: 0 auto; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.expertise-card {
  background: var(--color-white);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.expertise-card:hover { border-color: rgba(244, 124, 32, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.expertise-card:hover::after { transform: scaleX(1); }
.expertise-pct {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(244, 124, 32, 0.10);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1rem;
}
.expertise-icon { color: var(--color-accent); margin-bottom: 1rem; }
.expertise-icon svg { width: 32px; height: 32px; }
.expertise-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.06em; }
.expertise-card p { font-size: 0.82rem; color: var(--color-muted); line-height: 1.6; }
.expertise-bar { margin-top: 1.25rem; }
.expertise-bar-track {
  height: 2px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}
.expertise-bar-fill {
  height: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 8px rgba(244, 124, 32, 0.4);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── ━━━━━━━━━━━━ TESTIMONIAL ━━━━━━━━━━━━ ── */
/* testimonial section light */
#testimonial {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#testimonial::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(244, 124, 32, 0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-dark);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.testimonial-quote em { color: var(--color-accent); font-style: normal; }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.author-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.author-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ── ━━━━━━━━━━━━ CTA SECTION ━━━━━━━━━━━━ ── */
#cta-section {
  padding: 6rem 0;
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-content h2 { margin-bottom: 0.75rem; }
.cta-content p { color: var(--color-muted); font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.cta-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ── ━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━ ── */
#site-footer {
  padding: 4rem 0 2rem;
  background: var(--color-white);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-dark); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--glow);
}
.social-link svg { width: 16px; height: 16px; }

/* ── ━━━━━━━━━━━━ SCROLL ANIMATIONS ━━━━━━━━━━━━ ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── ━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━ ── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablette large (≤ 1100px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablette / Mobile (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Container ── */
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section--xl { padding: 5rem 0; }

  /* ── Hero ── */
  #hero { padding: 7rem 0 4rem; min-height: auto; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  h3 { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .hero-desc { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Nav menu mobile ── */
  .nav-primary {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 6rem 2rem 3rem;
    align-items: flex-start;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
  }
  .nav-primary.open { display: flex; }
  .nav-primary a {
    font-size: 1.3rem;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-dark);
  }
  .nav-primary a:last-child { border-bottom: none; }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }

  /* ── About ── */
  .expertise-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 100%; }

  /* ── Process ── */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-card { padding: 1.5rem 1rem 1.5rem 0; }

  /* ── Devis form ── */
  .devis-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .devis-form-wrap { position: static; }
  .check-grid, .radio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .progress-steps { display: none; }

  /* ── Témoignages ── */
  .testimonial-quote { font-size: clamp(1.1rem, 5vw, 1.6rem); }
  .testi-controls { gap: 0.75rem; }

  /* ── CTA ── */
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Petit mobile (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  #hero { padding: 6rem 0 3rem; }
  h1 { font-size: clamp(2rem, 12vw, 3rem); }

  /* Process — 1 colonne sur très petit écran */
  .process-grid { grid-template-columns: 1fr; }

  /* Nav encore plus compact */
  .nav-primary { padding: 5.5rem 1.25rem 2rem; }
  .nav-primary a { font-size: 1.1rem; padding: 0.85rem 0; }

  /* Ticker masqué sur très petits écrans */
  .ticker-bar { display: none; }

  /* Stats en ligne sur 480px */
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .stat-item { min-width: 80px; text-align: center; }

  /* Boutons formulaire */
  .form-nav { flex-direction: column; gap: 0.75rem; }
  .form-nav .btn { width: 100%; justify-content: center; }

  /* Témoignage arrows masquées, dots seulement */
  .testi-prev, .testi-next { display: none; }
}

/* ── ━━━━━━━━━━━━ WP NATIVE OVERRIDES ━━━━━━━━━━━━ ── */
.wp-block-image img { border: 1px solid var(--color-border); }
.wp-block-quote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  color: var(--color-muted);
  font-style: italic;
}
.wp-block-separator { border-color: var(--color-border); }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════════════════════
   V3 ADDITIONS — Process, Devis Form, Service CTA
   Inspiré fibre-com.fr + cablage-informatique.net
═══════════════════════════════════════════════════════ */

/* ── Service card CTA link ── */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
}
.service-cta span { transition: transform var(--transition); }
.service-card:hover .service-cta { color: var(--color-accent); }
.service-card:hover .service-cta span { transform: translateX(4px); }

/* ── Process grid ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-card {
  padding: 2rem 2rem 2rem 0;
  position: relative;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.process-line {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin-bottom: 1.25rem;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.process-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── Devis section layout ── */
.devis-section {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 7rem 0;
}
.devis-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* ── Devis pitch ── */
.devis-pitch h2 { margin-bottom: 1rem; }
.devis-pitch > p { color: var(--color-muted); margin-bottom: 2rem; line-height: 1.8; }
.devis-reassurance {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-accent);
}
.reassurance-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.reassurance-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.reassurance-item span { font-size: 0.8rem; color: var(--color-muted); }

.devis-phone { margin-top: 1.5rem; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--color-accent-dk); }

/* ── Form wrapper ── */
.devis-form-wrap {
  position: sticky;
  top: 6rem;
}
.devis-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--color-accent);
  overflow: hidden;
  border-radius: 2px;
}

/* ── Progress bar ── */
.form-progress {
  background: var(--color-white);
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.progress-bar {
  height: 3px;
  background: var(--color-border);
  margin-bottom: 1rem;
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(244,124,32,0.5);
  width: 12.5%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-steps {
  display: flex;
  gap: 0;
  justify-content: space-between;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  cursor: default;
}
.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.progress-step.active .step-dot,
.progress-step.done .step-dot {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 10px rgba(244,124,32,0.4);
}
.step-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.3s;
  display: none; /* shown on wider screens */
}
.progress-step.active .step-label { color: var(--color-accent); }
@media (min-width: 1200px) { .step-label { display: block; } }

/* ── Form steps ── */
#devis-native { position: relative; }
.form-step {
  display: none;
  padding: 1.75rem 1.75rem 0;
  animation: fadeInStep 0.35s ease;
}
.form-step.active { display: block; }
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(244,124,32,0.2);
  line-height: 1;
  flex-shrink: 0;
}
.step-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step-header p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

/* ── Check cards (checkbox) ── */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.check-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
  color: var(--color-text);
}
.check-card:hover { border-color: rgba(244,124,32,0.4); background: rgba(244,124,32,0.04); }
.check-card input[type="checkbox"] { accent-color: var(--color-accent); width: 16px; height: 16px; flex-shrink: 0; }
.check-card:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(244,124,32,0.08);
  color: var(--color-dark);
}

/* ── Radio cards ── */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.radio-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
  color: var(--color-text);
}
.radio-card:hover { border-color: rgba(244,124,32,0.4); }
.radio-card input[type="radio"] { accent-color: var(--color-accent); width: 16px; height: 16px; flex-shrink: 0; }
.radio-card:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(244,124,32,0.08);
  color: var(--color-dark);
}

/* ── Form fields ── */
.form-field { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step input[type="url"],
.form-step input[type="number"],
.form-step input[type="date"],
.form-step select,
.form-step textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-step input:focus,
.form-step select:focus,
.form-step textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.12);
}
.form-step select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F47C20' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.5rem; }
.form-step textarea { resize: vertical; min-height: 110px; }

/* ── File drop zone ── */
.file-drop {
  border: 2px dashed var(--color-border);
  padding: 2rem 1rem;
  text-align: center;
  background: var(--color-white);
  transition: border-color var(--transition);
  cursor: pointer;
}
.file-drop:hover, .file-drop.dragover { border-color: var(--color-accent); background: rgba(244,124,32,0.04); }
.file-drop p { font-size: 0.85rem; color: var(--color-muted); margin: 0.5rem 0; }
.file-drop small { font-size: 0.75rem; color: var(--color-border); }
#file-list { margin-top: 0.75rem; }
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.75rem;
  background: rgba(244,124,32,0.06);
  border: 1px solid rgba(244,124,32,0.2);
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text);
}
.file-remove { cursor: pointer; color: var(--color-muted); transition: color var(--transition); }
.file-remove:hover { color: #C44E00; }

/* ── RGPD ── */
.rgpd-wrap { margin-top: 1.5rem; }
.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1.6;
}
.rgpd-label input[type="checkbox"] { accent-color: var(--color-accent); width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Récap ── */
.form-recap {
  background: var(--color-white);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.8;
  display: none;
}
.form-recap.visible { display: block; }
.form-recap strong { color: var(--color-accent); font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 0.5rem; }
.form-recap span { color: var(--color-text); }

/* ── Form nav ── */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1.5rem;
  background: var(--color-white);
}

/* ── Success state ── */
.form-success {
  padding: 4rem 2rem;
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--glow-strong);
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--color-muted); font-size: 0.95rem; }

/* ── Responsive v3 — géré dans le bloc principal ci-dessus ── */

/* ── V4 Light theme — hero diagram & misc ── */
.hero-diagram {
  position: relative;
  filter: drop-shadow(0 8px 32px rgba(244,124,32,0.12));
}
.hero-diagram svg {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}

/* Service card h3 color fix */
.service-card h3 { color: var(--color-dark); }

/* Line accent in hero title */
.line-accent { color: var(--color-accent); }

/* About image frame color on light bg */
.about-image-wrap::after { background: var(--color-white); }

/* CTA section — keep dark, ensure white text */
#cta-section h2, #cta-section h3 { color: #fff; }
#cta-section .cta-content p { color: rgba(255,255,255,0.65); }
#cta-section .cta-note { color: rgba(255,255,255,0.45); }

/* Footer on light bg */
#site-footer { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.footer-col h4 { color: var(--color-accent); }
.footer-col ul li a { color: var(--color-muted); }
.footer-col ul li a:hover { color: var(--color-dark); }
.footer-brand p { color: var(--color-muted); }
.footer-legal { color: var(--color-muted); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 1.5rem; }

/* Process cards on light sections */
.process-card h3 { color: var(--color-dark); }

/* Step header h3 */
.step-header h3 { color: var(--color-dark); }

/* Form nav bg */
.form-nav { background: var(--color-surface); }

/* Form progress bg */
.form-progress { background: var(--color-surface); }

/* ═══════════════════════════════════════════════════════════════
   DEPA RESEAUX — Ajouts v1.3.4 (fichiers, validation, emails)
   Auteur : Arkane EI
═══════════════════════════════════════════════════════════════ */

/* ── File error message ── */
#file-error {
  display:none;
  background:#FFF0EC;
  border-left:3px solid var(--color-accent-dk);
  padding:0.6rem 0.875rem;
  margin-top:0.75rem;
  font-size:0.82rem;
  color:var(--color-dark);
  border-radius:0 4px 4px 0;
}

/* ── File items list ── */
#file-list {
  margin-top:0.75rem;
  display:flex;
  flex-direction:column;
  gap:0.4rem;
}
.file-item {
  display:flex;
  align-items:center;
  gap:0.6rem;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:6px;
  padding:0.45rem 0.75rem;
  font-size:0.82rem;
}
.file-ext {
  background:var(--color-accent);
  color:#fff;
  font-family:var(--font-mono);
  font-size:0.68rem;
  padding:0.15rem 0.4rem;
  border-radius:3px;
  letter-spacing:.05em;
  min-width:2.8rem;
  text-align:center;
}
.file-name { flex:1; color:var(--color-text); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.file-size { color:var(--color-muted); font-size:0.78rem; white-space:nowrap; }
.file-remove {
  cursor:pointer;
  color:var(--color-muted);
  font-size:0.8rem;
  line-height:1;
  padding:0.2rem 0.3rem;
  border-radius:3px;
  transition:background .15s, color .15s;
}
.file-remove:hover { background:#fce8df; color:var(--color-accent-dk); }

/* ── File drop zone hover ── */
.file-drop.dragover {
  border-color:var(--color-accent);
  background:rgba(244,124,32,.05);
}

/* ── Recap step 8 ── */
.form-recap {
  display:none;
  margin-top:1.25rem;
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:8px;
  padding:1rem 1.25rem;
  font-size:0.84rem;
}
.form-recap.visible { display:grid; grid-template-columns:auto 1fr; gap:0.4rem 1rem; }
.form-recap strong { color:var(--color-muted); font-weight:600; white-space:nowrap; }
.form-recap span   { color:var(--color-text); }

/* ── RGPD outline error ── */
.rgpd-wrap { margin-top:1rem; }
.rgpd-label { display:flex; gap:0.75rem; align-items:flex-start; cursor:pointer; font-size:0.84rem; color:var(--color-muted); line-height:1.5; }
.rgpd-label input[type="checkbox"] { margin-top:3px; accent-color:var(--color-accent); flex-shrink:0; width:16px; height:16px; }

/* ── Form global error banner ── */
#form-global-error { display:none; }

/* ── Loader spin ── */
#btn-submit[disabled] { opacity:.75; cursor:not-allowed; }
#btn-submit[disabled] svg { display:inline-block; vertical-align:middle; }


/* ═══════════════════════════════════════════════════════════
   TÉMOIGNAGES CAROUSEL — v1.3.4 | Arkane EI
═══════════════════════════════════════════════════════════ */
.testi-carousel {
  position: relative;
  max-width: 820px;
  margin: 2.5rem auto 0;
  overflow: hidden;
}

/* Slides */
.testi-slide {
  display: none;
  animation: testiFadeIn .45s ease forwards;
}
.testi-slide.active { display: block; }

@keyframes testiFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Contrôles */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testi-prev,
.testi-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.testi-prev:hover,
.testi-next:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(244,124,32,.06);
}

.testi-dots {
  display: flex;
  gap: .5rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.testi-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}
