/* ═══════════════════════════════════════
   ITO NETTOYAGE — Design System CSS
   Mirrors itonettoyage.ca exactly
═══════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #55c3fe;
  --blue-dark:    #3daee8;
  --blue-mid:     #00649B;
  --blue-pale:    #e8f7ff;
  --blue-soft:    #c2e9ff;
  --white:        #FFFFFF;
  --off:          #F8FAFF;
  --text:         #0D1B4B;
  --text-mid:     #4B5675;
  --text-light:   #8B94B0;
  --border:       #E4EAFF;
  --shadow-blue:  rgba(0,100,155,0.10);
  --shadow-heavy: rgba(13,27,75,0.18);
  --bnb:          #FF5A5F;
  --bnb-dk:       #c9373c;
  --bnb-pale:     #fff2f2;
  --bnb-soft:     #ffc9cb;
  --bnb-shadow:   rgba(255,90,95,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ─── HEADER ─────────────────────────────── */
#ito-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#ito-header.scrolled { box-shadow: 0 2px 24px var(--shadow-blue); }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; gap: 32px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo a { display: flex; align-items: center; }
.header-logo a:hover img { transform: scale(1.05); }
.header-logo img {
  height: 64px;       /* logo más grande y visible */
  width: auto;
  max-width: 180px;
  transition: transform .25s;
  display: block;
  object-fit: contain;
}

.header-nav { flex: 1; }
.header-nav ul { display: flex; gap: 32px; list-style: none; }
.header-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue-mid); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--blue-mid); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100%;
  background: var(--white); z-index: 999;
  padding: 24px; display: flex; flex-direction: column; gap: 24px;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-mid); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block; padding: 12px 8px; font-size: 1.05rem; font-weight: 500;
  color: var(--text); text-decoration: none; border-radius: 10px;
  transition: background 0.2s;
}
.mobile-nav ul li a:hover { background: var(--blue-pale); color: var(--blue-mid); }
.mobile-nav-cta {
  display: block; text-align: center; padding: 14px;
  background: var(--blue-mid); color: white; text-decoration: none;
  border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  margin-top: auto;
}

/* ─── ITO PILL CTA BUTTON ────────────────── */
#ito-btn-wrap { display: flex; flex-direction: column; gap: 6px; }

#ito-btn {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}

#ito-btn .logo-orb {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  overflow: visible; position: relative;
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
}
#ito-btn .logo-orb img {
  width: 46px; height: 46px; object-fit: contain;
  box-shadow: 0 4px 16px rgba(0,99,166,0.3), 0 0 0 2px #fff, 0 0 0 4px rgba(0,99,166,0.15);
  border-radius: 50%;
  transition: box-shadow 0.35s;
  display: block;
}

#ito-btn .pill {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0063A6 0%, #00649B 50%, #0077c2 100%);
  border-radius: 100px; padding: 10px 14px 10px 16px;
  box-shadow: 0 4px 20px rgba(0,99,166,0.30), 0 2px 6px rgba(0,0,0,0.08);
  position: relative; overflow: hidden;
  transition: box-shadow 0.35s, transform 0.45s cubic-bezier(.34,1.56,.64,1);
}

#ito-btn .pill-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
#ito-btn:hover .pill-sweep { transform: translateX(100%); }

#ito-btn .pill-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
#ito-btn .pill-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #fff; white-space: nowrap; line-height: 1; }
#ito-btn .pill-sub { font-size: 0.72rem; font-weight: 400; color: rgba(190,232,255,0.75); white-space: nowrap; line-height: 1; }

#ito-btn .pill-arrow {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(190,232,255,0.18); flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s;
}
#ito-btn .pill-arrow svg { width: 13px; height: 13px; color: #BEE8FF; }

#ito-btn:hover .logo-orb { transform: scale(1.08) rotate(-8deg); }
#ito-btn:hover .logo-orb img { box-shadow: 0 8px 28px rgba(0,99,166,0.45), 0 0 0 3px #fff, 0 0 0 5px rgba(0,99,166,0.3); }
#ito-btn:hover .pill { box-shadow: 0 10px 36px rgba(0,99,166,0.45), 0 3px 8px rgba(0,0,0,0.1); }
#ito-btn:hover .pill-arrow { transform: translateX(3px); background: rgba(190,232,255,0.28); }
#ito-btn:hover .pill-arrow svg { transform: translateX(2px); }
#ito-btn:active .logo-orb { transform: scale(0.94) rotate(-4deg); }
#ito-btn:active .pill { transform: scaleX(0.98); }

#ito-btn-wrap .btn-note {
  font-size: 0.76rem; color: #7a9bb5;
  display: flex; align-items: center; gap: 6px; padding-left: 6px;
}
#ito-btn-wrap .btn-note svg { width: 12px; height: 12px; color: #7ec8e3; flex-shrink: 0; }
#ito-btn-wrap .btn-note a { color: #0063A6; font-weight: 600; text-decoration: none; transition: color 0.2s; }
#ito-btn-wrap .btn-note a:hover { color: #004880; }

/* ─── HERO ───────────────────────────────── */
.ito-hero {
  background: linear-gradient(135deg, #edf6ff 0%, #dff0ff 40%, #f8fcff 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale); border: 1px solid var(--blue-soft);
  padding: 6px 14px; border-radius: 100px; width: fit-content;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease-in-out infinite; }

.hero-h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.15; letter-spacing: -1.5px; }
.hero-desc { font-size: 1.02rem; line-height: 1.7; color: var(--text-mid); max-width: 520px; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
  background: var(--white); border: 1.5px solid var(--border);
  padding: 6px 12px; border-radius: 100px;
}
.hero-pill svg { width: 14px; height: 14px; color: var(--blue-mid); }

