@charset "UTF-8";
:root{
  --bg:#FFF8F3;
  --bg-2:#FFECDC;
  --bg-3:#FAD4BB;
  --ink:#261E1B;
  --ink-2:#483D36;
  --ink-3:#73655C;
  --accent:#FF7518;
  --accent-dark:#E85D00;
  --accent-soft:#FFE2C4;
  --accent-deep:#5C2108;
  --rose:#E8886A;
  --rose-soft:#FCEEE8;
  --plum:#3A1F18;
  --terracotta:#E85D2E;
  --cream-deep:#FFC44D;
  --gold:#B45309;
  --line:rgba(38,30,27,.12);
  --shadow-sm:0 4px 16px rgba(38,30,27,.07);
  --shadow:0 20px 50px -20px rgba(38,30,27,.2);
  --shadow-lg:0 40px 80px -30px rgba(38,30,27,.28);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:17px;overflow-x:hidden;width:100%}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
  max-width:100%;
  font-weight:400;
}
.serif{font-family:'Fraunces',serif;font-weight:600}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ======= ANNOUNCEMENT BAR ======= */
.announce{
  background:var(--plum);
  color:var(--bg);
  text-align:center;
  font-size:.82rem;
  padding:.65rem max(1rem, env(safe-area-inset-left)) .65rem max(1rem, env(safe-area-inset-right));
  letter-spacing:.02em;
  font-weight:500;
  overflow-wrap:anywhere;
}
.announce strong{color:var(--cream-deep)}

/* ======= NAV ======= */
nav{
  position:sticky;top:0;z-index:50;
  background:rgba(255,248,243,.93);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
  max-width:100%;
  overflow-x:clip;
}
.nav-inner{
  display:flex;justify-content:space-between;align-items:center;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:1rem max(24px, env(safe-area-inset-left)) 1rem max(24px, env(safe-area-inset-right));
  gap:.85rem;
  min-width:0;
  box-sizing:border-box;
}
.logo{
  font-family:'Fraunces',serif;
  font-size:1.35rem;
  font-weight:700;
  letter-spacing:-.01em;
  display:block;
  line-height:1.2;
  flex:0 1 auto;
  min-width:0;
}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{
  font-size:.92rem;
  color:var(--ink-2);
  font-weight:500;
  transition:color .2s;
}
.nav-links a:hover{color:var(--accent)}
.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.85rem 1.6rem;
  border-radius:100px;
  font-family:inherit;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  border:none;
  transition:all .25s cubic-bezier(.2,.8,.2,1);
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:var(--bg);
}
.btn-primary:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 30px -10px rgba(255,117,24,.38);
}
.btn-primary svg{transition:transform .25s}
.btn-primary:hover svg{transform:translateX(4px)}
.btn-large{
  padding:1.15rem 2.2rem;
  font-size:1rem;
}
.btn-secondary{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--ink);
}
.btn-secondary:hover{
  background:var(--ink);
  color:var(--bg);
}

/* ======= HERO ======= */
.hero{
  padding:4rem 0 5rem;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  column-gap:4rem;
  row-gap:1.5rem;
  align-items:center;
  grid-template-areas:"rest visual";
}
.hero-visual{grid-area:visual;}
.hero-rest{grid-area:rest;}
h1{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:clamp(2.2rem,4.4vw,3.8rem);
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--ink);
  margin-bottom:1.5rem;
}
h1 em{
  font-style:normal;
  color:var(--accent);
  font-weight:600;
}
.hero-sub{
  font-size:1.18rem;
  color:var(--ink-2);
  margin-bottom:1.1rem;
  max-width:620px;
  line-height:1.85;
  font-weight:400;
  padding:.2em 0 .15em;
}
  font-size:1.06rem;
  color:var(--ink);
  font-weight:600;
  margin-bottom:1.85rem;
}
.hero-sub strong{color:var(--ink);font-weight:600}
.hero-sub .hero-sub-accent{
  color:var(--ink);
  font-weight:600;
  display:inline-block;
  padding:.22em .52em .26em;
  margin:.12em .14em .08em;
  border-radius:.5em;
  background:var(--accent-soft);
  box-shadow:inset 0 -2px 0 0 rgba(140,54,26,.42);
  vertical-align:baseline;
}
.hero-checks{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.85rem 1.5rem;
  margin-bottom:2rem;
  max-width:560px;
}
.hero-checks li{
  display:flex;align-items:center;gap:.65rem;
  font-size:1rem;
  color:var(--ink);
  font-weight:500;
}
.check-icon{
  flex-shrink:0;
  width:22px;height:22px;
  background:var(--accent);
  border-radius:50%;
  display:grid;place-items:center;
  color:white;
}
.check-icon svg{width:12px;height:12px}
.hero-price{
  display:flex;align-items:center;gap:1rem;
  margin-bottom:1.5rem;
  padding:1rem 1.25rem;
  background:var(--bg-2);
  border-radius:16px;
  border:1px dashed var(--accent);
  width:fit-content;
  max-width:100%;
  box-sizing:border-box;
  flex-wrap:wrap;
}
.price-old{
  font-size:1.1rem;
  color:var(--ink-3);
  text-decoration:line-through;
  white-space:nowrap;
}
.price-new{
  font-family:'Fraunces',serif;
  font-size:2.4rem;
  font-weight:700;
  color:var(--ink);
  letter-spacing:-.02em;
  line-height:1;
  white-space:nowrap;
}
.price-badge{
  background:var(--accent);
  color:white;
  padding:.3rem .7rem;
  border-radius:6px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
}
.hero-meta{
  font-size:.88rem;
  color:var(--ink-3);
  margin-top:1rem;
  display:flex;align-items:center;gap:.5rem;
}

