:root {
  /* Палитра EcoComfort: бургунди + зелёный */
  --cl-blue: #2a6b38;
  --cl-blue-dark: #641f2a;
  --cl-blue-soft: #e4f0e6;
  --cl-orange: #2a8040;
  --cl-orange-hover: #226a35;
  --cl-text: #1a1d1b;
  --cl-muted: #5c6460;
  --cl-border: #c5d8c9;
  --cl-bg: #f0f4f1;
  --cl-white: #fff;
  --cl-cream: #fafcf9;
  --cl-shadow: 0 8px 32px rgba(100, 31, 42, 0.07);
  --cl-shadow-hover: 0 16px 48px rgba(42, 107, 56, 0.12);
  --cl-radius: 12px;
  --cl-radius-lg: 20px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--cl-text);
  background: var(--cl-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

a {
  color: var(--cl-blue);
}

a:hover {
  color: var(--cl-blue-dark);
}

.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: var(--cl-blue-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.topbar-city {
  font-weight: 700;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.topbar-address,
.topbar-hours {
  opacity: 0.9;
}

.topbar-mail {
  margin-left: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.topbar-mail:hover {
  color: #c8e6cf;
}

@media (max-width: 720px) {
  .topbar-mail {
    margin-left: 0;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cl-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  box-shadow: 0 4px 14px rgba(100, 31, 42, 0.06);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cl-blue-dark);
}

.logo-text small {
  font-size: 11px;
  font-weight: 600;
  color: var(--cl-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-main a {
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: var(--cl-text);
  border-radius: 10px;
}

.nav-main a:hover {
  background: var(--cl-blue-soft);
  color: var(--cl-blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 800;
  font-size: 1rem;
  color: var(--cl-blue-dark);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--cl-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-primary {
  background: var(--cl-orange);
  color: #fff;
  border-color: var(--cl-orange);
  box-shadow: 0 4px 16px rgba(42, 128, 64, 0.28);
}

.btn-primary:hover {
  background: var(--cl-orange-hover);
  border-color: var(--cl-orange-hover);
  color: #fff;
  box-shadow: 0 6px 22px rgba(42, 128, 64, 0.35);
}

.btn-accent {
  background: var(--cl-orange);
  color: #fff;
  border-color: var(--cl-orange);
}

.btn-accent:hover {
  background: var(--cl-orange-hover);
  color: #fff;
}

.btn-outline {
  background: var(--cl-white);
  color: var(--cl-blue-dark);
  border-color: var(--cl-blue);
}

.btn-outline:hover {
  background: var(--cl-blue-soft);
  color: var(--cl-blue-dark);
}

.btn-on-light {
  background: #fff;
  color: var(--cl-blue-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-on-light:hover {
  background: var(--cl-blue-soft);
  color: var(--cl-blue-dark);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--cl-blue-dark);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 5% 20px;
  border-top: 1px solid var(--cl-border);
  background: var(--cl-white);
}

.mobile-menu a {
  padding: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--cl-text);
  border-radius: 4px;
}

.mobile-menu a:hover {
  background: var(--cl-blue-soft);
}

.mobile-phone {
  margin-top: 8px;
  font-weight: 800;
  color: var(--cl-blue-dark);
}

@media (max-width: 1024px) {
  .nav-main,
  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu:not([hidden]) {
    display: flex;
  }
}

/* Hero */
.hero-cl {
  position: relative;
  padding: clamp(36px, 6vw, 64px) 0 clamp(40px, 7vw, 72px);
  overflow: hidden;
}

.hero-cl-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f4ea 0%, #fff 42%, #f3ebe8 100%);
  z-index: 0;
}

.hero-cl-bg::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 0;
  width: 52%;
  height: 100%;
  /* Рабочий офис (серия Moscow office, Unsplash) — соответствует офисному клинингу */
  background: url("https://images.unsplash.com/photo-1721830938269-8c2ea49351e3?auto=format&fit=crop&w=1600&q=82")
    center 45% / cover no-repeat;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
}

.hero-cl-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(380px, 100%);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .hero-cl-grid {
    grid-template-columns: 1fr;
  }
}

.hero-cl-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cl-blue-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--cl-border);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hero-cl-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--cl-blue-dark);
}

.hero-price {
  color: var(--cl-orange);
  white-space: nowrap;
}

.hero-cl-lead {
  margin: 0;
  color: var(--cl-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  line-height: 1.65;
}

.card-form {
  background: var(--cl-white);
  border-radius: var(--cl-radius-lg);
  box-shadow: var(--cl-shadow);
  border: 1px solid rgba(197, 216, 201, 0.65);
  padding: clamp(22px, 3.5vw, 32px);
}

.card-form--hero {
  position: relative;
  border: none;
  padding-top: clamp(28px, 4vw, 36px);
  box-shadow: 0 24px 60px rgba(100, 31, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.card-form--hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--cl-blue), var(--cl-orange));
}

.card-form--lift {
  border-radius: var(--cl-radius-lg);
  box-shadow: var(--cl-shadow);
}

.cl-form label:not(.check-row) {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin: 14px 0 6px;
  color: var(--cl-text);
}

.cl-form label:first-of-type {
  margin-top: 0;
}

.cl-form input[type="text"],
.cl-form input[type="tel"],
.cl-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cl-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: #fafcfb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cl-form input:hover,
.cl-form textarea:hover {
  background: #fff;
}

.cl-form input:focus,
.cl-form textarea:focus {
  outline: none;
  border-color: var(--cl-blue);
  box-shadow: 0 0 0 3px rgba(45, 111, 58, 0.18);
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--cl-muted);
  cursor: pointer;
}

.check-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.check-row a {
  font-weight: 600;
}

.cl-form .btn-primary {
  margin-top: 18px;
}

/* Калькулятор в форме */
.calc-block {
  margin-top: 18px;
  padding: 18px 16px 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cl-blue-soft) 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(42, 107, 56, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.calc-block-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cl-blue);
}