.hero-cta-wrap { margin-top: 8px; }

/* Right visuals */
.hero-visuals {
  position: relative; display: flex; gap: 16px;
  min-height: 480px;
}
.hero-col { flex: 1; position: relative; }
.hero-shape {
  width: 100%; height: 100%; border-radius: 28px; object-fit: cover;
  display: block; background: #e0ecf7; /* fallback if image fails */
  min-height: 320px;
}
/* If image fails to load, show a gradient placeholder */
.hero-shape[src=""], .hero-shape:not([src]) {
  background: linear-gradient(180deg, #bdd8f0 0%, #7fb8e8 100%);
}
.hero-deco-float {
  position: absolute; bottom: 24px; right: -20px;
  width: 80px; animation: float 3s ease-in-out infinite;
}
.hero-counter {
  position: absolute; bottom: 40px; left: -20px; z-index: 10;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 14px 20px;
  box-shadow: 0 8px 32px var(--shadow-blue);
}
.hero-counter-num { font-size: 1.8rem; font-weight: 900; color: var(--blue-mid); line-height: 1; }
.hero-counter-label { font-size: 0.76rem; color: var(--text-light); font-weight: 500; }

/* ─── SECTIONS BASE ──────────────────────── */
.ito-section {
  background: var(--white); padding: 100px 24px 120px;
  position: relative; overflow: hidden;
}
.ito-section--airbnb { background: var(--off); }

/* Deco circles */
.ito-deco-circle {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(85,195,254,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.ito-deco-circle-2 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,100,155,0.06) 0%, transparent 70%);
  bottom: 40px; left: -80px; pointer-events: none;
}
.ito-deco-circle--bnb { background: radial-gradient(circle, rgba(255,90,95,0.08) 0%, transparent 70%); }
.ito-deco-circle-2--bnb { background: radial-gradient(circle, rgba(255,90,95,0.05) 0%, transparent 70%); }

/* Header block */
.ito-header { max-width: 680px; margin: 0 auto 64px; text-align: center; position: relative; z-index: 2; }
.ito-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale); border: 1px solid var(--blue-soft);
  padding: 6px 16px; border-radius: 100px;
}
.ito-eyebrow--bnb { color: var(--bnb-dk); background: var(--bnb-pale); border-color: var(--bnb-soft); }
.ito-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease-in-out infinite; }
.ito-eyebrow-dot--bnb { background: var(--bnb); }

.ito-main-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.ito-subtitle { font-size: 1.02rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

.underline-word { position: relative; color: var(--blue-mid); }
.underline-word::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 2px;
}
.underline-word--bnb { color: var(--bnb); }
.underline-word--bnb::after { background: linear-gradient(90deg, var(--bnb), var(--bnb-dk)); }

/* ─── CARD LAYOUT ────────────────────────── */
.ito-card {
  max-width: 1180px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.ito-card--reverse { direction: rtl; }
.ito-card--reverse > * { direction: ltr; }

/* Images stack */
.ito-images { position: relative; height: 520px; }
.ito-img-deco {
  position: absolute; inset: 0; border-radius: 32px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft));
  transform: rotate(-3deg) scale(0.97);
}
.ito-img-deco--bnb { background: linear-gradient(135deg, var(--bnb-pale), var(--bnb-soft)); }
.ito-img-main {
  position: absolute; bottom: 0; right: 0; width: 72%; height: 75%;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-heavy);
}
.ito-img-main img { width: 100%; height: 100%; object-fit: cover; }
.ito-img-thumb {
  position: absolute; top: 0; left: 0; width: 48%; height: 60%;
  border-radius: 20px; overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 12px 40px var(--shadow-heavy);
}
.ito-img-thumb img { width: 100%; height: 100%; object-fit: cover; }

.ito-live-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  box-shadow: 0 4px 16px var(--shadow-blue); white-space: nowrap;
}
.ito-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse 1.8s ease-in-out infinite;
}

.ito-float-card {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 14px 20px; text-align: center;
  box-shadow: 0 8px 32px var(--shadow-blue);
}
.fc-num { font-size: 1.9rem; font-weight: 900; color: var(--blue-mid); line-height: 1; }
.fc-num .bnb { color: var(--bnb); }
.fc-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

.ito-rating-badge {
  position: absolute; top: 16px; right: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--white); border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 6px 20px rgba(255,90,95,0.15);
}
.rb-stars { color: var(--bnb); font-size: 0.9rem; }
.rb-score { font-size: 1.3rem; font-weight: 900; color: var(--bnb); line-height: 1; }
.rb-label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; }

/* Text content */
.ito-content { display: flex; flex-direction: column; gap: 20px; }
.ito-service-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  color: var(--blue-mid); background: var(--blue-pale); border: 1px solid var(--blue-soft);
  padding: 6px 14px; border-radius: 100px; width: fit-content;
}
.ito-service-tag svg { width: 14px; height: 14px; }
.ito-service-tag--bnb { color: var(--bnb-dk); background: var(--bnb-pale); border-color: var(--bnb-soft); }

.ito-headline { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--text); line-height: 1.15; letter-spacing: -1px; }
.hl { color: var(--blue-mid); }
.hl--bnb { color: var(--bnb); }

.ito-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-mid)); border-radius: 2px; }
.ito-line--bnb { background: linear-gradient(90deg, var(--bnb), var(--bnb-dk)); }

.ito-body { font-size: 0.98rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

.ito-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ito-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
}
.ito-feat svg { width: 15px; height: 15px; color: var(--blue-mid); flex-shrink: 0; }
.ito-feat--bnb svg { color: var(--bnb); }

