/* ==========================================================================
   ALO TEMİZLİK — Site Stilleri (yeniden tasarım)
   Palet: Koyu petrol yeşili zemin + WhatsApp yeşili vurgu
   ========================================================================== */

:root {
  /* Renkler */
  --dark: #06282e;          /* koyu petrol — hero & footer zemini */
  --dark-soft: #0b3a42;
  --green: #22c55e;         /* ana vurgu (WhatsApp tonu) */
  --green-dark: #16a34a;
  --wa: #25d366;            /* gerçek WhatsApp yeşili */
  --ink: #122b31;           /* başlık metni */
  --muted: #5b7177;         /* gövde metni */
  --bg: #f4faf7;            /* açık zemin */
  --card: #ffffff;
  --line: #e3efe9;

  /* Tipografi & ölçüler */
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 35px rgba(6, 40, 46, 0.10);
  --shadow-lg: 0 25px 60px rgba(6, 40, 46, 0.18);
  --container: 1180px;
}

/* ---------- Sıfırlama ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; font-weight: 800; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa {
  background: linear-gradient(135deg, var(--wa), var(--green-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
.btn--wa i { font-size: 1.2em; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.22); }

.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Üst bilgi şeridi ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar i { color: var(--green); margin-right: 6px; }
.topbar__links { display: flex; gap: 20px; align-items: center; }
.topbar__links a:hover { color: #fff; }
.topbar__wa { font-weight: 700; color: var(--wa); }
.topbar__wa:hover { color: #5ee48f; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(6, 40, 46, 0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 26px; }
.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #0a3640 55%, #0d4434 100%);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  padding: 80px 0 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 { width: 420px; height: 420px; background: rgba(37, 211, 102, 0.16); top: -120px; right: -80px; }
.hero__glow--2 { width: 340px; height: 340px; background: rgba(56, 189, 248, 0.10); bottom: 0; left: -120px; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #7ce8a6;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 18px;
}
.hero__title span { color: var(--wa); }

.hero__text { font-size: 1.06rem; max-width: 520px; margin-bottom: 30px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.88rem; }
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust i { color: var(--wa); }

/* Hero görseli ve yüzen kartlar */
.hero__media { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.hero__photo img { width: 100%; height: 440px; object-fit: cover; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  animation: float 5s ease-in-out infinite;
}
.float-card--rating {
  top: -22px; right: -10px;
  display: flex; flex-direction: column; gap: 2px;
}
.float-card--rating .float-card__stars { color: #fbbf24; font-size: 0.8rem; letter-spacing: 2px; }
.float-card--rating strong { color: var(--ink); font-size: 1.05rem; }
.float-card--rating span { color: var(--muted); font-size: 0.75rem; }

.float-card--chat {
  bottom: -24px; left: -16px;
  display: flex; align-items: center; gap: 12px;
  max-width: 290px;
  animation-delay: 1.2s;
}
.float-card__avatar {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  font-size: 1.4rem;
}
.float-card--chat strong { display: block; color: var(--ink); font-size: 0.88rem; }
.float-card--chat span { color: var(--muted); font-size: 0.8rem; line-height: 1.4; display: block; }

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

/* Hero istatistik şeridi (hero ile hizmetler arasına taşar) */
.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  transform: translateY(50%);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--green-dark);
}
.stat span { font-size: 0.86rem; color: var(--muted); font-weight: 600; }

/* ---------- Genel bölüm yapısı ---------- */
.section { padding: 96px 0; }
.services { padding-top: 150px; } /* hero istatistik şeridinin taşma payı */

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.section__subtitle { font-size: 1rem; }

/* ---------- Hizmet kartları ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(6, 40, 46, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card__media { position: relative; }
.service-card__media img {
  width: 100%; height: 190px;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }

.service-card__icon {
  position: absolute;
  left: 20px; bottom: -22px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.service-card__body {
  padding: 36px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card__body p { font-size: 0.92rem; flex: 1; }

.service-card__wa {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  transition: gap .2s ease, color .2s ease;
}
.service-card__wa i { font-size: 1.15em; }
.service-card__wa:hover { color: var(--wa); gap: 12px; }

/* ---------- Nasıl Çalışır ---------- */
.steps { background: #fff; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}

.step {
  position: relative;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 26px 30px;
}
.step__num {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(6, 40, 46, 0.3);
}
.step__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-dark);
  font-size: 1.6rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