/* HERO VISUAL */
.hero-visual{
  position:relative;
  height:580px;
  max-width:100%;
}
.hv-main{
  position:absolute;
  top:0;right:0;
  width:78%;
  height:78%;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.hv-main img{width:100%;height:100%;object-fit:cover}
.hv-second{
  position:absolute;
  bottom:0;left:0;
  width:54%;
  height:48%;
  border-radius:20px;
  overflow:hidden;
  border:8px solid var(--bg);
  box-shadow:var(--shadow);
  background:var(--accent-soft);
}
.hv-second img{width:100%;height:100%;object-fit:cover}
@keyframes hv-drift-a{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(3px,-10px,0)}
}
@keyframes hv-drift-b{
  0%,100%{transform:translate3d(0,0,0)}
  40%{transform:translate3d(-4px,-8px,0)}
  70%{transform:translate3d(2px,-4px,0)}
}
@media (prefers-reduced-motion:reduce){
  .hv-card.hv-card-1,.hv-card.hv-card-2{animation:none!important}
}
.hv-card{
  position:absolute;
  background:var(--bg);
  border-radius:18px;
  padding:1rem 1.2rem;
  box-shadow:var(--shadow);
  display:flex;align-items:center;gap:.85rem;
  z-index:3;
}
.hv-card-1{
  top:18%;left:0;
  animation:hv-drift-a 6.8s ease-in-out infinite;
}
.hv-card-2{
  bottom:5%;right:5%;
  flex-direction:column;
  align-items:flex-start;
  gap:.3rem;
  animation:hv-drift-b 8.2s ease-in-out infinite;
  animation-delay:-1.6s;
}
.hv-icon{
  width:42px;height:42px;
  border-radius:12px;
  background:var(--accent-soft);
  display:grid;place-items:center;
  font-size:1.3rem;
}
.hv-icon-2{background:var(--accent-soft)}
.hv-card-text strong{
  display:block;
  font-size:.95rem;
  color:var(--ink);
  font-weight:700;
}
.hv-card-text span{
  font-size:.82rem;
  color:var(--ink-2);
  font-weight:500;
}
.hv-stars{color:var(--gold);font-size:.95rem;letter-spacing:.1em}
.hv-card-2 strong{font-size:1.05rem}

/* ======= SOCIAL PROOF STRIP ======= */
.proof-strip{
  background:var(--bg-2);
  padding:2rem 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:2rem;
  align-items:center;
}
.proof-item{
  text-align:center;
  border-right:1px solid var(--line);
  padding:.5rem 0;
}
.proof-item:last-child{border-right:none}
.proof-num{
  font-family:'Fraunces',serif;
  font-size:2.6rem;
  font-weight:700;
  color:var(--accent);
  line-height:1;
  margin-bottom:.4rem;
  letter-spacing:-.01em;
}
.proof-label{
  font-size:.88rem;
  color:var(--ink-2);
  font-weight:500;
}

/* ======= SECTIONS ======= */
section{
  padding:6rem 0;
  position:relative;
}
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:1rem;
}
h2{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:clamp(1.9rem,3.5vw,2.9rem);
  line-height:1.15;
  letter-spacing:-.015em;
  color:var(--ink);
  margin-bottom:1.25rem;
}
h2 em{font-style:normal;color:var(--accent);font-weight:600}
.section-intro{
  font-size:1.1rem;
  color:var(--ink-2);
  max-width:640px;
  line-height:1.65;
  font-weight:400;
}
.section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 4rem;
}
.section-head .section-intro{margin:0 auto}