.ito-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0063A6, #00649B);
  color: white; text-decoration: none;
  padding: 14px 24px; border-radius: 14px;
  font-size: 0.92rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,99,166,0.30);
  transition: all 0.25s; width: fit-content;
}
.ito-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,99,166,0.40); }
.ito-cta svg { width: 17px; height: 17px; }
.ito-cta--bnb { background: linear-gradient(135deg, var(--bnb), var(--bnb-dk)); box-shadow: 0 6px 24px var(--bnb-shadow); }
.ito-cta--bnb:hover { box-shadow: 0 10px 32px rgba(255,90,95,0.4); }

/* ─── CHECKLIST STRIP ────────────────────── */
.ito-checklist-strip {
  max-width: 1180px; margin: 0 auto 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative; z-index: 2;
}
.ito-check-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px; transition: all 0.25s;
}
.ito-check-item:hover { border-color: var(--bnb); transform: translateY(-3px); box-shadow: 0 10px 32px var(--bnb-shadow); }
.ito-check-num { font-size: 1.7rem; font-weight: 900; color: var(--bnb); line-height: 1; letter-spacing: -1px; }
.ito-check-txt { font-size: 0.83rem; font-weight: 500; color: var(--text-mid); line-height: 1.5; }

/* ─── SERVICES GRID ──────────────────────── */
.ito-services-grid { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.ito-services-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; text-align: center; }
.ito-services-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ito-service-card {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 22px; padding: 32px 28px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1); cursor: default;
}
.ito-service-card:hover { background: var(--blue-pale); border-color: var(--blue-soft); transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow-blue); }
.ito-sc-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--ic-soft, rgba(85,195,254,.12)), var(--ic-soft2, rgba(85,195,254,.04)));
  border: 1.5px solid var(--ic-border, rgba(85,195,254,.25));
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.ito-sc-icon::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top right, var(--ic-glow, rgba(85,195,254,.25)) 0%, transparent 65%);
  opacity:.6; transition: opacity .35s;
}
.ito-sc-icon svg {
  width: 36px; height: 36px;
  color: var(--ic-color, #2A8CC9);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; z-index: 1;
}
.ito-service-card:hover .ito-sc-icon {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--ic-color, var(--blue-mid));
  box-shadow: 0 12px 32px var(--ic-shadow, rgba(85,195,254,.25));
}
.ito-service-card:hover .ito-sc-icon::before { opacity: 1; }
.ito-service-card:hover .ito-sc-icon svg { transform: scale(1.06); }

/* Service icon variants */
.ito-sc-icon--blue   { --ic-soft: rgba(85,195,254,.14);  --ic-soft2: rgba(85,195,254,.04); --ic-border: rgba(85,195,254,.3);  --ic-glow: rgba(85,195,254,.3);  --ic-color: #2A8CC9; --ic-shadow: rgba(42,140,201,.22); }
.ito-sc-icon--teal   { --ic-soft: rgba(20,184,166,.14);  --ic-soft2: rgba(20,184,166,.04); --ic-border: rgba(20,184,166,.3);  --ic-glow: rgba(20,184,166,.3);  --ic-color: #0D9488; --ic-shadow: rgba(13,148,136,.22); }
.ito-sc-icon--orange { --ic-soft: rgba(249,115,22,.14);  --ic-soft2: rgba(249,115,22,.04); --ic-border: rgba(249,115,22,.3);  --ic-glow: rgba(249,115,22,.3);  --ic-color: #C2410C; --ic-shadow: rgba(194,65,12,.22); }
.ito-sc-icon--purple { --ic-soft: rgba(168,85,247,.14);  --ic-soft2: rgba(168,85,247,.04); --ic-border: rgba(168,85,247,.3);  --ic-glow: rgba(168,85,247,.3);  --ic-color: #7C3AED; --ic-shadow: rgba(124,58,237,.22); }
.ito-sc-icon--red    { --ic-soft: rgba(239,68,68,.14);   --ic-soft2: rgba(239,68,68,.04);  --ic-border: rgba(239,68,68,.3);   --ic-glow: rgba(239,68,68,.3);   --ic-color: #DC2626; --ic-shadow: rgba(220,38,38,.22); }
.ito-sc-icon--green  { --ic-soft: rgba(34,197,94,.14);   --ic-soft2: rgba(34,197,94,.04);  --ic-border: rgba(34,197,94,.3);   --ic-glow: rgba(34,197,94,.3);   --ic-color: #15803D; --ic-shadow: rgba(21,128,61,.22); }
.ito-sc-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.3px; }
.ito-sc-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }

/* ─── PROCESS ────────────────────────────── */
.ito-process-section { background: var(--off); padding: 100px 24px; }
.process-inner { max-width: 1180px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start; margin-top: 64px;
}
.process-step { display: flex; flex-direction: column; gap: 16px; padding: 0 24px; }
.ps-num {
  font-size: 2.4rem; font-weight: 900; color: var(--blue-mid);
  opacity: 0.2; line-height: 1; letter-spacing: -2px;
}
.ps-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ps-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }
.process-connector {
  width: 80px; height: 2px; background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  margin-top: 20px; border-radius: 2px;
}

/* ─── TESTIMONIALS ───────────────────────── */
.ito-testimonials-section { background: var(--white); padding: 100px 24px; }
.testimonials-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.testimonial-side { position: relative; }
.ts-img-wrap { position: relative; }
.ts-img-wrap > img { width: 100%; border-radius: 24px; object-fit: cover; height: 400px; }
.ts-progress-card {
  position: absolute; bottom: -32px; left: 24px; right: 24px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 24px; box-shadow: 0 12px 40px var(--shadow-blue);
}
.ts-progress-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.progress-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-bottom: 14px; align-items: center; }
.progress-label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); grid-column: 1 / -1; }
.progress-track { background: var(--border); border-radius: 100px; height: 8px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-mid)); border-radius: 100px; width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1); }
.progress-pct { font-size: 0.8rem; font-weight: 700; color: var(--text); }

