/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --forest:     #071a0e;
  --emerald:    #0f3320;
  --jade:       #1a5c38;
  --green:      #2d7a52;
  --leaf:       #3da06b;
  --mint:       #6fcf97;
  --sage:       #b7e4c7;
  --pale:       #e8f5ee;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --earth:      #2e1a0e;
  --bark:       #6b4226;
  --sand:       #c8a97e;
  --cream:      #f7f9f4;
  --white:      #ffffff;
  --g50:        #f4f8f5;
  --g100:       #e8f0ea;
  --g200:       #cdddd1;
  --g400:       #7fa88a;
  --g600:       #3d6047;
  --g800:       #132118;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --r4:   4px;
  --r8:   8px;
  --r12:  12px;
  --r16:  16px;
  --r24:  24px;
  --r999: 999px;

  --sh-sm:    0 2px 8px rgba(0,0,0,.08);
  --sh-md:    0 8px 32px rgba(0,0,0,.12);
  --sh-lg:    0 20px 60px rgba(0,0,0,.18);
  --sh-green: 0 12px 40px rgba(29,92,56,.40);
  --sh-gold:  0 8px 28px rgba(201,168,76,.35);

  --glass:     rgba(255,255,255,.06);
  --glass-b:   1px solid rgba(255,255,255,.14);
  --glass-wh:  rgba(255,255,255,.82);

  --dur: .35s;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--g800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g50); }
::-webkit-scrollbar-thumb { background: var(--g200); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--leaf); }

/* Selection */
::selection { background: var(--sage); color: var(--emerald); }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);    font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem);  font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); }
p  { line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; }
section { padding: 100px 0; }

/* ===== CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform .15s var(--ease), width .2s, height .2s;
  transform: translate(-50%,-50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--leaf);
  border-radius: 50%; opacity: .5;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform .35s var(--ease), width .2s, height .2s, opacity .2s;
  transform: translate(-50%,-50%);
}
body:hover .cursor { transform: translate(-50%,-50%) scale(1); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-sans); font-size: .88rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background .28s var(--ease), border-color .28s var(--ease),
              color .28s var(--ease);
  white-space: nowrap;
  position: relative;
}

/* ── PRIMARY: белая — для тёмных секций (hero, cta, диагностика) ── */
.btn-gold {
  background: var(--white);
  color: var(--forest);
  border: none;
  box-shadow: 0 2px 12px rgba(255,255,255,.12), 0 0 0 0 rgba(255,255,255,.2);
}
.btn-gold:hover {
  background: var(--sage);
  color: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255,255,255,.15);
}
.btn-gold:active { transform: translateY(-1px); }

/* ── GHOST: прозрачная — второстепенная на тёмных секциях ── */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-outline:active { transform: translateY(-1px); }

/* ── FOREST: тёмная — для светлых секций (карточки, формы) ── */
.btn-primary,
.btn-dark {
  background: var(--forest);
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(7,26,14,.18);
}
.btn-primary:hover,
.btn-dark:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(7,26,14,.28);
  border-color: rgba(111,207,151,.2);
}
.btn-primary:active,
.btn-dark:active { transform: translateY(-1px); }

/* Кнопка внутри тёмной формы заказа — белая */
.order-form-box .btn-gold {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(255,255,255,.1);
}
.order-form-box .btn-gold:hover {
  background: var(--sage);
  color: var(--forest);
  box-shadow: 0 12px 32px rgba(255,255,255,.15);
}

/* Кнопки в report status-bar */
.btn-report-action {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-report-action:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}

/* ── SIZES ── */
.btn-sm  { padding: 10px 22px; font-size: .78rem; letter-spacing: .05em; }
.btn-lg  { padding: 17px 40px; font-size: .92rem; }
.btn-xl  { padding: 19px 48px; font-size: .95rem; letter-spacing: .07em; }
.btn-block { width: 100%; justify-content: center; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: var(--r999);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.badge-green  { background: var(--pale); color: var(--jade); border: 1px solid var(--sage); }
.badge-gold   { background: rgba(201,168,76,.12); color: var(--bark); border: 1px solid rgba(201,168,76,.3); }
.badge-white  { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }

/* ===== STATUS PILLS ===== */
.status { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: var(--r999); font-size: .82rem; font-weight: 600; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-ok   { background: #e6f4ec; color: #1e7a3e; }
.status-warn { background: #fef8e7; color: #b06f00; }
.status-bad  { background: #fdecea; color: #b71c1c; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: all .4s var(--ease);
}
.header.scrolled {
  background: rgba(10,26,17,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.logo img {
  height: 40px; width: auto;
  display: block;
  transition: opacity var(--dur);
}
.logo:hover img { opacity: .82; }
.footer-brand .logo img { height: 36px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 18px; border-radius: var(--r8);
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all var(--dur);
}
.nav a:hover,
.nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav a.active { color: var(--mint); }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none; background: none; border: none;
  width: 40px; height: 40px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--r8); background: rgba(255,255,255,.08);
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--white); border-radius: 99px;
  transition: all var(--dur);
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,26,14,.88) 0%,
    rgba(15,51,32,.82) 40%,
    rgba(26,92,56,.55) 75%,
    rgba(15,51,32,.70) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 80px; align-items: center;
  padding: 140px 0 100px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-line { width: 40px; height: 2px; background: var(--gold); }
.eyebrow-text { font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--mint); }

.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.72);
  max-width: 520px; margin-bottom: 44px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, var(--leaf), var(--jade));
  margin-left: -10px; display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .85rem; color: rgba(255,255,255,.65); }