/* ======= PROBLEM SECTION ======= */
.problem-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:5rem;
  align-items:center;
}
.problem-img{
  position:relative;
  height:560px;
}
.problem-img .pi-1{
  position:absolute;
  top:0;left:0;
  width:80%;height:65%;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.problem-img .pi-2{
  position:absolute;
  bottom:0;right:0;
  width:55%;height:45%;
  border-radius:20px;
  overflow:hidden;
  border:8px solid var(--bg);
  box-shadow:var(--shadow);
}
.problem-img img{width:100%;height:100%;object-fit:cover}
.problem-list{
  list-style:none;
  margin:2rem 0;
}
.problem-list li{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.1rem 0;
  border-bottom:1px solid var(--line);
  font-size:1.08rem;
  color:var(--ink);
  font-weight:500;
}
.problem-list li:first-child{border-top:1px solid var(--line)}
.problem-bullet{
  flex-shrink:0;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--accent-soft);
  color:var(--accent);
  display:grid;place-items:center;
  font-size:.82rem;
  font-weight:700;
  margin-top:.1rem;
}
.problem-quote{
  margin-top:2rem;
  padding:1.75rem 2rem;
  background:linear-gradient(135deg, var(--accent-soft), var(--bg-2));
  border-left:4px solid var(--accent);
  border-radius:0 16px 16px 0;
}
.problem-quote p{
  font-family:'Fraunces',serif;
  font-style:normal;
  font-weight:600;
  font-size:1.25rem;
  line-height:1.45;
  color:var(--ink);
}

