:root {
  --bg: #ffffff;
  --bg-cream: #fbf7f1;
  --bg-vanilla: #f7f0e7;
  --bg-sand: #f4ebe0;
  --bg-milk-coffee: #efe4d8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-soft: rgba(251, 247, 241, 0.78);
  --text: #4e342e;
  --text-strong: #3e2723;
  --text-soft: #7b6358;
  --muted: #9b8577;
  --line: #eadfd3;
  --line-strong: #ddcfc2;
  --accent: #b86b4b;
  --accent-dark: #a45839;
  --accent-soft: #f4e2d8;
  --gold: #b68442;
  --olive: #7f8b62;
  --olive-soft: #edf1e5;
  --shadow: 0 28px 70px rgba(126, 89, 68, 0.12);
  --shadow-soft: 0 16px 42px rgba(138, 103, 82, 0.09);
  --shadow-hover: 0 24px 54px rgba(132, 94, 71, 0.14);
  --radius: 22px;
  --radius-lg: 32px;
  --radius-sm: 16px;
  --container: 1200px;
  --header-height: 86px;
  --bezier: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
    radial-gradient(circle at top left, rgba(244, 235, 224, 0.5), transparent 30%),
    radial-gradient(circle at bottom right, rgba(239, 228, 216, 0.5), transparent 28%);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(rgba(78, 52, 46, 0.14) 0.6px, transparent 0.6px);
  background-size: 16px 16px;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

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

button {
  border: 0;
}

input,
textarea,
select {
  appearance: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}

.section-accent-soft {
  background:
    radial-gradient(circle at 14% 22%, rgba(237, 241, 229, 0.8), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(244, 226, 216, 0.72), transparent 24%),
    linear-gradient(180deg, #fffefe 0%, var(--bg-vanilla) 100%);
}

.section-form {
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 226, 216, 0.75), transparent 24%),
    radial-gradient(circle at 10% 78%, rgba(237, 241, 229, 0.76), transparent 24%),
    linear-gradient(180deg, var(--bg-cream) 0%, #fffdfb 100%);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    radial-gradient(rgba(78, 52, 46, 0.25) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading h2,
.hero-content h1,
.solution-content h2,
.final-cta-box h2,
.lead-content h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  font-weight: 700;
}

.section-heading p,
.hero-text,
.solution-content p,
.final-cta-box p,
.lead-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(234, 223, 211, 0.98);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.34s var(--bezier),
    box-shadow 0.34s var(--bezier),
    background-color 0.34s ease,
    border-color 0.34s ease,
    color 0.34s ease;
  cursor: pointer;
  position: relative;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, #c67b59 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(184, 107, 75, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #be704f 0%, var(--accent-dark) 100%);
  box-shadow: 0 20px 38px rgba(184, 107, 75, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  border-color: var(--line-strong);
  box-shadow: 0 10px 22px rgba(126, 89, 68, 0.08);
}

.btn-secondary:hover {
  background: var(--bg-cream);
  border-color: #d9c7b7;
}

.btn-lg {
  min-height: 58px;
  padding: 0 30px;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 211, 0.95);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(116, 89, 72, 0.1);
  background: rgba(255, 252, 248, 0.97);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.logo-mark,
.footer-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fbf5ee 0%, #f2e4d6 100%);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(184, 107, 75, 0.12);
  overflow: hidden;
  flex: 0 0 46px;
}

.logo-mark img,
.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.logo-text strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-strong);
}

.logo-text small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.28s ease;
}

.nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--line);
}

.nav a:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-phone {
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-strong);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(126, 89, 68, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 251, 247, 0.98);
  backdrop-filter: blur(16px);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-inner {
  padding: 18px 0 26px;
}

.mobile-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.mobile-nav a::after {
  display: none;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fffdfb 0%, var(--bg-cream) 58%, var(--bg-sand) 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 235, 224, 0.95), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(239, 228, 216, 0.8), transparent 24%),
    radial-gradient(circle at 74% 74%, rgba(237, 241, 229, 0.72), transparent 24%);
}

.hero-wave,
.hero-dot {
  position: absolute;
  pointer-events: none;
}

.hero-wave {
  border: 1px solid rgba(157, 124, 101, 0.16);
  border-radius: 999px;
}

.hero-wave-1 {
  width: 240px;
  height: 240px;
  top: 80px;
  right: 8%;
}

