
:root{
  --bg:#F6F3EE;
  --accent:#CBBBA0;
  --sage:#6B7D6A;
  --text:#2E2E2E;
  --white:#ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow2: 0 28px 70px rgba(0,0,0,.16);
  --radius: 22px;
  --waGreen:#31c26a;
  --waGreen2:#22b85c; 

  /* ВАЖНО: высота главного хедера из main.html (подстрой 64/72/80) */
  --mainHeaderH: 72px;
  /* высота саб-меню (для scroll-margin-top) */
  --subnavH: 60px;
}

/* *{margin:0;padding:0;box-sizing:border-box;} */
html{scroll-behavior:smooth;}
/* важно: НЕ трогаем body, потому что базовый шаблон может задавать свой фон/шрифты */
/* поэтому стили ниже “мягкие”: применяются к элементам лендинга */

body.is-locked{ overflow:hidden; }

section[id]{ scroll-margin-top: calc(var(--mainHeaderH) + var(--subnavH) + 16px); }

/* ========= helpers ========= */
:root{
  --containerW: 1480px;              /* ширина контента на больших экранах */
  --containerPad: clamp(16px, 3vw, 52px); /* умные отступы: мобила→десктоп */
}

/* единый контейнер */
.wrap{
  max-width: var(--containerW);
  margin: 0 auto;
  padding: 0 var(--containerPad);
}


/* ========= воздух м/у секциями ========= */

.section{padding:32px 0; position:relative;}
.kicker{
  font-size:12px; letter-spacing:3px; color:var(--sage);
  text-transform:uppercase; margin-bottom:18px;
}
.h2{
  font-family:'Playfair Display',serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  margin-bottom:18px;
}
.sub{
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight:300;
  opacity:.9;
  margin-bottom:36px;
}
.p{font-size:16px;opacity:.85;}
.center{text-align:center;}
.mini{font-size:13px; opacity:.75;}
hr.soft{
  border:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,0,0,.12), transparent);
  margin:0;
}

/* ========= top floating nav ========= */
/* 4) бренд тоже можно как пилюлю (чтобы выглядело едино) */
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;

  height: 36px;
  padding: 0 14px;

  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  line-height: 1;
}

/* ================== TOPBAR FIX (просто работает) ================== */

:root{ --subnavH: 60px; } /* высота меню */

.topbar{
  position: sticky;
  top: var(--mainHeaderH);
  z-index: 1200;

  height: var(--subnavH);
  width: 100%;
  display: flex;
  align-items: center;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* лента пунктов */
.toplinks{
  max-width: var(--containerW);
  margin: 0 auto;
  padding: 0 var(--containerPad);

  display: flex;
  align-items: center;
  gap: 10px;

  min-width: 0;
}

/* пункты (пилюли) */
.toplinks a{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  padding: 0 14px;

  border-radius: 999px;
  text-decoration: none;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  color: var(--text);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);

  transition: .25s;
}

.toplinks a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}.topcta{
  display:flex;
  gap:8px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:8px;
  white-space:nowrap;

  /* компактнее */
  height: 36px;
  padding: 0 14px;

  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  line-height:1;                   /* фикс пустоты */
  transition:.35s;
}.pill--ghost{
  color:var(--text);
  background:rgba(255,255,255,.6);
  border:1px solid rgba(0,0,0,.08);
}
.pill--ghost:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.10);}
.pill--main{
  color:#fff;
  background:linear-gradient(135deg, var(--accent), #b9a98e);
  box-shadow: 0 14px 30px rgba(203,187,160,.35);
}
.pill--main:hover{transform:translateY(-3px); box-shadow: 0 18px 45px rgba(203,187,160,.45);}

/* ========= HERO ========= */
.hero{
  min-height:78vh;
  display:flex;
  align-items:center;
  padding:36px 0 40px;
  position:relative;
  background:var(--bg);
  color:var(--text);
}

.hero .container{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:60px;
  width:100%;
}


.left{
  flex:1;
  animation:fadeUp 1.2s ease forwards;
  opacity:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.label{
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:20px;
  color:var(--sage);
  text-transform:uppercase;
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight:600;
  margin-bottom:18px;
  line-height: 1.08;
}
.subtitle{
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom:30px;
  font-weight:300;
  opacity:.92;
}
.features{display:flex;gap:12px;margin-bottom:28px;flex-wrap:wrap;}
.feature{
  font-size:13px;
  opacity:0.85;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  padding:10px 14px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.ctaRow{display:flex;gap:12px;align-items:center;flex-wrap:wrap;}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px 34px;
  border-radius:40px;
  background:linear-gradient(135deg, var(--accent), #b9a98e);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:all .4s ease;
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(203,187,160,.35);
}
.button:hover{transform:translateY(-3px); box-shadow: 0 24px 60px rgba(203,187,160,.48);}
.button--ghost{
  background:rgba(255,255,255,.68);
  color:var(--text);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.07);
}
.button--ghost:hover{transform:translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.10);}

.right{
  flex:1;
  position:relative;
  animation:fadeUp 1.6s ease forwards;
  opacity:0;
  display:flex;
}

.scene{
  width:100%;
  min-height: 520px;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow2);
  transform:perspective(1000px) rotateY(-5deg);
  transition:transform 1s ease, box-shadow .6s ease;
  will-change: transform;
}

