/* ============================================================
   FuiteElec Renov — Design System
   Trust & Authority + Funnel 3-Step Conversion
   Stack: HTML + CSS + PHP | OVH VPS
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --primary:       #4BAEC8;
  --primary-dark:  #3298B2;
  --primary-light: #C2E8F4;
  --accent:        #FFDA7A;
  --accent-dark:   #E8C050;
  --success:       #3BAD6A;
  --bg:            #FFFFFF;
  --bg-warm:       #F2F6F8;
  --bg-muted:      #EAECED;
  --bg-dark:       #3A3B3E;
  --bg-dark-2:     #4A4B4E;
  --text:          #222325;
  --text-muted:    #5A5B5E;
  --text-light:    #8A8B8E;
  --border:        #CCCDD0;
  --border-warm:   #BDD8E4;
  --silver:        #B8BABD;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.14);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --font-display:  "Oswald", sans-serif;
  --font-body:     "Inter", sans-serif;
  --max-w:         1160px;
  --section-py:    80px;
  --transition:    150ms ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-py) 0; }
.section--warm { background: var(--bg-warm); }
.section--muted { background: var(--bg-muted); }
.section--dark { background: var(--bg-dark); color: #fff; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bg-dark);
  margin-bottom: 20px;
}
.section--dark .section-title { color: #fff; }
.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(75,174,200,.35);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75,174,200,.45);
}
.btn--accent {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255,218,122,.4);
}
.btn--accent:hover, .btn--accent:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--primary);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn--lg { padding: 18px 36px; font-size: 1.1rem; min-height: 56px; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.logo__text span { color: var(--primary); }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.nav__link:hover { color: #fff; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--primary-dark); }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
}
.nav__phone svg { color: var(--primary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark-2);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav.open { display: flex; }
  .nav__link { font-size: 1rem; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background-image: url("../img/hero-bg.png") !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 35, 37, 0.23);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,218,122,.2);
  border: 1px solid rgba(255,218,122,.5);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__title span { color: var(--accent); }
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
}
.hero__badge svg { color: var(--success); width: 14px; height: 14px; }
.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.hero__img-placeholder {
  text-align: center;
  color: rgba(255,255,255,.3);
}
.hero__img-placeholder svg { width: 80px; height: 80px; margin: 0 auto 12px; }
.hero__img-placeholder p { font-size: .85rem; }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__stat {
  position: absolute;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__stat--1 { bottom: 30px; left: -20px; }
.hero__stat--2 { top: 20px; right: -20px; }
.hero__stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__stat--1 .hero__stat__icon { background: rgba(255,218,122,.25); color: var(--accent-dark); }
.hero__stat--2 .hero__stat__icon { background: rgba(75,174,200,.15); color: var(--primary); }
.hero__stat__value { font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1; }
.hero__stat__label { font-size: .75rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0; }
  .hero__title { font-size: 3rem; }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { color: var(--success); width: 18px; height: 18px; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.service-card:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}
.step:nth-child(1) .step__num { background: rgba(75,174,200,.15); color: var(--primary); }
.step:nth-child(2) .step__num { background: rgba(255,218,122,.25); color: var(--accent-dark); }
.step:nth-child(3) .step__num { background: rgba(59,173,106,.15); color: var(--success); }
.step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { font-size: .9rem; color: var(--text-muted); max-width: 220px; margin: 0 auto; }
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
}

/* ── BEFORE / AFTER SLIDER ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
}
.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: col-resize;
  touch-action: pan-y;
  user-select: none;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__after { clip-path: inset(0 50% 0 0); }
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-slider__handle::before,
.ba-slider__handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
}
.ba-slider__handle::before { top: 50%; transform: translate(-50%, -50%); }
.ba-slider__handle::after { display: none; }
.ba-slider__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 11;
  color: var(--primary);
}
.ba-slider__arrows svg { width: 22px; height: 22px; }
.ba-labels {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 5;
  pointer-events: none;
}
.ba-label {
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ba-label--before { background: rgba(0,0,0,.6); color: rgba(255,255,255,.8); }
.ba-label--after  { background: var(--success); color: #fff; }
.ba-card__info {
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ba-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ba-card__info p { font-size: .85rem; color: rgba(255,255,255,.55); }
.ba-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: .8rem;
  gap: 8px;
  background: var(--bg-dark-2);
}
.ba-img-placeholder svg { width: 48px; height: 48px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 200ms;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}
.stars svg { width: 18px; height: 18px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-location { font-size: .8rem; color: var(--text-muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) and (min-width: 560px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  flex-direction: column;
  gap: 12px;
  font-size: .85rem;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__img-wrap svg { width: 80px; height: 80px; }
.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.about__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.about__checklist svg {
  color: var(--success);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warm);
}
.about__stat { text-align: center; }
.about__stat__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.about__stat__label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__img-wrap { display: none; }
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: .5;
}
.cta-section__inner { position: relative; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.cta-section .phone-cta:hover { background: rgba(255,255,255,.25); }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-info__value { font-weight: 600; font-size: .95rem; }
.contact-info__value a { color: var(--primary); }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group label .required { color: var(--primary); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 150ms;
  min-height: 48px;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75,174,200,.18);
}
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert--success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.alert--error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 24px 18px; } }

/* ── STICKY PHONE (mobile) ──────────────────────────────────── */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(75,174,200,.5);
  transition: transform var(--transition);
}
.sticky-phone:hover { transform: scale(1.08); }
.sticky-phone svg { width: 26px; height: 26px; }
@media (max-width: 768px) { .sticky-phone { display: flex; } }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand p { font-size: .88rem; line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer__col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: .88rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .82rem;
}
@media (max-width: 700px) {
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}

/* ── AVIS GOOGLE ────────────────────────────────────────────── */
.reviews-header { margin-bottom: 40px; }
.reviews-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.reviews-score__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.reviews-score__stars { display: flex; gap: 2px; }
.reviews-score__count { font-size: .8125rem; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__meta { flex: 1; min-width: 0; }
.review-card__meta strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__meta span { font-size: .75rem; color: var(--text-muted); }
.review-card__glogo { flex-shrink: 0; }

.review-card__stars { display: flex; gap: 2px; }
.star { color: var(--border); }
.star--on { color: #F59E0B; }

.review-card__text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); }
