/* ===== GS LOCAMASTER — Styles (extraits fidèlement de la landing page) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; }

:root {
  --cream:   #F5F2EB;
  --cream-2: #EDE9DF;
  --cream-3: #E4DFCF;
  --green:   #2A4A3A;
  --green-2: #3B6050;
  --green-light: #E8F0EB;
  --sand:    #C8B89A;
  --sand-light: #F0E9DC;
  --text:    #1A1F1C;
  --text-mid:#4A5047;
  --text-soft:#8A8E87;
  --white:   #FFFFFF;
  --border:  rgba(42,74,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-weight: 300;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.1rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245,242,235,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn-nav) {
  font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--text-mid); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn-nav):hover { color: var(--green); }
.nav-links a:not(.btn-nav).active { color: var(--green); }
.nav-links a:not(.btn-nav).active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -0.5rem;
  height: 1.5px; background: var(--green);
}
.btn-nav {
  background: var(--green); color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.7rem 1.6rem;
  border-radius: 2px; transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--green-2); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 2rem; height: 2rem;
  flex-direction: column; justify-content: center; gap: 4px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--green); border-radius: 2px; }

/* HERO (home) */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 9rem 2rem 5rem;
  background: var(--cream); position: relative;
}
.hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 40%;
  background: linear-gradient(180deg, var(--sand-light) 0%, transparent 100%);
  pointer-events: none;
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 2rem; opacity: 0;
  animation: fadeUp 0.7s 0.15s forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05; font-weight: 400; color: var(--text);
  max-width: 900px; opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  margin-top: 2rem; font-size: 1.05rem;
  color: var(--text-mid); max-width: 520px;
  line-height: 1.75; font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; margin-top: 3rem;
  flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.btn-primary {
  background: var(--green); color: var(--white);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,74,58,0.18); }
.btn-outline {
  background: transparent; color: var(--green);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem;
  border-radius: 2px; border: 1.5px solid var(--green);
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: var(--green-light); }

.hero-stats {
  display: flex; margin-top: 5rem;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; background: var(--white);
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
  box-shadow: 0 4px 30px rgba(42,74,58,0.06);
}
.hero-stat {
  padding: 1.6rem 2.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--green); display: block; line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--text-soft); text-transform: uppercase; margin-top: 0.4rem;
}

/* PAGE HEADER (non-home pages) */
.page-header {
  padding: 9rem 2rem 5rem;
  background: var(--cream); position: relative;
  text-align: center;
}
.page-header::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, var(--sand-light) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner { position: relative; max-width: 860px; margin: 0 auto; }
.page-header .hero-tag { animation: none; opacity: 1; margin-bottom: 1.5rem; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.08; font-weight: 400; color: var(--text);
}
.page-header h1 em { font-style: italic; color: var(--green); }
.page-header .page-sub {
  margin-top: 1.6rem; font-size: 1.05rem;
  color: var(--text-mid); max-width: 580px;
  line-height: 1.75; font-weight: 300;
  margin-left: auto; margin-right: auto;
}

/* SECTIONS */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text); margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-body {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.8; font-weight: 300; max-width: 560px;
}

/* PROPOSITION */
.proposition { background: var(--white); }
.prop-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
.prop-visual {
  background: var(--cream); border-radius: 6px;
  padding: 3rem 2.5rem; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.prop-visual::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--green-light);
  border-radius: 0 6px 0 50%;
}
.prop-visual-icon { font-size: 3.5rem; margin-bottom: 1.2rem; display: block; }
.prop-visual h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--green); margin-bottom: 0.8rem;
}
.prop-visual p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.prop-platforms {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.prop-platforms-label {
  font-size: 0.78rem; color: var(--text-soft);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.platform-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.platform-pill {
  background: var(--white); border: 1px solid var(--border);
  padding: 0.35rem 0.8rem; border-radius: 100px;
  font-size: 0.78rem; color: var(--text-mid);
}
.prop-list { display: flex; flex-direction: column; gap: 1.2rem; }
.prop-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem; border-radius: 4px;
  background: var(--cream); border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.prop-item:hover { border-color: var(--green); transform: translateX(4px); }
.prop-check {
  width: 1.6rem; height: 1.6rem; flex-shrink: 0;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.7rem; margin-top: 0.1rem;
}
.prop-item h4 { font-size: 0.95rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
.prop-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }

/* SERVICES */
.services { background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc-card {
  background: var(--white); border-radius: 4px;
  padding: 2rem 1.8rem; border: 1px solid var(--border);
  transition: all 0.3s;
}
.svc-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(42,74,58,0.08); transform: translateY(-3px); }
.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--cream-3);
  line-height: 1; font-weight: 600; margin-bottom: 0.8rem; display: block;
}
.svc-card h3 { font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }
.svc-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  padding: 0.25rem 0.7rem; border-radius: 100px;
}