/* ======= WHY DIETS DON'T WORK ======= */
.why{
  background:var(--accent-deep);
  color:var(--bg);
}
.why h2{color:var(--bg)}
.why h2 em{color:var(--cream-deep)}
.why .eyebrow{color:var(--cream-deep)}
.why .section-intro{color:rgba(248,245,238,.82)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
  margin-top:3.5rem;
}
.why-grid--edu{
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
}
.why-mechanism{margin-top:4rem}
.why-card{
  background:rgba(248,245,238,.06);
  border:1px solid rgba(248,245,238,.14);
  padding:2rem 1.75rem;
  border-radius:20px;
  transition:all .3s ease;
  text-align:center;
}
.why-card:hover{
  background:rgba(248,245,238,.1);
  border-color:var(--cream-deep);
  transform:translateY(-4px);
}
.why-icon{
  width:74px;height:74px;
  margin:0 auto 1.35rem;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(251,246,240,.22);
  border-radius:18px;
  display:grid;place-items:center;
}
.why-icon i{color:#fff;font-size:1.85rem;line-height:1;display:block}
.why-card h3{
  font-family:'Fraunces',serif;
  font-size:1.3rem;
  font-weight:600;
  margin-bottom:.6rem;
  color:var(--bg);
  letter-spacing:-.01em;
}
.why-card p{
  font-size:.98rem;
  color:rgba(251,246,240,.85);
  line-height:1.55;
  font-weight:400;
}
.why-conclusion{
  margin-top:3.5rem;
  text-align:center;
  padding:2.5rem 2rem;
  background:linear-gradient(135deg, var(--accent), #CF4500);
  border-radius:24px;
}
.why-conclusion p{
  font-family:'Fraunces',serif;
  font-style:normal;
  font-weight:600;
  font-size:clamp(1.35rem, 2.3vw, 1.85rem);
  line-height:1.35;
  color:var(--bg);
  max-width:760px;
  margin:0 auto;
  letter-spacing:-.01em;
}

/* ======= SOLUTION ======= */
.solution-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:3.5rem;
}
.sol-card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:2rem;
  position:relative;
  transition:all .3s ease;
  overflow:hidden;
  text-align:center;
}
.sol-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.sol-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--accent),var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s;
}
.sol-card:hover::before{transform:scaleX(1)}
.sol-icon{
  width:74px;height:74px;
  border-radius:18px;
  background:var(--accent);
  border:1px solid rgba(255,255,255,.2);
  display:grid;place-items:center;
  margin:0 auto 1.35rem;
}
.sol-icon i{color:#fff;font-size:1.85rem;line-height:1;display:block}
.sol-card h3{
  font-family:'Fraunces',serif;
  font-size:1.4rem;
  font-weight:600;
  margin-bottom:.6rem;
  color:var(--ink);
  line-height:1.25;
  letter-spacing:-.01em;
}
.sol-card p{
  font-size:1rem;
  color:var(--ink-2);
  line-height:1.6;
}

/* ======= WHAT YOU GET ======= */
.deliver{
  background:var(--accent);
  color:var(--bg);
  position:relative;
  overflow:hidden;
}
.deliver::before{
  content:"";
  position:absolute;
  bottom:-200px;left:-200px;
  width:500px;height:500px;
  background:radial-gradient(circle, rgba(255,183,94,.26), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.deliver h2,.deliver h2 em{color:#fff;font-weight:600}
.deliver h2 em{font-style:normal;opacity:.98}
.deliver .eyebrow{color:#fff;opacity:.96}
.deliver .section-intro{color:rgba(255,255,255,.95)}
.deliver-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:5rem;
  align-items:center;
  position:relative;
  z-index:2;
}
.deliver-img{
  position:relative;
  height:600px;
}
.deliver-img .di{
  position:absolute;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.deliver-img .di img{width:100%;height:100%;object-fit:cover}
.deliver-img .di-1{
  top:0;left:0;
  width:60%;height:55%;
  z-index:1;
}
.deliver-img .di-2{
  bottom:0;right:0;
  width:62%;height:55%;
  border:8px solid var(--accent);
  z-index:2;
}
.deliver-img .di-3{
  top:30%;right:5%;
  width:38%;height:30%;
  border:8px solid var(--accent);
  z-index:3;
}
.deliver-list{
  list-style:none;
  display:grid;
  gap:.85rem;
  margin:2.5rem 0;
}
.deliver-item{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.2rem 1.5rem;
  background:rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.55);
  border-radius:16px;
  box-shadow:0 6px 24px rgba(38,22,14,.14);
  transition:all .25s;
}
.deliver-item:hover{
  background:#fff;
  transform:translateX(6px);
  box-shadow:0 10px 32px rgba(38,22,14,.18);
}
.deliver-num{
  width:40px;height:40px;
  background:var(--accent-dark);
  color:#fff;
  border-radius:50%;
  display:grid;place-items:center;
  flex-shrink:0;
  font-family:'Fraunces',serif;
  font-size:1.15rem;
  font-weight:700;
}
.deliver-text{font-size:1.05rem;color:var(--ink);font-weight:600;line-height:1.45}

/* ======= STEPS ======= */
.steps{background:var(--bg)}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  margin-top:4rem;
  position:relative;
}
.steps-grid::before{
  content:"";
  position:absolute;
  top:55px;left:18%;right:18%;
  height:2px;
  background:repeating-linear-gradient(90deg,var(--accent) 0,var(--accent) 6px,transparent 6px,transparent 14px);
  z-index:0;
}
.step{
  position:relative;
  z-index:1;
  text-align:center;
  background:var(--bg);
  padding:0 1rem;
}
.step-circle{
  width:110px;height:110px;
  margin:0 auto 1.5rem;
  border-radius:50%;
  background:var(--bg-2);
  border:2px solid var(--plum);
  display:grid;place-items:center;
  font-family:'Fraunces',serif;
  font-size:2.6rem;
  font-weight:700;
  color:var(--plum);
  transition:all .3s;
  position:relative;
}
.step:hover .step-circle{
  background:var(--accent);
  color:var(--bg);
  border-color:var(--accent);
  transform:scale(1.05);
}
.step-circle::after{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius:50%;
  border:1px dashed var(--accent);
  opacity:.4;
}
.step h3{
  font-family:'Fraunces',serif;
  font-size:1.4rem;
  font-weight:600;
  margin-bottom:.6rem;
  letter-spacing:-.01em;
}
.step p{
  font-size:1rem;
  color:var(--ink-2);
  max-width:280px;
  margin:0 auto;
  line-height:1.6;
}

/* ======= TESTIMONIALS ======= */
.testimonials{background:var(--bg-2);position:relative;overflow:hidden}
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:3.5rem;
}
.testi{
  background:var(--bg);
  padding:2.25rem 1.85rem;
  border-radius:24px;
  box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;
  transition:transform .3s;
}
.testi:hover{transform:translateY(-4px)}
.testi-stars{color:var(--gold);letter-spacing:.15em;margin-bottom:1.1rem;font-size:1rem}
.testi-text{
  font-family:'Inter',sans-serif;
  font-style:normal;
  font-size:1.05rem;
  color:var(--ink);
  line-height:1.6;
  margin-bottom:1.75rem;
  flex:1;
  font-weight:400;
}
.testi-author{
  display:flex;align-items:center;gap:.85rem;
  padding-top:1.25rem;
  border-top:1px solid var(--line);
}
.testi-avatar{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--accent);
  color:var(--bg);
  display:grid;place-items:center;
  font-family:'Fraunces',serif;
  font-size:1.15rem;
  font-weight:700;
  flex-shrink:0;
}
.testi:nth-child(2) .testi-avatar{background:var(--terracotta)}
.testi:nth-child(3) .testi-avatar{background:var(--rose);color:var(--ink)}
.testi:nth-child(4) .testi-avatar{background:var(--plum)}
.testi:nth-child(5) .testi-avatar{background:var(--gold);color:var(--ink)}
.testi:nth-child(6) .testi-avatar{background:var(--accent-soft);color:var(--accent-dark)}
.testi-name{font-weight:700;font-size:1rem;color:var(--ink)}
.testi-meta{font-size:.88rem;color:var(--ink-2);font-weight:500}

/* ======= FOR WHOM ======= */
.forwhom-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:5rem;
  align-items:center;
}
.forwhom-list{
  list-style:none;
  display:grid;
  gap:.85rem;
}
.forwhom-list li{
  display:flex;align-items:center;gap:1.1rem;
  padding:1.2rem 1.4rem;
  background:white;
  border:1px solid var(--line);
  border-radius:14px;
  font-size:1.05rem;
  font-weight:500;
  color:var(--ink);
  transition:all .25s;
}
.forwhom-list li:hover{
  border-color:var(--accent);
  transform:translateX(6px);
  box-shadow:var(--shadow-sm);
}
.fw-check{
  flex-shrink:0;
  width:30px;height:30px;
  background:var(--accent);
  color:white;
  border-radius:50%;
  display:grid;place-items:center;
}
.fw-check svg{width:14px;height:14px}
.capacity{
  display:flex;align-items:center;gap:1.5rem;
  padding:1.75rem 2rem;
  background:var(--plum);
  color:var(--bg);
  border-radius:20px;
  margin-top:2rem;
}
.capacity-num{
  font-family:'Fraunces',serif;
  font-size:3.6rem;
  font-weight:700;
  color:var(--cream-deep);
  line-height:1;
  letter-spacing:-.02em;
}
.capacity-text strong{
  display:block;
  font-family:'Fraunces',serif;
  font-style:normal;
  font-weight:600;
  font-size:1.25rem;
  margin-bottom:.35rem;
  color:var(--bg);
}
.capacity-text span{
  font-size:.95rem;
  color:rgba(251,246,240,.82);
  line-height:1.5;
}