.scene img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.scene:hover{transform:perspective(1000px) rotateY(0deg) scale(1.02); box-shadow: 0 38px 90px rgba(0,0,0,.18);}

.floating-badge{
  position:absolute;
  bottom:18px;
  right:18px;
  background:rgba(255,255,255,0.86);
  padding:12px 18px;
  border-radius:30px;
  font-size:13px;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 25px rgba(0,0,0,0.10);
  animation:float 3.2s ease-in-out infinite;
  display:flex; align-items:center; gap:10px;
}
.pulse{
  width:10px;height:10px;border-radius:50%;
  background:#31c26a;
  box-shadow: 0 0 0 0 rgba(49,194,106,.45);
  animation:pulse 1.6s infinite;
}
.heroGlow{
  position:absolute; inset:-180px -180px auto auto;
  width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(203,187,160,.55), transparent 55%);
  filter: blur(10px);
  pointer-events:none;
}
.heroGlow2{
  position:absolute; inset:auto auto -240px -240px;
  width:620px;height:620px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(107,125,106,.25), transparent 60%);
  filter: blur(12px);
  pointer-events:none;
}

/* ========= cards / blocks ========= */
.grid3{display:grid;grid-template-columns:repeat(3, 1fr);gap:22px;}
.card{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(18px);
  opacity:0;
  transition: transform .55s ease, opacity .55s ease, box-shadow .55s ease;
}
.card.in{transform: translateY(0); opacity:1;}
.card:hover{transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0,0,0,.14);}
.cardPad{padding:24px;}
.icon{
  width:52px;height:52px;border-radius:18px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(203,187,160,.35), rgba(107,125,106,.15));
  border:1px solid rgba(0,0,0,.06);
  margin-bottom:14px;
  font-size:22px;
}

/* ========= gallery tiles ========= */
.gallery{display:grid; grid-template-columns:repeat(12, 1fr); gap:18px;}
.tile{
  grid-column: span 4;
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
  cursor:pointer;
}
.tile.in{transform:translateY(0);opacity:1;}
.tile:hover{transform:translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,.16);}
.tile img{width:100%;height:220px;object-fit:cover;display:block;}
.tileBody{padding:18px 18px 20px;}
.tileTop{display:flex; align-items:flex-start; justify-content:space-between; gap:14px;}
.badgePrice{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(203,187,160,.22);
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  font-weight:600;
}
.tile h3{font-family:'Playfair Display',serif;font-size:22px;margin:0 0 6px;}
.tile p{font-size:14px;opacity:.8;margin:0;}
.tile small{display:block;margin-top:10px; font-size:13px; opacity:.85; font-weight:600;}

/* ========= HOW steps ========= */
.steps{ max-width: 860px; margin: 0 auto; display:grid; gap:14px; }
.step{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transform: translateY(18px);
  opacity:0;
  transition: transform .55s ease, opacity .55s ease, box-shadow .55s ease;
}
.step.in{transform:translateY(0);opacity:1;}
.step:hover{transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.14);}
.num{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(203,187,160,.35), rgba(107,125,106,.16));
  border:1px solid rgba(0,0,0,.06);
  flex:0 0 44px;
}
.step h4{margin:2px 0 6px;font-size:16px;}
.step p{margin:0;font-size:14px;opacity:.82;line-height:1.55;}