.trust-text strong { color: var(--white); }

/* Hero search glass card */
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.hero-card-title {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--white); margin-bottom: 6px;
}
.hero-card-sub { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 28px; }

.glass-input {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r8);
  color: var(--white);
  padding: 13px 16px; width: 100%;
  font-size: .95rem;
  transition: all var(--dur);
}
.glass-input::placeholder { color: rgba(255,255,255,.4); }
.glass-input:focus {
  outline: none;
  background: rgba(255,255,255,.13);
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(111,207,151,.2);
}
.glass-input option { background: var(--emerald); color: var(--white); }

.glass-label { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 500; margin-bottom: 6px; display: block; letter-spacing: .04em; }

.card-sep { height: 1px; background: rgba(255,255,255,.1); margin: 24px 0; }

.mini-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r8); overflow: hidden; }
.mini-stat { background: rgba(255,255,255,.05); padding: 14px 12px; text-align: center; }
.mini-stat-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--mint); }
.mini-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; line-height: 1.3; }

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  z-index: 2; animation: bobble 2s ease-in-out infinite;
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--emerald);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label-line { width: 32px; height: 2px; background: var(--gold); }
.section-label-text { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--jade); }

.section-header { margin-bottom: 64px; }
.section-header h2 { color: var(--forest); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--g600); max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== STATS ===== */
.stats-section {
  background: var(--cream);
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--g100); border-radius: 20px; overflow: hidden; }
.stat-block {
  background: var(--white);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background var(--dur);
}
.stat-block:hover { background: var(--pale); }
.stat-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--jade));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur);
}
.stat-block:hover::before { transform: scaleX(1); }
.stat-icon { font-size: 1.8rem; margin-bottom: 16px; }
.stat-num  { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 900; color: var(--forest); line-height: 1; margin-bottom: 8px; }
.stat-label{ font-size: .88rem; color: var(--g600); font-weight: 500; }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }

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

.service-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--g100);
  background: var(--white);
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }

.service-photo {
  height: 220px; overflow: hidden; position: relative;
  background: var(--g100);
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,26,14,.6) 0%, transparent 60%);
}
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: var(--r999);
  font-size: .75rem; font-weight: 700; color: var(--jade);
  letter-spacing: .06em; text-transform: uppercase;
}
.service-price-tag {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--gold); color: var(--earth);
  padding: 6px 14px; border-radius: var(--r8);
  font-weight: 700; font-size: .9rem;
  box-shadow: var(--sh-gold);
}

.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--pale); border-radius: var(--r8);
  border: 1px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700;
  color: var(--jade); letter-spacing: .04em;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-body h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.2rem; }
.service-body p  { color: var(--g600); font-size: .92rem; flex: 1; margin-bottom: 20px; }

/* На белых карточках — outline-стиль кнопки */
.service-body .btn-dark {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--g200);
  box-shadow: none;
}
.service-body .btn-dark:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 8px 24px rgba(7,26,14,.2);
}

.service-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--g600); }
.service-features li::before { content:''; width:6px;height:6px;border-radius:50%;background:var(--leaf);flex-shrink:0; }

