/* Özdemir Grup — Halı Yıkama */
:root {
  --ink: #0a1628;
  --deep: #0f2744;
  --teal: #123a6b;
  --mint: #4ba3d9;
  --foam: #e8f4fb;
  --paper: #f5f9fc;
  --gold: #4ba3d9;
  --gold-soft: #7bc0e8;
  --white: #ffffff;
  --text: #1c2430;
  --muted: #5a6573;
  --line: rgba(18, 58, 107, 0.14);
  --shadow: 0 24px 60px rgba(10, 22, 40, 0.18);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, calc(100% - 2.5rem));
}

/* —— Nav —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  background: #0a1628;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.nav {
  min-height: var(--nav-h);
  height: var(--nav-h);
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}

.nav-brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.2rem;
  flex-shrink: 0;
}

.nav-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-promo,
.hero-promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  max-width: min(420px, 100%);
}

.hero-promo {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.05s forwards;
}

.nav-offer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  width: 100%;
  padding: 0.45rem 0.85rem;
  background: #ffffff;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.nav-offer:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.nav-offer__badge {
  flex-shrink: 0;
  background: #e11d48;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  line-height: 1;
}

.nav-offer__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.nav-offer__text strong {
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-offer__text span {
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: 100%;
}

.nav-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.6rem;
  background: rgba(20, 24, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.nav-trust span::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #4ba3d9;
  flex-shrink: 0;
}

.site-header.is-scrolled .nav-trust span,
.site-header.site-header--solid .nav-trust span {
  background: rgba(20, 24, 32, 0.72);
  color: #ffffff;
}

.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  background: #059669;
  border: 1px solid #34d399;
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  animation: liveGlow 2.4s ease-in-out infinite;
}

.nav-live__dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
}

.nav-live__dot::before,
.nav-live__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #34d399;
}

.nav-live__dot::after {
  animation: livePulse 1.6s ease-out infinite;
}

.nav-live__text {
  color: #ffffff;
  animation: liveText 2.8s ease-in-out infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes liveGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.15);
  }
  50% {
    box-shadow: 0 0 16px 2px rgba(52, 211, 153, 0.28);
  }
}

@keyframes liveText {
  0%,
  100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

.nav-reviews {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.nav-reviews:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.nav-reviews__g {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.nav-reviews__body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  line-height: 1.2;
}

.nav-reviews__top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 800;
  color: #1a237e;
}

.nav-reviews__stars {
  color: #fbbc04;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-reviews__sub {
  font-size: clamp(0.6rem, 1.7vw, 0.68rem);
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--mint);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--mint);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s;
}

.nav-cta:hover {
  background: var(--gold-soft);
  color: var(--ink) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: var(--white);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(75, 163, 217, 0.35);
}

.btn--gold:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mint);
  color: var(--mint);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--deep);
}

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

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a1628;
}

.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.22) 40%, rgba(10, 22, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  max-width: min(360px, 90vw);
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.1rem 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero__logo img {
  width: clamp(42px, 10vw, 56px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

.hero__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.hero__logo-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero__logo-text span {
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.2s forwards;
}

.hero__brand em {
  font-style: normal;
  color: var(--mint);
}

.hero__tag {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero__lead {
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero .btn-row {
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  right: max(1.25rem, calc((100% - 1120px) / 2));
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: rise 1s var(--ease) 1s forwards;
}

/* —— Sections —— */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section--deep {
  background: var(--ink);
  color: var(--white);
}

.section--foam {
  background: var(--foam);
}