/* ========= pricing ========= */
.pricing{display:grid;grid-template-columns:repeat(4, 1fr);gap:18px;}
.priceCard{
  background:rgba(255,255,255,.76);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  text-align:left;
  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
  position:relative;
  overflow:hidden;
}
.priceCard.in{transform:translateY(0);opacity:1;}
.priceCard:hover{transform:translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,.16);}
.priceCard .tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(107,125,106,.14);
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  font-weight:700;
}
.priceCard h3{margin:12px 0 8px;font-size:20px;}
.price{font-size:34px;font-weight:800;letter-spacing:-.8px;}
.price small{font-size:14px;font-weight:600;opacity:.7;}
.priceCard ul{list-style:none;margin:14px 0 0;padding:0;}
.priceCard li{font-size:14px;opacity:.82;margin:8px 0; display:flex; gap:10px; align-items:flex-start;}
.check{
  width:18px;height:18px;border-radius:6px;
  background:rgba(49,194,106,.18);
  border:1px solid rgba(49,194,106,.35);
  display:inline-grid; place-items:center;
  font-size:12px;
  flex:0 0 18px;
}
.pop{
  position:absolute; top:16px; right:16px;
  padding:7px 11px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(203,187,160,.30), rgba(203,187,160,.16));
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  font-weight:800;
}

/* ========= QUALITY ========= */
/* ========= QUALITY (FINAL) ========= */
.quality{
  display:grid;
  grid-template-columns: 1fr auto; /* текст + картинка */
  gap:22px;
  align-items:start;               /* важно: не растягивать текст под картинку */
}

/* Текстовая карточка */
.qBox{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:26px;

  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
}
.qBox.in{transform:translateY(0);opacity:1;}
.qBox:hover{transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,.16);}

.qList{margin-top:14px; display:grid; gap:10px;}
.qItem{display:flex; gap:10px; align-items:flex-start; font-size:14px; opacity:.86; line-height:1.55;}

/* Блок картинки (как на скрине 2: не во всю высоту) */
.qImg{
  width: clamp(400px, 34vw, 600px); /* 400–600 */
  height: clamp(420px, 42vw, 600px);

  justify-self:end;                /* прижать вправо */
  border-radius:var(--radius);
  overflow:hidden;
  border: 1px solid rgba(20,20,20,.06);
  box-shadow:
    0 14px 40px rgba(20, 20, 20, .10),
    0 2px 10px rgba(20, 20, 20, .06);

  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
}
.qImg.in{transform:translateY(0);opacity:1;}


.qImg:hover{
  transform: translateY(-10px); 
  box-shadow:
    0 22px 60px rgba(20, 20, 20, .14),
    0 6px 18px rgba(20, 20, 20, .08);
 }

.qImg img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Адаптив: в 1 колонку + картинка по центру */
@media (max-width: 980px){
  .quality{ grid-template-columns: 1fr; }
  .qImg{
    justify-self:center;
    width: min(560px, 100%);
    height: 420px;
  }
}




/* ========= QUALITY (FINAL) ========= */




/* ===== TABLET FIX (992px) ===== */
@media (max-width: 1024px){

  .quality{
    grid-template-columns: 1fr 360px; /* фиксируем колонку картинки */
    gap:20px;
    align-items:start;
  }

  .qImg{
    width:100%;
    height:420px;
    justify-self:end;
  }

}
/* ========= TESTIMONIALS ========= */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.quote{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
}
.quote.in{transform:translateY(0);opacity:1;}
.quote:hover{transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,.16);}
.stars{letter-spacing:2px; font-weight:900; margin-bottom:10px; opacity:.9;}
.who{margin-top:12px; font-size:13px; opacity:.75; font-weight:700;}

/* ========= FAQ ========= */
.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.faqItem{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease;
}
.faqItem.in{transform:translateY(0);opacity:1;}
.faqBtn{
  width:100%;
  border:0;
  background:transparent;
  padding:18px 18px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  font-weight:800;
  text-align:left;
}
.faqBtn span{opacity:.92;}
.faqChevron{
  width:36px;height:36px;
  border-radius:14px;
  background:rgba(0,0,0,.06);
  display:grid; place-items:center;
  transition:.25s;
}
.faqBody{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  border-top:1px solid rgba(0,0,0,.08);
}
.faqBodyInner{padding:14px 18px 18px; font-size:14px; opacity:.85; line-height:1.6;}
.faqItem.is-open .faqChevron{transform:rotate(180deg);}
.faqItem.is-open .faqBody{max-height:420px;}