.steps__cta { text-align: center; }

/* ---------- Hakkımızda ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about__media { position: relative; }
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img { width: 100%; height: 480px; object-fit: cover; }

.about__badge {
  position: absolute;
  bottom: 26px; right: -18px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.about__badge strong { display: block; color: var(--wa); font-size: 1.5rem; font-weight: 800; }

.about__content .section__tag { margin-bottom: 14px; }
.about__content .section__title { margin-bottom: 16px; }
.about__content > p { margin-bottom: 26px; }

.about__list { display: grid; gap: 18px; margin-bottom: 30px; }
.about__list li { display: flex; gap: 14px; align-items: flex-start; }
.about__list-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-dark);
  font-size: 1.1rem;
}
.about__list strong { display: block; color: var(--ink); font-size: 0.98rem; }
.about__list span { font-size: 0.9rem; }

/* ---------- Yorumlar ---------- */
.testimonials { background: #fff; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.testimonial-card__stars { color: #fbbf24; margin-bottom: 14px; letter-spacing: 2px; font-size: 0.85rem; }
.testimonial-card > p { font-size: 0.94rem; flex: 1; font-style: italic; }

.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}
.testimonial-card__author strong { display: block; color: var(--ink); font-size: 0.94rem; }
.testimonial-card__author span { font-size: 0.82rem; }

/* ---------- Büyük WhatsApp CTA bandı ---------- */
.cta-band {
  background:
    radial-gradient(700px 350px at 15% 110%, rgba(37, 211, 102, 0.22), transparent 60%),
    linear-gradient(135deg, var(--dark), #0d4434);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- İletişim ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}
.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  text-align: center;
  color: var(--muted);
}

.contact__info { display: grid; gap: 16px; }

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }

.info-item__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green-dark);
  font-size: 1.25rem;
}
.info-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.info-item p { font-size: 0.9rem; }
.info-item__arrow { margin-left: auto; color: var(--line); font-size: 0.85rem; }
a.info-item:hover .info-item__arrow { color: var(--green); }

.info-item--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.10), rgba(22, 163, 74, 0.06));
  border-color: rgba(37, 211, 102, 0.4);
}
.info-item--wa .info-item__icon { background: var(--wa); color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 24px 50px;
}
/* Logo koyu zeminde okunabilsin diye beyaz kutu içinde */
.logo--footer .logo__img {
  height: 60px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 14px;
}
.footer__brand p { font-size: 0.9rem; margin: 14px 0 20px; max-width: 280px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--wa); transform: translateY(-3px); }

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 10px; font-size: 0.9rem; }
.footer__col ul a:hover { color: var(--wa); }
.footer__contact li, .footer__contact a { display: flex; align-items: center; gap: 4px; }
.footer__contact i { color: var(--wa); width: 22px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Sabit WhatsApp butonu ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6); }
.whatsapp-float i { font-size: 1.6rem; }

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--wa);
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Yukarı çık butonu ---------- */
.scroll-top {
  position: fixed;
  right: 26px; bottom: 92px;
  z-index: 90;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--dark-soft); }

/* ---------- Kaydırma animasyonları ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].is-inview { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .float-card, .whatsapp-float__pulse { animation: none; }
}

/* ==========================================================================
   DUYARLI TASARIM
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .services__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 16px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar__inner { justify-content: center; }
  .topbar > .topbar__inner > span { display: none; }

  .nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px 26px;
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 11px 4px; font-size: 1rem; }
  .nav__cta { justify-content: center; margin-top: 8px; }
  .nav__toggle { display: flex; }

  .hero { padding-top: 56px; }
  .hero__photo img { height: 320px; }
  .float-card--rating { top: -16px; right: 4px; }
  .float-card--chat { left: 4px; bottom: -18px; max-width: 250px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; transform: translateY(40%); }
  .services { padding-top: 130px; }

  .section { padding: 72px 0; }
  .services__grid, .testimonials__grid, .steps__grid { grid-template-columns: 1fr; }
  .steps__grid { gap: 40px; }

  .about__image img { height: 360px; }

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 26px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 50px; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 16px; }
  .scroll-top { bottom: 96px; right: 22px; }
}
