:root{
  --bg:#f6f1ea;
  --paper:#fffdf9;
  --paper-2:#fbf6f0;
  --ink:#201d1a;
  --muted:#766d64;
  --line:#e8dccf;
  --line-dark:rgba(255,255,255,.14);
  --shadow:0 18px 50px rgba(43,33,20,.08);
  --shadow-soft:0 10px 28px rgba(43,33,20,.06);
  --shadow-dark:0 26px 80px rgba(20,17,16,.22);
  --radius:32px;
  --dark:#1f2024;
  --dark-2:#35343b;
  --cream:#f4e6d6;
  --sage:#dfe7df;
  --rose:#eadde7;
  --sand:#efe2d2;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  overflow-x:hidden;
  background:
    radial-gradient(1000px 600px at 0% 0%, rgba(255,255,255,.8), transparent 60%),
    linear-gradient(180deg,#f8f4ef 0%, #f1ebe4 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select{font:inherit}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto;}
.section{padding:26px 0}
.section-soft{padding:18px 0 26px}
.section-gallery{padding:14px 0 28px}
.narrow{max-width:760px}
.center{text-align:center;margin-inline:auto}
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:end}
.section-head{margin-bottom:22px}
.section-head h2{margin:10px 0 0;font-size:clamp(32px, 4vw, 50px);line-height:1.02;letter-spacing:-.05em}
.section-head h2 strong{font-weight:900}
.section-head p{margin:12px 0 0;color:var(--muted);font-size:16px;line-height:1.65}
.eyebrow,
.kicker{
  --eyebrow-line:rgba(228,215,202,.95);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--eyebrow-line);
  color:#8a6a4b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.section-head .eyebrow{
  position:relative;
}
.section-head .eyebrow::after{
  content:"";
  position:absolute;
  left:100%;
  top:50%;
  width:100vw;
  height:1px;
  border-radius:999px;
  background:var(--eyebrow-line);
  opacity:.9;
  transform:translateY(-50%);
  pointer-events:none;
}
.kicker{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.eyebrow-light{background:rgba(255,255,255,.1);color:#fff;border-color:var(--line-dark)}
.kicker-mobile-break::before{content:" • ";}
.hero{
  position:relative;
  overflow:hidden;
  padding:0 0 18px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0 0 18px 0;
  background:linear-gradient(135deg,var(--dark) 0%, var(--dark-2) 100%);
  border-radius:0 0 40px 40px;
  box-shadow:var(--shadow-dark);
}
.hero > .container{
  position:relative;
  z-index:1;
}
.hero-card{
  position:relative;
  overflow:visible;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
  min-height:640px;
  padding:44px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:#fff;
}
.hero-card::before{
  content:"";
  position:absolute;
  right:-140px;
  bottom:-150px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 34%, rgba(255,255,255,0) 72%);
  pointer-events:none;
}
.hero-copy{position:relative;z-index:2;max-width:640px}
.hero-copy h1{margin:18px 0 12px;font-size:clamp(44px, 7vw, 82px);line-height:.94;letter-spacing:-.06em}
.hero-subtitle{margin:0 0 18px;color:rgba(255,255,255,.8);font-size:18px;line-height:1.62;max-width:620px}
.hero-points{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 20px}
.hero-points span{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 20px}
.hero-actions .hero-cta{
  display:grid;
  flex:1 1 260px;
  min-height:112px;
  padding:18px 22px;
  justify-items:center;
  align-content:center;
  gap:10px;
  text-align:center;
  border-radius:22px;
}
.hero-cta-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  flex:0 0 54px;
  border-radius:999px;
  background:rgba(31,32,36,.92);
  color:#fff;
  font-size:30px;
  font-weight:900;
  line-height:1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-actions .btn-dark.hero-cta .hero-cta-badge{
  background:#1f2024;
  color:#fff;
}
.hero-actions .btn-login-accent.hero-cta .hero-cta-badge{
  background:rgba(31,32,36,.96);
  color:#fff;
}
.hero-cta-copy{
  display:grid;
  justify-items:center;
  align-content:center;
  gap:4px;
  min-height:42px;
}
.hero-cta-text{
  display:block;
  font-size:23px;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1.06;
}
.hero-cta-subtitle{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  line-height:1.2;
  text-transform:uppercase;
  color:#7d6450;
}
.hero-note{max-width:560px;color:rgba(255,255,255,.7);font-size:14px;line-height:1.6}
.hero-visual{position:relative;min-height:520px}
.plate{
  position:absolute;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  box-shadow:0 16px 46px rgba(10,10,12,.18);
}
.plate img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 18px 28px rgba(0,0,0,.18))}
.plate-1{top:18px;right:18px;width:320px;height:260px;padding:18px 12px 8px;transform:rotate(6deg)}
.plate-2{left:6px;top:170px;width:300px;height:250px;padding:14px 8px 8px;transform:rotate(-8deg)}
.plate-3{right:38px;bottom:8px;width:280px;height:230px;padding:12px 10px 8px;transform:rotate(3deg)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:56px;padding:0 22px;border-radius:18px;border:1px solid transparent;
  font-size:15px;font-weight:800;transition:.18s ease;cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-dark,.btn-primary{background:#fff;color:var(--dark)}
.btn-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.18)}
.btn-full{width:100%}
.btn-login-accent{
  min-height:56px;
  padding:10px 22px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1.12;
  background:linear-gradient(180deg,#fff8f1 0%, #f1dfca 100%);
  color:var(--dark);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}
.btn-login-title{
  display:block;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.02em;
}
.btn-login-subtitle{
  display:block;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7d6450;
}
.grid{display:grid;gap:14px}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.soft-card{
  background:rgba(255,253,249,.86);
  border:1px solid rgba(232,221,208,.92);
  border-radius:30px;
  box-shadow:var(--shadow-soft);
}
.benefit-card{
  position:relative;
  overflow:visible;
  width:calc(100% - 18px);
  justify-self:center;
  padding:24px 24px 24px 82px
}
.benefit-card > .icon{
  position:absolute;
  left:20px;
  top:50%;
  display:block;
  min-width:auto;
  width:auto;
  height:auto;
  padding:0;
  margin:0;
  border-radius:0;
  background:linear-gradient(180deg, rgba(53,52,59,.2) 0%, rgba(41,40,46,.12) 55%, rgba(31,32,36,.05) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-size:clamp(108px, 10vw, 164px);
  font-weight:900;
  letter-spacing:-.08em;
  line-height:1;
  transform:translateY(-50%);
  filter:drop-shadow(0 4px 10px rgba(31,32,36,.08));
  pointer-events:none;
  user-select:none;
}
.benefit-card h3,
.benefit-card p{
  position:relative;
  z-index:1;
}
.benefit-card h3,
.feature-card h3,
.step-card h3,
.what-card h3{margin:0 0 10px;font-size:24px;line-height:1.12;letter-spacing:-.03em}
.benefit-card p,
.feature-card p,
.step-card p,
.what-card p{margin:0;color:var(--muted);line-height:1.65}
.feature-card{padding:24px;min-height:220px}
.accent-cream{background:linear-gradient(180deg,#fffdfa 0%, #f7ede2 100%)}
.accent-sage{background:linear-gradient(180deg,#fffdfa 0%, #eef4ee 100%)}
.accent-rose{background:linear-gradient(180deg,#fffdfa 0%, #f5eef4 100%)}
.accent-sand{background:linear-gradient(180deg,#fffdfa 0%, #f6efe6 100%)}
.accent-milk{background:linear-gradient(180deg,#fffdfa 0%, #f8f6f0 100%)}
.accent-glow{background:linear-gradient(180deg,#fffdfa 0%, #eef6e8 100%)}
.accent-dark{background:linear-gradient(135deg,#1f2024 0%, #38353d 100%);border-color:rgba(255,255,255,.08)}
.light-text h3,.light-text p{color:#fff}
.light-text p{color:rgba(255,255,255,.78)}
.calc-layout{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:stretch}
.calc-card{padding:24px}
.calc-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.field{display:grid;gap:8px}
.field-wide{grid-column:1 / -1}
.field span{font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8b694c}
.field input,.field select{
  width:100%;height:56px;border-radius:18px;border:1px solid rgba(217,198,181,.95);
  background:#fff;color:#3f3128;padding:0 16px;outline:none;
}
.field input:focus,.field select:focus{border-color:#8f5f39;box-shadow:0 0 0 4px rgba(164,112,70,.12)}
.calc-result{
  position:relative;overflow:hidden;padding:26px;border-radius:32px;
  background:linear-gradient(180deg,#fffdfa 0%, #f7f1ea 100%);
  border:1px solid rgba(232,221,208,.95);box-shadow:var(--shadow);
}
.calc-result::before{
  content:attr(data-mark);position:absolute;right:12px;top:-8px;
  font-size:170px;line-height:1;font-weight:900;letter-spacing:-.08em;color:rgba(139,95,54,.08);
}
.result-kicker{position:relative;z-index:1;font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#8b694c}
.result-main{position:relative;z-index:1;margin:8px 0 12px;font-size:clamp(34px, 5vw, 62px);font-weight:900;letter-spacing:-.06em;line-height:.95}
.result-sub{position:relative;z-index:1;color:#6f5c4e;line-height:1.6}
.result-list{position:relative;z-index:1;display:grid;gap:10px;margin-top:18px}
.result-list div{padding:14px 16px;border-radius:18px;background:#fff;border:1px solid rgba(224,208,193,.95);color:#5f5146;line-height:1.55}

.calc-showcase{
  display:grid;
  grid-template-columns:minmax(260px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "photo head"
    "photo cards";
  gap:18px 22px;
  align-items:start;
  padding:20px;border-radius:36px;
  background:rgba(255,250,245,.72);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.calc-photo-wrap{
  grid-area:photo;
  width:min(100%, 340px);
  justify-self:start;
  padding:14px;border-radius:28px;
  background:
    linear-gradient(180deg,rgba(42,45,54,.72) 0%, rgba(17,19,24,.58) 100%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 24px 48px rgba(19,18,22,.24),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
}
.calc-photo-shell{
  overflow:hidden;
  border-radius:26px;
  background:linear-gradient(180deg,#1c1f26 0%, #101217 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.calc-photo{
  display:block;
  width:100%;
  height:min(640px, 72vh);
  aspect-ratio:9 / 16;
  object-fit:cover;
  background:#141316;
  clip-path:inset(8px round 22px);
}
.calc-showcase-head{
  grid-area:head;
  margin-bottom:0;
  align-self:end;
}
.calc-showcase-head p{
  max-width:640px;
}
.calc-caption-grid{
  grid-area:cards;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:0;
  align-self:start;
}
.calc-caption-card{
  padding:22px 22px 20px;border-radius:24px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.8);
}
.calc-caption-card h3{
  margin:0 0 10px;font-size:22px;line-height:1.15;letter-spacing:-.03em;
}
.calc-caption-card p{
  margin:0;color:#6c5c50;line-height:1.65;
}
.steps-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.step-card{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:30px;
  background:#fffdfa;
  border:1px solid rgba(232,221,208,.92);
  box-shadow:var(--shadow-soft)
}
.step-card::before{
  content:attr(data-step);
  position:absolute;
  right:18px;
  bottom:12px;
  font-size:clamp(92px, 12vw, 138px);
  line-height:1;
  font-weight:900;
  letter-spacing:-.08em;
  background:linear-gradient(180deg, rgba(201,156,96,.22) 0%, rgba(126,88,54,.08) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  pointer-events:none;
  user-select:none;
}
.step-card h3,
.step-card p{
  position:relative;
  z-index:1;
}
.glass-gallery{position:relative;max-width:1160px;margin:0 auto}
.glass-gallery-stage,.glass-gallery-track{touch-action:pan-y;user-select:none;-webkit-user-select:none}
.glass-gallery-stage{
  position:relative;
  overflow:visible;
  display:flex;
  justify-content:center;
  min-height:640px;
  padding:32px 0 88px;
}
.glass-gallery-track{
  position:relative;
  width:min(100%, 980px);
  min-height:540px;
  margin:0 auto;
}
.glass-gallery-fade{
  position:absolute;
  top:0;
  bottom:32px;
  width:17%;
  z-index:4;
  pointer-events:none;
}
.glass-gallery-fade-left{
  left:0;
  background:linear-gradient(90deg, var(--bg) 10%, rgba(248,242,234,.92) 36%, rgba(248,242,234,0) 100%);
}
.glass-gallery-fade-right{
  right:0;
  background:linear-gradient(270deg, var(--bg) 10%, rgba(248,242,234,.92) 36%, rgba(248,242,234,0) 100%);
}
.glass-slide{
  --slide-x:0px;
  --slide-scale:1;
  --slide-rotate:0deg;
  --slide-opacity:0;
  --slide-blur:0px;
  --slide-z:1;
  --slide-shadow:0 18px 40px rgba(62,45,30,.09);
  position:absolute;
  left:50%;
  top:0;
  width:clamp(240px, 36vw, 420px);
  aspect-ratio: 0.88 / 1;
  padding:18px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.54) 0%, rgba(255,255,255,.2) 100%);
  border:1px solid rgba(255,255,255,.78);
  box-shadow:var(--slide-shadow);
  backdrop-filter:none;
  overflow:hidden;
  transform:translateX(calc(-50% + var(--slide-x))) scale(var(--slide-scale)) rotate(var(--slide-rotate));
  opacity:var(--slide-opacity);
  filter:none;
  transition:transform .55s ease, opacity .55s ease, box-shadow .55s ease;
  z-index:var(--slide-z);
  will-change:transform, opacity;
}
.glass-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  pointer-events:none;
}
.glass-slide img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 18px 32px rgba(52,33,17,.12));
}
.glass-slide.is-active{
  --slide-shadow:0 26px 54px rgba(62,45,30,.12);
}
.glass-gallery-controls{
  position:relative;
  z-index:6;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:-2px;
}
.glass-gallery-arrow{
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.9);
  background:linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.28));
  box-shadow:0 14px 28px rgba(62,45,30,.08);
  color:#3f3328;
  font-size:24px;
  font-weight:800;
  cursor:pointer;
  backdrop-filter:blur(12px);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.glass-gallery-arrow:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 32px rgba(62,45,30,.11);
}
.glass-gallery-dots{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:74px;
  justify-content:center;
}
.glass-gallery-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(115,91,72,.22);
  transition:transform .25s ease, background .25s ease, width .25s ease;
}
.glass-gallery-dot.is-active{
  width:28px;
  background:#7f6450;
}
.what-card{padding:28px}
.check-list{margin:0;padding:0;list-style:none;display:grid;gap:14px}
.check-list li{position:relative;padding-left:34px;font-size:17px;line-height:1.6}
.check-list li::before{content:"✓";position:absolute;left:0;top:0;width:24px;height:24px;border-radius:999px;background:#1f2024;color:#fff;display:grid;place-items:center;font-size:14px;font-weight:800}
.offer-gift-banner{
  position:relative;
  display:grid;
  gap:10px;
  margin:0 0 18px;
  padding:18px clamp(104px, 15vw, 160px) 20px 22px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,244,247,.58) 0%, rgba(255,170,188,.28) 44%, rgba(208,88,116,.18) 100%);
  border:1px solid rgba(192,90,117,.24);
  box-shadow:0 16px 34px rgba(155,72,97,.14), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  overflow:hidden;
}
.offer-gift-banner-art{
  position:absolute;
  right:-34px;
  top:50%;
  width:clamp(132px, 18vw, 188px);
  height:auto;
  transform:translateY(-48%) rotate(-8deg);
  opacity:.88;
  z-index:0;
  filter:drop-shadow(0 12px 24px rgba(156,71,96,.16));
  pointer-events:none;
  user-select:none;
}
.offer-gift-banner-text{
  position:relative;
  z-index:1;
  color:#5a2430;
  font-size:clamp(20px, 2.8vw, 30px);
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.03em;
  max-width:760px;
}
.offer-stack{display:grid;gap:22px}
.offer-card{
  display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:stretch;
  padding:28px;border-radius:36px;background:linear-gradient(135deg,#1f2024 0%, #34333b 100%);color:#fff;box-shadow:var(--shadow-dark)
}
.offer-card-tiers{
  grid-template-columns:1fr;
  gap:26px;
  align-items:start;
}
.offer-box-tiers{display:grid;gap:18px}
.offer-tier-list{display:grid;gap:16px}
.offer-tier{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px, 320px);
  gap:20px;
  align-items:start;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.offer-tier:first-child{padding-top:0}
.offer-tier:last-child{padding-bottom:0;border-bottom:0}
.offer-tier-copy{display:grid;gap:10px}
.offer-tier-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#fff7d8 0%, #f5b86a 100%);
  color:#2f2014;
  font-size:20px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  box-shadow:0 12px 24px rgba(18,14,11,.18);
}
.offer-tier-title{
  margin:0;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.offer-tier-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:14px;
  font-weight:800;
  line-height:1.2;
}
.offer-tier-subtitle{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.4;
}
.offer-tier-action{
  display:grid;
  justify-items:end;
  min-width:0;
}
.offer-tier-price-row{margin:10px 0 14px}
.offer-tier-note{
  max-width:260px;
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.45;
  text-align:right;
}
.offer-common-actions{
  display:grid;
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}
.offer-copy{padding:8px 4px}
.offer-copy h2{margin:14px 0 10px;font-size:clamp(34px, 4.5vw, 58px);line-height:.98;letter-spacing:-.05em}
.offer-copy p{margin:0;color:rgba(255,255,255,.78);max-width:560px;line-height:1.65}
.offer-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.offer-points span{display:inline-flex;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:13px;font-weight:700}
.offer-box{
  padding:22px;border-radius:28px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(8px)
}
.price-caption{font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.64)}
.price-row{display:flex;align-items:end;gap:12px;margin:12px 0 18px}
.price-old{text-decoration:line-through;color:rgba(255,255,255,.46);font-size:24px;font-weight:800}
.price-current{font-size:56px;line-height:.95;font-weight:900;letter-spacing:-.06em}
.mini-note{margin-top:14px;color:rgba(255,255,255,.7);font-size:14px;line-height:1.6}
.contact-links{display:flex;gap:10px;margin-top:16px}
.contact-link{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 14px;border-radius:14px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.14);font-weight:700}

.offer-login-btn{
  margin-top:12px;
}
.offer-login-btn .btn-login-title{
  font-size:16px;
}
.offer-login-btn .btn-login-subtitle{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.74;
}
.contact-links-messengers{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.contact-links-messengers .contact-link{
  position:relative;
  justify-content:flex-start;
  gap:12px;
  min-height:54px;
  padding:0 18px;
  border-radius:18px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 100%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(16,15,19,.12);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
}
.contact-links-messengers .contact-link::before{
  content:"";
  width:22px;
  height:22px;
  flex:0 0 22px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity:.96;
}
.contact-link-telegram{
  border-color:rgba(106,194,255,.26);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(16,15,19,.12), 0 0 0 1px rgba(70,162,228,.08);
}
.contact-link-telegram::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 4L3.8 10.6c-.8.3-.8 1.4.1 1.7l4.3 1.3 1.7 5c.3.8 1.4.9 1.8.1L14 14l4.8 3.7c.6.5 1.5.1 1.6-.7L22 4.8c.1-.7-.5-1.2-1.1-.8Z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m8.1 13.5 11.7-8.7' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.contact-link-whatsapp{
  border-color:rgba(121,229,171,.28);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(16,15,19,.12), 0 0 0 1px rgba(68,193,123,.08);
}
.contact-link-whatsapp::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.1 20a8 8 0 1 0-4-1.1L5 20l1.2-3.7A8 8 0 0 0 12.1 20Z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9.4 8.7c-.3.1-.6.4-.7.7-.2.6-.2 1.6.7 3 .9 1.3 2.2 2.5 3.6 3.1 1.2.5 2.1.4 2.7.2.3-.1.6-.4.8-.7l.4-.8c.1-.3 0-.6-.3-.8l-1.5-.7c-.3-.1-.6-.1-.8.2l-.4.5c-.1.2-.4.2-.6.1-.5-.2-1-.7-1.5-1.2-.4-.5-.8-1.1-1-1.6-.1-.2 0-.5.2-.6l.5-.3c.3-.2.4-.5.3-.8l-.6-1.6c-.1-.3-.5-.5-.8-.4l-1 .2Z' stroke='white' stroke-width='1.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact-link-telegram:hover,
.contact-link-whatsapp:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.1) 100%);
  transform:translateY(-1px);
}
.mini-note-messengers{
  margin-top:12px;
}

.faq-list{display:grid;gap:12px}
.faq-item{overflow:hidden;border-radius:24px;background:#fffdfa;border:1px solid rgba(232,221,208,.92);box-shadow:var(--shadow-soft)}
.faq-question{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:20px 22px;border:0;background:linear-gradient(180deg,#fffdfa 0%, #f7f1ea 100%);
  color:var(--ink);font-size:19px;font-weight:800;text-align:left;cursor:pointer
}
.faq-question span{display:grid;place-items:center;width:38px;height:38px;border-radius:999px;background:#1f2024;color:#fff;font-size:24px;line-height:1;flex:0 0 38px}
.faq-answer{display:none;padding:0 22px 20px;color:var(--muted);line-height:1.7}
.faq-item.open .faq-answer{display:block}
.footer{padding:18px 0 40px}
.footer-inner{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;padding-top:8px;border-top:1px solid rgba(220,208,196,.95)}
.footer-brand{font-size:22px;font-weight:900;letter-spacing:-.04em}
.footer-meta{margin-top:10px;color:var(--muted);line-height:1.7;font-size:14px}
.footer-dev{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.footer-dev-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#5a697e;
  font-weight:800;
  text-decoration:none;
}
.footer-dev-icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 4L3.8 10.6c-.8.3-.8 1.4.1 1.7l4.3 1.3 1.7 5c.3.8 1.4.9 1.8.1L14 14l4.8 3.7c.6.5 1.5.1 1.6-.7L22 4.8c.1-.7-.5-1.2-1.1-.8Z' stroke='%235a697e' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m8.1 13.5 11.7-8.7' stroke='%235a697e' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.footer-dev-link:hover{
  color:#344050;
}
.footer-links{display:flex;flex-wrap:wrap;gap:12px 18px;justify-content:flex-end}
.footer-links a{color:#6c5e53;font-weight:700}
@media (max-width: 1080px){
  .hero-card,.offer-card,.two-col,.calc-layout,.calc-caption-grid,.calc-showcase{grid-template-columns:1fr}
  .hero-visual{min-height:430px}
  .plate-1{width:280px;height:230px}
  .plate-2{width:260px;height:215px;top:150px}
  .plate-3{width:250px;height:205px}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .glass-gallery-stage{min-height:580px;padding:26px 0 76px}
  .glass-gallery-track{width:min(100%, 820px);min-height:500px}
  .glass-slide{width:clamp(220px, 42vw, 360px)}
  .glass-gallery-fade{width:14%}
  .steps-grid{grid-template-columns:1fr}
  .calc-showcase{grid-template-areas:"head" "photo" "cards"}
  .calc-photo-wrap{width:min(100%, 360px);justify-self:center}
  .calc-caption-grid{margin-top:2px}
}
@media (max-width: 760px){
  .section-head .eyebrow::after{
    left:100%;
    width:100vw;
  }
  .container{width:min(100% - 36px, 1180px)}
  .section.section-gallery:not(.section-results-gallery){padding-bottom:2px}
  .section.section-gallery:not(.section-results-gallery) + .section.section-soft{padding-top:6px}
  .calc-showcase{padding:14px}
  .calc-photo-wrap{width:100%}
  .calc-photo{height:auto;max-height:560px}
  .hero::before{inset:0 0 18px 0;border-radius:0 0 30px 30px}
  .hero-card{padding:28px 22px;min-height:auto;border-radius:0}
  .hero-copy h1{font-size:48px}
  .hero-subtitle{font-size:16px}
  .hero-visual{min-height:340px}
  .plate-1{top:0;right:0;width:220px;height:180px}
  .plate-2{left:0;top:110px;width:205px;height:170px}
  .plate-3{right:14px;bottom:0;width:190px;height:158px}
  .section{padding:20px 0}
  .section-head h2{font-size:34px}
  .grid-4,.grid-3,.grid-2,.calc-form{grid-template-columns:1fr}
  .field-wide{grid-column:auto}
  .benefit-card{
    width:calc(100% - 12px);
    padding:22px 20px 22px 70px;
  }
  .benefit-card > .icon{
    left:14px;
    font-size:92px;
  }
  .feature-card{
    min-height:176px;
    padding:20px;
    display:grid;
    align-content:center;
    gap:8px;
  }
  .glass-gallery{max-width:100%;padding-inline:0}
  .glass-gallery-stage{min-height:420px;padding:18px 0 48px;overflow:hidden}
  .glass-gallery-track{width:100%;min-height:320px}
  .glass-gallery-fade{width:9%;bottom:26px}
  .glass-slide{top:0;width:min(52vw, 208px);padding:10px;border-radius:24px}
  .glass-slide img{filter:drop-shadow(0 14px 22px rgba(52,33,17,.1))}
  .glass-gallery-controls{gap:12px;margin-top:-6px}
  .glass-gallery-arrow{width:44px;height:44px;font-size:20px}
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-stage{min-height:0;height:358px;padding:12px 0 18px;overflow:hidden}
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-track{min-height:0;height:328px}
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-controls{bottom:2px;margin-top:0}
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-fade{bottom:18px}
  .offer-gift-banner-art{
    width:clamp(360px, 78vw, 520px);
    right:-150px;
    transform:translateY(-50%) rotate(-8deg);
  }
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-gallery-stage{min-height:auto;padding:0 0 10px;overflow:hidden;touch-action:auto;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-gallery-track{display:grid;grid-auto-flow:column;grid-auto-columns:min(72vw, 260px);gap:14px;width:100%;min-height:auto;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;padding:4px 12px 10px;-webkit-overflow-scrolling:touch;touch-action:pan-x pan-y;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-slide{position:relative;left:auto;top:auto;width:auto;padding:10px;border-radius:24px;transform:none;opacity:1;filter:none;z-index:auto;will-change:auto;transition:none;backdrop-filter:none;scroll-snap-align:center;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-slide::before{display:none;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-slide img{filter:none;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-gallery-fade{display:none;}
  .glass-gallery[data-gallery-mobile-lite="true"].is-mobile-strip .glass-gallery-controls{display:none;}
  .glass-gallery-dots{display:none}
  .offer-stack{gap:16px}
  .offer-card{padding:22px;border-radius:30px}
  .offer-tier{grid-template-columns:1fr;gap:16px}
  .offer-tier-action{justify-items:start;min-width:0}
  .offer-tier-title{font-size:28px}
  .offer-tier-label{font-size:17px}
  .offer-tier-note{text-align:left;max-width:none}
  .price-current{font-size:46px}
  .contact-links-messengers{grid-template-columns:1fr}
  .offer-gift-banner{
    padding:18px 140px 20px 18px;
  }
  .offer-gift-banner-art{
    right:-110px;
    width:260px;
  }
  .faq-question{font-size:17px;padding:18px}
  .faq-answer{padding:0 18px 18px}
  .footer-inner{flex-direction:column;align-items:flex-start}
  .footer-links{justify-content:flex-start}
}

@media (max-width: 760px){
  .hero-copy .kicker{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
    gap:4px;
  }
  .kicker-mobile-break::before{content:"";}
  .hero-actions{
    justify-content:center;
  }
  .hero-actions .hero-cta{
    position:relative;
    width:100%;
    max-width:286px;
    min-height:55px;
    padding:7px 18px 7px 56px;
    justify-items:start;
    text-align:left;
    overflow:visible;
  }
  .hero-cta-copy{
    width:100%;
    justify-items:start;
    gap:5px;
  }
  .hero-cta-text{
    font-size:18px;
  }
  .hero-cta-subtitle{
    font-size:10px;
    letter-spacing:.09em;
  }
  .hero-cta-badge{
    position:absolute;
    left:0;
    top:50%;
    width:52px;
    height:52px;
    flex-basis:auto;
    font-size:37px;
    transform:translate(-38%, -50%);
    background:linear-gradient(180deg,#fff8f1 0%, #f2d5b7 100%);
    color:#1f2024;
    border:1px solid rgba(255,255,255,.7);
    box-shadow:0 18px 30px rgba(12,10,9,.3);
  }
}


.hero-visual-results{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:520px;
}
.hero-results-stack{
  position:relative;
  width:min(100%, 500px);
  min-height:430px;
}
.hero-result-card{
  --hero-result-radius:30px;
  --hero-result-frame:12px;
  position:absolute;
  margin:0;
  width:250px;
  height:360px;
  padding:var(--hero-result-frame);
  box-sizing:border-box;
  overflow:hidden;
  border-radius:var(--hero-result-radius);
  background:linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.1));
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 48px rgba(10,10,12,.18), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero-result-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:calc(var(--hero-result-radius) - var(--hero-result-frame));
}
.hero-result-card-left{left:12px;top:38px;transform:rotate(-8deg);}
.hero-result-card-right{right:8px;top:0;transform:rotate(7deg);}
.hero-result-label{
  position:absolute;
  left:18px;
  right:18px;
  bottom:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(31,32,36,.78);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}
.hero-result-label-left{left:24px;right:auto;max-width:180px;}
.hero-result-label-right{left:auto;right:24px;max-width:110px;}
.hero-motivation-row{
  position:relative;
  width:min(100%, 470px);
  min-height:130px;
}
.hero-motivation{
  --motivation-rotate:0deg;
  --motivation-float-x:0px;
  --motivation-float-y:-7px;
  position:absolute;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 16px 28px rgba(10,10,12,.16);
  transform:translate3d(0,0,0) rotate(var(--motivation-rotate));
  animation:heroMotivationFloat 4.8s ease-in-out infinite;
  will-change:transform;
}
.hero-motivation-1{left:0;top:22px;background:linear-gradient(135deg,#ff7a7a,#ff5d72);--motivation-rotate:-7deg;--motivation-float-x:5px;animation-delay:0s;}
.hero-motivation-2{left:128px;top:58px;background:linear-gradient(135deg,#b893ff,#8e6cff);--motivation-rotate:4deg;--motivation-float-x:-4px;--motivation-float-y:-9px;animation-delay:1s;}
.hero-motivation-3{right:0;top:12px;background:linear-gradient(135deg,#59d7a7,#2fb989);--motivation-rotate:-4deg;--motivation-float-x:4px;--motivation-float-y:-8px;animation-delay:.55s;}
@keyframes heroMotivationFloat{
  0%{
    transform:translate3d(0,0,0) rotate(var(--motivation-rotate));
  }
  50%{
    transform:translate3d(var(--motivation-float-x), var(--motivation-float-y), 0) rotate(calc(var(--motivation-rotate) + 1.5deg));
  }
  100%{
    transform:translate3d(0,0,0) rotate(var(--motivation-rotate));
  }
}
@media (prefers-reduced-motion: reduce){
  .hero-motivation{
    animation:none;
  }
}
.section-results-gallery .section-head{margin-bottom:8px;}
.section-results-gallery .section-head h2{margin-top:0;}
.section-results-gallery .glass-gallery-stage{padding-bottom:0;}
.section-results-gallery .glass-gallery-controls{margin-top:-64px;}
.glass-slide{cursor:default;}
.glass-gallery[data-gallery-zoom="true"] .glass-slide{cursor:zoom-in;}
.glass-gallery[data-gallery-dots-only="true"] .glass-gallery-arrow{
  display:none;
}
.glass-gallery[data-gallery-dots-only="true"]{
  padding-bottom:0;
}
.glass-gallery[data-gallery-dots-only="true"] .glass-gallery-stage{
  min-height:auto;
  padding-bottom:22px;
}
.glass-gallery[data-gallery-dots-only="true"] .glass-gallery-track{
  min-height:500px;
}
.glass-gallery[data-gallery-dots-only="true"] .glass-gallery-controls{
  position:absolute;
  left:50%;
  bottom:0;
  z-index:7;
  gap:0;
  margin-top:0;
  transform:translateX(-50%);
}
.glass-gallery[data-gallery-dots-only="true"] .glass-gallery-dots{
  min-width:0;
}
@media (min-width: 761px){
  .glass-gallery{
    max-width:760px;
  }
  .glass-gallery-stage{
    min-height:360px;
    padding:18px 0 54px;
  }
  .glass-gallery-track{
    width:min(100%, 640px);
    min-height:300px;
  }
  .glass-slide{
    width:clamp(150px, 18vw, 220px);
    padding:12px;
    border-radius:24px;
  }
  .glass-gallery-fade{
    width:14%;
    bottom:20px;
  }
  .glass-gallery-arrow{
    width:46px;
    height:46px;
    font-size:20px;
  }
  .section-results-gallery .glass-gallery-stage{
    padding-bottom:0;
  }
  .section-results-gallery .glass-gallery-controls{
    margin-top:-42px;
  }
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-arrow{
    display:inline-flex;
  }
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-stage{
    min-height:auto;
    padding-bottom:20px;
  }
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-track{
    min-height:300px;
  }
  .glass-gallery[data-gallery-dots-only="true"] .glass-gallery-controls{
    bottom:-4px;
    gap:12px;
  }
}
body.gallery-lightbox-open{overflow:hidden;}
.gallery-lightbox{
  position:fixed;
  inset:0;
  width:100vw;
  height:100dvh;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:0;
  background:rgba(17,16,20,.92);
  backdrop-filter:blur(10px);
}
.gallery-lightbox.is-open{display:flex;}
.gallery-lightbox img{
  display:block;
  position:relative;
  margin:auto;
  max-width:100vw;
  max-height:100dvh;
  width:100vw;
  height:100dvh;
  object-fit:contain;
  border-radius:0;
  box-shadow:none;
  cursor:zoom-out;
}
.gallery-lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
@media (max-width: 1080px){
  .hero-visual-results{min-height:470px;}
}
@media (max-width: 760px){
  .hero-visual-results{min-height:auto;gap:8px;}
  .hero-results-stack{width:100%;min-height:330px;}
  .hero-result-card{width:170px;padding:8px;}
  .hero-result-card-left{left:2px;top:34px;transform:rotate(-9deg);}
  .hero-result-card-right{right:2px;top:0;transform:rotate(8deg);}
  .hero-result-label{font-size:11px;min-height:36px;padding:8px 10px;max-width:78%;}
  .hero-motivation-row{min-height:155px;width:100%;}
  .hero-motivation{font-size:12px;padding:10px 14px;}
  .hero-motivation-1{left:2px;top:56px;}
  .hero-motivation-2{left:74px;top:94px;}
  .hero-motivation-3{right:2px;top:46px;max-width:158px;text-align:center;}
}

@media (max-width: 760px){
  .gallery-lightbox{padding:0;}
  .gallery-lightbox img{max-width:100vw;max-height:100dvh;width:100vw;height:100dvh;border-radius:0;}
  .gallery-lightbox-close{top:max(10px, env(safe-area-inset-top));right:max(10px, env(safe-area-inset-right));}
}
