/* ============================================================
   EDEN — Massaj kreslolari landing
   Palette: emerald + gold + cream (premium wellness)
   ============================================================ */

:root {
  --green-950: #072A20;
  --green-900: #0B3B2E;
  --green-800: #0E4A38;
  --green-700: #14563F;
  --green-600: #1E7A57;
  --green-100: #DFEDE6;
  --green-50:  #EEF5F1;
  --gold-600:  #B8923D;
  --gold-500:  #C8A24B;
  --gold-400:  #D9B865;
  --gold-100:  #F4EAD2;
  --cream:     #F7F4EE;
  --ink:       #17201C;
  --ink-60:    #4A554F;
  --ink-40:    #7A857F;
  --white:     #FFFFFF;
  --line:      #E4E1D8;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow-1:  0 2px 10px rgba(11, 59, 46, .06);
  --shadow-2:  0 12px 34px rgba(11, 59, 46, .12);
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border-radius: 999px;
  padding: 18px 30px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
  box-shadow: 0 8px 24px rgba(184, 146, 61, .35);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(184, 146, 61, .5); transform: translateY(-1px); }

.btn-dark {
  background: var(--green-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--green-800); }

.btn-outline {
  border: 2px solid var(--green-900);
  color: var(--green-900);
  padding: 16px 28px;
}
.btn-outline:hover { background: var(--green-900); color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .5px;
  color: var(--green-900);
}
.logo .leaf { color: var(--gold-600); }
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-weight: 800;
  font-size: 17px;
  color: var(--green-900);
}
.header-phone span { display: block; font-size: 11px; font-weight: 600; color: var(--ink-40); }
.header .btn { padding: 13px 22px; font-size: 14px; }
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--green-50);
  border-radius: 999px;
  padding: 3px;
  font-size: 13px;
  font-weight: 700;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-40);
}
.lang-switch a.active { background: var(--green-900); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 122, 87, .14), transparent 65%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 75, .13), transparent 65%);
}
.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--green-950);
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--green-600); }
.hero-sub {
  font-size: 18px;
  color: var(--ink-60);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-note { font-size: 13px; color: var(--ink-40); }
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 22px; max-width: 560px; }
.hero-stat { flex: 1; padding-right: 18px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); padding-left: 18px; }
.hero-stat b { display: block; font-size: 22px; font-weight: 800; color: var(--green-900); line-height: 1.2; }
.hero-stat span { font-size: 13px; color: var(--ink-40); }

/* hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  border-radius: 28px;
  padding: 38px 34px 34px;
  color: #fff;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 101, .25), transparent 70%);
}
.hero-card .chair-art { width: 78%; margin: 0 auto 8px; opacity: .96; }
.hero-card-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}
.hero-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 10px; }
.hero-card-bottom b { font-size: 24px; font-weight: 800; }
.hero-card-bottom small { display: block; font-size: 12px; opacity: .75; font-weight: 600; margin-bottom: 3px; }
.hero-card-badge {
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 12px;
}

/* ---------- Trust bar ---------- */
.trustbar { padding: 8px 0 8px; }
.trustbar-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-900);
  box-shadow: var(--shadow-1);
}
.trust-item svg { flex: none; width: 26px; height: 26px; color: var(--gold-600); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.section h2 {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--green-950);
  margin-bottom: 12px;
}
.section-sub { font-size: 17px; color: var(--ink-60); }