/* ─── GOOGLE REVIEWS ─────────────────────── */
.reviews-section {
  background: #f8faff; padding: 80px 24px;
  font-family: 'Outfit', sans-serif;
}
.container { max-width: 1140px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #00649B;
  background: #e8f7ff; border: 1px solid #c2e9ff;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--text); letter-spacing: -1px; margin-bottom: 12px; }
.section-title span { color: #00649B; }
.section-sub { font-size: 1rem; color: var(--text-mid); margin-bottom: 32px; font-weight: 300; }

.google-badge {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 14px 20px; margin-bottom: 32px;
  width: fit-content;
}
.google-logo {
  width: 36px; height: 36px; background: #4285F4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1.1rem; flex-shrink: 0;
}
.badge-score { font-size: 1.4rem; font-weight: 900; color: var(--text); line-height: 1; }
.badge-stars { font-size: 0.9rem; }
.badge-sep { width: 1px; height: 32px; background: var(--border); }
.badge-right { font-size: 0.82rem; color: var(--text-mid); }
.badge-right strong { display: block; font-size: 0.92rem; color: var(--text); }

.slider-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.slider-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--text);
}
.slider-arrow:hover { background: var(--blue-pale); border-color: var(--blue-soft); }
.slider-viewport { flex: 1; overflow: hidden; border-radius: 24px; }
.slider-track {
  display: flex; transition: transform 0.46s cubic-bezier(.4,0,.2,1);
}
.reviews-layout {
  min-width: 100%; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--shadow-blue); }
.review-card.featured { border-color: var(--blue-soft); background: var(--blue-pale); }
.card-header { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-mid);
  color: white; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.author-meta { font-size: 0.72rem; color: var(--text-light); }
.google-g-badge {
  margin-left: auto; width: 20px; height: 20px; border-radius: 50%;
  background: #4285F4; flex-shrink: 0;
}
.stars { font-size: 0.9rem; letter-spacing: 1px; }
.review-date { font-size: 0.75rem; color: var(--text-light); }
.review-text { font-size: 0.87rem; line-height: 1.65; color: var(--text-mid); flex: 1; }
.verified-badge { font-size: 0.72rem; color: #16a34a; font-weight: 600; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; transition: all 0.2s; padding: 0;
}
.slider-dot.active { background: var(--blue-mid); width: 24px; border-radius: 4px; }

.cta-row { display: flex; justify-content: center; }
.btn-leave-review {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 12px 24px;
  font-size: 0.9rem; font-weight: 700; color: var(--text); cursor: pointer;
  transition: all 0.25s;
}
.btn-leave-review:hover { background: var(--blue-pale); border-color: var(--blue-soft); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-blue); }
.btn-icon { color: #FBBC04; font-size: 1.1rem; }

/* Review Modal */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(13,27,75,0.5); backdrop-filter: blur(4px);
  z-index: 2000; align-items: center; justify-content: center; padding: 16px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 24px;
  width: 100%; max-width: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  overflow: hidden;
}
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 24px 16px;
}
.modal-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.modal-header p { font-size: 0.82rem; color: var(--text-light); }
.modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-light); padding: 4px; }

.google-strip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px; background: #f8f9fa; font-size: 0.78rem; color: var(--text-mid);
}
.google-strip-logo { display: flex; font-size: 1rem; font-weight: 900; font-family: 'Product Sans', sans-serif; }
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC04; } .g-green { color: #34A853; }

.modal-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.form-label span { color: var(--bnb); }
.star-rating-group { display: flex; align-items: center; gap: 12px; }
.star-rating { display: flex; gap: 4px; }
.star-rating label {
  font-size: 1.8rem; color: #d1d5db; cursor: pointer; line-height: 1;
  transition: color 0.15s;
}
.star-rating label.active, .star-rating label:hover { color: #FBBC04; }
.rating-text { font-size: 0.8rem; color: var(--text-light); }
.form-input, .form-textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue-mid); }
.form-textarea { height: 100px; resize: none; }
.modal-footer {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 24px; border-top: 1px solid var(--border);
}
.btn-cancel {
  padding: 10px 20px; background: none; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; font-weight: 600; color: var(--text-mid); cursor: pointer;
}
.btn-submit {
  padding: 10px 24px; background: var(--blue-mid); border: none;
  border-radius: 10px; font-size: 0.9rem; font-weight: 700; color: white; cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #004880; }
.modal-confirm { padding: 40px 24px; text-align: center; }
.confirm-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #dcfce7;
  color: #16a34a; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.confirm-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.confirm-sub { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── NEWSLETTER ─────────────────────────── */
#ito-newsletter {
  font-family: 'Outfit', sans-serif;
  background: #0063A6;
  position: relative; overflow: hidden;
  padding: 72px 24px; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,99,166,0.25), 0 4px 16px rgba(0,0,0,0.08);
  margin: 0 24px 0;
}
#ito-newsletter::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(190,232,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 88% 20%, rgba(190,232,255,0.06) 0%, transparent 40%);
  pointer-events: none; z-index: 0;
}
#ito-newsletter .nl-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
#ito-newsletter .mascot-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 110px; height: 110px; border-radius: 50%;
  background: #f4f6f8; border: 3px solid rgba(190,232,255,0.4);
  margin-bottom: 24px; overflow: hidden; cursor: default;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 6px rgba(190,232,255,0.1);
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
}
#ito-newsletter .mascot-wrap:hover { transform: scale(1.08) rotate(-4deg); }
#ito-newsletter .mascot-wrap img { width: 100%; height: 100%; object-fit: cover; }
#ito-newsletter .nl-badge {
  display: inline-block; background: rgba(190,232,255,0.15);
  border: 1px solid rgba(190,232,255,0.3); color: #BEE8FF;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
