
/* ═══ RESET ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Geologica',system-ui,sans-serif;background:#e8f5f8;color:#0d3840;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* ═══ СВЕТЛЫЙ ФОН С ТЕКСТУРОЙ ═══ */
body::before{
  content:'';position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%,rgba(0,185,210,0.18) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%,rgba(0,185,210,0.12) 0%,transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%,rgba(255,255,255,0.6) 0%,transparent 70%),
    linear-gradient(160deg,#d4eef3 0%,#f0f9fb 40%,#e4f4f7 100%);
}

/* ═══ LIQUID GLASS — БАЗОВЫЙ КЛАСС ═══ */
.lg{
  background:linear-gradient(135deg,rgba(255,255,255,0.72) 0%,rgba(255,255,255,0.42) 100%);
  backdrop-filter:saturate(180%) blur(28px);
  -webkit-backdrop-filter:saturate(180%) blur(28px);
  border:1px solid rgba(255,255,255,0.85);
  border-bottom-color:rgba(255,255,255,0.45);
  border-right-color:rgba(255,255,255,0.45);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 0 rgba(0,180,200,0.08) inset,
    0 8px 32px rgba(0,140,160,0.12),
    0 2px 8px rgba(0,0,0,0.06);
}

/* Усиленный liquid glass для hero-форм и карточек */
.lg-heavy{
  background:linear-gradient(145deg,rgba(255,255,255,0.82) 0%,rgba(240,250,252,0.65) 50%,rgba(255,255,255,0.78) 100%);
  backdrop-filter:saturate(200%) blur(36px);
  -webkit-backdrop-filter:saturate(200%) blur(36px);
  border:1.5px solid rgba(255,255,255,0.9);
  border-bottom-color:rgba(255,255,255,0.5);
  border-right-color:rgba(255,255,255,0.5);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 0 rgba(0,180,200,0.1) inset,
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 20px 60px rgba(0,140,160,0.14),
    0 4px 16px rgba(0,0,0,0.07),
    0 1px 3px rgba(0,0,0,0.04);
  position:relative;
}
.lg-heavy::before{
  content:'';position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(135deg,rgba(255,255,255,0.5) 0%,transparent 50%,rgba(0,185,210,0.04) 100%);
  pointer-events:none;
}

/* Тёмный glass для CTA-кнопок */
.lg-dark{
  background:linear-gradient(135deg,rgba(0,155,175,0.85) 0%,rgba(0,120,140,0.9) 100%);
  backdrop-filter:saturate(160%) blur(20px);
  -webkit-backdrop-filter:saturate(160%) blur(20px);
  border:1px solid rgba(255,255,255,0.3);
  border-bottom-color:rgba(255,255,255,0.12);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.4) inset,
    0 -1px 0 0 rgba(0,0,0,0.1) inset,
    0 12px 40px rgba(0,140,160,0.35),
    0 3px 10px rgba(0,0,0,0.12);
}

/* ═══ LAYOUT ═══ */
.wrap{position:relative;z-index:1}
.container{max-width:1160px;margin:0 auto;padding:0 20px}
.section{padding:80px 0}

/* ═══ NAV ═══ */
.nav{
  position:fixed;top:12px;left:12px;right:12px;z-index:1000;
  border-radius:20px;padding:14px 22px;
  background:linear-gradient(135deg,rgba(255,255,255,0.75) 0%,rgba(240,250,252,0.7) 100%);
  backdrop-filter:saturate(180%) blur(24px);
  -webkit-backdrop-filter:saturate(180%) blur(24px);
  border:1px solid rgba(255,255,255,0.88);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 28px rgba(0,130,150,0.12),0 2px 6px rgba(0,0,0,0.05);
  transition:all 0.3s ease;
}
.nav-inner{display:flex;align-items:center;justify-content:space-between}
.nav-brand{font-size:20px;font-weight:900;color:#007d8c;letter-spacing:-0.02em}
.nav-brand span{color:#00b5c8}
.nav-cta{
  background:linear-gradient(135deg,#00b5c8,#007d8c);
  color:#fff;padding:10px 22px;border-radius:100px;
  font-size:13px;font-weight:700;letter-spacing:0.02em;
  box-shadow:0 1px 0 rgba(255,255,255,0.3) inset,0 6px 20px rgba(0,140,160,0.35);
  transition:all 0.25s;
}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 1px 0 rgba(255,255,255,0.3) inset,0 10px 30px rgba(0,140,160,0.45)}

/* ═══ HERO ═══ */
.hero{
  min-height:100svh;display:flex;align-items:center;
  padding:100px 20px 60px;
}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:50px;align-items:center;
  max-width:1160px;margin:0 auto;width:100%;
}
.hero-text{order:1}
.hero-visual{order:2}

/* TEXT */
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  color:#007d8c;margin-bottom:18px;
  padding:6px 16px;border-radius:100px;
  background:rgba(0,181,200,0.1);border:1px solid rgba(0,181,200,0.25);
}
.hero-eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:#00b5c8;animation:dot-blink 2s ease-in-out infinite}
@keyframes dot-blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.8)}}