/* ========= CTA panel ========= */
.footerCta{padding:120px 0 90px; background:var(--bg);}
.ctaPanel{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.06);
  border-radius:calc(var(--radius) + 6px);
  box-shadow: var(--shadow2);
  padding:34px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
  transform: translateY(18px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease;
}
.ctaPanel.in{transform:translateY(0);opacity:1;}
.ctaPanel h2{font-family:'Playfair Display',serif;font-size:44px;margin:0 0 8px;}
.ctaPanel p{margin:0;opacity:.85;}
.ctaBtns{display:flex; gap:12px; justify-content:flex-end; flex-wrap:wrap;}
.smallPrint{margin-top:14px;font-size:12px;opacity:.65;}

/* ====== contact chooser modal ====== */
.mModal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.mModal.is-open{display:flex;}
.mModal__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
}
.mModal__panel{
  position:relative;
  width:min(560px, 100%);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.08);
  border-radius:calc(var(--radius) + 10px);
  box-shadow:0 30px 90px rgba(0,0,0,.22);
  overflow:hidden;
  transform: translateY(16px);
  opacity:0;
  animation: modalIn .35s ease forwards;
  max-height: calc(100vh - 24px);
}
@keyframes modalIn{to{transform:translateY(0);opacity:1;}}
.mModal__head{
  padding:20px 20px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.mModal__title{
  font-family:'Playfair Display',serif;
  font-size:26px;
  margin:0;
  line-height:1.15;
}
.mModal__close{
  border:0;
  background:rgba(0,0,0,.06);
  width:40px;height:40px;
  border-radius:14px;
  cursor:pointer;
  font-size:18px;
  transition:.2s;
}
.mModal__close:hover{transform:translateY(-1px); background:rgba(0,0,0,.09);}
.mModal__body{padding:0 20px 18px;}
.mModal__desc{font-size:14px; opacity:.78; margin:6px 0 14px;}
.mModal__grid{display:grid;grid-template-columns:1fr;gap:10px;}
.mBtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.75);
  text-decoration:none;
  color:var(--text);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  transition:.25s;
}
.mBtn:hover{transform:translateY(-2px); box-shadow:0 20px 44px rgba(0,0,0,.12);}
.mBtn__l{display:flex; align-items:center; gap:12px;}
.mBtn__ic{
  width:44px;height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(0,0,0,.06);
  background:linear-gradient(135deg, rgba(203,187,160,.26), rgba(107,125,106,.12));
  font-size:20px;
}
.mBtn__t{display:flex;flex-direction:column;gap:2px;}
.mBtn__name{font-weight:800; font-size:14px;}
.mBtn__hint{font-size:12px;opacity:.72;}
.mBtn__r{font-size:12px;opacity:.65; font-weight:700;}
.mModal__foot{
  padding:12px 20px 18px;
  border-top:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.75));
}
.mToast{
  display:none;
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(203,187,160,.20);
  border:1px solid rgba(0,0,0,.06);
  font-size:12px;
  opacity:.92;
}
.mToast.is-on{display:block;}

/* ====== gallery item modal ====== */
.gModal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2100;
}
.gModal.is-open{display:flex;}
.gModal__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.30);
  backdrop-filter: blur(8px);
}
.gModal__panel{
  position:relative;
  width:min(920px, 100%);
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.10);
  border-radius:calc(var(--radius) + 12px);
  box-shadow:0 36px 110px rgba(0,0,0,.26);
  overflow:hidden;
  transform: translateY(18px);
  opacity:0;
  animation:gIn .35s ease forwards;
  max-height: calc(100vh - 24px);
}
@keyframes gIn{to{transform:translateY(0);opacity:1;}}
.gModal__close{
  position:absolute;
  top:14px; right:14px;
  border:0;
  background:rgba(0,0,0,.06);
  width:44px;height:44px;
  border-radius:16px;
  cursor:pointer;
  font-size:18px;
  transition:.2s;
  z-index:2;
}
.gModal__close:hover{transform:translateY(-1px); background:rgba(0,0,0,.10);}
.gModal__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 420px;
}
.gModal__img{background:#eee; position:relative;}
.gModal__img img{width:100%;height:100%;object-fit:cover;display:block;}
.gModal__content{
  padding:22px 22px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height: calc(100vh - 24px);
  overflow:auto;
}
.gModal__kicker{font-size:11px;letter-spacing:3px;color:var(--sage);text-transform:uppercase;}
.gModal__title{font-family:'Playfair Display',serif;font-size:34px;line-height:1.1;margin:0;}
.gModal__text{font-size:14px;opacity:.84;line-height:1.55;}
.gModal__chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px;}
.gChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(203,187,160,.16);
  border:1px solid rgba(0,0,0,.08);
  font-size:12px;
  font-weight:700;
  opacity:.95;
}
.gModal__priceRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:6px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.08);
}
.gPrice{display:flex;flex-direction:column;gap:4px;}
.gPrice strong{font-size:24px;letter-spacing:-.3px;}
.gPrice span{font-size:12px;opacity:.72;}
.gActions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.gActions .pill{justify-content:center;}
.gActions .pill--main{padding:12px 14px;}
.gActions .pill--ghost{padding:12px 14px;}
.gHint{font-size:12px;opacity:.7;margin-top:8px;}

