/* ===================================================
   CLIMWASH - Light Theme Design System
   =================================================== */

/* === TOKENS === */
:root {
  --bg:          #f0f7ff;
  --bg-2:        #e5eef9;
  --panel:       #ffffff;
  --panel-alt:   #eef5fc;
  --border:      rgba(8, 145, 178, 0.13);
  --border-hi:   rgba(8, 145, 178, 0.42);
  --text:        #0c1a2e;
  --muted:       #3b5c78;
  --dim:         #7a96b0;
  --primary:     #0891b2;
  --primary-dk:  #0e7490;
  --primary-bg:  rgba(8, 145, 178, 0.08);
  --primary-glow:rgba(8, 145, 178, 0.18);
  --star:        #f59e0b;
  --radius:      1rem;
  --radius-sm:   0.5rem;
  --radius-lg:   1.5rem;
  --shadow-sm:   0 2px 10px rgba(12, 26, 46, 0.07);
  --shadow:      0 4px 24px rgba(12, 26, 46, 0.1);
  --shadow-lg:   0 8px 40px rgba(12, 26, 46, 0.13);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* === LAYOUT === */
.container {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.section { padding: 5rem 0; }
.section--alt {
  background: var(--panel-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-inline: auto;
}

/* === UTILITIES === */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-bg);
  color: var(--primary-dk);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(8, 145, 178, 0.22);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 12px var(--primary-glow);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(8, 145, 178, 0.38); }

.btn--ghost {
  background: rgba(8, 145, 178, 0.07);
  color: var(--text);
  border: 1px solid rgba(8, 145, 178, 0.22);
}
.btn--ghost:hover { background: rgba(8, 145, 178, 0.13); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover { background: var(--primary-bg); }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  background: rgba(240, 247, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 4rem;
  gap: 1.5rem;
}

.nav__brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__brand span { color: var(--primary); }

.nav__links {
  display: flex;
  gap: 0.15rem;
  flex: 1;
}
.nav__links a {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--text); background: rgba(8, 145, 178, 0.07); }
.nav__links a[aria-current="page"] { color: var(--primary); background: var(--primary-bg); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(0.455rem) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.455rem) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 4rem 0 0;
  background: var(--panel);
  z-index: 199;
  padding: 1.5rem clamp(1.25rem, 5vw, 2rem);
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(12, 26, 46, 0.12);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav__mobile a:hover { color: var(--text); background: var(--panel-alt); }
.nav__mobile a[aria-current="page"] { color: var(--primary); background: var(--primary-bg); }
.nav__mobile .btn { margin-top: 0.75rem; width: 100%; }
.nav__mobile-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }

/* === HERO === */
.hero {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 110% 80% at 78% 58%, rgba(186, 230, 253, 0.55) 0%, transparent 52%),
    radial-gradient(ellipse 70% 70% at 12% 12%, rgba(224, 242, 254, 0.65) 0%, transparent 48%),
    var(--bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
  width: 100%;
}

.hero__badge   { margin-bottom: 1.25rem; }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.09;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero__desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero__trust-item { display: flex; align-items: center; gap: 0.35rem; }
.hero__trust-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.12) 0%, rgba(8, 145, 178, 0.03) 45%, transparent 70%);
  animation: hero-pulse 4.5s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.07); opacity: 0.75; }
}

.hero__orb {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: conic-gradient(from 200deg at 50% 50%, #bae6fd 0deg, #7dd3fc 90deg, #a5f3fc 180deg, #e0f2fe 270deg, #bae6fd 360deg);
  border: 1.5px solid rgba(8, 145, 178, 0.25);
  box-shadow:
    0 0 50px rgba(8, 145, 178, 0.15),
    0 8px 32px rgba(12, 26, 46, 0.1),
    inset 0 0 40px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: orb-pulse 5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 50px rgba(8,145,178,0.15), 0 8px 32px rgba(12,26,46,0.1), inset 0 0 40px rgba(255,255,255,0.5); }
  50%       { box-shadow: 0 0 70px rgba(8,145,178,0.25), 0 8px 32px rgba(12,26,46,0.1), inset 0 0 50px rgba(255,255,255,0.6); }
}
.hero__orb-icon { font-size: 4.5rem; filter: drop-shadow(0 2px 8px rgba(8, 145, 178, 0.3)); }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 2;
  color: var(--text);
}
.float-card__icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.float-card--1 { top: 8%;  right: 4%;  animation: float 3s ease-in-out infinite; }
.float-card--2 { bottom: 18%; right: -2%; animation: float 3.8s ease-in-out infinite 0.6s; }
.float-card--3 { top: 42%; left: -2%;  animation: float 4.2s ease-in-out infinite 1.1s; }
.float-card--4 { bottom: 8%; left: 12%; animation: float 3.5s ease-in-out infinite 0.3s; }

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