/* ===== WIDE FEATURE ===== */
.feature-wide {
  background: var(--forest);
  border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--sh-lg);
}
.feature-wide-photo {
  position: relative; min-height: 500px;
}
.feature-wide-photo img { width:100%;height:100%;object-fit:cover; }
.feature-wide-photo::after {
  content:''; position:absolute;inset:0;
  background:linear-gradient(to right, transparent 60%, var(--forest) 100%);
}
.feature-wide-content {
  padding: 64px 56px; display: flex; flex-direction: column; justify-content: center;
}
.feature-wide-content h2 { color: var(--white); margin-bottom: 20px; }
.feature-wide-content p  { color: rgba(255,255,255,.65); margin-bottom: 36px; font-size: 1.05rem; line-height: 1.8; }
.feature-list { list-style: none; margin-bottom: 40px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,.75); font-size: .95rem;
}
.feature-list-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(111,207,151,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  border: 1px solid rgba(111,207,151,.2);
}

/* ===== STEPS ===== */
.steps-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 44px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g200), var(--g200), transparent);
  z-index: 0;
}
.step-card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 20px;
  padding: 36px 28px; text-align: center;
  box-shadow: var(--sh-sm);
  transition: all var(--dur) var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--jade));
  color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(61,160,107,.4);
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.1rem; }
.step-card p  { color: var(--g600); font-size: .88rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--forest); }
.testimonials-section .section-label-text { color: var(--mint); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p  { color: rgba(255,255,255,.55); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: all var(--dur);
}
.testimonial-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold-light); letter-spacing: 3px; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-text { font-size: .97rem; line-height: 1.8; color: rgba(255,255,255,.75); margin-bottom: 28px; font-style: italic; font-family: var(--font-serif); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--jade));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  border: 2px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 600; color: var(--white); font-size: .93rem; }
.testimonial-place { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--jade) 0%, var(--emerald) 100%);
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(111,207,151,.2), transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; left: -100px; bottom: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.cta-content p  { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--g800); letter-spacing: .03em; }
.form-label .req { color: var(--leaf); }

.form-control {
  padding: 13px 16px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r8); font-size: .95rem; color: var(--g800);
  background: var(--white);
  transition: all var(--dur);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(61,160,107,.12);
}
.form-control::placeholder { color: var(--g400); }
textarea.form-control { min-height: 130px; resize: vertical; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ===== SEARCH FORM ===== */
.search-section { background: var(--g50); padding: 0; margin-top: -1px; }
.search-wrap {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow: var(--sh-lg);
  margin: -60px auto 0;
  position: relative; z-index: 10;
  max-width: 900px;
  border: 1px solid var(--g100);
}
.search-wrap h2 { color: var(--forest); font-size: 1.8rem; margin-bottom: 8px; }
.search-wrap p  { color: var(--g600); margin-bottom: 32px; }
.search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; align-items: end; }

/* ===== REPORT PAGE ===== */
.report-hero {
  position: relative; padding: 120px 0 80px;
  background: var(--forest);
  overflow: hidden;
}
.report-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center;
  opacity: .2;
}
.report-hero-content { position: relative; z-index: 2; }

.report-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.report-meta-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r999); padding: 5px 14px;
  font-size: .8rem; color: rgba(255,255,255,.7);
}

.report-layout { display: grid; grid-template-columns: 320px 1fr; gap: 32px; padding: 56px 0; }

.sidebar-card {
  background: var(--white); border-radius: 20px;
  padding: 28px; box-shadow: var(--sh-sm);
  border: 1px solid var(--g100);
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g600); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--g100);
}

.health-meter { text-align: center; padding: 8px 0 16px; }
.health-circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(var(--leaf) 0deg, var(--leaf) calc(3.6deg * var(--val,87)), var(--g100) calc(3.6deg * var(--val,87)));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.health-circle::after {
  content: ''; position: absolute;
  inset: 10px; border-radius: 50%; background: var(--white);
}
.health-val {
  position: relative; z-index: 1;
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--forest);
}
.health-label { font-size: .85rem; color: var(--g600); }