.section__head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section--deep .section__eyebrow {
  color: var(--mint);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.section__text {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--deep .section__text {
  color: rgba(255, 255, 255, 0.7);
}

/* —— Services —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--line);
}

.service {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.service__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.service__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.service__text {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Split feature —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__visual {
  position: relative;
  min-height: clamp(280px, 48vw, 520px);
  overflow: hidden;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split__visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: 1;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.55));
}

.split__caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.split__list {
  display: grid;
  gap: 1.15rem;
  margin: 1.75rem 0 2rem;
}

.split__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.split__list .mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.15rem;
}

.split__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.split__list p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Process —— */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process__item {
  position: relative;
  padding-top: 0.5rem;
}

.process__item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(75, 163, 217, 0.28);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.process__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.process__item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 10% 20%, rgba(75, 163, 217, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(18, 58, 107, 0.35), transparent 50%),
    var(--deep);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .btn-row {
  justify-content: center;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(18, 58, 107, 0.82)),
    url("../images/hero.jpg")
      center / cover;
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

/* —— About —— */
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-story__aside {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.stat:first-child {
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.prose {
  display: grid;
  gap: 1.15rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.value h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.value p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
}

.contact-item a:hover {
  color: var(--teal);
}

.contact-item .big-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.contact-item .big-link:hover {
  color: var(--gold);
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 92, 84, 0.15);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--foam);
  border: 1px solid var(--mint);
  color: var(--deep);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.map-embed {
  margin-top: 3rem;
  min-height: 320px;
  background:
    linear-gradient(rgba(13, 50, 46, 0.55), rgba(13, 50, 46, 0.55)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=70")
      center / cover;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.map-embed strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.35rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 40px;
  height: auto;
  background: var(--white);
  border-radius: 8px;
  padding: 0.35rem;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.footer-brand__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand__text span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.site-footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: var(--mint);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Animations —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

/* —— Mobile —— */
/* —— Floating contact —— */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.float-btn svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.float-btn--wa {
  background: #25d366;
}

.float-btn--tel {
  background: var(--teal);
}

.float-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0.45;
  animation: floatPulse 2s ease-out infinite;
  z-index: -1;
}

.float-btn {
  position: relative;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .process,
  .values,
  .split,
  .about-story,
  .contact-grid,
  .footer-grid,
  .form__row {
    grid-template-columns: 1fr;
  }

  .about-story__aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat {
    border: 1px solid var(--line);
    padding: 1rem;
  }

  .stat:first-child {
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-offer {
    width: auto;
    max-width: 100%;
    padding: 0.4rem 0.65rem;
  }

  .nav-promo,
  .hero-promo {
    max-width: 100%;
  }

  .nav-offer__badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.4rem;
  }

  .nav-trust span:nth-child(n + 3) {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.75rem;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-story__aside {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row .btn {
    width: 100%;
  }

  .nav-offer__text span {
    display: none;
  }

  .nav-trust span:nth-child(n + 2) {
    display: none;
  }

  .float-actions {
    right: 0.75rem;
    bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Reviews page —— */
.reviews-page {
  background: #f1f3f4;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
}

.reviews-shell {
  width: min(720px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.reviews-head {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 0;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
  margin-bottom: 1rem;
}

.reviews-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.reviews-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 50%;
  padding: 0.45rem;
}

.reviews-brand__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a237e;
  letter-spacing: -0.02em;
}

.reviews-brand__text span {
  font-size: 0.88rem;
  color: #5f6368;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.reviews-score__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}

.reviews-score__stars {
  color: #fbbc04;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.reviews-count {
  font-size: 0.92rem;
  color: #5f6368;
  margin-bottom: 1rem;
}

.reviews-tabs {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid #e8eaed;
}

.reviews-tabs a {
  padding: 0.85rem 0.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5f6368;
  border-bottom: 3px solid transparent;
}

.reviews-tabs a.is-active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.1);
  margin-bottom: 0.75rem;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-avatar--a { background: #e67c73; }
.review-avatar--b { background: #57bb8a; }
.review-avatar--c { background: #f2a60c; }
.review-avatar--d { background: #5c6bc0; }
.review-avatar--e { background: #26a69a; }
.review-avatar--f { background: #ec407a; }

.review-meta strong {
  display: block;
  font-size: 0.95rem;
  color: #202124;
}

.review-meta span {
  font-size: 0.78rem;
  color: #80868b;
}

.review-card__stars {
  color: #fbbc04;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.review-card p {
  font-size: 0.92rem;
  color: #3c4043;
  line-height: 1.55;
}

.review-cta {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.1);
  margin-top: 0.5rem;
}

.review-cta p {
  color: #5f6368;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.btn--google {
  background: #1a73e8;
  color: #fff;
  gap: 0.55rem;
}

.btn--google:hover {
  background: #1765cc;
  color: #fff;
}

.btn--google svg {
  width: 1.15rem;
  height: 1.15rem;
}