.hero-wave-2 {
  width: 140px;
  height: 140px;
  bottom: 80px;
  left: 6%;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(182, 132, 66, 0.34);
  box-shadow: 0 0 0 8px rgba(182, 132, 66, 0.08);
}

.hero-dot-1 {
  top: 180px;
  left: 48%;
}

.hero-dot-2 {
  right: 14%;
  bottom: 160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 207, 194, 0.95);
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(126, 89, 68, 0.06);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.9vw, 5rem);
  margin-bottom: 22px;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.hero-point,
.lead-highlight,
.region-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(126, 89, 68, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
}

.hero-illustration {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 249, 0.88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 212, 199, 0.95);
}

.hero-illustration-main {
  min-height: 290px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,243,236,0.98)),
    radial-gradient(circle at 80% 20%, rgba(244, 226, 216, 0.6), transparent 24%);
  border: 1px solid rgba(234, 223, 211, 0.95);
}

.scales-illustration {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 190px;
  transform: translate(-50%, -50%);
}

.scale-top,
.scale-pole,
.scale-beam,
.scale-base,
.scale-left,
.scale-right {
  position: absolute;
}

.scale-top {
  top: 18px;
  left: 82px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.scale-pole {
  top: 30px;
  left: 88px;
  width: 4px;
  height: 96px;
  background: linear-gradient(180deg, #c69863, var(--accent));
  border-radius: 999px;
}

.scale-beam {
  top: 52px;
  left: 32px;
  width: 116px;
  height: 3px;
  background: linear-gradient(90deg, #c69863, var(--accent));
  border-radius: 999px;
}

.scale-left,
.scale-right {
  top: 55px;
  width: 52px;
  height: 58px;
  border: 2px solid rgba(182, 132, 66, 0.7);
  border-top: none;
  border-radius: 0 0 24px 24px;
}

.scale-left {
  left: 6px;
}

.scale-right {
  right: 6px;
}

.scale-left::before,
.scale-left::after,
.scale-right::before,
.scale-right::after {
  content: "";
  position: absolute;
  top: -22px;
  width: 2px;
  height: 24px;
  background: rgba(182, 132, 66, 0.7);
}

.scale-left::before,
.scale-right::before {
  left: 8px;
}

.scale-left::after,
.scale-right::after {
  right: 8px;
}

.scale-left span,
.scale-right span {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: rgba(182, 132, 66, 0.7);
}

.scale-base {
  bottom: 18px;
  left: 56px;
  width: 68px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c69863, var(--accent));
}

.doc-stack {
  position: absolute;
  right: 34px;
  top: 32px;
  width: 112px;
  height: 140px;
}

.doc-sheet {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #faf3ec);
  border: 1px solid rgba(221, 207, 194, 0.9);
  box-shadow: 0 12px 24px rgba(126, 89, 68, 0.06);
}

.doc-sheet::before,
.doc-sheet::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 2px;
  background: rgba(184, 107, 75, 0.26);
}

.doc-sheet::before {
  top: 34px;
}

.doc-sheet::after {
  top: 54px;
}

.doc-sheet-1 {
  transform: rotate(-7deg);
}

.doc-sheet-2 {
  transform: rotate(0deg) translate(8px, 10px);
}

.doc-sheet-3 {
  transform: rotate(7deg) translate(16px, 18px);
}

.land-outline {
  position: absolute;
  left: 26px;
  bottom: 24px;
  width: 140px;
  height: 90px;
  border: 1px dashed rgba(127, 139, 98, 0.55);
  border-radius: 22px;
  transform: rotate(-7deg);
}

.land-outline span {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(127, 139, 98, 0.38);
  border-radius: 16px;
}

.hero-illustration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.illu-card {
  min-height: 136px;
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.34s var(--bezier),
    box-shadow 0.34s var(--bezier),
    background-color 0.34s ease;
}

.illu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(126, 89, 68, 0.11);
  background: linear-gradient(180deg, #ffffff, #f8f0e7);
}

.illu-card svg {
  width: 42px;
  height: 42px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.32s ease, stroke 0.32s ease;
}

.illu-card span {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
}

.illu-card:hover svg {
  transform: rotate(-5deg) scale(1.05);
  stroke: var(--accent-dark);
}

.hero-side-note {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.79rem;
  font-weight: 700;
}

.hero-side-note h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--text-strong);
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-soft);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 6px rgba(182, 132, 66, 0.08);
}