.health-bar { margin-bottom: 14px; }
.health-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--g600); margin-bottom: 5px; }
.health-bar-track { height: 7px; background: var(--g100); border-radius: 99px; overflow: hidden; }
.health-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--mint), var(--leaf)); transition: width .8s var(--ease); }
.health-bar-fill.amber { background: linear-gradient(90deg,#ffe082,#ffb300); }
.health-bar-fill.red   { background: linear-gradient(90deg,#ef9a9a,#e53935); }

.plant-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--g100); font-size: .88rem;
}
.plant-row:last-child { border-bottom: none; }
.plant-row .lbl { color: var(--g600); }
.plant-row .val { font-weight: 600; }

.report-block {
  background: var(--white); border-radius: 20px;
  padding: 32px; box-shadow: var(--sh-sm);
  border: 1px solid var(--g100);
  margin-bottom: 24px;
}
.report-block-title {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  color: var(--forest); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 2px solid var(--pale);
  display: flex; align-items: center; gap: 10px;
}

.reco-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--g50); border-radius: var(--r12);
  padding: 16px 20px; margin-bottom: 12px;
  border-left: 3px solid var(--leaf);
  transition: all var(--dur);
}
.reco-item:hover { background: var(--pale); border-left-color: var(--jade); }
.reco-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.reco-title { font-weight: 600; font-size: .95rem; color: var(--forest); margin-bottom: 4px; }
.reco-desc  { font-size: .87rem; color: var(--g600); line-height: 1.6; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 20px; padding: 16px 0; position: relative; }
.tl-item:not(:last-child)::after {
  content: ''; position: absolute; left: 11px; top: 44px;
  width: 2px; bottom: 0; background: var(--g100);
}
.tl-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  border: 2px solid var(--leaf); background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.tl-dot.filled { background: var(--leaf); }
.tl-dot.filled::after { content: ''; width:8px;height:8px;border-radius:50%;background:var(--white); }
.tl-date   { font-size: .78rem; color: var(--g400); margin-bottom: 3px; font-weight: 500; }
.tl-title  { font-weight: 600; color: var(--g800); font-size: .93rem; }
.tl-desc   { font-size: .85rem; color: var(--g600); margin-top: 4px; line-height: 1.6; }

/* Photos grid */
.photos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.photo-card {
  aspect-ratio: 1; border-radius: var(--r12); overflow: hidden;
  background: var(--pale); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 1px solid var(--g100);
  transition: all var(--dur);
  position: relative;
}
.photo-card:hover { transform: scale(1.04); box-shadow: var(--sh-md); }
.photo-card img { width:100%;height:100%;object-fit:cover; transition: transform .4s; }
.photo-card:hover img { transform: scale(1.08); }
.photo-card-overlay {
  position: absolute; inset: 0; background: rgba(7,26,14,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--dur);
  color: var(--white); font-size: 1.5rem;
}
.photo-card:hover .photo-card-overlay { opacity: 1; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th {
  background: var(--pale); color: var(--jade);
  font-weight: 700; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.data-table th:first-child { border-radius: 8px 0 0 8px; }
.data-table th:last-child  { border-radius: 0 8px 8px 0; }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--g100); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--g50); }
.data-table .val-bold { font-weight: 700; color: var(--forest); }

/* ===== DIAGNOSTICS ===== */
.diag-hero {
  position: relative; padding: 140px 0 80px;
  background: var(--forest); overflow: hidden;
}
.diag-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center;
  opacity: .25;
}
.diag-hero-content { position: relative; z-index: 2; }
.diag-hero h1 { color: var(--white); margin-bottom: 16px; }
.diag-hero p  { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 560px; }

.order-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }

.check-card {
  background: var(--white); border: 1.5px solid var(--g100);
  border-radius: 16px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px; cursor: pointer;
  transition: all var(--dur); margin-bottom: 12px; position: relative;
}
.check-card:hover { border-color: var(--sage); background: var(--g50); }
.check-card.selected { border-color: var(--leaf); background: var(--pale); }
.check-card.selected::after {
  content: '✓'; position: absolute; top: 14px; right: 16px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--leaf); color: var(--white);
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.check-card input { display: none; }
.check-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--pale); border: 1px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: .9rem; font-weight: 700;
  color: var(--jade); letter-spacing: .04em;
  flex-shrink: 0;
  transition: background var(--dur), color var(--dur);
}
.check-card.selected .check-card-icon { background: rgba(61,160,107,.15); color: var(--jade); }
.check-card h4 { color: var(--forest); margin-bottom: 3px; font-size: 1rem; }
.check-card p  { color: var(--g600); font-size: .83rem; line-height: 1.5; }
.check-card-price { margin-left: auto; font-weight: 700; color: var(--bark); white-space: nowrap; padding-left: 16px; flex-shrink: 0; font-size: .95rem; }

.order-form-box {
  background: var(--forest); border-radius: 24px; padding: 40px;
  box-shadow: var(--sh-green); position: sticky; top: 100px;
}
.order-form-box h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.order-form-box .sub { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 32px; }

.total-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r12); padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.total-lbl { font-size: .85rem; color: rgba(255,255,255,.55); }
.total-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--mint); }

/* ===== CONTACTS ===== */
.contacts-hero {
  position: relative; padding: 140px 0 80px;
  background: var(--emerald); overflow: hidden;
}
.contacts-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1530836369250-ef72a3f5cda8?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center;
  opacity: .18;
}
.contacts-hero-content { position: relative; z-index: 2; }
.contacts-hero h1 { color: var(--white); margin-bottom: 14px; }
.contacts-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }

