/* ===== Postree – strona główna =====
   Wartości (kolory, gradienty, cienie, odstępy) przepisane 1:1 z projektu
   w postree-www-2026-09-11/index.html. Nagłówek pochodzi z shared/header.html
   i jest stylowany przez shared/shared.css – nic z niego nie ma tutaj. */

:root {
  --accent: #3d7a34;
  --ink: #17281c;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; }
img { max-width: 100%; }
a { color: #2f5f28; text-decoration: none; }
a:hover { color: #1c3324; }
.ff-h { font-family: 'Plus Jakarta Sans', sans-serif; }

@keyframes chaosA { 0%, 100% { transform: translate(var(--px,0px),var(--py,0px)) rotate(var(--r,0deg)); } 50% { transform: translate(calc(var(--px,0px) + 14px),calc(var(--py,0px) - 18px)) rotate(calc(var(--r,0deg) + 1.6deg)); } }
@keyframes chaosB { 0%, 100% { transform: translate(var(--px,0px),var(--py,0px)) rotate(var(--r,0deg)); } 50% { transform: translate(calc(var(--px,0px) - 16px),calc(var(--py,0px) + 14px)) rotate(calc(var(--r,0deg) - 1.8deg)); } }
@keyframes chaosC { 0%, 100% { transform: translate(var(--px,0px),var(--py,0px)) rotate(var(--r,0deg)); } 33% { transform: translate(calc(var(--px,0px) + 4px),calc(var(--py,0px) + 6px)) rotate(calc(var(--r,0deg) + 1.2deg)); } 66% { transform: translate(calc(var(--px,0px) - 5px),calc(var(--py,0px) - 4px)) rotate(calc(var(--r,0deg) - 1deg)); } }
@keyframes floatS6a { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-5px,-10px,0); } }
@keyframes floatS6b { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(6px,8px,0); } }
@media (prefers-reduced-motion: reduce) { .chip, .badge, .center-card, .plan-card, .published-card, .status-cards { animation: none !important; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(180deg, #4f8f43 0%, var(--accent) 58%, #326b2d 100%);
  color: #fff;
  transition: background 0.25s ease;
}
.btn:hover {
  background: linear-gradient(180deg, #3c7633 0%, #2b5c26 58%, #1c3f1a 100%);
  color: #fff;
}
.btn-final {
  border-radius: 9px;
  padding: 15px 26px;
  background: linear-gradient(180deg, #5b8f37, #3f7627);
  box-shadow: 0 10px 26px rgba(64, 118, 39, 0.2);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 40px 0 79px;
  background: linear-gradient(145deg, #fbfaf6 0%, #f4f7ee 52%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
  padding: 56px 64px 0;
  max-width: 1640px;
  margin: 0 auto;
}
.hero-grid > * { min-width: 0; }

.hero-copy h1 {
  font-size: clamp(44px, 4.9vw, 70px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero-copy h1 span { color: var(--accent); }
.hero-copy p {
  font-size: 19px;
  line-height: 1.6;
  color: #5f6b63;
  max-width: 540px;
  margin: 0 0 32px;
  font-weight: 400;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #3a463f;
  letter-spacing: 0.02em;
}

/* ===== Hero carousel ===== */
.carousel {
  position: relative;
  min-width: 0;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 40, 28, 0.16);
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  z-index: 40;
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}
.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: calc(100vw - 120px);
  box-sizing: border-box;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}
.carousel-card-inner {
  position: relative;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fbfdfb);
  box-shadow: 0 20px 48px rgba(25, 72, 34, 0.12);
  padding: 22px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.carousel-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #f0f3ea;
  opacity: var(--dim, 0);
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.carousel-card.active .carousel-card-inner { border-color: var(--accent); }
.carousel-card-image {
  width: 100%;
  height: 200px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fbf8, #eef5eb);
  margin-bottom: 14px;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
}
.carousel-card-image img { width: 100%; height: 100%; object-fit: contain; }
.carousel-card h3 {
  margin: 6px 0 12px;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1420;
}
.carousel-card p {
  margin: 0;
  color: #59646f;
  font-size: 15px;
  line-height: 1.55;
  max-width: 285px;
}

.pill-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 56px 64px 0;
  max-width: 1640px;
  margin: 0 auto;
}
.pill-tab {
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  border: 1px solid #ece4d3;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.pill-tab.active { background: var(--accent); color: #fff; }

/* ===== Goals ===== */
.goals-section {
  position: relative;
  background: rgba(255, 255, 255, 0.58);
}
.goals-section .scroll-stage { height: auto; }
.goals-section .scroll-sticky { position: static; height: auto; min-height: 0; }
.goals-header {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}
.goals-header h2 { font-size: 40px; line-height: 1.18; font-weight: 800; color: var(--ink); margin: 0 0 16px; }
.goals-header h2 span { color: var(--accent); }
.goals-header > p { font-size: 17px; line-height: 1.65; color: #4a5750; max-width: 720px; margin: 0 auto 42px; font-weight: 600; }

.goal-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: left;
}
.goal-card {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 22px;
  padding: 25px 22px;
  box-shadow: 0 14px 32px rgba(21, 75, 37, 0.08);
}
.goal-card .icon-wrap {
  height: 118px;
  margin: -7px -4px 20px;
  border-radius: 18px;
  background: #eef6e9;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.goal-card:nth-child(1) .icon-wrap { background: #eef6e9; }
.goal-card:nth-child(2) .icon-wrap { background: #f3f6e7; }
.goal-card:nth-child(3) .icon-wrap { background: #edf5ef; }
.goal-card:nth-child(4) .icon-wrap { background: #f5f3e8; }
.goal-card:nth-child(5) .icon-wrap { background: #eef5ea; }
.goal-card .icon-wrap::before {
  content: '';
  position: absolute;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(61, 122, 52, 0.16);
  border-radius: 50%;
}
.goal-card .icon-wrap img {
  width: 88px;
  height: 88px;
  position: relative;
  filter: drop-shadow(0 9px 9px rgba(29, 90, 37, 0.12));
}
.goal-card h3 { font-size: 18px; line-height: 1.25; margin: 0 0 9px; color: var(--ink); }
.goal-card p { font-size: 13.5px; line-height: 1.55; color: #5c6b60; margin: 0; }
.goals-note { font-size: 13px; color: #68736b; margin: 26px auto 0; text-align: center; max-width: 1320px; }

/* ===== Problem ===== */
.problem-section {
  position: relative;
  padding: 110px 64px 55px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.problem-copy h2 { font-size: 42px; line-height: 1.2; font-weight: 800; color: var(--ink); margin: 0 0 24px; }
.problem-copy h2 span { color: var(--accent); }
.problem-copy p { font-size: 17px; line-height: 1.7; color: #4a5750; max-width: 500px; margin: 0; font-weight: 700; }

.constellation { position: relative; min-height: 460px; }
.chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e4e3db;
  border-radius: 14px;
  padding: 15px 17px;
  box-shadow: 0 12px 26px rgba(23, 40, 28, 0.11);
}
.chip strong { display: block; font-size: 15px; color: var(--ink); }
.chip span { font-size: 12px; color: #59645d; }
.chip-1 { left: -18px; top: 40px; width: 148px; --r: -9deg; animation: chaosA 9.5s ease-in-out 0s infinite; z-index: 4; }
.chip-2 { left: 205px; top: -8px; width: 148px; --r: 4deg; animation: chaosB 9.5s ease-in-out 0.6s infinite; z-index: 4; }
.chip-3 { left: 470px; top: 32px; width: 148px; --r: 10deg; animation: chaosC 9.5s ease-in-out 1.2s infinite; z-index: 4; }
.chip-4 { left: 610px; top: 175px; width: 148px; --r: 7deg; animation: chaosA 9.5s ease-in-out 1.8s infinite; z-index: 4; }

.center-card {
  position: absolute;
  left: 145px;
  top: 130px;
  width: 350px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dedfd8;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(23, 40, 28, 0.13);
  --r: -3deg;
  animation: chaosC 10s ease-in-out 0.4s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
  box-sizing: border-box;
  z-index: 2;
}
.center-card .headline { font-size: 36px; line-height: 1.15; font-weight: 800; color: var(--ink); }
.center-card .headline span { color: var(--accent); }

.plan-card {
  position: absolute;
  left: 445px;
  top: 250px;
  width: 205px;
  padding: 21px 19px;
  background: #fffdf7;
  border: 1px solid #dddcd4;
  border-radius: 14px;
  box-shadow: 0 17px 32px rgba(23, 40, 28, 0.11);
  --r: 6deg;
  animation: chaosB 9s ease-in-out 1.1s infinite;
  box-sizing: border-box;
  z-index: 4;
}
.plan-card .plan-title { font: 800 17px 'Plus Jakarta Sans', sans-serif; color: var(--ink); margin-bottom: 12px; }
.plan-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: 11px; color: #4f5e53; }
.plan-card li::before { content: '✓'; color: var(--accent); font-weight: 800; margin-right: 4px; }

.badge {
  position: absolute;
  filter: drop-shadow(0 15px 16px rgba(23, 40, 28, 0.17));
  z-index: 5;
}
.badge img { width: 100%; height: 100%; display: block; }
.badge-ig { left: 510px; top: 88px; width: 112px; height: 112px; --r: 8deg; animation: chaosA 8.5s ease-in-out 0.3s infinite; }
.badge-fb { left: -5px; top: 285px; width: 106px; height: 106px; --r: -11deg; animation: chaosB 8.5s ease-in-out 1.3s infinite; }
.badge-x { left: 245px; top: 348px; width: 96px; height: 96px; --r: -7deg; animation: chaosC 8.5s ease-in-out 0.8s infinite; }
.badge-li { left: 625px; top: 338px; width: 105px; height: 105px; --r: 9deg; animation: chaosA 8.5s ease-in-out 1.7s infinite; }

/* ===== Scroll-reveal wrapper (shared by goals + process sections) ===== */
.scroll-stage { position: relative; height: 160vh; }
.scroll-sticky { position: sticky; top: 0; height: 75vh; min-height: 620px; display: flex; align-items: center; padding: 10px 64px 20px; box-sizing: border-box; }
.scroll-inner { position: relative; max-width: 1320px; margin: 0 auto; width: 100%; }
.s3card {
  transform: scale(0.82);
  filter: grayscale(1);
  opacity: 0.5;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

/* ===== Process ===== */
.process-section { position: relative; background: #f4f7ee; }
.process-header { max-width: 900px; margin: 0 auto 48px; text-align: center; }
.process-header h2 { font-size: 34px; line-height: 1.25; font-weight: 800; color: var(--ink); margin: 0 0 18px; }
.process-header h2 span { color: var(--accent); }
.process-header p { font-size: 18px; color: #4a5750; margin: 0; font-weight: 700; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1440px; margin: 0 auto; align-items: stretch; }
.step-wrap { display: flex; align-items: center; }
.step-card {
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 28px;
  padding: 26px 18px 22px;
  text-align: center;
  flex: 1;
  box-shadow: 0 14px 34px rgba(21, 75, 37, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card img { width: auto; height: 96px; max-width: 92%; object-fit: contain; margin-bottom: 10px; }
.step-card h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.02em; }
.step-card p { font-size: 11.5px; line-height: 1.5; color: #6b756e; margin: 0; }
.step-arrow { flex-shrink: 0; margin: 0 2px; color: var(--accent); }

/* ===== Benefits ===== */
.benefits-section { position: relative; padding: 70px 64px 100px; background: #f4f7ee; }
.benefits-header { max-width: 1320px; margin: 0 auto; text-align: center; }
.benefits-header h2 { font-size: 36px; font-weight: 800; color: var(--ink); margin: 0 0 14px; }
.benefits-header h2 span { color: var(--accent); }
.benefits-header > p { font-size: 16px; color: #5c6b60; margin: 0 0 48px; }

.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.benefit-card {
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(21, 75, 37, 0.08);
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.benefit-card:hover { transform: scale(1.06); box-shadow: 0 26px 52px rgba(21, 75, 37, 0.18); }
.benefit-card img { width: auto; max-height: 136px; max-width: 88%; object-fit: contain; margin-bottom: 14px; }
.benefit-card h3 { font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: #101722; margin: 0 0 12px; }
.benefit-card p { font-size: 16px; line-height: 1.48; color: #101722; max-width: 255px; margin: 0; }

/* ===== FAQ ===== */
.faq-section { position: relative; padding: 100px 64px; background-color: #fbf1e26a; }
.faq-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 60px; align-items: start; }
.faq-copy h2 { font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1.2; margin: 0 0 18px; }
.faq-copy p { font-size: 15.5px; color: #5c6b60; margin: 0; }
.faq-list { columns: 2; column-gap: 14px; }
.faq-item { background: #fff; border: 1px solid #ece4d3; border-radius: 12px; padding: 18px 20px; cursor: pointer; break-inside: avoid; margin-bottom: 14px; }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; color: var(--accent); font-size: 18px; font-weight: 600; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { margin: 12px 0 0; font-size: 13px; line-height: 1.6; color: #6b756e; }

/* ===== Final CTA ===== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(90deg, #fffdfa 0%, #fbfaf6 58%, #f3f1e7 100%); }
.cta-grid { min-height: 700px; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.cta-copy { min-width: 0; padding: 72px 40px 58px 56px; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.cta-copy h2 { margin: 0; font-size: 48px; line-height: 1.1; font-weight: 800; color: var(--ink); }
.cta-copy h2 span { color: var(--accent); }
.cta-copy > p { margin: 28px 0 0; max-width: 520px; font-size: 18px; line-height: 1.55; color: #0b1720; }
.cta-copy strong { color: var(--accent); font-weight: 700; }

.cta-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 32px; max-width: 600px; }
.cta-benefits > div { text-align: center; padding: 0 16px; border-left: 1px solid #d9ded8; }
.cta-benefits > div:first-child { border-left: none; }
.cta-benefits .icon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--accent); }
.cta-benefits h3 { margin: 0 0 6px; font-size: 14.5px; color: #234a25; font-weight: 700; }
.cta-benefits p { margin: 0; font-size: 11.5px; line-height: 1.4; color: #24303a; }

.cta-copy .btn-final { margin-top: 30px; width: max-content; }
.cta-trust { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 12px; color: #24303a; }

.cta-visual { min-width: 0; position: relative; min-height: 700px; overflow: hidden; width: 100%; }
.cta-visual img.lifestyle {
  position: absolute;
  inset: 115px 0 0 0;
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 12%, #000 25%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 12%, #000 25%);
}

.published-card {
  position: absolute;
  top: 12px;
  left: 58px;
  z-index: 5;
  width: 280px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(33, 70, 30, 0.12);
  text-align: center;
  backdrop-filter: blur(5px);
  animation: floatS6b 11s ease-in-out 0.8s infinite;
}
.published-card .icon { width: 52px; height: 52px; color: var(--accent); margin: 0 auto 8px; }
.published-card h3 { margin: 0; font-size: 22px; color: var(--ink); }
.published-card p { margin: 6px 0 12px; font-size: 13px; color: #38434c; }
.published-card .channels { display: flex; justify-content: center; gap: 10px; }
.published-card .channels img { width: 30px; height: 30px; display: block; }

.status-cards {
  position: absolute;
  top: 395px;
  right: 3%;
  z-index: 6;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: floatS6a 9s ease-in-out infinite;
}
.status-card {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(33, 70, 30, 0.1);
  backdrop-filter: blur(5px);
}
.status-card .icon-box { width: 42px; height: 42px; border-radius: 12px; background: #f1f5e9; display: grid; place-items: center; }
.status-card .icon-box .icon { width: 24px; height: 24px; color: var(--accent); }
.status-card h4 { margin: 0 0 3px; font-size: 13.5px; color: var(--ink); }
.status-card p { margin: 0; font-size: 11px; color: #47515b; }
.status-card .check { width: 18px; height: 18px; color: var(--accent); }

.cta-visual .swirl { position: absolute; z-index: 4; left: 5%; top: 230px; width: 210px; height: 128px; color: var(--accent); opacity: 0.95; }

/* ===== Footer ===== */
footer {
  min-height: 90px;
  background: linear-gradient(90deg, #0a4932, #0b5532 48%, #0b4a30);
  color: #fff;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px max(6vw, 64px);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 38px; height: 38px; object-fit: contain; filter: brightness(1.55) saturate(0.9); }
.footer-brand b { font: 600 19px/1 'Plus Jakarta Sans', sans-serif; }
.footer-brand small { display: block; font-size: 11px; opacity: 0.82; margin-top: 4px; }
footer nav { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; }
footer nav a { color: #fff; font-size: 14px; white-space: nowrap; }
footer nav a:hover { color: #fff; opacity: 0.8; }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social img { width: 30px; height: 30px; display: block; }

/* ===== Responsive ===== */
@media (max-width: 1300px) {
  .constellation { display: none; }
}
@media (max-width: 1200px) {
  .hero-grid, .pill-tabs { padding-left: 32px; padding-right: 32px; }
  .problem-section, .benefits-section, .faq-section { padding-left: 32px; padding-right: 32px; }
  .goal-grid, .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .step-wrap { flex-direction: column; }
  .step-arrow { display: none; }
  .scroll-stage { height: auto; }
  .scroll-sticky { position: static; height: auto; min-height: 0; padding: 80px 32px; }
  .s3card { transform: none !important; filter: none !important; opacity: 1 !important; }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .carousel { margin-top: 32px; }
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-visual { min-height: 420px; }
  .cta-visual img.lifestyle { position: static; width: 100%; height: 320px; -webkit-mask-image: none; mask-image: none; }
  .published-card, .status-cards, .cta-visual .swirl { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-copy h1 { font-size: 36px; }
  .hero-copy p { font-size: 16px; }
  .goal-grid, .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .faq-list { columns: 1; }
  .cta-benefits { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .cta-copy h2 { font-size: 34px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer nav { justify-content: center; }
  .footer-social { justify-content: center; }
}
