*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green-50: #EEF5FF;
  --green-100: #DCEAFE;
  --green-200: #BFDBFE;
  --green-300: #93C5FD;
  --green-400: #60A5FA;
  --green-500: #3B82F6;
  --green-600: #2563EB;
  --green-700: #1D4ED8;
  --green-800: #1E3A8A;
  --green-900: #172554;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --green-light-100: #D4EEE0;
  --green-light-200: #AADCBC;
  --green-light-400: #4CB86A;
  --green-light-500: #28A047;
  --green-light-600: #1A7A34;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --shadow-sm: 0 1px 3px rgba(15, 85, 34, 0.06), 0 1px 2px rgba(15, 85, 34, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 85, 34, 0.08), 0 2px 6px rgba(15, 85, 34, 0.05);
  --shadow-lg: 0 12px 40px rgba(15, 85, 34, 0.12), 0 4px 12px rgba(15, 85, 34, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  /* доп. переменные */
  --border: #c8e6d4;
  --off: #f6faf7;
  --muted: #4a6755;
  --light: #7a9e87;
  --sky-50: #f0f9ff;
  --text: #1c2e22;
  --accent: #2d9147;
  --green-light-100: #d4eed0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--slate-100);
}
::-webkit-scrollbar-thumb {
  background: var(--green-300);
  border-radius: 3px;
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(15, 85, 34, 0.08);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.logo-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--slate-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--green-600);
  background: var(--green-50);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-light-500));
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(31, 140, 59, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(31, 140, 59, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green-600);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  border: 1.5px solid var(--green-200);
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-300);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--slate-600);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  box-shadow: 0 20px 40px rgba(15, 85, 34, 0.1);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  margin-bottom: 20px;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-100);
}
.mobile-menu ul li a:hover {
  color: var(--green-600);
}
.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 72px 24px 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--green-50) 0%, #fff 55%, var(--green-light-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle.c1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-bg-circle.c2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding: 80px 0 60px;
}
.hero-content {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid var(--green-200);
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--slate-800);
  margin-bottom: 20px;
}
h1 .accent {
  color: var(--green-600);
  position: relative;
  display: inline-block;
}
h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-light-400));
  border-radius: 2px;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate-500);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
}
.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-100), var(--green-light-100));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-600);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-card-main h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.hero-card-main p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.working-hours {
  background: var(--green-50);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.wh-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 8px;
}
.wh-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 4px;
}
.wh-row:last-child {
  margin-bottom: 0;
}
.wh-badge {
  background: linear-gradient(90deg, var(--green-500), var(--green-light-500));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-card.fc1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}
.float-card.fc2 {
  bottom: 20px;
  left: -60px;
  animation-delay: 2s;
}
.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon.blue {
  background: var(--green-100);
}
.fc-icon.sky {
  background: var(--green-light-100);
}
.fc-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fc-icon.blue svg {
  stroke: var(--green-600);
}
.fc-icon.sky svg {
  stroke: var(--green-light-600);
}
.fc-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
}
.fc-sub {
  font-size: 11px;
  color: var(--slate-400);
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 88px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
  background: var(--green-50);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--green-100);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.2;
}
.subtitle {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.services {
  background: var(--slate-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--green-100);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-light-400));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.service-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-50), var(--green-light-100));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-500);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.75;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-500);
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-more:hover {
  gap: 10px;
  color: var(--green-600);
}
.svc-arrow {
  font-size: 16px;
}

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--green-100), var(--green-light-100));
  border-radius: var(--radius-xl);
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-illustration {
  width: 200px;
  height: 200px;
  position: relative;
}
.cross-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-500), var(--green-light-500));
  border-radius: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cross-large::before, .cross-large::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 4px;
}
.cross-large::before {
  width: 36px;
  height: 10px;
}
.cross-large::after {
  width: 10px;
  height: 36px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 {
  width: 130px;
  height: 130px;
  border-color: rgba(31, 140, 59, 0.25);
}
.ring-2 {
  width: 180px;
  height: 180px;
  border-color: rgba(31, 140, 59, 0.15);
}
.ring-3 {
  width: 230px;
  height: 230px;
  border-color: rgba(31, 140, 59, 0.08);
}
.about-stat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}
.about-stat-card.sc1 {
  bottom: -16px;
  right: -16px;
}
.about-stat-card.sc2 {
  top: 24px;
  left: -16px;
}
.asc-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-700);
}
.asc-label {
  font-size: 12px;
  color: var(--slate-400);
  margin-top: 2px;
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content .lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate-600);
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}
.feature-list li:last-child {
  border-bottom: none;
}
.fl-icon {
  width: 32px;
  height: 32px;
  background: var(--green-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 2px;
}
.fl-text span {
  font-size: 13px;
  color: var(--slate-400);
}

/* ===== PROCESS ===== */
.process {
  background: linear-gradient(160deg, var(--green-50), #fff, var(--sky-50));
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green-200), var(--green-light-200));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--green-100);
  transition: all 0.3s;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-500), var(--green-light-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(31, 140, 59, 0.3);
}
.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--slate-50);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--green-100);
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star {
  color: var(--green-400);
  font-size: 16px;
}
.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100), var(--green-light-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-600);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
}
.author-date {
  font-size: 12px;
  color: var(--slate-400);
}
.video-block {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 240px;
}
.video-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-text .tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.video-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin: 10px 0 14px;
}
.video-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}
.video-embed {
  background: #000;
  display: flex;
  align-items: stretch;
}
.video-embed iframe {
  width: 100%;
  border: none;
  min-height: 240px;
}