.trust-strip {
  padding: 28px 0;
  background: rgba(255, 252, 248, 0.88);
  border-top: 1px solid rgba(234, 223, 211, 0.9);
  border-bottom: 1px solid rgba(234, 223, 211, 0.9);
  backdrop-filter: blur(8px);
}

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

.trust-item {
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
  border: 1px solid var(--line);
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-strong);
}

.trust-item span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.about-grid,
.solution-grid,
.lead-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-card {
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.feature-boxes,
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-box,
.problem-card,
.service-card,
.step-card,
.audience-card,
.contact-card,
.stat-card,
.price-card,
.team-card {
  padding: 28px;
}

.feature-box h3,
.problem-card h3,
.service-card h3,
.step-card h3,
.audience-card h3,
.contact-card h3,
.form-card h3,
.mini-form-card h3,
.solution-panel h3,
.price-card h3,
.stat-card h3,
.team-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.52rem;
  line-height: 1.16;
  color: var(--text-strong);
}

.feature-box p,
.problem-card p,
.service-card p,
.step-card p,
.audience-card p,
.contact-card p,
.form-card p,
.mini-form-card p,
.price-card p,
.stat-card p,
.team-card p {
  margin: 0;
  color: var(--text-soft);
}

.icon-card,
.problem-card,
.service-card,
.step-card,
.audience-card,
.contact-card,
.price-card,
.stat-card,
.team-card {
  transition:
    transform 0.34s var(--bezier),
    box-shadow 0.34s var(--bezier),
    background-color 0.34s ease;
}

.icon-card:hover,
.problem-card:hover,
.service-card:hover,
.step-card:hover,
.audience-card:hover,
.contact-card:hover,
.price-card:hover,
.stat-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fcf3eb, #fffaf6);
  border: 1px solid rgba(184, 107, 75, 0.12);
  transition: transform 0.32s ease, background-color 0.32s ease;
}

.icon-card:hover .icon-wrap,
.contact-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.04);
  background: linear-gradient(180deg, #f6e5da, #fff8f1);
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease;
}

.icon-card:hover .icon-wrap svg,
.contact-card:hover .icon-wrap svg {
  stroke: var(--accent-dark);
}

.regions {
  margin-top: 36px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 247, 241, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.regions-title {
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-strong);
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.problems-grid,
.audience-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.service-card-wide {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  min-height: 440px;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(64, 43, 35, 0.04), rgba(92, 64, 55, 0.76));
  color: #ffffff;
}

.service-overlay h3,
.service-overlay p {
  color: #ffffff;
}

.stats-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 235, 224, 0.88), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(237, 241, 229, 0.76), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-cream) 100%);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.92);
  position: relative;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: -10px;
  width: 1px;
  background: var(--line);
}

.stat-card:last-child::after {
  display: none;
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent);
  font-weight: 700;
}

.stat-value.plain {
  color: var(--text-strong);
}

.stat-label {
  color: var(--text-soft);
  font-weight: 600;
}

.progress-ring {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg,
.ring-fill {
  fill: none;
  stroke-width: 7;
}

.ring-bg {
  stroke: #efe3d7;
}

.ring-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  transition: stroke-dashoffset 1.2s var(--bezier);
}

.progress-bar {
  width: 120px;
  height: 10px;
  border-radius: 999px;
  background: #efe6dc;
  overflow: hidden;
  position: relative;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9c2a1, var(--accent));
  transition: width 1.2s var(--bezier);
}

.solution-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.solution-content p + p {
  margin-top: 16px;
}

.solution-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,247,241,0.96));
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 6px rgba(182, 132, 66, 0.08);
}

.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f6 100%);
}

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

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(226, 212, 199, 0.92);
}

.price-card.featured {
  border-color: rgba(184, 107, 75, 0.24);
  box-shadow: 0 24px 48px rgba(184, 107, 75, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fbf4ee 100%);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-card-head {
  padding-right: 84px;
  margin-bottom: 14px;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.45rem;
  line-height: 1.05;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.price-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.price-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.team-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #fffefe 100%);
}

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

.team-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,247,241,0.96));
}

.team-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(126, 89, 68, 0.08);
  background: #fff;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-soft {
  background: linear-gradient(180deg, #fffaf5, #f5ebdf);
  display: grid;
  place-items: center;
}