/* ---------- Objection / difference ---------- */
.diff { background: var(--green-950); color: #fff; }
.diff .section-eyebrow { color: var(--gold-400); }
.diff h2 { color: #fff; }
.diff .section-sub { color: rgba(255, 255, 255, .65); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diff-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.diff-card .num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--green-950);
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 16px;
}
.diff-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.diff-card p { font-size: 14.5px; color: rgba(255, 255, 255, .7); }
.diff-cta { margin-top: 36px; text-align: center; }

/* ---------- Catalog ---------- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.model-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.model-card.featured { border: 2px solid var(--gold-500); position: relative; }
.model-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.model-media {
  position: relative;
  background: linear-gradient(160deg, var(--green-50), var(--green-100));
  padding: 30px 30px 18px;
}
.model-media .chair-art { width: 62%; margin: 0 auto; color: var(--green-800); }
.model-media .photo-soon {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-40);
  background: rgba(255, 255, 255, .8);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.model-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.model-seg { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 6px; }
.model-body h3 { font-size: 21px; font-weight: 800; color: var(--green-950); margin-bottom: 10px; }
.model-specs { margin-bottom: 18px; flex: 1; }
.model-specs li {
  position: relative;
  font-size: 14px;
  color: var(--ink-60);
  padding: 5px 0 5px 24px;
}
.model-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E4A38' stroke-width='4'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 8px no-repeat;
}
.model-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.model-price b { font-size: 24px; font-weight: 800; color: var(--green-900); }
.model-price span { font-size: 13px; color: var(--ink-40); font-weight: 600; }
.catalog-note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-40);
}

/* ---------- Guarantees ---------- */
.guar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guar-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-1);
}
.guar-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.guar-icon svg { width: 26px; height: 26px; }
.guar-card h3 { font-size: 17px; font-weight: 800; color: var(--green-950); margin-bottom: 6px; }
.guar-card p { font-size: 14.5px; color: var(--ink-60); }

/* ---------- Audience ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card {
  background: linear-gradient(165deg, var(--white), var(--green-50));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.aud-card .aud-emoji {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.aud-card .aud-emoji svg { width: 24px; height: 24px; }
.aud-card h3 { font-size: 18px; font-weight: 800; color: var(--green-950); margin-bottom: 8px; }
.aud-card p { font-size: 14.5px; color: var(--ink-60); }

/* ---------- Steps (how it works) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.step-card h3 { font-size: 16px; font-weight: 800; color: var(--green-950); margin-bottom: 6px; }
.step-card p { font-size: 13.5px; color: var(--ink-60); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-950);
  padding: 20px 22px;
}
.faq-q .chev { flex: none; transition: transform .25s ease; color: var(--gold-600); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-in { padding: 0 22px 20px; font-size: 15px; color: var(--ink-60); }

/* ---------- Final CTA ---------- */
.final {
  background: linear-gradient(150deg, var(--green-900), var(--green-700));
  border-radius: 30px;
  padding: 56px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 101, .22), transparent 70%);
}
.final h2 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: #fff; }
.final p { font-size: 16px; color: rgba(255, 255, 255, .72); margin-bottom: 0; }
.final .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 110px; border-top: 1px solid var(--line); margin-top: 72px; }
.footer-in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.footer .logo { margin-bottom: 12px; }
.footer p, .footer a { font-size: 14px; color: var(--ink-60); }
.footer h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-40); margin-bottom: 12px; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--green-900); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-40);
  flex-wrap: wrap;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: none;
}
.sticky-cta .btn { width: 100%; padding: 16px; font-size: 15px; }

/* ---------- Quiz overlay ---------- */
.quiz {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: none;
  overflow-y: auto;
}
.quiz.open { display: block; }
.quiz-in {
  max-width: 660px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.quiz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.quiz-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-60);
  font-size: 20px;
}
.quiz-progress { flex: 1; margin: 0 20px; height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 25%; background: linear-gradient(90deg, var(--green-600), var(--gold-500)); border-radius: 999px; transition: width .3s ease; }
.quiz-step-label { font-size: 13px; font-weight: 700; color: var(--ink-40); white-space: nowrap; }

.quiz-body { flex: 1; }
.quiz-step { display: none; animation: qfade .25s ease; }
.quiz-step.active { display: block; }
@keyframes qfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.quiz h2 { font-size: 27px; font-weight: 800; color: var(--green-950); line-height: 1.2; margin-bottom: 8px; }
.quiz .quiz-sub { font-size: 15px; color: var(--ink-60); margin-bottom: 26px; }

.quiz-options { display: grid; gap: 12px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.quiz-opt small { display: block; font-size: 13px; font-weight: 600; color: var(--ink-40); margin-top: 2px; }
.quiz-opt:hover { border-color: var(--green-600); }
.quiz-opt.selected { border-color: var(--green-700); background: var(--green-50); }
.quiz-opt .radio {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  position: relative;
}
.quiz-opt.selected .radio { border-color: var(--green-700); }
.quiz-opt.selected .radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--green-700);
}