/* ===== CONTACTS ===== */
.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contacts-info {
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.ccard {
  background: var(--green-50);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--green-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.ccard-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.ccard-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ccard h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 6px;
}
.ccard p, .ccard a {
  font-size: 13px;
  color: var(--slate-700);
  text-decoration: none;
  line-height: 1.7;
}
.ccard a:hover {
  color: var(--green-600);
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--green-50);
  border-color: var(--green-300);
  color: var(--green-600);
}
.social-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.map-wrap {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--green-100);
  height: 100%;
  min-height: 420px;
}
.map-placeholder {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}
.map-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-100), var(--green-light-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-500);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-addr {
  text-align: center;
}
.map-addr strong {
  display: block;
  font-size: 15px;
  color: var(--slate-800);
  margin-bottom: 6px;
}
.map-addr span {
  font-size: 13px;
  color: var(--slate-500);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -100px;
  left: -50px;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section .tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.cta-section h2 {
  color: #fff;
  margin: 14px 0 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green-700);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== FOOTER ===== */
footer {
  background: var(--slate-800);
  padding: 56px 24px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo-name {
  color: #fff;
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.35);
}
.footer-desc {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 13px;
  color: var(--slate-300);
  line-height: 1.9;
}
.footer-contact a {
  color: var(--green-300);
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--green-200);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--green-300);
}
.footer-divider {
  height: 1px;
  background: var(--slate-700);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--slate-500);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--green-300);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-desc {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* .about-visual visible on all screens */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-inner {
    grid-template-columns: 1fr;
  }
  .contacts-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item::after {
    display: none;
  }
}
@media(max-width:768px) {
  .nav-links {
    display: none;
  }
  .nav-phone a {
    display: none;
  }
  .nav-phone .btn-primary {
    display: none;
  }
  .burger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .video-inner {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 16px;
  }
  .hero {
    padding: 72px 16px 0;
  }
  .stats {
    padding: 36px 16px;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-num {
    font-size: 36px;
  }
}
@media(max-width:480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
  nav {
    padding: 0 16px;
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(10, 40, 18, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  box-shadow: 0 24px 80px rgba(15, 85, 34, 0.2);
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--slate-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--slate-500);
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--slate-200);
  color: var(--slate-700);
}
.modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light-500);
  margin-bottom: 10px;
  display: block;
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 6px;
  line-height: 1.2;
}
.modal-sub {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 26px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate-800);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--green-light-400);
  box-shadow: 0 0 0 3px rgba(76, 184, 106, 0.12);
}
.form-input::placeholder {
  color: var(--slate-300);
}
textarea.form-input {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-light-500));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(31, 140, 59, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(31, 140, 59, 0.4);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 11px;
  color: var(--slate-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
}
.form-error {
  background: #fef2f2;
  color: #dc2626;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid #fecaca;
  display: none;
}

/* floating call button */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.25s;
  animation: fabPulse 3s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
  }
}
.fab:hover {
  transform: scale(1.1);
}
.fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* scroll-reveal */

/* scroll-reveal через animation — работает на file:// и любом сервере */
.sr {
  animation: srFadeUp .6s ease both;
}
.sr:nth-child(2) {
  animation-delay: .1s;
}
.sr:nth-child(3) {
  animation-delay: .2s;
}
@keyframes srFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ ФОТО ЦЕНТРА ═══ */
.clinic-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.clinic-photo {
  position: relative;
  overflow: hidden;
  background: var(--green-50, #f2faf5);
}
.clinic-photo.main {
  grid-row: 1/3;
}
.clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.clinic-photo:hover img {
  transform: scale(1.04);
}
.clinic-photo .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7a9e87;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #f2faf5, #d6f0e0);
}
.clinic-photo .ph svg {
  width: 32px;
  height: 32px;
  stroke: #a8d8b8;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.clinic-photo .ph small {
  font-size: 10px;
  color: #a8d8b8;
  font-family: monospace;
}
@media(max-width:768px) {
  .clinic-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .clinic-photo.main {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}

/* ═══ ВРАЧИ ═══ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.doctor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border, #d0e8d9);
  transition: all 0.3s;
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 110, 49, .12);
  border-color: #a8d8b8;
}
.doctor-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f2faf5, #d6f0e0);
  overflow: hidden;
  position: relative;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}
.doctor-card:hover .doctor-photo img {
  transform: scale(1.04);
}
.no-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7a9e87;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 12px;
}
.no-photo svg {
  width: 48px;
  height: 48px;
  stroke: #a8d8b8;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
}
.no-photo small {
  font-size: 10px;
  color: #a8d8b8;
  font-family: monospace;
}
.doctor-info {
  padding: 20px 22px 24px;
}
.doctor-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2d9147;
  background: #f2faf5;
  border: 1px solid #d6f0e0;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.doctor-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a24;
  margin-bottom: 7px;
  line-height: 1.2;
}
.doctor-desc {
  font-size: 13px;
  color: #4a6755;
  line-height: 1.75;
}
@media(max-width:1024px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:600px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