/* ========= animations ========= */
@keyframes fadeUp{from{transform:translateY(40px);opacity:0;} to{transform:translateY(0);opacity:1;}}
@keyframes float{0%{transform:translateY(0);} 50%{transform:translateY(-8px);} 100%{transform:translateY(0);}}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(49,194,106,.45);}
  70%{box-shadow:0 0 0 12px rgba(49,194,106,0);}
  100%{box-shadow:0 0 0 0 rgba(49,194,106,0);}
}



/* ========= PARTNERS ========= */
.partnersGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.partnerCard{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.80);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);

  transform: translateY(18px);
  opacity:0;
  transition: transform .55s ease, opacity .55s ease, box-shadow .55s ease;
}

.partnerCard.in{
  transform:translateY(0);
  opacity:1;
}

.partnerCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}

.partnerMedia{
  aspect-ratio: 16 / 10;
  background:#fff;
  overflow:hidden;
}

.partnerMedia img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.partnerBody{
  padding:16px 18px 18px;
}

.partnerBody h3{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.25;
}

.partnerBody p{
  margin:0;
  font-size:14px;
  opacity:.78;
  line-height:1.5;
}

/* =================================== добавила я ============================================================== */
/* =================================== добавила я ============================================================== */

/* WhatsApp CTA = зелёная + “притягивающая” пульсация */
#whHero{
  background: linear-gradient(135deg, var(--waGreen), var(--waGreen2)) !important;
  color:#fff !important;
  border: 1px solid rgba(49,194,106,.35) !important;
  box-shadow: 0 18px 45px rgba(49,194,106,.28) !important;
  position: relative;
  overflow: hidden;
}

/* мягкое “дыхание” + свечение */
#whHero{
  animation: waBreathe 1.6s ease-in-out infinite;
}

/* подсветка-ореол */
#whHero::before{
  content:"";
  position:absolute;
  inset:-16px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 60%);
  opacity:.45;
  pointer-events:none;
}

/* бегущий блик (очень аккуратно) */
#whHero::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width:55%;
  height:160%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: rotate(18deg);
  animation: waShine 2.8s ease-in-out infinite;
  pointer-events:none;
  opacity:.55;
}

#whHero:hover{
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 70px rgba(49,194,106,.35) !important;
}

/* keyframes */
@keyframes waBreathe{
  0%   { box-shadow: 0 18px 45px rgba(49,194,106,.26), 0 0 0 0 rgba(49,194,106,.35); transform: translateY(0); }
  60%  { box-shadow: 0 26px 70px rgba(49,194,106,.34), 0 0 0 14px rgba(49,194,106,0); transform: translateY(-1px); }
  100% { box-shadow: 0 18px 45px rgba(49,194,106,.26), 0 0 0 0 rgba(49,194,106,0); transform: translateY(0); }
}

@keyframes waShine{
  0%   { transform: translateX(0) rotate(18deg); opacity:.0; }
  25%  { opacity:.55; }
  55%  { opacity:.15; }
  100% { transform: translateX(260%) rotate(18deg); opacity:0; }
}

/* уважение reduce motion */
@media (prefers-reduced-motion: reduce){
  #whHero{ animation:none !important; }
  #whHero::after{ animation:none !important; }
}