.contacts-layout { display: grid; grid-template-columns: 1fr 500px; gap: 64px; align-items: start; padding: 80px 0; }

.contact-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 0; border-bottom: 1px solid var(--g100);
}
.contact-card:last-child { border-bottom: none; }
.contact-icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  border: 1px solid var(--sage);
}
.contact-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--g600); margin-bottom: 4px; }
.contact-card p  { font-weight: 600; color: var(--forest); }
.contact-card small { color: var(--g600); font-size: .83rem; display: block; margin-top: 2px; }

.map-frame {
  border-radius: 20px; overflow: hidden;
  background: var(--pale); height: 250px; margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1.5px solid var(--g100); gap: 10px; color: var(--jade);
  position: relative;
}
.map-frame-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pale) 0%, var(--sage) 100%);
  opacity: .5;
}
.map-frame-content { position: relative; z-index: 1; text-align: center; }
.map-frame-icon { font-size: 3rem; margin-bottom: 8px; }
.map-frame-text { font-weight: 600; font-size: .95rem; color: var(--jade); }
.map-frame-sub  { font-size: .82rem; color: var(--g600); margin-top: 4px; }

.contact-form-card { background: var(--white); border-radius: 24px; padding: 44px; box-shadow: var(--sh-md); border: 1px solid var(--g100); }
.contact-form-card h2 { color: var(--forest); margin-bottom: 8px; font-size: 1.8rem; }
.contact-form-card p  { color: var(--g600); margin-bottom: 32px; }

.team-section { background: var(--g50); padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: 20px; padding: 36px 28px; text-align: center;
  border: 1px solid var(--g100); transition: all var(--dur);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--jade));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(61,160,107,.35);
  border: 3px solid var(--sage);
}
.team-name   { font-family: var(--font-serif); font-size: 1.1rem; color: var(--forest); margin-bottom: 4px; }
.team-role   { font-size: .82rem; font-weight: 700; color: var(--leaf); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.team-bio    { font-size: .87rem; color: var(--g600); line-height: 1.65; }
.team-exp    { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; background: var(--pale); padding: 5px 14px; border-radius: var(--r999); font-size: .78rem; font-weight: 600; color: var(--jade); }

/* ===== FOOTER ===== */
.footer { background: var(--forest); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.1fr; gap: 64px; padding-bottom: 64px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.8; max-width: 300px; margin-top: 20px; }
.footer-soc { display: flex; gap: 10px; margin-top: 28px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all var(--dur);
}
.soc-btn:hover { background: var(--leaf); border-color: var(--leaf); transform: translateY(-2px); }
.footer-col h4 { color: rgba(255,255,255,.4); font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--dur); }
.footer-col ul a:hover { color: var(--mint); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--mint); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 72px; background: var(--forest);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .2;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 560px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: .82rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb span { opacity: .4; }

/* ===== NOTIFICATION ===== */
.notif {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: var(--forest); color: var(--white);
  padding: 16px 22px; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 12px;
  max-width: 360px; font-size: .92rem;
  transform: translateY(80px) scale(.95); opacity: 0;
  transition: all .35s var(--ease);
  border-left: 3px solid var(--leaf);
}
.notif.show { transform: translateY(0) scale(1); opacity: 1; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.up    { transform: translateY(30px); }
.reveal.left  { transform: translateX(-30px); }
.reveal.right { transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.reveal-d1  { transition-delay: .1s; }
.reveal-d2  { transition-delay: .2s; }
.reveal-d3  { transition-delay: .3s; }
.reveal-d4  { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-content     { grid-template-columns: 1fr; }
  .hero-card        { max-width: 480px; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-wide     { grid-template-columns: 1fr; }
  .feature-wide-photo { min-height: 340px; }
  .report-layout    { grid-template-columns: 1fr; }
  .contacts-layout  { grid-template-columns: 1fr; }
  .order-layout     { grid-template-columns: 1fr; }
  .order-form-box   { position: static; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(7,26,14,.98); backdrop-filter: blur(20px);
    padding: 40px 32px; gap: 4px; z-index: 400;
  }
  .nav.open a { font-size: 1.2rem; padding: 16px; color: rgba(255,255,255,.8); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .search-wrap { margin: -40px 20px 0; padding: 32px 28px; }
  .search-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .hero-content { padding: 120px 0 80px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .search-wrap { margin: 0; border-radius: 0; box-shadow: none; }
}