.calc-fields-row {
  display: grid;
  gap: 14px 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 440px) {
  .calc-fields-row {
    grid-template-columns: 1fr minmax(124px, 32%);
  }
}

.cl-form .calc-field label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cl-blue-dark);
}

.calc-select-wrap {
  position: relative;
}

.calc-select-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 2px solid var(--cl-blue-dark);
  border-bottom: 2px solid var(--cl-blue-dark);
  transform: rotate(45deg);
  pointer-events: none;
  opacity: 0.75;
}

.calc-type {
  display: block;
  width: 100%;
  margin: 0;
  padding: 13px 42px 13px 14px;
  border: 1px solid var(--cl-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cl-text);
  background-color: #fff;
  background-image: linear-gradient(180deg, #fff 0%, #fafcfb 100%);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.calc-type:hover {
  border-color: rgba(42, 107, 56, 0.45);
  background: #fff;
}

.calc-type:focus {
  outline: none;
  border-color: var(--cl-blue);
  box-shadow: 0 0 0 3px rgba(45, 111, 58, 0.2);
}

.calc-area-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--cl-border);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fafcfb 100%);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.calc-area-wrap:hover {
  border-color: rgba(42, 107, 56, 0.45);
  background: #fff;
}

.calc-area-wrap:focus-within {
  border-color: var(--cl-blue);
  box-shadow: 0 0 0 3px rgba(45, 111, 58, 0.2);
}

.calc-area-wrap .calc-area {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 13px 6px 13px 14px;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--cl-text);
  background: transparent;
  box-shadow: none;
}

.calc-area-wrap .calc-area::placeholder {
  color: rgba(92, 100, 96, 0.55);
  font-weight: 500;
}

.calc-area-wrap .calc-area:focus {
  outline: none;
  box-shadow: none;
}

.calc-area-suffix {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 14px 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cl-muted);
  letter-spacing: 0.02em;
  background: rgba(228, 240, 230, 0.45);
  border-left: 1px solid rgba(197, 216, 201, 0.85);
}

.calc-result {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--cl-white);
  border: 1px solid var(--cl-border);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--cl-blue-dark);
  line-height: 1.35;
}

.calc-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--cl-muted);
  line-height: 1.4;
}