/* === STATS BAR === */
.stats {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}

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

.stats__item {
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}

.stats__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stats__label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(8, 145, 178, 0.1);
}

.service-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.65rem;
  background: var(--primary-bg);
  border: 1px solid rgba(8, 145, 178, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  color: var(--text);
}
.service-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.5rem; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.why-visual__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.25rem;
}

.kpi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: var(--panel-alt);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}
.kpi-row__label { color: var(--muted); }
.kpi-row__val { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.kpi-row__bar {
  flex: 1;
  height: 4px;
  background: var(--bg-2);
  border-radius: 2px;
  margin: 0 0.75rem;
  overflow: hidden;
}
.kpi-row__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dk), var(--primary));
  border-radius: 2px;
}

.why-list { display: flex; flex-direction: column; gap: 1.1rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  background: var(--primary-bg);
  border: 1px solid rgba(8, 145, 178, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.why-item h4 { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--text); }
.why-item p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* === PROCESS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-bg) 20%, rgba(8,145,178,0.35) 50%, var(--primary-bg) 80%, transparent 100%);
}

.process-step { text-align: center; padding: 2rem 1rem; }
.process-step__num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid rgba(8, 145, 178, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-weight: 700; margin-bottom: 0.5rem; font-size: 1rem; color: var(--text); }
.process-step p { color: var(--muted); font-size: 0.855rem; }

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

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--star); font-size: 0.85rem; letter-spacing: 0.06em; }
.testimonial-text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}
.testimonial-name  { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.testimonial-place { font-size: 0.75rem; color: var(--dim); }

/* === FAQ === */
.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.is-open {
  border-color: var(--border-hi);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--panel-alt); }

.faq-chevron {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-bottom: 0.2rem;
}
.faq-item.is-open .faq-chevron { transform: rotate(-135deg); margin-bottom: -0.2rem; }

.faq-answer {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.is-open .faq-answer { display: block; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.contact-info > p { color: var(--muted); font-size: 0.95rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-detail:hover { border-color: var(--border-hi); box-shadow: var(--shadow); }
.contact-detail__icon { font-size: 1rem; flex-shrink: 0; }
.contact-detail a { transition: color 0.2s; }
.contact-detail a:hover { color: var(--primary); }

/* Form */
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid rgba(8, 145, 178, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}
.form-group select option { background: var(--panel); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer { font-size: 0.75rem; color: var(--dim); margin-top: -0.25rem; }
.form-disclaimer a { color: var(--primary); }

/* === FOOTER (stays dark for contrast) === */
.footer {
  background: #0c1a2e;
  padding: 3.5rem 0 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  display: block;
  color: #fff;
}
.footer__brand span { color: #67e8f9; }
.footer__tagline {
  color: #64748b;
  font-size: 0.855rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { color: #475569; font-size: 0.875rem; transition: color 0.2s; }
.footer__links a:hover { color: #94a3b8; }
.footer__contact-item { color: #475569; font-size: 0.855rem; margin-bottom: 0.4rem; }
.footer__contact-item a:hover { color: #67e8f9; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: #334155;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom a { color: #334155; transition: color 0.2s; }
.footer__bottom a:hover { color: #64748b; }

/* === SERVICES PAGE HERO === */
.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(186, 230, 253, 0.5) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

/* Services page detail cards */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reversed { direction: rtl; }
.service-detail.reversed > * { direction: ltr; }

.service-detail__content .badge { margin-bottom: 0.75rem; }
.service-detail__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-detail__content p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-detail__list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.service-detail__list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.service-detail__visual {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 260px;
  text-align: center;
  box-shadow: var(--shadow);
}
.service-detail__emoji { font-size: 4.5rem; }
.service-detail__visual-title { font-weight: 700; font-size: 1rem; color: var(--text); }
.service-detail__visual-sub { color: var(--muted); font-size: 0.85rem; max-width: 22ch; margin: 0 auto; }

/* Pricing hint */
.pricing-hint {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-alt) 100%);
  border: 1.5px solid rgba(8, 145, 178, 0.25);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-hint h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.pricing-hint p { color: var(--muted); margin-bottom: 1.5rem; }

/* === MENTIONS LÉGALES === */
.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-dk);
  letter-spacing: -0.01em;
}
.legal-section p, .legal-section li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.legal-section ul { padding-left: 1.25rem; list-style: disc; display: flex; flex-direction: column; gap: 0.3rem; }
.legal-section a { color: var(--primary); }
.legal-section a:hover { text-decoration: underline; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2)::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reversed { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }

  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; }
  .hero__inner { padding-block: 3rem 2.5rem; }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 3rem 0 2rem; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item::after { display: none; }
  .hero__trust { gap: 0.6rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
}