#ito-newsletter .nl-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; color: #fff;
  line-height: 1.25; margin-bottom: 14px;
}
#ito-newsletter .nl-title strong { font-weight: 900; }
#ito-newsletter .nl-sub { font-size: 0.95rem; color: rgba(190,232,255,0.8); margin-bottom: 28px; line-height: 1.6; }
#ito-newsletter .nl-form {
  display: flex; max-width: 480px; margin: 0 auto 12px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
#ito-newsletter .nl-input {
  flex: 1; padding: 16px 20px; border: none; outline: none;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text);
}
#ito-newsletter .nl-btn {
  display: flex; align-items: center; gap: 8px;
  background: #fff; color: #0063A6; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 700; padding: 16px 20px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
#ito-newsletter .nl-btn:hover { background: var(--blue-pale); }
#ito-newsletter .nl-btn svg { width: 16px; height: 16px; }
#ito-newsletter .nl-privacy { font-size: 0.72rem; color: rgba(190,232,255,0.6); }

/* ─── FOOTER ─────────────────────────────── */
.ito-footer { background: var(--white); }

.ft-cta {
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.ft-cta-in {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.ft-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale); border: 1px solid var(--blue-soft);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; width: fit-content;
}
.cta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease-in-out infinite; }
.ft-cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--text); line-height: 1.2; }
.ft-cta-title em { font-style: italic; color: var(--blue-mid); }
.ft-cta-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ft-btn-sol {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0063A6, #00649B); color: white;
  text-decoration: none; padding: 13px 24px; border-radius: 12px;
  font-size: 0.92rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,99,166,0.30); transition: all 0.25s;
}
.ft-btn-sol:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,99,166,0.40); }
.ft-btn-sol svg { width: 16px; height: 16px; }
.ft-btn-gh {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--text); text-decoration: none;
  padding: 12px 20px; border-radius: 12px; border: 1.5px solid var(--border);
  font-size: 0.9rem; font-weight: 600; transition: all 0.25s;
}
.ft-btn-gh:hover { background: var(--blue-pale); border-color: var(--blue-soft); }
.ft-btn-gh svg { width: 16px; height: 16px; color: var(--blue-mid); }