.calc-block--span {
  grid-column: 1 / -1;
}

.cta-mid-fields + .calc-block--span {
  margin-top: 4px;
}

.form-status {
  min-height: 1.3em;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.form-status.ok {
  color: #2e7d32;
}

.form-status.err {
  color: #c62828;
}

/* Stats */
.stats-row {
  margin-top: -24px;
  position: relative;
  z-index: 2;
  padding: 0 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--cl-white);
  border-radius: var(--cl-radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--cl-shadow);
  border: 1px solid rgba(197, 216, 201, 0.55);
}

.stat-card .stat-num,
.stat-card .stat-suffix {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--cl-blue-dark);
}

.stat-card p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--cl-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Секции: общий заголовок */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 640px;
}

.section-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cl-blue);
  margin: 0 0 10px;
}

.section-head .section-title {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  text-align: inherit;
}

.section-subtitle {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  color: var(--cl-muted);
  line-height: 1.6;
  max-width: 42rem;
}

.section-head--left .section-subtitle {
  margin-left: 0;
}

/* Услуги и цены */
.services-price {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 96px);
  background: linear-gradient(180deg, var(--cl-cream) 0%, var(--cl-bg) 55%, var(--cl-blue-soft) 100%);
  overflow: hidden;
}

.services-price::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(42, 107, 56, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.services-price .container {
  position: relative;
  z-index: 1;
}

.services-price-layout {
  display: grid;
  grid-template-columns: 1fr min(300px, 100%);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

@media (max-width: 960px) {
  .services-price-layout {
    grid-template-columns: 1fr;
  }
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  min-height: 0;
  background: var(--cl-white);
  border-radius: 14px;
  border: 1px solid rgba(197, 216, 201, 0.5);
  box-shadow: 0 3px 14px rgba(100, 31, 42, 0.035);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s;
}

.price-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--cl-blue), var(--cl-orange));
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 2;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42, 107, 56, 0.1);
  border-color: rgba(42, 107, 56, 0.32);
}

.price-card:hover::after {
  opacity: 1;
}

.price-card--accent {
  border-color: rgba(42, 107, 56, 0.28);
}

.price-card--accent .price-card-body {
  background: linear-gradient(180deg, rgba(228, 240, 230, 0.5) 0%, #fff 100%);
}

.price-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 148px;
  overflow: hidden;
  background: #e8ebe9;
}

.price-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.price-card:hover .price-card-media img {
  transform: scale(1.05);
}

.price-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 14px 14px;
  gap: 0;
}

.price-card-title {
  margin: 0 0 5px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cl-blue-dark);
  line-height: 1.28;
}

.price-card-note {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--cl-muted);
  line-height: 1.42;
  flex: 1;
}

.price-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 11px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--cl-blue-dark);
  background: linear-gradient(135deg, var(--cl-blue-soft), #fff);
  border: 1px solid var(--cl-border);
  border-radius: 999px;
}

.price-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--cl-blue), var(--cl-orange));
  box-shadow: 0 3px 10px rgba(42, 107, 56, 0.22);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.price-card-cta:hover {
  color: #fff;
  filter: brightness(1.06);
}

.price-card-cta:active {
  transform: scale(0.98);
}

.price-card-tag--outline {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(100, 31, 42, 0.35);
}

.price-aside-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--cl-radius-lg);
  background: linear-gradient(165deg, #752a38 0%, var(--cl-blue-dark) 42%, #3d1218 100%);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 56px rgba(100, 31, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-aside-pattern {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-aside-kicker {
  position: relative;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.price-aside-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.price-aside-text {
  position: relative;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.price-aside-card .btn-block {
  position: relative;
  text-align: center;
}

.price-aside-card .btn-ghost-light {
  margin-top: 4px;
}

/* Mid CTA */
.cta-mid {
  padding: 8px 0 56px;
  background: linear-gradient(180deg, var(--cl-blue-soft) 0%, transparent 100%);
}

.cta-mid-inner {
  max-width: 520px;
  margin: 0 auto;
}

.cta-mid-label {
  text-align: center;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cl-blue);
}

.cta-mid-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .cta-mid-fields {
    grid-template-columns: 1fr;
  }
}