/* =================================== добавила я ============================================================== */
/* =================================== добавила я ============================================================== */
/* ========= responsive ========= */
@media(max-width:1100px){
  .wrap{padding:0 6%;}
  .pricing{grid-template-columns:repeat(2,1fr);}
  .ctaPanel{grid-template-columns:1fr;}
  .ctaBtns{justify-content:flex-start;}
  .faq{grid-template-columns:1fr;}
  .testimonials{grid-template-columns:1fr;}
  .quality{grid-template-columns:1fr;}
  .partnersGrid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:992px){



  /* остальное оставляем как у тебя */
  .hero .container{
    flex-direction:column;
    text-align:center;
    align-items:stretch;
  }

  .hero h1{font-size:40px;}
  .ctaRow{justify-content:center;}
  .features{justify-content:center;}
  .left,
  .right{
    width:100%;
  }

  .right{
    display:block;
  }

  .scene{
    min-height: unset;
    height: auto;
    aspect-ratio: 4 / 3;
    transform:none;
  }

  .scene img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .grid3{grid-template-columns:1fr;gap:14px;}
  .gallery{grid-template-columns:repeat(6, 1fr);}
  .tile{grid-column:span 6;}

  .gModal__grid{grid-template-columns:1fr;}
  .gModal__img{height:260px;}
  .gActions{justify-content:flex-start;}
  .step{ text-align:left; }
  .partnersGrid{grid-template-columns:repeat(2,1fr);}
}


@media (max-width: 700px){ .pricing{ grid-template-columns: 1fr; } }
@media(max-width:520px){
  
   .scene{
    aspect-ratio: 1 / 1;
  }

  .floating-badge{
    right:10px;
    bottom:10px;
    padding:10px 14px;
    font-size:12px;
  }

  .pill{padding:10px 12px;}
  .hero h1{font-size:34px;}
  .h2{font-size:34px;}

  .ctaRow{ gap:10px; }
  .ctaRow .button{ width:100%; padding:16px 18px; }

  .ctaBtns .pill,
  .ctaRow .pill,
  .gActions .pill{
    width:100%;
    justify-content:center;
  }
  .topcta .pill{ width:auto; }
  .partnersGrid{grid-template-columns:1fr;}
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
  html{scroll-behavior:auto;}
}




/* ===== TOPBAR v2 (не разъезжается) ===== */
:root{
  --tb-pad: 12px;
  --tb-gap: 12px;
}

/* ===== TOPBAR2: только центр + пилюли как .feature ===== */

.topbar2.topbar2--center{
  position: fixed;
  top: 80px;                 /* <-- поставила как ты хочешь */
  left: 18px;
  right: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  
  z-index: 999;

  max-width: calc(100vw - 36px);
  
}

/* контейнер ссылок (если не влезает — горизонтальный скролл) */
.topbar2--center .topbar2__nav{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;

  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.topbar2--center .topbar2__nav::-webkit-scrollbar{ display: none; }

/* ссылки-пилюли как .feature */
.topbar2__chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size:13px;
  font-weight:600;
  letter-spacing:.1px;

  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  padding: 10px 14px;

 

  text-decoration:none;
  color: var(--text);
  white-space:nowrap;
  flex: 0 0 auto;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  opacity:.95;
}

.topbar2__chip:hover{
  opacity:1;
  transform: translateY(-1px);
  box-shadow:
    
    0 1px 0 rgba(255,255,255,.92) inset,
    0 4px 10px rgba(0,0,0,.06);
}

.topbar2__chip:active{
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(0,0,0,.12) inset,
    0 6px 14px rgba(0,0,0,.10);
}
/* ===== адаптив ===== */

@media (max-width: 992px){
  .topbar2.topbar2--center{
    top: 80px;               /* <-- тоже 80px на планшете */
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    padding: 8px 10px;
  }
  .topbar2__chip{
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media (max-width: 520px){
  .topbar2.topbar2--center{
    top: 80px;               /* <-- если на мобиле надо ниже/выше — меняй */
  }
}

.ad-slot{
  width: 100%;
  margin: 22px auto;
  text-align: center;
}

.ad-slot img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.ad-slot--730x90{
  max-width: 730px;
  margin: 22px auto;
}

.ad-slot--730x90 img{
  width: 100%;
  max-width: 730px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.icon img{
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}


.featureMedia{
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(203, 187, 160, .35), rgba(107, 125, 106, .15));
  border: 1px solid rgba(0, 0, 0, .06);
  display: grid;
  place-items: center;
}

.featureMedia img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#quality{
  padding-top: 30px;
}