/* ======= CTA / FORM ======= */
.cta-section{
  background:linear-gradient(135deg,var(--bg-2),var(--accent-soft));
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:"";
  position:absolute;
  top:-100px;right:-100px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(255,140,50,.26),transparent 70%);
  border-radius:50%;
}
.cta-card{
  background:var(--bg);
  border-radius:32px;
  padding:4rem;
  box-shadow:var(--shadow-lg);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  position:relative;
  z-index:1;
}
.cta-left h2{margin-bottom:1.25rem}
.cta-price-block{
  display:flex;align-items:baseline;gap:1rem;
  margin-top:2rem;
  padding:1.25rem 1.5rem;
  background:var(--bg-2);
  border-radius:16px;
  width:fit-content;
  max-width:100%;
  box-sizing:border-box;
  flex-wrap:wrap;
}
.urgent-note{
  margin-top:1.25rem;
  font-size:.92rem;
  color:var(--accent-dark);
  font-weight:600;
  display:flex;align-items:center;gap:.5rem;
}

/* FORM */
.form{
  background:var(--bg-2);
  padding:2.5rem 2rem;
  border-radius:24px;
  border:1px solid var(--line);
}
.form-title{
  font-family:'Fraunces',serif;
  font-size:1.7rem;
  font-weight:600;
  text-align:center;
  margin-bottom:1.75rem;
  letter-spacing:-.01em;
}
.form-group{margin-bottom:1.1rem}
.form-group label{
  display:block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-2);
  margin-bottom:.5rem;
}
.form-group input{
  width:100%;
  padding:1rem 1.2rem;
  border:1.5px solid var(--line);
  border-radius:12px;
  font-family:inherit;
  font-size:1rem;
  background:var(--bg);
  color:var(--ink);
  transition:border-color .2s;
}
.form-group input:focus{
  outline:none;
  border-color:var(--accent);
}
.form-submit{
  width:100%;
  padding:1.2rem;
  background:var(--accent);
  color:var(--bg);
  border:none;
  border-radius:12px;
  font-family:inherit;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  margin-top:.5rem;
  transition:all .25s;
}
.form-submit:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 30px -10px rgba(255,117,24,.38);
}
@media (max-width:768px){
  .form-submit__desk-price{display:none}
}
.form-meta{
  text-align:center;
  margin-top:1rem;
  font-size:.82rem;
  color:var(--ink-3);
  display:flex;align-items:center;justify-content:center;gap:.5rem;
}
.form-guarantee{
  text-align:center;
  margin-top:.85rem;
  font-size:.84rem;
  color:var(--ink-2);
  line-height:1.45;
  display:flex;align-items:flex-start;justify-content:center;
  gap:.45rem;
  max-width:22rem;
  margin-left:auto;
  margin-right:auto;
}
.form-guarantee svg{
  flex-shrink:0;
  margin-top:.15rem;
  color:var(--accent-dark);
}
.guarantee-note{
  margin-top:1.1rem;
  font-size:.92rem;
  color:var(--ink-2);
  line-height:1.55;
  display:flex;align-items:flex-start;gap:.55rem;
  max-width:36rem;
  padding:.85rem 1rem;
  background:var(--bg-2);
  border-radius:14px;
  border:1px solid var(--line);
}
.guarantee-note svg{flex-shrink:0;margin-top:.15rem;color:var(--accent-dark)}
.guarantee-note strong{color:var(--ink);font-weight:600}
.guarantee-note p{margin:0}