.quiz-nav { display: flex; gap: 12px; margin-top: 28px; }
.quiz-back {
  flex: none;
  padding: 16px 22px;
  border-radius: 999px;
  border: 2px solid var(--line);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-60);
}
.quiz-nav .btn { flex: 1; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-60); margin-bottom: 7px; }
.form-field input {
  width: 100%;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  transition: border-color .15s ease;
}
.form-field input:focus { border-color: var(--green-600); }
.form-field input.error { border-color: #C64530; }
.form-error { display: none; font-size: 13px; font-weight: 700; color: #C64530; margin-top: 8px; }
.form-error.show { display: block; }
.quiz-privacy { font-size: 12.5px; color: var(--ink-40); margin-top: 14px; text-align: center; }
.quiz-privacy a { text-decoration: underline; }

.quiz-summary {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.quiz-summary b { color: var(--green-900); }

/* ---------- Thanks page ---------- */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.thanks-card {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-2);
  padding: 48px 40px;
  text-align: center;
}
.thanks-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.thanks-check svg { width: 40px; height: 40px; }
.thanks-card h1 { font-size: 28px; font-weight: 800; color: var(--green-950); margin-bottom: 12px; }
.thanks-card p { font-size: 15.5px; color: var(--ink-60); margin-bottom: 26px; }
.thanks-card .btn { margin-bottom: 12px; }

/* ---------- Floating contact buttons ---------- */
.floats {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  transition: transform .15s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 25px; height: 25px; }
.float-tg { background: #229ED9; }
.float-ph { background: linear-gradient(135deg, #1E7A57, #0E4A38); position: relative; }
.float-ph::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(30, 122, 87, .55);
  animation: ph-pulse 2s ease-out infinite;
}
@keyframes ph-pulse {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .float-ph::after { animation: none; display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Legal page ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 20px 80px; }
.legal h1 { font-size: 30px; font-weight: 800; color: var(--green-950); margin: 0 0 20px; }
.legal h2 { font-size: 20px; font-weight: 800; color: var(--green-950); margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--ink-60); margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; }

/* ---------- Hero photo card ---------- */
.hero-card.hero-photo { padding: 0; min-height: 500px; display: block; }
.hero-photo::before { display: none; }
.hero-photo .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 32, .16) 0%, rgba(7, 42, 32, 0) 34%, rgba(7, 42, 32, .8) 100%);
}
.hero-photo .hero-card-tag { z-index: 2; }
.hero-photo .hero-card-bottom {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
}

/* ---------- Gift band (ota-onaga sovg'a) ---------- */
.gift-sec { padding-top: 40px; }
.gift-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: linear-gradient(140deg, #FCF7EA, var(--gold-100));
  border: 1px solid #EADFC2;
  border-radius: 30px;
  overflow: hidden;
}
.gift-txt { padding: 48px 46px; }
.gift-txt h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--green-950);
  margin: 10px 0 14px;
}
.gift-txt > p { font-size: 16px; color: var(--ink-60); margin-bottom: 20px; }
.gift-points { margin-bottom: 26px; }
.gift-points li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-900);
}
.gift-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23072A20' stroke-width='4'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.gift-img { position: relative; min-height: 320px; }
.gift-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Catalog carousel (landing) ---------- */
.cat-wrap { position: relative; }
.cat-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 18px;
  scrollbar-width: none;
}
.cat-carousel::-webkit-scrollbar { display: none; }
.cat-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.cat-media {
  background: linear-gradient(160deg, #fff, var(--green-50));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}
.cat-media img { max-height: 100%; width: auto; object-fit: contain; }
.cat-body { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cat-body h3 { font-size: 20px; font-weight: 800; color: var(--green-950); }
.cat-body p { font-size: 13.5px; color: var(--ink-60); flex: 1; }
.cat-more { font-size: 14px; font-weight: 800; color: var(--gold-600); margin-top: 10px; }
.cat-nav {
  position: absolute;
  top: 38%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  color: var(--green-900);
  font-size: 20px;
  font-weight: 800;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-nav:hover { background: var(--green-900); color: #fff; }
.cat-prev { left: -10px; }
.cat-next { right: -10px; }
.cat-cta { text-align: center; margin-top: 16px; }

/* ---------- Model detail page ---------- */
.crumbs { padding: 18px 20px 6px; font-size: 13.5px; color: var(--ink-40); }
.crumbs a:hover { color: var(--green-900); text-decoration: underline; }
.crumbs span { margin: 0 6px; }
.crumbs b { color: var(--ink-60); }

.mdl-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; padding-top: 18px; padding-bottom: 28px; align-items: start; }
.gallery { position: sticky; top: 90px; }
.g-main {
  background: linear-gradient(160deg, #fff, var(--green-50));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.g-main img { max-height: 520px; width: auto; max-width: 100%; object-fit: contain; }
.g-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.g-thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #fff;
  padding: 6px;
  overflow: hidden;
}
.g-thumb img { width: 100%; height: 100%; object-fit: contain; }
.g-thumb.active { border-color: var(--gold-500); }

.mdl-info h1 { font-size: 36px; font-weight: 800; letter-spacing: -.3px; color: var(--green-950); margin: 6px 0 10px; }
.mdl-tag { font-size: 16.5px; color: var(--ink-60); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}
.mdl-colors { font-size: 14.5px; color: var(--ink-60); margin-bottom: 20px; }
.mdl-colors b { color: var(--green-950); }
.mdl-cta { display: grid; gap: 10px; margin-bottom: 18px; }
.mini-guar { border-top: 1px solid var(--line); padding-top: 16px; }
.mini-guar li {
  position: relative;
  padding: 4px 0 4px 26px;
  font-size: 14px;
  color: var(--ink-60);
}
.mini-guar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E4A38' stroke-width='4'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 9px no-repeat;
}

.mdl-why { padding-top: 40px; }
.mdl-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mdl-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.mdl-block h3 { font-size: 17px; font-weight: 800; color: var(--green-950); margin-bottom: 8px; }
.mdl-block p { font-size: 14.5px; color: var(--ink-60); }

.mdl-specs { padding-top: 20px; }
.specs-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.specs-table td { padding: 13px 20px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { color: var(--ink-40); font-weight: 600; width: 44%; }
.specs-table td:last-child { color: var(--green-950); font-weight: 700; }

.other-sec { padding-top: 20px; }
.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.other-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.other-card img { height: 150px; object-fit: contain; margin: 0 auto 8px; }
.other-card span { font-weight: 800; color: var(--green-950); }
.other-card small { font-size: 12.5px; color: var(--ink-40); }
.back-link { font-weight: 700; color: var(--green-900); text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 480px; }
  .trustbar-in { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .final { grid-template-columns: 1fr; padding: 44px 32px; }
  .footer-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .mdl-hero { grid-template-columns: 1fr; gap: 28px; }
  .gallery { position: static; }
  .mdl-blocks { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .gift-band { grid-template-columns: 1fr; }
  .gift-img { min-height: 260px; order: -1; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .floats { bottom: calc(84px + env(safe-area-inset-bottom)); right: 12px; }
  .float-btn { width: 50px; height: 50px; }
  .gift-txt { padding: 30px 24px; }
  .gift-txt h2 { font-size: 24px; }
  .hero-card.hero-photo { min-height: 380px; }
  .cat-card { flex-basis: 260px; }
  .cat-nav { display: none; }
  .mdl-info h1 { font-size: 28px; }
  .g-main { min-height: 260px; padding: 14px; }
  .g-main img { max-height: 340px; }
  .other-grid { grid-template-columns: 1fr; }
  .specs-table td { padding: 11px 14px; font-size: 13.5px; }
  .section h2 { font-size: 27px; }
  .hero { padding: 40px 0 44px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 14px 0; }
  .hero-stat { flex: 1 1 45%; }
  .hero-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .header-phone { display: none; }
  .header .btn-primary { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .guar-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .final h2 { font-size: 25px; }
  .footer-in { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: 130px; }
}