/* PROCESS */
.process { background: var(--green); }
.process .section-eyebrow { color: var(--sand); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.proc-step {
  padding: 2rem 1.5rem; border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.proc-step:hover { background: rgba(255,255,255,0.1); }
.proc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600;
  color: var(--sand); line-height: 1; margin-bottom: 1rem;
}
.proc-step h4 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.proc-step p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* REVENUS */
.revenus { background: var(--white); }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.rev-numbers { display: flex; flex-direction: column; gap: 1.2rem; }
.rev-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 1.8rem; background: var(--cream);
  border-radius: 4px; border: 1px solid var(--border);
}
.rev-row-label { font-size: 0.88rem; color: var(--text-mid); }
.rev-row-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--green); }
.rev-highlight { background: var(--green); border-color: var(--green); }
.rev-highlight .rev-row-label { color: rgba(255,255,255,0.7); }
.rev-highlight .rev-row-val { color: var(--white); }
.rev-note { font-size: 0.75rem; color: var(--text-soft); margin-top: 0.8rem; }

/* TESTI */
.testimonials { background: var(--cream-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi {
  background: var(--white); border-radius: 4px;
  padding: 2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.testi-stars { color: var(--green); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author {
  display: flex; align-items: center; gap: 0.8rem;
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; color: var(--white); flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text-soft); }

/* FAQ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; padding: 1.3rem 0;
  font-size: 0.95rem; font-weight: 400; color: var(--text);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; text-align: left; font-family: 'Outfit', sans-serif;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 1.4rem; height: 1.4rem; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green);
  transition: all 0.25s;
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); border-color: var(--green); transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.75; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.2rem; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form {
  background: var(--white); border-radius: 6px;
  padding: 2.5rem; border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--text); margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 0.4rem; font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 3px; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; color: var(--text); font-weight: 300;
  transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; margin-top: 0.5rem; padding: 1rem;
  background: var(--green); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer; transition: all 0.25s;
}
.form-submit:hover { background: var(--green-2); }
.form-note { text-align: center; margin-top: 0.8rem; font-size: 0.75rem; color: var(--text-soft); }
.contact-benefits { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.benefit-line {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1.2rem 1.5rem; background: var(--white);
  border-radius: 4px; border: 1px solid var(--border);
}
.benefit-line .icon { font-size: 1.3rem; flex-shrink: 0; }
.benefit-line h5 { font-size: 0.92rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
.benefit-line p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* RATIO COMPARISON */
.ratio-compare { display: flex; flex-direction: column; gap: 1.4rem; }
.ratio-item-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.55rem;
}
.ratio-item-label { font-size: 0.82rem; color: var(--text-mid); letter-spacing: 0.03em; }
.ratio-item-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 600; color: var(--text);
}
.ratio-item-val.green { color: var(--green); }
.ratio-bar-track {
  height: 10px; background: var(--cream-3);
  border-radius: 100px; overflow: hidden;
}
.ratio-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.ratio-fill-long { background: var(--sand); width: 40%; }
.ratio-fill-short { background: var(--green); width: 100%; }
.ratio-badge {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 1.6rem; padding: 1.2rem 1.8rem;
  background: var(--green); border-radius: 4px;
  color: var(--white);
}
.ratio-badge-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; line-height: 1; flex-shrink: 0;
}
.ratio-badge-text { font-size: 0.83rem; line-height: 1.5; opacity: 0.82; }
.ratio-note { font-size: 0.73rem; color: var(--text-soft); margin-top: 0.8rem; }