h1{
  font-size:clamp(44px,6.5vw,78px);font-weight:900;
  line-height:1.0;letter-spacing:-0.03em;
  color:#0d3840;margin-bottom:8px;
}
h1 em{font-style:normal;color:#00a0b5}
.hero-model{
  font-size:clamp(14px,1.8vw,18px);font-weight:500;
  color:#4a8f9a;letter-spacing:0.08em;text-transform:uppercase;
  margin-bottom:20px;
}
.hero-desc{
  font-size:clamp(16px,1.8vw,19px);line-height:1.65;
  color:#2d6e78;max-width:500px;margin-bottom:28px;font-weight:400;
}
.hero-desc strong{color:#0d3840;font-weight:700}

/* PILLS */
.pills{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.pill{
  display:flex;align-items:center;gap:6px;
  font-size:13px;font-weight:600;color:#2d6e78;
  padding:8px 14px;border-radius:100px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(0,181,200,0.3);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  box-shadow:0 1px 0 rgba(255,255,255,0.9) inset,0 2px 8px rgba(0,0,0,0.05);
  transition:all 0.22s;
}
.pill:hover{background:rgba(0,181,200,0.12);border-color:rgba(0,181,200,0.5);color:#007d8c;transform:translateY(-1px)}
.pill-dot{width:8px;height:8px;border-radius:50%;background:#00b5c8;flex-shrink:0}

/* PRICE */
.price-wrap{
  padding:22px 24px;border-radius:20px;margin-bottom:26px;
  background:linear-gradient(135deg,rgba(255,255,255,0.75),rgba(240,250,252,0.65));
  border:1px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 28px rgba(0,130,150,0.1);
  display:inline-flex;align-items:baseline;gap:12px;flex-wrap:wrap;
}
.price-old{font-size:17px;color:#6aacb5;text-decoration:line-through;font-weight:500}
.price-new{font-size:clamp(42px,5.5vw,58px);font-weight:900;color:#007d8c;letter-spacing:-0.03em;line-height:1}
.price-uah{font-size:20px;font-weight:600;color:#4a8f9a}
.price-save{
  padding:5px 12px;border-radius:100px;
  background:rgba(255,90,0,0.1);border:1px solid rgba(255,90,0,0.25);
  font-size:13px;font-weight:700;color:#cc4400;
  animation:pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge{0%,100%{transform:scale(1)}50%{transform:scale(1.04)}}

/* CTA BUTTONS */
.btns{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px}
.btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:16px 32px;border-radius:100px;
  font-family:'Geologica',sans-serif;font-size:15px;font-weight:700;
  cursor:pointer;transition:all 0.28s;letter-spacing:0.01em;
  position:relative;overflow:hidden;
}
.btn::after{
  content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent);
  transition:left 0.5s;
}
.btn:hover::after{left:100%}
.btn-primary{
  background:linear-gradient(135deg,#00c3d8 0%,#009ab0 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,0.35);
  border-bottom-color:rgba(0,120,140,0.3);
  box-shadow:0 2px 0 rgba(255,255,255,0.35) inset,0 -1px 0 rgba(0,0,0,0.08) inset,0 12px 40px rgba(0,150,170,0.4),0 3px 10px rgba(0,0,0,0.1);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 2px 0 rgba(255,255,255,0.35) inset,0 -1px 0 rgba(0,0,0,0.08) inset,0 20px 55px rgba(0,150,170,0.5)}
.btn-secondary{
  background:rgba(255,255,255,0.65);color:#007d8c;
  border:1px solid rgba(0,181,200,0.35);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 4px 14px rgba(0,0,0,0.06);
}
.btn-secondary:hover{background:rgba(0,181,200,0.1);border-color:rgba(0,181,200,0.55);transform:translateY(-2px)}
.btn svg{width:18px;height:18px;flex-shrink:0}

/* TRUST */
.trust{display:flex;gap:20px;flex-wrap:wrap}
.trust-i{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:500;color:#4a8f9a}
.trust-i svg{width:14px;height:14px;color:#00a0b5;flex-shrink:0}

/* ═══ HERO VISUAL ═══ */
.hero-visual{position:relative;display:flex;align-items:center;justify-content:center;padding:20px}

.vis-base{
  position:relative;width:100%;aspect-ratio:1;
  display:flex;align-items:center;justify-content:center;
}
/* Многослойное стеклянное «блюдо» под товаром */
.vis-disc{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:80%;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle at 35% 30%,rgba(255,255,255,0.6),rgba(0,181,200,0.08) 55%,transparent 75%);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.7);
  box-shadow:0 30px 80px rgba(0,140,160,0.15),0 2px 0 rgba(255,255,255,0.8) inset;
  animation:disc-breathe 5s ease-in-out infinite;
}
@keyframes disc-breathe{0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.9}50%{transform:translate(-50%,-50%) scale(1.04);opacity:1}}
.vis-ring{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  border-radius:50%;border:1px solid rgba(0,181,200,0.2);
  animation:ring-spin linear infinite;
}
.vis-ring-1{width:90%;aspect-ratio:1;animation-duration:35s}
.vis-ring-2{width:70%;aspect-ratio:1;animation-duration:22s;animation-direction:reverse;border-style:dashed;opacity:0.7}
.vis-ring::before{
  content:'';position:absolute;top:-5px;left:50%;transform:translateX(-50%);
  width:10px;height:10px;border-radius:50%;
  background:#00b5c8;
  box-shadow:0 0 16px rgba(0,181,200,0.9),0 0 6px rgba(0,181,200,1);
}
@keyframes ring-spin{to{transform:translate(-50%,-50%) rotate(360deg)}}
.vis-glow{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:65%;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle,rgba(0,185,210,0.2) 0%,transparent 65%);
  filter:blur(30px);
  animation:glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse{0%,100%{opacity:0.6;transform:translate(-50%,-50%) scale(1)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.12)}}
.hero-img{
  position:relative;z-index:4;width:85%;
  filter:drop-shadow(0 30px 50px rgba(0,100,120,0.22)) drop-shadow(0 5px 15px rgba(0,0,0,0.1));
  animation:hero-float 7s ease-in-out infinite;
}
@keyframes hero-float{0%,100%{transform:translateY(0) rotate(-2deg)}50%{transform:translateY(-18px) rotate(1deg)}}

/* Скидочный кружок */
.disc-badge{
  position:absolute;top:4%;right:0;z-index:8;
  width:88px;height:88px;border-radius:50%;
  background:linear-gradient(135deg,#ff4400,#cc2200);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:0 2px 0 rgba(255,100,60,0.5) inset,0 12px 35px rgba(220,60,0,0.45);
  animation:badge-spin 12s linear infinite;
}
.disc-badge::before{
  content:'';position:absolute;inset:-5px;border-radius:50%;
  border:1.5px dashed rgba(255,130,80,0.55);
  animation:badge-spin 18s linear infinite reverse;
}
@keyframes badge-spin{to{rotate:360deg}}
.disc-pct{font-family:'Geologica',sans-serif;font-size:26px;font-weight:900;color:#fff;line-height:1}
.disc-lbl{font-size:9px;font-weight:800;color:rgba(255,220,200,0.9);text-transform:uppercase;letter-spacing:0.08em}

/* Floating badges */
.fbadge{
  position:absolute;z-index:6;
  display:flex;align-items:center;gap:7px;
  font-size:12px;font-weight:700;color:#0d3840;
  padding:9px 14px;border-radius:14px;white-space:nowrap;
  background:linear-gradient(135deg,rgba(255,255,255,0.88) 0%,rgba(240,252,255,0.78) 100%);
  border:1px solid rgba(255,255,255,0.9);
  border-bottom-color:rgba(0,181,200,0.15);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  box-shadow:0 2px 0 rgba(255,255,255,0.95) inset,0 6px 20px rgba(0,120,140,0.13),0 2px 6px rgba(0,0,0,0.06);
  animation:fb-float 4s ease-in-out infinite;
}
.fbadge-dot{width:8px;height:8px;border-radius:50%;background:#00b5c8;box-shadow:0 0 8px rgba(0,181,200,0.6);flex-shrink:0}
.fb1{top:8%;left:-5%;animation-delay:0s}
.fb2{top:50%;right:-8%;animation-delay:1.8s}
.fb3{bottom:16%;left:-2%;animation-delay:3.4s}
@keyframes fb-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* ═══ FORM SECTION (TOP) ═══ */
.form-section{
  padding:60px 0;
  background:linear-gradient(135deg,rgba(0,181,200,0.08) 0%,rgba(255,255,255,0.5) 100%);
  border-top:1px solid rgba(255,255,255,0.7);
  border-bottom:1px solid rgba(0,181,200,0.12);
  position:relative;
}
.form-section::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:320px;height:320px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(0,181,200,0.1),transparent 65%);
  filter:blur(40px);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center}
.form-label-title{font-size:clamp(24px,3vw,34px);font-weight:900;letter-spacing:-0.02em;color:#0d3840;margin-bottom:12px;line-height:1.1}
.form-label-title span{color:#00a0b5}
.form-desc{font-size:16px;line-height:1.6;color:#2d6e78;margin-bottom:22px}
.form-checklist{display:flex;flex-direction:column;gap:10px}
.fcheck{display:flex;align-items:center;gap:10px;font-size:15px;color:#2d6e78;font-weight:500}
.fcheck-icon{
  width:22px;height:22px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,#00c3d8,#009ab0);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 10px rgba(0,150,170,0.35);
}
.fcheck-icon svg{width:12px;height:12px;color:#fff}

/* СТЕКЛЯННАЯ КАРТОЧКА ФОРМЫ */
.form-card{
  border-radius:24px;padding:28px;
  background:linear-gradient(145deg,rgba(255,255,255,0.82) 0%,rgba(240,252,255,0.72) 100%);
  backdrop-filter:saturate(200%) blur(32px);
  -webkit-backdrop-filter:saturate(200%) blur(32px);
  border:1.5px solid rgba(255,255,255,0.92);
  border-bottom-color:rgba(255,255,255,0.5);
  box-shadow:
    0 3px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(0,181,200,0.08) inset,
    0 24px 60px rgba(0,130,150,0.14),
    0 6px 20px rgba(0,0,0,0.07);
  position:relative;
}
.form-card::before{
  content:'';position:absolute;top:0;left:15%;right:15%;height:1px;border-radius:0 0 100% 100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.9),transparent);
}
.fprice-display{text-align:center;margin-bottom:20px;padding-bottom:18px;border-bottom:1px solid rgba(0,181,200,0.12)}
.fpd-old{font-size:13px;color:#6aacb5;margin-bottom:4px}
.fpd-old s{font-weight:600}
.fpd-row{display:flex;justify-content:center;align-items:baseline;gap:8px}
.fpd-num{font-size:52px;font-weight:900;color:#007d8c;letter-spacing:-0.03em;line-height:1}
.fpd-uah{font-size:20px;font-weight:600;color:#4a8f9a}
.fpd-badge{
  padding:3px 10px;border-radius:100px;
  background:rgba(255,80,0,0.1);border:1px solid rgba(255,80,0,0.2);
  font-size:12px;font-weight:700;color:#cc4400;margin-left:6px;
}
.inp{
  width:100%;padding:14px 18px;margin-bottom:10px;
  background:rgba(255,255,255,0.7);
  border:1.5px solid rgba(0,181,200,0.22);
  border-radius:14px;font-family:'Geologica',sans-serif;font-size:15px;color:#0d3840;
  outline:none;transition:all 0.25s;
  box-shadow:0 1px 0 rgba(255,255,255,0.8) inset,0 2px 6px rgba(0,0,0,0.04);
}
.inp::placeholder{color:#8bbfc6}
.inp:focus{
  border-color:#00b5c8;background:rgba(255,255,255,0.9);
  box-shadow:0 1px 0 rgba(255,255,255,0.8) inset,0 0 0 3px rgba(0,181,200,0.12);
}
.fnote{text-align:center;font-size:13px;color:#6aacb5;margin-top:10px;font-weight:500}

/* ═══ GALLERY ═══ */
.gal-section{background:linear-gradient(180deg,rgba(255,255,255,0.3),rgba(228,244,248,0.5))}
.gallery{max-width:860px;margin:44px auto 0}
.gal-main{
  border-radius:24px;padding:32px;margin-bottom:14px;
  background:linear-gradient(145deg,rgba(255,255,255,0.78),rgba(228,248,252,0.65));
  border:1.5px solid rgba(255,255,255,0.9);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 16px 48px rgba(0,130,150,0.1);
  position:relative;overflow:hidden;
}
.gal-main::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:220px;height:220px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(0,181,200,0.15),transparent 65%);filter:blur(30px);
}
#gMain{
  position:relative;z-index:2;width:100%;max-height:440px;object-fit:contain;
  filter:drop-shadow(0 16px 28px rgba(0,100,120,0.18));
  transition:opacity 0.2s,transform 0.3s;
}
.gal-main:hover #gMain{transform:scale(1.025)}
.thumbs{display:grid;grid-template-columns:repeat(7,1fr);gap:9px}
.thumb{
  width:100%;height:72px;object-fit:contain;
  background:rgba(255,255,255,0.6);border:1.5px solid rgba(255,255,255,0.7);
  border-radius:10px;padding:5px;cursor:pointer;transition:all 0.2s;
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.thumb:hover{border-color:rgba(0,181,200,0.45);transform:translateY(-2px);box-shadow:0 4px 14px rgba(0,150,170,0.15)}
.thumb.active{border-color:#00b5c8;box-shadow:0 4px 16px rgba(0,181,200,0.25),0 2px 0 rgba(255,255,255,0.9) inset}

/* ═══ SEC TITLE ═══ */
h2{font-size:clamp(28px,4.5vw,50px);font-weight:900;letter-spacing:-0.025em;color:#0d3840;line-height:1.08}
h2 em{font-style:normal;color:#00a0b5}
.sec-sub{font-size:clamp(15px,1.8vw,18px);color:#4a8f9a;margin-top:10px;line-height:1.5}
.tag{
  display:inline-flex;align-items:center;gap:7px;
  font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:#007d8c;margin-bottom:18px;
  padding:5px 15px;border-radius:100px;
  background:rgba(0,181,200,0.08);border:1px solid rgba(0,181,200,0.22);
}

/* ═══ FEATURES GRID ═══ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:48px}
.feat-card{
  border-radius:20px;padding:26px 22px;
  background:linear-gradient(145deg,rgba(255,255,255,0.8) 0%,rgba(240,252,255,0.65) 100%);
  border:1.5px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 28px rgba(0,120,140,0.09),0 2px 6px rgba(0,0,0,0.04);
  transition:all 0.3s;position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;border-radius:20px 20px 0 0;
  background:linear-gradient(90deg,transparent,rgba(0,181,200,0.4),transparent);
}
.feat-card:hover{
  transform:translateY(-5px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 20px 50px rgba(0,140,160,0.15),0 4px 12px rgba(0,0,0,0.07);
  border-color:rgba(0,181,200,0.4);
}
.feat-icon{
  width:50px;height:50px;border-radius:14px;margin-bottom:16px;
  background:linear-gradient(135deg,rgba(0,181,200,0.12),rgba(0,181,200,0.06));
  border:1px solid rgba(0,181,200,0.2);
  display:flex;align-items:center;justify-content:center;
}
.feat-icon svg{width:24px;height:24px;color:#00a0b5}
.feat-n{position:absolute;top:16px;right:16px;font-size:34px;font-weight:900;color:rgba(0,181,200,0.07);letter-spacing:-0.02em}
.feat-card h3{font-size:18px;font-weight:800;letter-spacing:-0.01em;color:#0d3840;margin-bottom:8px}
.feat-card p{font-size:14px;line-height:1.6;color:#4a8f9a}

/* ═══ DETAIL BLOCKS ═══ */
.detail-section{background:linear-gradient(180deg,rgba(228,244,248,0.4),rgba(255,255,255,0.4))}
.det-block{
  display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center;
  margin-top:48px;padding:36px;border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,0.78) 0%,rgba(240,252,255,0.65) 100%);
  border:1.5px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 10px 36px rgba(0,120,140,0.09);
  transition:box-shadow 0.3s,border-color 0.3s;
}
.det-block:hover{border-color:rgba(0,181,200,0.35);box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 20px 56px rgba(0,140,160,0.14)}
.det-block.rev .det-img{order:2}
.det-img{
  border-radius:18px;padding:24px;
  background:linear-gradient(145deg,rgba(228,248,252,0.7),rgba(255,255,255,0.6));
  border:1px solid rgba(255,255,255,0.85);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 24px rgba(0,120,140,0.08);
  position:relative;overflow:hidden;
}
.det-img::before{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:60%;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle,rgba(0,181,200,0.12),transparent 70%);filter:blur(20px);
}
.det-img img{position:relative;z-index:2;width:100%;max-height:250px;object-fit:contain;filter:drop-shadow(0 12px 20px rgba(0,100,120,0.14))}
.det-block h3{font-size:clamp(20px,2.5vw,26px);font-weight:900;letter-spacing:-0.02em;color:#0d3840;margin-bottom:12px}
.det-block p{font-size:15px;line-height:1.65;color:#4a8f9a;margin-bottom:18px}
.det-block p strong{color:#007d8c;font-weight:700}
.det-bullets{display:flex;flex-direction:column;gap:8px}
.det-bullets li{
  display:flex;align-items:flex-start;gap:9px;
  font-size:14px;font-weight:500;color:#2d6e78;
  padding:9px 14px;border-radius:12px;
  background:rgba(0,181,200,0.06);border:1px solid rgba(0,181,200,0.12);
  border-left:2.5px solid #00b5c8;border-radius:0 12px 12px 0;
}
.det-bullets li::before{content:'✓';color:#00a0b5;font-weight:800;flex-shrink:0}

/* ═══ SPECS ═══ */
.specs-bg{background:rgba(255,255,255,0.4)}
.specs-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:2px;
  margin-top:44px;border-radius:20px;overflow:hidden;
  border:1.5px solid rgba(255,255,255,0.8);
  box-shadow:0 8px 30px rgba(0,120,140,0.09);
}
.spec-r{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 22px;font-size:14px;
  background:rgba(255,255,255,0.7);
  border-bottom:1px solid rgba(0,181,200,0.08);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  transition:background 0.2s;
}
.spec-r:hover{background:rgba(0,181,200,0.06)}
.spec-l{color:#4a8f9a;font-weight:500}
.spec-v{font-weight:700;color:#0d3840}
.spec-v.hi{color:#007d8c}

/* ═══ KIT ═══ */
.kit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:44px}
.kit-item{
  border-radius:16px;padding:20px 14px;text-align:center;
  background:linear-gradient(145deg,rgba(255,255,255,0.78),rgba(240,252,255,0.65));
  border:1.5px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 6px 20px rgba(0,120,140,0.07);
  transition:all 0.25s;position:relative;
}
.kit-item:hover{transform:translateY(-4px);box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 14px 36px rgba(0,140,160,0.14);border-color:rgba(0,181,200,0.35)}
.kit-n{
  position:absolute;top:-10px;left:50%;transform:translateX(-50%);
  width:22px;height:22px;border-radius:50%;
  background:linear-gradient(135deg,#00c3d8,#009ab0);color:#fff;
  font-size:11px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 10px rgba(0,150,170,0.4);
}
.kit-icon{font-size:28px;margin:6px 0 10px}
.kit-name{font-size:13px;font-weight:700;color:#0d3840;margin-bottom:4px}
.kit-desc{font-size:12px;color:#6aacb5;line-height:1.4}

/* ═══ COMPARE ═══ */
.cmp-bg{background:linear-gradient(180deg,rgba(228,244,248,0.5),rgba(255,255,255,0.4))}
.cmp-wrap{
  margin-top:44px;border-radius:20px;overflow:hidden;
  border:1.5px solid rgba(255,255,255,0.8);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 10px 36px rgba(0,120,140,0.1);
}
.ct-head,.ct-row{display:grid;grid-template-columns:2fr 1fr 1fr 1fr}
.ct-head .ct-c{
  padding:14px 18px;font-size:12px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;
  background:rgba(255,255,255,0.65);color:#4a8f9a;backdrop-filter:blur(10px);
}
.ct-head .ct-c.ours{background:linear-gradient(135deg,#00c3d8,#009ab0);color:#fff}
.ct-row .ct-c{
  padding:14px 18px;font-size:14px;font-weight:500;
  background:rgba(255,255,255,0.6);
  border-bottom:1px solid rgba(0,181,200,0.08);
  display:flex;align-items:center;justify-content:center;
  color:#4a8f9a;backdrop-filter:blur(8px);
}
.ct-row .ct-c:first-child{justify-content:flex-start;font-weight:700;color:#0d3840;background:rgba(255,255,255,0.75)}
.ct-row .ct-c.ours{background:rgba(0,181,200,0.06)}
.yes{color:#007d8c;font-size:20px;font-weight:800}
.no{color:rgba(200,60,40,0.6);font-size:20px}

/* ═══ REVIEWS ═══ */
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
.rev-card{
  border-radius:20px;padding:24px;
  background:linear-gradient(145deg,rgba(255,255,255,0.78) 0%,rgba(240,252,255,0.65) 100%);
  border:1.5px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 26px rgba(0,120,140,0.08);
  transition:all 0.3s;
}
.rev-card:hover{transform:translateY(-4px);box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 18px 44px rgba(0,140,160,0.14)}
.stars{color:#d4940a;font-size:16px;letter-spacing:2px;margin-bottom:12px}
.rev-text{font-size:14px;color:#2d6e78;line-height:1.65;font-style:italic;margin-bottom:16px}
.rev-author{display:flex;align-items:center;gap:10px;padding-top:14px;border-top:1px solid rgba(0,181,200,0.1)}
.avatar{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:16px;color:#fff;flex-shrink:0}
.rev-name{font-weight:700;font-size:14px;color:#0d3840}
.rev-city{font-size:12px;color:#6aacb5;margin-top:1px}

/* ═══ STEPS ═══ */
.steps-bg{background:rgba(255,255,255,0.35)}
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;position:relative}
.steps-row::before{
  content:'';position:absolute;top:33px;left:17%;right:17%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(0,181,200,0.25) 30%,rgba(0,181,200,0.25) 70%,transparent);
}
.step{text-align:center;position:relative}
.step-n{
  width:66px;height:66px;border-radius:50%;margin:0 auto 16px;
  background:linear-gradient(135deg,#00c3d8,#009ab0);color:#fff;
  font-size:26px;font-weight:900;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 0 rgba(255,200,200,0.2) inset,0 10px 30px rgba(0,150,170,0.35);
  position:relative;z-index:1;
}
.step-icon{font-size:26px;margin-bottom:12px}
.step h3{font-size:18px;font-weight:800;color:#0d3840;margin-bottom:8px}
.step p{font-size:14px;color:#4a8f9a;line-height:1.6}

/* ═══ FAQ ═══ */
.faq-list{max-width:760px;margin:44px auto 0}
details{
  border-radius:14px;margin-bottom:10px;overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,0.78),rgba(240,252,255,0.65));
  border:1.5px solid rgba(255,255,255,0.88);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 4px 14px rgba(0,120,140,0.06);
  transition:all 0.3s;
}
details[open]{border-color:rgba(0,181,200,0.35);box-shadow:0 2px 0 rgba(255,255,255,0.9) inset,0 8px 24px rgba(0,140,160,0.1)}
summary{padding:18px 22px;cursor:pointer;font-weight:700;font-size:16px;color:#0d3840;display:flex;justify-content:space-between;align-items:center;list-style:none;user-select:none}
summary::-webkit-details-marker{display:none}
summary::after{content:'+';font-size:22px;color:#00a0b5;transition:transform 0.2s;font-weight:300}
details[open] summary::after{transform:rotate(45deg)}
.faq-a{padding:0 22px 18px;font-size:15px;color:#4a8f9a;line-height:1.65}

/* ═══ FINAL CTA ═══ */
.fcta{
  text-align:center;padding:80px 20px;
  background:linear-gradient(135deg,rgba(0,181,200,0.1),rgba(228,248,252,0.6));
  position:relative;overflow:hidden;
}
.fcta::before{
  content:'';position:absolute;top:-150px;left:50%;transform:translateX(-50%);
  width:500px;height:500px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(0,181,200,0.12),transparent 65%);filter:blur(40px);
}
.fcta h2{position:relative;z-index:1;margin-bottom:14px}
.fcta p{font-size:17px;color:#4a8f9a;margin-bottom:28px;position:relative;z-index:1}

/* ═══ OFFER FORM (BOTTOM) ═══ */
.offer-bg{background:linear-gradient(180deg,rgba(228,244,248,0.4),rgba(255,255,255,0.5))}
.offer-inner{
  max-width:600px;margin:44px auto 0;text-align:center;
  border-radius:28px;padding:40px 36px;
  background:linear-gradient(145deg,rgba(255,255,255,0.85) 0%,rgba(240,252,255,0.72) 100%);
  border:2px solid rgba(255,255,255,0.92);
  border-bottom-color:rgba(255,255,255,0.55);
  backdrop-filter:saturate(200%) blur(36px);
  -webkit-backdrop-filter:saturate(200%) blur(36px);
  box-shadow:
    0 3px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(0,181,200,0.06) inset,
    0 24px 70px rgba(0,130,150,0.14),
    0 6px 20px rgba(0,0,0,0.07);
  position:relative;
}
.offer-inner::before{
  content:'';position:absolute;top:0;left:15%;right:15%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.95),transparent);
}
.offer-badge{
  display:inline-flex;align-items:center;gap:6px;margin-bottom:16px;
  padding:5px 14px;border-radius:100px;
  background:rgba(255,80,0,0.08);border:1px solid rgba(255,80,0,0.2);
  font-size:11px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;color:#cc4400;
  animation:pulse-badge 2s ease-in-out infinite;
}
.offer-title{font-size:clamp(26px,4vw,40px);font-weight:900;letter-spacing:-0.025em;color:#0d3840;margin-bottom:8px}
.offer-sub{font-size:15px;color:#4a8f9a;margin-bottom:22px}
.offer-sub strong{color:#cc4400;font-weight:800}
.offer-img-wrap{
  border-radius:18px;padding:16px;margin-bottom:20px;
  background:linear-gradient(145deg,rgba(228,248,252,0.6),rgba(255,255,255,0.5));
  border:1px solid rgba(255,255,255,0.85);
  position:relative;overflow:hidden;
}
.offer-img-wrap::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 50% 50%,rgba(0,181,200,0.12),transparent 65%);
  filter:blur(15px);pointer-events:none;
}
.offer-img-wrap img{position:relative;z-index:2;width:100%;max-height:210px;object-fit:contain;filter:drop-shadow(0 12px 20px rgba(0,100,120,0.14))}
.inc-list{text-align:left;margin-bottom:20px}
.inc-i{display:flex;align-items:center;gap:9px;padding:8px 0;border-bottom:1px solid rgba(0,181,200,0.08);font-size:14px;color:#2d6e78;font-weight:500}
.inc-i:last-child{border:none}
.inc-i svg{width:16px;height:16px;color:#00a0b5;flex-shrink:0}
.inc-i strong{color:#0d3840;font-weight:700}
.offer-price{display:flex;align-items:baseline;justify-content:center;gap:10px;margin-bottom:6px}
.op-old{font-size:16px;color:#6aacb5;text-decoration:line-through;font-weight:500}
.op-new{font-size:56px;font-weight:900;color:#007d8c;letter-spacing:-0.03em;line-height:1}
.op-uah{font-size:20px;font-weight:600;color:#4a8f9a}
.stock-l{font-size:13px;color:#6aacb5;margin-bottom:20px}
.stock-n{color:#cc4400;font-weight:800}

/* ═══ FOOTER ═══ */
footer{
  background:rgba(255,255,255,0.5);
  border-top:1px solid rgba(0,181,200,0.12);
  padding:36px 20px;text-align:center;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.foot-links{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-bottom:12px}
.foot-links a{font-size:13px;color:#6aacb5;transition:color 0.2s}
.foot-links a:hover{color:#007d8c}
.foot-copy{font-size:12px;color:#9accd2}

/* ═══ SCROLL REVEAL ═══ */
.rv{opacity:1;transform:none;transition:opacity 0.6s ease,transform 0.6s ease}
.rv.vis{opacity:1;transform:none}

/* ═══════════════════════════════
   MOBILE — ТЕКСТ ПЕРЕД ФОТО
   ═══════════════════════════════ */
@media(max-width:900px){
  .nav{top:8px;left:8px;right:8px;border-radius:16px}
  .hero{padding:88px 16px 50px;min-height:auto}
  .hero-grid{
    grid-template-columns:1fr;gap:0;
  }
  .hero-text{order:1}
  .hero-visual{order:2;max-width:400px;margin:24px auto 0;width:100%}

  h1{font-size:clamp(38px,10vw,54px)}
  .hero-desc{font-size:17px;max-width:100%}
  .hero-model{font-size:16px}
  .pills .pill{font-size:14px;padding:9px 15px}
  .price-wrap{padding:18px 20px}
  .price-new{font-size:clamp(38px,9vw,52px)}
  .btns{flex-direction:column;gap:10px}
  .btns .btn{width:100%;justify-content:center;font-size:16px;padding:17px 24px}
  .trust{gap:14px}
  .trust-i{font-size:14px}

  .disc-badge{width:72px;height:72px;right:-2%}
  .disc-pct{font-size:20px}
  .fb1{left:-8%}
  .fb2{right:-10%}
  .fb3{left:-5%}
  .fbadge{font-size:11px;padding:7px 11px}

  .form-grid{grid-template-columns:1fr;gap:28px}
  .feat-grid{grid-template-columns:1fr;gap:14px}
  .det-block{grid-template-columns:1fr;gap:20px;padding:24px 20px}
  .det-block.rev .det-img{order:0}
  .thumbs{grid-template-columns:repeat(4,1fr);gap:8px}
  .thumb{height:62px}
  .rev-grid{grid-template-columns:1fr;gap:14px}
  .kit-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .specs-grid{grid-template-columns:1fr}
  .steps-row{grid-template-columns:1fr;gap:18px}
  .steps-row::before{display:none}
  .ct-head,.ct-row{grid-template-columns:1.4fr 0.9fr 0.9fr 0.9fr}
  .ct-row .ct-c{font-size:12px;padding:12px 10px}
  .offer-inner{padding:28px 20px}
  .section{padding:55px 0}
  .form-section{padding:44px 0}
  .gal-main{padding:22px}
  .det-block p{font-size:16px}
  .det-bullets li{font-size:15px}
  .feat-card p{font-size:15px}
  .faq-a{font-size:16px}
  summary{font-size:17px}
  .inc-i{font-size:15px}
}
@media(max-width:480px){
  .container{padding:0 14px}
  .hero{padding:82px 14px 44px}
  h1{font-size:clamp(36px,12vw,48px)}
  h2{font-size:clamp(26px,8vw,36px)}
  .hero-desc{font-size:16px;line-height:1.6}
  .hero-eyebrow{font-size:12px}
  .pills{gap:7px}
  .pill{font-size:13px;padding:8px 12px}
  .price-new{font-size:clamp(36px,11vw,48px)}
  .trust-i{font-size:13px}
  .form-card{padding:24px 18px}
  .inp{font-size:16px;padding:15px 16px}
  .btn{font-size:15px;padding:16px 22px}
  .fbadge{font-size:10px;padding:7px 10px}
  .feat-card{padding:22px 18px}
  .feat-card h3{font-size:17px}
  .feat-card p{font-size:14px}
  .det-block h3{font-size:19px}
  .kit-grid{grid-template-columns:repeat(2,1fr)}
  .rev-text{font-size:14px}
  .step h3{font-size:17px}
  .step p{font-size:14px}
  summary{font-size:15px;padding:16px 18px}
  .foot-links{flex-direction:column;align-items:center;gap:10px}
  .offer-inner{padding:24px 16px}
}

/* Анімація появи без JS */
.rv {
    animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}