.cta-mid-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--cl-blue-dark);
  margin: 0 0 28px;
  text-align: center;
}

/* About */
.section-about {
  padding: 48px 0;
  background: var(--cl-white);
  border-top: 1px solid var(--cl-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

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

.about-text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--cl-blue-dark);
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cl-text);
}

.about-bullets {
  margin: 20px 0;
  padding-left: 1.2rem;
  color: var(--cl-muted);
}

.about-bullets li {
  margin-bottom: 12px;
}

.about-bullets strong {
  color: var(--cl-text);
}

.about-highlight {
  background: var(--cl-blue-soft);
  border: 1px solid #8fbc8f;
  border-radius: var(--cl-radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--cl-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.about-highlight p {
  margin: 0;
  font-weight: 600;
  color: var(--cl-blue-dark);
}

/* Metrics */
.section-metrics {
  padding: 48px 0 56px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  background: var(--cl-white);
  border: 1px solid rgba(197, 216, 201, 0.55);
  border-radius: var(--cl-radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(100, 31, 42, 0.05);
}

.metric-card-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card-wide {
    grid-column: span 1;
  }
}

.metric-val {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--cl-orange);
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cl-muted);
}

/* Team */
.section-team {
  padding: 48px 0;
  background: var(--cl-white);
  border-top: 1px solid var(--cl-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  background: var(--cl-bg);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 18px 12px;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, hsl(var(--hue, 200), 55%, 45%), hsl(var(--hue, 200), 45%, 35%));
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-role {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cl-muted);
}

.team-card h3 {
  margin: 6px 0 4px;
  font-size: 1rem;
  font-weight: 800;
}

.team-rating {
  margin: 0;
  font-size: 13px;
  color: #f9a825;
  font-weight: 700;
}

.team-meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--cl-muted);
}

/* Reviews */
.section-reviews {
  padding: clamp(48px, 8vw, 72px) 0 48px;
  background: linear-gradient(180deg, var(--cl-bg) 0%, var(--cl-cream) 100%);
}

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

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  margin: 0;
  padding: 22px 22px 24px;
  background: var(--cl-white);
  border: 1px solid rgba(197, 216, 201, 0.5);
  border-radius: var(--cl-radius-lg);
  box-shadow: 0 6px 22px rgba(100, 31, 42, 0.04);
}

.review-card header {
  margin-bottom: 12px;
}

.review-card strong {
  display: block;
  font-size: 15px;
  color: var(--cl-blue-dark);
}

.review-card header span {
  font-size: 12px;
  color: var(--cl-muted);
  font-weight: 600;
}

.review-card p {
  margin: 0;
  font-size: 14px;
  color: var(--cl-muted);
  line-height: 1.5;
}

.review-cta {
  text-align: center;
  margin: 28px 0 0;
}

.link-dashed {
  font-weight: 700;
  color: var(--cl-blue);
  text-decoration: underline;
  text-decoration-style: dashed;
}

/* Clients */
.section-clients {
  padding: 40px 0 48px;
  background: var(--cl-white);
  border-top: 1px solid var(--cl-border);
}

.clients-note {
  text-align: center;
  font-size: 13px;
  color: var(--cl-muted);
  margin: -12px 0 24px;
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-badge {
  flex-shrink: 0;
  padding: 14px 28px;
  background: var(--cl-bg);
  border: 1px solid var(--cl-border);
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  color: var(--cl-muted);
  letter-spacing: 0.04em;
}

/* Contacts */
.section-contacts {
  padding: 48px 0 56px;
  border-top: 1px solid var(--cl-border);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr min(400px, 100%);
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

.contacts-grid h2 {
  margin: 0 0 12px;
  color: var(--cl-blue-dark);
}

.contacts-lead {
  color: var(--cl-muted);
  margin: 0 0 16px;
}

.contacts-big {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--cl-blue-dark);
}

/* Footer */
.footer-cl {
  background: var(--cl-blue-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 0;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-col a:hover {
  color: #c8e6cf;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: #c8e6cf;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