/* ======= UPSELL ======= */
.upsell{background:var(--bg)}
.upsell-card{
  background:linear-gradient(135deg,var(--accent-deep),var(--plum));
  color:var(--bg);
  border-radius:32px;
  padding:3rem 4rem;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:3rem;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.upsell-card::before{
  content:"";
  position:absolute;
  top:-100px;right:-100px;
  width:300px;height:300px;
  background:radial-gradient(circle,rgba(255,183,94,.26),transparent 70%);
  border-radius:50%;
}
.upsell-tag{
  display:inline-block;
  padding:.4rem 1rem;
  background:var(--cream-deep);
  color:var(--accent-deep);
  border-radius:50px;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.upsell h3{
  font-family:'Fraunces',serif;
  font-size:2rem;
  font-weight:600;
  line-height:1.2;
  margin-bottom:1rem;
  letter-spacing:-.01em;
}
.upsell h3 em{color:var(--rose);font-style:normal;font-weight:600}
.upsell-desc{
  color:rgba(251,246,240,.85);
  margin-bottom:1.5rem;
  line-height:1.65;
  font-size:1.02rem;
}
.upsell-features{
  list-style:none;
  display:grid;
  gap:.6rem;
  margin-bottom:2rem;
}
.upsell-features li{
  display:flex;align-items:center;gap:.7rem;
  font-size:1rem;
  color:rgba(251,246,240,.92);
  font-weight:500;
}
.upsell-features li::before{
  content:"→";
  color:var(--cream-deep);
  font-weight:700;
}
.upsell-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.btn-gold{
  background:var(--cream-deep);
  color:var(--accent-deep);
}
.btn-gold:hover{
  background:#F0DEC1;
  transform:translateY(-2px);
}
.btn-ghost{
  background:transparent;
  color:rgba(251,246,240,.85);
  border:1px solid rgba(251,246,240,.35);
}
.btn-ghost:hover{
  color:var(--bg);
  border-color:var(--bg);
}
.upsell-img{
  position:relative;
  height:340px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.upsell-img img{width:100%;height:100%;object-fit:cover}

/* ======= FAQ ======= */
.faq{background:var(--bg-2)}
.faq-list{
  max-width:800px;
  margin:3rem auto 0;
}
.faq-item{
  background:var(--bg);
  border-radius:16px;
  margin-bottom:.85rem;
  overflow:hidden;
  border:1px solid var(--line);
}
.faq-q{
  padding:1.45rem 1.6rem;
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  font-weight:600;
  font-size:1.05rem;
  color:var(--ink);
  user-select:none;
}
.faq-q::after{
  content:"+";
  font-size:1.6rem;
  color:var(--accent);
  transition:transform .25s;
  font-weight:300;
}
.faq-item.open .faq-q::after{
  transform:rotate(45deg);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .25s ease;
  padding:0 1.6rem;
  color:var(--ink-2);
  line-height:1.65;
  font-size:1rem;
}
.faq-a a{color:var(--accent-dark);font-weight:600;text-decoration:underline;text-underline-offset:.12em}
.faq-a a:hover{color:var(--accent)}
.faq-item.open .faq-a{
  padding:0 1.6rem 1.4rem;
  max-height:920px;
}

/* ======= FOOTER ======= */
footer{
  background:var(--accent-deep);
  color:rgba(251,246,240,.7);
  padding:3rem 0 2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:3rem;
  margin-bottom:2.5rem;
}
.footer-logo{
  font-family:'Fraunces',serif;
  font-size:1.4rem;
  font-weight:700;
  color:var(--bg);
  margin-bottom:.75rem;
  display:block;
  letter-spacing:-.01em;
}
.footer-text{font-size:.95rem;line-height:1.65;max-width:340px}
.footer h4{
  color:var(--bg);
  font-size:.92rem;
  font-weight:700;
  margin-bottom:1rem;
}
.footer-links{list-style:none}
.footer-links li{margin-bottom:.6rem}
.footer-links a{
  font-size:.9rem;
  transition:color .2s;
}
.footer-links a:hover{color:var(--rose)}
.footer-bottom{
  padding-top:2rem;
  border-top:1px solid rgba(251,246,240,.12);
  display:flex;justify-content:space-between;align-items:center;
  font-size:.82rem;
  flex-wrap:wrap;gap:1rem;
}

/* ======= MOBILE ======= */
@media (max-width:768px){
  .hero-sub{font-size:1.05rem;line-height:1.7;margin-bottom:1.35rem}
}
@media (max-width:720px){
  .hero-price,
  .cta-price-block{
    display:flex!important;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:flex-start;
    gap:.45rem .55rem;
    padding:.7rem .95rem;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
  }
  .price-old{
    flex:0 0 auto;
    font-size:.88rem;
    line-height:1;
  }
  .price-badge{
    flex:0 0 auto;
    margin-left:auto;
    padding:.26rem .55rem;
    font-size:.64rem;
    line-height:1.15;
  }
  .price-new{
    flex:0 1 auto;
    font-size:clamp(1.32rem, 4.85vw + .4rem, 1.72rem);
    line-height:1;
    letter-spacing:-.025em;
    min-width:0;
    white-space:nowrap;
  }
  .cta-price-block{
    justify-content:flex-start;
  }
}
@media (max-width:960px){
  .hero-grid,
  .problem-grid,
  .deliver-grid,
  .forwhom-grid,
  .cta-card,
  .upsell-card{
    grid-template-columns:1fr;
    gap:3rem;
  }
  .hero-grid{
    grid-template-areas:
      "visual"
      "rest";
    row-gap:2.15rem;
    column-gap:0;
    gap:2.15rem;
  }
  .hero-visual .hv-main{
    width:70%;
    height:72%;
    top:4%;
    right:-5%;
  }
  .hero-visual .hv-second{
    width:56%;
    height:46%;
    left:-7%;
    bottom:-5%;
    border-width:6px;
  }
  .hero-visual .hv-card{
    border-radius:14px;
    padding:.48rem .65rem;
    gap:.5rem;
    box-shadow:0 10px 24px -12px rgba(38,30,27,.22);
  }
  .hero-visual .hv-icon{
    width:30px;height:30px;
    border-radius:9px;
    font-size:1rem;
  }
  .hero-visual .hv-card-text strong{font-size:.76rem}
  .hero-visual .hv-card-text span{font-size:.66rem}
  .hero-visual .hv-stars{font-size:.7rem;letter-spacing:.06em}
  .hero-visual .hv-card-2 strong{font-size:.8rem}
  .hero-visual .hv-card-2 > span{font-size:.68rem!important;font-weight:500!important}
  .hero-visual .hv-card.hv-card-1{
    top:6px;
    left:-3%;
    right:auto;
    transform:none;
    max-width:min(186px,calc(100% + 24px));
    animation:hv-drift-a 6.8s ease-in-out infinite;
    z-index:6;
  }
  .hero-visual .hv-card.hv-card-2{
    bottom:-6%;
    right:-7%;
    left:auto;
    align-items:flex-start;
    gap:.2rem;
    max-width:min(168px,58%);
    animation:hv-drift-b 8.2s ease-in-out infinite;
    animation-delay:-1.6s;
  }
  .cta-card,.upsell-card{padding:2.5rem}
  .problem-img,.deliver-img{height:480px}
  .hero-visual{height:336px;width:70%;justify-self:center;overflow:visible}
  .why-grid,.solution-grid,.steps-grid,.testi-grid{
    grid-template-columns:1fr;
  }
  .steps-grid::before{display:none}
  .nav-links{display:none}
  .proof-strip{padding:1.35rem 0}
  .proof-grid{
    grid-template-columns:repeat(2,1fr);
    gap:.75rem 1rem;
    align-items:start;
  }
  .proof-item:nth-child(2){border-right:none}
  .proof-item{
    padding:.25rem .35rem .4rem;
  }
  .proof-num{
    font-size:clamp(1.5rem,4.8vw,1.95rem);
    margin-bottom:.2rem;
  }
  .proof-label{
    font-size:.78rem;
    line-height:1.3;
  }
  .hero-checks{grid-template-columns:1fr}
  section{padding:4rem 0}
  .footer-grid{grid-template-columns:1fr}
  .container{padding:0 20px}
}
@media (max-width:560px){
  .hero{padding:2rem 0 3rem}
  .hero-visual{height:252px;margin-bottom:.25rem;overflow:visible}
  .problem-img,.deliver-img{height:420px}
  .cta-card,.upsell-card{padding:2rem 1.5rem}
  .form{padding:2rem 1.25rem}
  .upsell-img{height:240px}
  .testi:hover{transform:none}
}

.j2-stick{display:none!important}

/* Mobil: skrytá horní navigace; CTA jen dole jako sticky bar */
@media (max-width:780px){
  body{padding-bottom:calc(6rem + env(safe-area-inset-bottom))}
  nav{display:none!important}
  .proof-strip{
    padding-top:1rem;
    padding-bottom:1.15rem;
  }
  .proof-strip + section{
    padding-top:2.65rem;
  }

  .j2-stick{display:flex!important;position:fixed;bottom:0;left:0;right:0;z-index:45;padding:.75rem 1rem .85rem;padding-bottom:max(.85rem,env(safe-area-inset-bottom));background:rgba(255,248,243,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-top:1px solid var(--line);box-shadow:0 -14px 40px rgba(38,30,27,.07);justify-content:center;gap:.75rem}
  .j2-stick .btn{flex:1;justify-content:center;max-width:420px;margin:0 auto}
  .j2-stick.hidden{display:none!important}
}

.hidden{display:none!important}
.modal{display:none!important;position:fixed;inset:0;z-index:200;padding:calc(18px + env(safe-area-inset-top)) 18px calc(28px + env(safe-area-inset-bottom));overflow-y:auto;-webkit-overflow-scrolling:touch;align-items:flex-start;justify-content:center}
.modal.modal--open{display:flex!important}
.modal-overlay{position:fixed;inset:0;background:rgba(40,22,14,.52);backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}
.modal-panel{position:relative;width:100%;max-width:520px;margin:auto;background:var(--bg);border-radius:26px;border:1px solid var(--line);box-shadow:var(--shadow-lg);padding:2.6rem 1.85rem 1.85rem;max-height:min(90vh,880px);overflow-y:auto}
.modal-panel--wide{max-width:840px;padding-top:3rem}
.modal-close{position:absolute;top:14px;right:14px;width:44px;height:44px;border-radius:50%;border:none;background:var(--bg-2);font-size:1.35rem;line-height:1;cursor:pointer;color:var(--ink);transition:transform .2s,background .2s;display:grid;place-items:center;font-family:inherit}
.modal-close:hover{background:var(--accent-soft);transform:rotate(90deg)}
.modal-heading{font-family:'Fraunces',serif;font-weight:600;font-size:1.52rem;line-height:1.2;color:var(--ink);margin-bottom:.55rem;text-align:center}
.modal-lead{font-size:.95rem;line-height:1.55;color:var(--ink-2);text-align:center;margin-bottom:1.1rem}
.modal-body-plain{font-size:.92rem;line-height:1.6;color:var(--ink-2)}
.modal-price-row{display:flex;align-items:baseline;justify-content:center;gap:1rem;flex-wrap:wrap;margin-bottom:1.15rem;margin-top:.5rem}
.modal-price-row .strike{font-size:1.05rem;color:var(--ink-3);text-decoration:line-through}
.modal-price-row .current{font-family:'Fraunces',serif;font-weight:700;font-size:1.55rem;color:var(--accent-dark)}
.modal-actions{display:flex;flex-direction:column;gap:.6rem;margin-top:.15rem}
/* .btn-ghost je jinak na světlý text nad tmavým upsell-blokem; v modalu máme světlé pozadí */
.modal-panel .btn-ghost{
  color:var(--ink);
  border-color:rgba(38,30,27,.22);
}
.modal-panel .btn-ghost:hover{
  color:var(--accent-dark);
  background:var(--bg-2);
  border-color:var(--ink-3);
}

.modal-terms{font-size:.86rem;line-height:1.6;color:var(--ink-2)}
.modal-terms h4{font-family:'Fraunces',serif;color:var(--ink);font-weight:600;font-size:1.02rem;margin:1rem 0 .35rem}
.modal-terms p{margin-bottom:.5rem}
.modal-terms ul{margin:.35rem 0 .5rem 1.2rem;padding:0}