/* CTA CONTACT CARD */
.contact-cta-card {
  background: var(--white); border-radius: 6px;
  padding: 3rem 2.5rem; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 1.5rem;
}
.contact-cta-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--text); line-height: 1.2;
  margin-bottom: 0.2rem;
}
.contact-cta-card h3 em { font-style: italic; color: var(--green); }
.contact-cta-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.contact-cta-card .btn-primary { font-size: 0.88rem; padding: 1.1rem 2.4rem; }
.contact-cta-note { font-size: 0.73rem; color: var(--text-soft); letter-spacing: 0.06em; }

/* CTA BAND */
.cta-band { background: var(--green); padding: 5rem 2rem; text-align: center; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 400;
  color: var(--white); margin-bottom: 1.2rem;
}
.cta-band h2 em { font-style: italic; color: var(--sand); }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }
.btn-sand {
  background: var(--sand); color: var(--text);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.5rem;
  border-radius: 2px; transition: all 0.25s; display: inline-block;
}
.btn-sand:hover { background: #d9c9ae; transform: translateY(-2px); }
.cta-reassure { margin-top: 1.2rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

/* FOOTER (landing: simple, une ligne) */
footer {
  background: var(--cream-2); padding: 2.5rem 3.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
}
footer p { font-size: 0.78rem; color: var(--text-soft); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE — TABLET (≤960px) */
@media(max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 1.2rem 1.5rem; gap: 1rem;
  }
  nav.open .nav-links .btn-nav { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }

  section { padding: 4.5rem 1.8rem; }
  .page-header { padding: 7rem 1.8rem 4rem; }

  .prop-grid, .rev-grid, .faq-grid, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .hero { padding: 7rem 1.8rem 4rem; justify-content: flex-start; }
  .hero-stats { flex-direction: column; width: 100%; max-width: 480px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }

  .ratio-item-header { flex-wrap: wrap; gap: 0.2rem; }
  .ratio-badge { gap: 1rem; }
  .ratio-badge-val { font-size: 2rem; }
  .contact-cta-card { padding: 2.2rem 2rem; }
}

/* RESPONSIVE — MOBILE (≤600px) */
@media(max-width: 600px) {
  section { padding: 3.5rem 1.2rem; }
  .hero { padding: 6rem 1.2rem 4rem; text-align: center; justify-content: flex-start; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas {
    flex-direction: column; align-items: stretch;
    gap: 0.8rem; width: 100%; max-width: 340px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    text-align: center; padding: 1rem 1.5rem;
    min-height: 48px; display: flex; align-items: center; justify-content: center;
  }
  .hero-stats { width: 100%; max-width: 100%; }
  .hero-stat { padding: 1.2rem 1.5rem; }

  .services-grid, .process-steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }

  .ratio-item-header { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .ratio-item-val { font-size: 1.35rem; }
  .ratio-badge { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem 1.2rem; }
  .ratio-badge-val { font-size: 2rem; }
  .ratio-badge-text { font-size: 0.78rem; }

  .contact-cta-card { padding: 1.8rem 1.4rem; gap: 1.2rem; }
  .contact-cta-card h3 { font-size: 1.6rem; }
  .contact-cta-card .btn-primary { width: 100%; text-align: center; padding: 1rem; }

  .prop-visual { padding: 2rem 1.5rem; }
  .svc-card, .proc-step { padding: 1.5rem 1.3rem; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  .cta-band { padding: 3.5rem 1.5rem; }
  .btn-sand { width: 100%; max-width: 320px; text-align: center; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== WhatsApp floating button ===== */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.15);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45), 0 4px 10px rgba(0,0,0,0.18);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: wa-pulse 2.2s cubic-bezier(0,0,0.2,1) infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);     }
}
@media (max-width: 600px) {
  .wa-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}