.ft-body { padding: 56px 24px; border-bottom: 1px solid var(--border); }
.ft-body-in { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.ft-logo img { width: 140px; margin-bottom: 16px; }
.ft-brand-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; font-weight: 300; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--off); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); text-decoration: none; transition: all 0.2s;
}
.ft-social a:hover { background: var(--blue-pale); border-color: var(--blue-soft); color: var(--blue-mid); }
.ft-social svg { width: 16px; height: 16px; }
.ft-col-title { font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 0.9rem; color: var(--text-mid); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.ft-links a:hover { color: var(--blue-mid); }
.ft-ci {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid); padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ft-ci:last-of-type { border-bottom: none; }
.ft-ci svg { width: 16px; height: 16px; color: var(--blue-mid); flex-shrink: 0; }
.ft-ci a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.ft-ci a:hover { color: var(--blue-mid); }
.ft-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 0.78rem; font-weight: 600; color: #16a34a;
  background: #dcfce7; border: 1px solid #bbf7d0;
  padding: 5px 12px; border-radius: 100px;
}
.ft-badge .live {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
.ft-bar { padding: 18px 24px; }
.ft-bar-in {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.ft-copy { font-size: 0.82rem; color: var(--text-light); }
.ft-copy a { color: var(--blue-mid); text-decoration: none; }
.ft-qc { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
.ft-legal { font-size: 0.78rem; }
.ft-legal a { color: var(--text-light); text-decoration: none; }
.ft-legal a:hover { color: var(--blue-mid); }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── RESPONSIVE ─────────────────────────── */
/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1060px)
═══════════════════════════════════════════ */
@media (max-width: 1060px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visuals { display: flex; min-height: 340px; gap: 12px; }
  .hero-shape { height: 340px; object-fit: cover; }
  .hero-content { align-items: center; }
  .hero-pills { justify-content: center; }
  .hero-eyebrow { align-self: center; }
  .hero-desc { text-align: center; }
  .hero-cta-wrap { align-items: center; }
  .hero-counter { left: 0; bottom: 12px; }
  /* Sections */
  .ft-body-in { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ito-card { grid-template-columns: 1fr; gap: 48px; }
  .ito-card--reverse { direction: ltr; }
  .ito-images { height: 380px; }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-connector { width: 2px; height: 32px; margin: 0 auto; background: linear-gradient(180deg, var(--blue-soft), var(--blue)); }
  .ito-checklist-strip { grid-template-columns: 1fr 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  /* About page */
  .histoire-inner { grid-template-columns: 1fr; }
  .histoire-visual { display: none; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE LARGE (≤768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  #ito-btn-wrap { display: none; }
  /* Keep the hero version of the CTA button visible */
  .hero-cta-wrap { display: flex !important; flex-direction: column; gap: 6px; align-items: center; }
  .burger { display: flex; }
  .header-inner { height: 64px; padding: 0 16px; }
  .header-logo img { height: 54px; width: auto; max-width: 150px; }

  /* Hero */
  .ito-hero { padding: 90px 16px 56px; }
  .hero-inner { gap: 36px; }
  .hero-h1 { font-size: clamp(1.7rem, 7vw, 2.6rem); letter-spacing: -0.5px; }
  .hero-visuals { min-height: 280px; }
  .hero-shape { height: 280px; }
  .hero-col-2 { display: none; }
  .hero-counter { bottom: 8px; left: 0; padding: 10px 14px; }
  .hero-counter-num { font-size: 1.4rem; }

  /* Sections */
  .ito-section { padding: 56px 16px 72px; }
  .ito-services-row { grid-template-columns: 1fr 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .ft-body-in { grid-template-columns: 1fr; gap: 32px; }
  .ft-cta-in { flex-direction: column; align-items: flex-start; }
  #ito-newsletter { margin: 0 8px; border-radius: 16px; }
  .ito-main-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .ito-feats { grid-template-columns: 1fr; }

  /* About */
  .valeurs-grid { grid-template-columns: 1fr; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Pages hero (services, about) */
  .svc-hero, .ito-page-hero { padding: 100px 16px 72px; }
  .page-hero-ctas, .svc-hero-btns { flex-direction: column; align-items: center; }

  /* Services checklist table */
  .cl-tabs { gap: 4px; }
  .cl-tab { font-size: 11px; padding: 8px 10px; }
  .col-head-sub { display: none; }
  .col-head-name { font-size: 11px; }
  .ic-yes, .ic-no, .ic-dem { font-size: 19px; }
  .cl-tbl td:first-child { font-size: 12px; padding-left: 12px; }
  .cl-tbl td, .cl-tbl th { padding: 9px 7px; }

  /* Services how-it-works */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step-card { padding: 24px 18px; }
  .step-num { font-size: 38px; }

  /* Garanties */
  .gar-grid { grid-template-columns: 1fr 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 15px 18px; }
  .faq-a-inner { padding: 4px 18px 16px; font-size: 14px; }

  /* CTA */
  .svc-cta-btns, .cta-fin-btns, .cta-buttons { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE SMALL (≤480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .ito-hero { padding: 80px 14px 48px; }
  .hero-visuals { display: none; }
  .hero-h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .hero-pills { gap: 6px; }
  .hero-pill { font-size: 0.76rem; padding: 5px 10px; }

  /* Header logo never clips */
  .header-logo img { height: 48px; width: auto; max-width: 130px; }

  /* Services */
  .ito-services-row { grid-template-columns: 1fr; }
  .ito-checklist-strip { grid-template-columns: 1fr; }
  .ito-feats { grid-template-columns: 1fr; }

  /* Sections */
  .ito-section { padding: 48px 14px 60px; }
  .ito-main-title { font-size: clamp(1.3rem, 7vw, 1.8rem); }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* About stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 40px; }

  /* About values & why */
  .valeurs-grid, .pourquoi-grid { grid-template-columns: 1fr; }

  /* Garanties */
  .gar-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr; }

  /* Service cards on about */
  .services-cards-grid { grid-template-columns: 1fr; }

  /* Footer */
  .ft-body-in { grid-template-columns: 1fr; }

  /* Checklist table */
  .cl-tbl { min-width: 520px; }
  .cl-tbl th:first-child { min-width: 140px; }
  .cl-tbl td:first-child { min-width: 140px; }

  /* Pills on services hero */
  .svc-pill { font-size: 11px; padding: 7px 12px; }
  .pill-row { gap: 6px; }
}

/* ═══════════════════════════════════════════
   PAGES INTERNES — À PROPOS & SERVICES
═══════════════════════════════════════════ */

/* Page Hero */
.ito-page-hero {
  background: linear-gradient(135deg, #001f3f 0%, #0164a7 60%, #0d2d4a 100%);
  padding: 140px 24px 100px;
  text-align: center;
  color: #fff;
}
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #55c3fe; margin-bottom: 24px;
}
.ito-page-hero h1 { font-size: clamp(36px,6vw,64px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.page-hero-desc { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 36px; line-height: 1.6; }
.page-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.ito-btn-primary {
  background: #55c3fe; color: #001f3f; font-weight: 700;
  padding: 14px 32px; border-radius: 50px; text-decoration: none;
  font-size: 15px; transition: all 0.25s;
}
.ito-btn-primary:hover { background: #fff; color: #0164a7; }
.ito-btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
  font-weight: 600; padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-size: 15px; transition: all 0.25s;
}
.ito-btn-outline:hover { border-color: #55c3fe; color: #55c3fe; }
.ito-btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600; padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-size: 15px; transition: all 0.25s;
}
.ito-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Stats Section */
.ito-stats-section { background: #f0f8ff; padding: 60px 24px; }
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-number { font-size: 56px; font-weight: 800; color: #0164a7; line-height: 1; }
.stat-number span { font-size: 36px; }
.stat-label { font-size: 14px; color: #555; margin-top: 8px; font-weight: 500; }

/* Section alt */
.ito-section-alt { background: #f8fbff; }

/* Valeurs Grid */
.valeurs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 48px;
}
.valeur-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border: 1px solid #e8f0fe;
  transition: transform 0.25s, box-shadow 0.25s;
}
.valeur-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(1,100,167,0.12); }
.valeur-icon { font-size: 36px; margin-bottom: 16px; }
.valeur-card h3 { font-size: 18px; font-weight: 700; color: #001f3f; margin-bottom: 12px; }
.valeur-card p { font-size: 15px; color: #555; line-height: 1.6; margin: 0; }

/* Notre Histoire */
.histoire-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.histoire-text .section-label { margin-bottom: 16px; }
.histoire-quote {
  font-size: 18px; font-style: italic; color: #0164a7;
  border-left: 4px solid #55c3fe; padding-left: 20px;
  margin: 28px 0; line-height: 1.6;
}
.histoire-text p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.histoire-visual img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  object-fit: cover; aspect-ratio: 4/3;
}

/* Pourquoi choisir */
.pourquoi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.pourquoi-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; padding: 24px; border-radius: 12px;
  border: 1px solid #e8f0fe;
}
.pourquoi-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: #0164a7; color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pourquoi-item h4 { font-size: 16px; font-weight: 700; color: #001f3f; margin-bottom: 6px; }
.pourquoi-item p { font-size: 14px; color: #666; line-height: 1.5; margin: 0; }
.section-cta-wrap { text-align: center; margin-top: 48px; }

/* CTA Section */
.ito-cta-section {
  background: linear-gradient(135deg, #0164a7, #001f3f);
  padding: 80px 24px; text-align: center; color: #fff;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: 42px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services Cards */
.services-cat-label {
  text-align: center; font-size: 14px; color: #666;
  background: #f0f8ff; padding: 12px 24px; border-radius: 50px;
  display: inline-block; margin: 0 auto 48px; display: block;
}
.services-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border: 1px solid #e8f0fe;
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(1,100,167,0.14); }
.service-card-featured { border-color: #55c3fe; border-width: 2px; }
.service-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #0164a7; color: #fff; font-size: 13px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.05em;
}
.service-card-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: #001f3f; margin-bottom: 10px; }
.service-card > p { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.5; }
.service-tasks { list-style: none; padding: 0; margin: 0 0 24px; }
.service-tasks li { font-size: 13.5px; color: #444; padding: 6px 0; border-bottom: 1px solid #f0f0f0; line-height: 1.4; }
.service-tasks li:last-child { border-bottom: none; }

/* Garanties */
.garanties-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.garantie-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 20px 24px; border-radius: 12px;
  font-size: 15px; font-weight: 500; color: #001f3f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.garantie-icon { font-size: 24px; }

/* Responsive pages internes */
@media (max-width: 1060px) {
  .valeurs-grid { grid-template-columns: 1fr 1fr; }
  .histoire-inner { grid-template-columns: 1fr; }
  .histoire-visual { display: none; }
  .services-cards-grid { grid-template-columns: 1fr 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ito-page-hero { padding: 100px 16px 72px; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE AUDIT v7 — CORRECTIONS COMPLÈTES
   Fixes: header overflow, contact grid, mobile nav,
          soumission, hero, footer, sections internes
═══════════════════════════════════════════════════════ */

/* ─── GLOBAL OVERFLOW GUARD ─────────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ─── HEADER — desktop propre, burger coherent ────── */
.header-inner {
  display: flex; align-items: center;
  gap: 24px; /* réduit pour éviter overflow */
}

/* S'assure que le burger est invisible sur desktop */
@media (min-width: 769px) {
  .burger { display: none !important; }
  .mobile-nav, .mobile-nav-overlay { display: none !important; }
}

/* ─── MOBILE NAV — cohérence & lisibilité ────────── */
.mobile-nav {
  padding: 20px 20px 32px;
  overflow-y: auto;
}
.mobile-nav-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mobile-nav ul { margin-top: 8px; }
.mobile-nav ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 12px;
  font-size: 1rem; font-weight: 500;
  border-radius: 10px;
  color: var(--text);
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active-mobile {
  background: var(--blue-pale);
  color: var(--blue-mid);
}
.mobile-nav-cta {
  margin-top: 16px;
  display: block; text-align: center;
  padding: 15px; background: var(--blue-mid);
  color: white; font-weight: 700; font-size: 0.95rem;
  border-radius: 14px; text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: #004f85; }
.mobile-nav-phone-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 4px;
}
.mobile-nav-phone-link svg { color: var(--blue-mid); }

/* ─── CONTACT PAGE — responsive grid fix ──────────── */
.contact-main-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-name-grid { grid-template-columns: 1fr !important; }
}
/* Generic inline-style grid fix for contact page */
@media (max-width: 900px) {
  #contactForm { font-size: 0.95rem; }
}

/* ─── HERO — desktop proportions ──────────────────── */
@media (min-width: 1061px) {
  .hero-inner { gap: 48px; }
  .hero-visuals { min-height: 460px; }
}

/* ─── ITO-BTN CTA — never overflow header ──────────── */
#ito-btn-wrap { flex-shrink: 0; }
#ito-btn { min-width: 0; }
#ito-btn .pill { white-space: nowrap; }
@media (max-width: 1180px) {
  #ito-btn .pill-sub { display: none; }
  #ito-btn .pill { padding: 10px 12px 10px 14px; }
  .header-inner { gap: 16px; }
  .header-nav ul { gap: 20px; }
  .header-nav a { font-size: 0.86rem; }
}
@media (max-width: 900px) and (min-width: 769px) {
  .header-nav ul { gap: 12px; }
  .header-nav a { font-size: 0.82rem; }
  #ito-btn .logo-orb { width: 38px; height: 38px; }
  #ito-btn .logo-orb img { width: 38px; height: 38px; }
  #ito-btn .pill-label { font-size: 0.76rem; letter-spacing: 0.9px; }
  #ito-btn-wrap .btn-note { display: none; }
}

/* ─── SOUMISSION — responsive complet ─────────────── */
@media (max-width: 899px) {
  .page-wrapper {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }
  .right-col {
    position: static !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-card { padding: 28px 22px !important; }
  .soum-hero { padding: 48px 16px 36px; }
}
@media (max-width: 599px) {
  .right-col {
    grid-template-columns: 1fr !important;
  }
  .form-card { padding: 20px 14px !important; }
  .type-cards { grid-template-columns: 1fr 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; gap: 12px !important; }
  .grid-3 { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .extras-grid { grid-template-columns: 1fr 1fr !important; }
  .freq-buttons { flex-direction: column; }
  .freq-btn { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .type-cards { grid-template-columns: 1fr !important; }
  .extras-grid { grid-template-columns: 1fr !important; }
  .parking-row { flex-direction: column; }
}

/* ─── SERVICES PAGE — tablet & mobile ──────────────── */
@media (max-width: 768px) {
  .svc-hero { padding: 90px 16px 56px; }
  .gar-grid { grid-template-columns: 1fr 1fr; }
  .garanties-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gar-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ─── HOME SECTIONS — padding cohérent ─────────────── */
@media (max-width: 768px) {
  .ito-section { padding: 56px 16px 64px; }
  .ito-header { margin-bottom: 40px; }
  .ito-main-title { letter-spacing: -0.5px; }
  .ito-process-section { padding: 56px 16px; }
  .ito-testimonials-section { padding: 56px 16px; }
  .reviews-section { padding: 56px 16px; }
  .ito-stats-section { padding: 48px 16px; }
}
@media (max-width: 480px) {
  .ito-section { padding: 44px 14px 52px; }
  .ito-process-section { padding: 44px 14px; }
  .ito-testimonials-section { padding: 44px 14px; }
  .reviews-section { padding: 44px 14px; }
}

/* ─── NEWSLETTER — mobile ────────────────────────── */
@media (max-width: 768px) {
  #ito-newsletter { padding: 48px 20px; margin: 0 8px; border-radius: 16px; }
  #ito-newsletter .nl-form { flex-direction: column; border-radius: 12px; overflow: visible; box-shadow: none; }
  #ito-newsletter .nl-input { border-radius: 10px !important; border: 1.5px solid rgba(190,232,255,0.4) !important; margin-bottom: 10px; }
  #ito-newsletter .nl-btn { border-radius: 10px !important; justify-content: center; width: 100%; }
}

/* ─── FOOTER — mobile ─────────────────────────────── */
@media (max-width: 768px) {
  .ft-cta { padding: 36px 16px; }
  .ft-cta-in { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ft-cta-btns { flex-direction: column; align-items: flex-start; }
  .ft-body { padding: 40px 16px; }
  .ft-body-in { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-bar { padding: 16px; }
  .ft-bar-in { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .ft-body-in { grid-template-columns: 1fr; gap: 28px; }
  .ft-cta-title { font-size: 1.4rem; }
}

/* ─── ABOUT PAGE — stats, values coherence ────────── */
@media (max-width: 768px) {
  .ito-page-hero { padding: 90px 16px 60px; }
  .valeurs-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-grid { gap: 20px; }
  .stat-number { font-size: 44px; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .page-hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .cta-inner h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}
@media (max-width: 480px) {
  .valeurs-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 38px; }
  .gar-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: 1fr; }
}

/* ─── SLIDER REVIEWS — mobile single col ────────── */
@media (max-width: 768px) {
  .reviews-layout { grid-template-columns: 1fr; gap: 14px; }
  .slider-arrow { width: 34px; height: 34px; font-size: 1.1rem; }
  .google-badge { flex-wrap: wrap; gap: 10px; }
}

/* ─── TABLET MEDIUM 600–900px — missing breakpoint ── */
@media (min-width: 600px) and (max-width: 900px) {
  .ito-services-row { grid-template-columns: 1fr 1fr; }
  .ito-checklist-strip { grid-template-columns: 1fr 1fr; }
  .ft-body-in { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-connector { width: 2px; height: 24px; margin: 0 auto; }
  .hero-col-2 { display: none; }
}

/* ─── PRINT / VERY LARGE SCREENS ─────────────────── */
@media (min-width: 1400px) {
  .header-inner, .hero-inner, .ito-card,
  .ito-checklist-strip, .ito-services-grid,
  .process-inner, .testimonials-inner,
  .container, .ft-cta-in, .ft-body-in, .ft-bar-in {
    max-width: 1320px;
  }
}


/* ═══════════════════════════════════════════
   TESTIMONIALS — Mejorado
═══════════════════════════════════════════ */
.ito-testimonials-section .testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: stretch;
}
.ito-testimonials-section .testimonial-side {
  display: flex;
}
.ito-testimonials-section .ts-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(27,107,192,.12), 0 8px 24px rgba(0,0,0,.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1 / 1;            /* ⬅ CLAVE: ambas tienen exactamente la misma proporción */
}
.ito-testimonials-section .ts-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(27,107,192,.18), 0 12px 32px rgba(0,0,0,.08);
}
.ito-testimonials-section .ts-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.ito-testimonials-section .ts-img-wrap:hover img { transform: scale(1.04); }
.ito-testimonials-section .ts-img-wrap::before {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 0%, rgba(10,22,40,.08) 40%, rgba(10,22,40,.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.ito-testimonials-section .ts-progress-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px 24px;
  border-radius: 18px;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.4) inset;
  border: 1px solid rgba(85,195,254,.15);
}
.ito-testimonials-section .ts-progress-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.2px;
}
.ito-testimonials-section .progress-item {
  margin-bottom: 11px;
}
.ito-testimonials-section .progress-item:last-child { margin-bottom: 0; }
.ito-testimonials-section .progress-label {
  font-size: .78rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}
.ito-testimonials-section .progress-track {
  height: 7px;
  background: rgba(85,195,254,.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ito-testimonials-section .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 12px rgba(85,195,254,.4);
  position: relative;
}
.ito-testimonials-section .progress-bar::after {
  content:'';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shimmerProgress 2.4s infinite;
}
@keyframes shimmerProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
.ito-testimonials-section .progress-pct {
  position: absolute;
  right: 0;
  top: -2px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(85,195,254,.1);
  padding: 1px 8px;
  border-radius: 10px;
}
.ito-testimonials-section .progress-item { position: relative; padding-right: 50px; }

@media (max-width: 960px) {
  .ito-testimonials-section .testimonials-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .ito-testimonials-section .ts-progress-card { left: 14px; right: 14px; bottom: 14px; padding: 16px 18px; }
  .ito-testimonials-section .ts-progress-card h3 { font-size: .88rem; }
  .ito-testimonials-section .ts-img-wrap { aspect-ratio: 4 / 5; }
}