.team-photo-placeholder svg {
  width: 54px;
  height: 54px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-role {
  margin-bottom: 14px !important;
  color: var(--muted) !important;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 14px;
}

.team-role::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-num {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbf1e8, #fffaf5);
  color: var(--accent-dark);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(184, 107, 75, 0.1);
}

.lead-content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.lead-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.form-card,
.mini-form-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.form-card::before,
.mini-form-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(244, 226, 216, 0.5), rgba(244, 226, 216, 0));
  pointer-events: none;
}

.form-card::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -30px;
  width: 180px;
  height: 60px;
  border-top: 1px solid rgba(184, 107, 75, 0.14);
  border-radius: 999px;
  transform: rotate(-8deg);
  pointer-events: none;
}

.contact-form,
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-strong);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--text-strong);
  outline: none;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

input::placeholder,
textarea::placeholder {
  color: #a99386;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 107, 75, 0.12);
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 126px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.faq-question {
  width: 100%;
  padding: 24px 26px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 600;
  color: var(--text-strong);
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.25s ease;
}

.faq-icon::before {
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: scaleY(0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--text-soft);
}

.final-cta {
  padding-top: 46px;
}

.final-cta-box {
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 20%, rgba(244, 226, 216, 0.78), transparent 24%),
    radial-gradient(circle at 14% 80%, rgba(237, 241, 229, 0.84), transparent 24%),
    linear-gradient(135deg, #ffffff, #fbf6f1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contacts-section {
  padding-top: 58px;
}

.contact-card a {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-strong);
}

.contacts-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-card {
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
}

.map-placeholder {
  min-height: 430px;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(237, 241, 229, 0.76), transparent 26%),
    radial-gradient(circle at 80% 24%, rgba(244, 226, 216, 0.72), transparent 24%),
    linear-gradient(135deg, #fffdfb, #f8f1e8 60%, #fbf6ef);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 124, 101, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 124, 101, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.map-pin-box {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.map-pin-box::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(184, 107, 75, 0.08);
}

.map-pin-box strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-strong);
}

.map-pin-box span {
  display: block;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.site-footer {
  background: linear-gradient(180deg, #fbf6f0, #f4ebe2);
  color: var(--text-soft);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
  padding: 58px 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  margin-bottom: 10px;
  color: var(--text-strong);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4,
.footer-contact h4 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--text-soft);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  transition: background-color 0.32s ease, transform 0.32s ease, border-color 0.32s ease;
}

.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease, transform 0.28s ease;
}

.socials a:hover svg {
  stroke: #ffffff;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  transform: translateY(140%);
  transition: transform 0.35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(1120px, 100%);
  background: rgba(255, 251, 247, 0.96);
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(126, 89, 68, 0.16);
  backdrop-filter: blur(12px);
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner__inner a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.cookie-btn {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .solution-grid,
  .lead-grid,
  .contacts-grid,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .services-grid,
  .problems-grid,
  .audience-grid,
  .steps-grid,
  .trust-grid,
  .stats-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-card::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-phone,
  .header-actions .btn {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 9vw, 3.9rem);
  }

  .hero-illustration-grid,
  .feature-boxes,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 360px;
  }

  .trust-item::after {
    display: none;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-illustration-main {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .services-grid,
  .problems-grid,
  .audience-grid,
  .steps-grid,
  .trust-grid,
  .stats-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 1;
    min-height: 320px;
  }

  .hero-actions,
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-point,
  .lead-highlight,
  .region-tags span {
    width: 100%;
    justify-content: center;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .final-cta-box,
  .form-card,
  .mini-form-card,
  .feature-box,
  .problem-card,
  .service-card,
  .step-card,
  .audience-card,
  .contact-card,
  .price-card,
  .stat-card,
  .team-card {
    padding: 22px;
  }

  .hero-illustration {
    padding: 18px;
  }

  .price-card-head {
    padding-right: 0;
  }

  .price-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .map-placeholder {
    min-height: 340px;
  }

  .hero-wave-1,
  .hero-wave-2,
  .hero-dot {
    display: none;
  }

  .scales-illustration {
    transform: translate(-50%, -50%) scale(0.86);
  }

  .doc-stack {
    right: 16px;
    top: 18px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .land-outline {
    left: 12px;
    bottom: 14px;
    transform: scale(0.88) rotate(-7deg);
    transform-origin: left bottom;
  }

  .logo-text small {
    display: none;
  }
}