@charset "UTF-8";

/* =========================================================
   農家の時代 — 黄金サイクルEC運用サポート
   ========================================================= */

/* ---------- TOKENS ---------- */
:root{
  /* brand */
  --teal-900:#0b3d33;
  --teal-700:#0f766e;
  --teal-600:#12857b;
  --green-500:#16a34a;
  --green-400:#22c55e;
  --mint-100:#e8f5ef;
  --mint-050:#f1faf5;

  /* cta */
  --gold-300:#ffe14d;
  --gold-500:#f2b724;
  --gold-ink:#4a3000;

  /* neutrals（緑寄りに振った中間色） */
  --ink:#14211c;
  --ink-2:#4c5b53;
  --ink-3:#6f7f76;
  --paper:#f4f7f4;
  --surface:#ffffff;
  --surface-2:#eef3ef;
  --line:rgba(15,118,110,.16);
  --line-2:rgba(15,118,110,.28);

  --shadow-s:0 2px 10px rgba(11,61,51,.05);
  --shadow-m:0 10px 30px rgba(11,61,51,.08);
  --shadow-l:0 20px 50px rgba(11,61,51,.12);

  --radius:16px;
  --radius-lg:22px;
  --container:1120px;

  --header-h:64px;
}

/* ---------- RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 12px);
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Zen Kaku Gothic New","Hiragino Sans","Noto Sans JP","Yu Gothic",sans-serif;
  font-size:16px;
  line-height:1.9;
  font-feature-settings:"palt" 1;
  -webkit-font-smoothing:antialiased;
  word-break:normal;
  overflow-wrap:break-word;
  line-break:strict;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
h1,h2,h3{ margin:0; line-height:1.5; text-wrap:balance; word-break:auto-phrase; }
.section-lead,.check-list li,.hero-brand span,.trust-chips li,.flow-list p,.card-title{ word-break:auto-phrase; }
p{ margin:0; }
ul,ol,dl,dd{ margin:0; padding:0; }
li{ list-style:none; }
button{ font:inherit; color:inherit; }

:focus-visible{
  outline:3px solid var(--teal-600);
  outline-offset:3px;
  border-radius:4px;
}

.skip-link{
  position:absolute; left:0; top:0; z-index:200;
  transform:translateY(-200%);
  background:var(--teal-700); color:#fff; padding:.7em 1.2em; border-radius:0 0 8px 0;
}
.skip-link:focus{ transform:translateY(0); }

/* ---------- LAYOUT ---------- */
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}

.section{ padding:clamp(52px,8vw,88px) 0; }
.section-alt{ background:var(--surface); }

.section-title{
  font-size:clamp(1.45rem,4.4vw,2.1rem);
  font-weight:900;
  letter-spacing:.02em;
  text-align:center;
  margin-bottom:16px;
}

.section-lead{
  text-align:center;
  max-width:44em;
  margin:0 auto clamp(32px,5vw,48px);
  color:var(--ink-2);
  font-size:clamp(.95rem,2.4vw,1.02rem);
}

.section-visual{ margin:0 0 clamp(24px,4vw,34px); text-align:center; }
.section-visual img{
  width:100%;
  max-width:760px;
  margin-inline:auto;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-l);
}

.nowrap{ white-space:nowrap; }
.mt-s{ margin-top:10px; }
.sp-only{ display:inline; }

/* ---------- HEADER ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap:16px;
  min-height:var(--header-h);
  padding-block:8px;
}
.logo{
  display:flex; flex-direction:column; gap:1px;
  text-decoration:none; margin-right:auto;
}
.logo-mark{
  font-size:1.02rem; font-weight:900; color:var(--teal-700);
  letter-spacing:.1em; line-height:1.3;
}
.logo-sub{ font-size:.7rem; color:var(--ink-3); letter-spacing:.04em; line-height:1.3; }
@media (max-width:380px){ .logo-sub{ display:none; } }

.nav ul{ display:flex; gap:20px; }
.nav a{
  text-decoration:none; font-size:.86rem; font-weight:500;
  padding-bottom:3px; border-bottom:2px solid transparent;
  transition:color .15s, border-color .15s;
  white-space:nowrap;
}
.nav a:hover{ color:var(--teal-700); border-color:var(--teal-700); }

.site-header .header-cta{ display:none; }
.nav-toggle{
  display:grid; place-content:center; gap:5px;
  width:44px; height:44px; margin-right:-8px;
  border:none; background:none; padding:0; cursor:pointer;
}
.nav-toggle span{
  display:block; width:24px; height:2.5px; border-radius:99px;
  background:var(--teal-900);
  transition:transform .22s ease, opacity .18s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* mobile nav panel */
.nav{
  position:absolute; inset:100% 0 auto 0;
  background:rgba(11,61,51,.97);
  transform:translateY(-115%);
  transition:transform .24s ease;
  box-shadow:0 18px 30px rgba(11,61,51,.2);
}
.nav.open{ transform:translateY(0); }
.nav ul{ flex-direction:column; gap:0; padding:8px 20px 16px; }
.nav a{
  display:block; color:#eaf5ef; border-bottom:1px solid rgba(255,255,255,.1);
  padding:13px 0; font-size:.95rem;
}
.nav a:hover{ color:#fff; border-color:rgba(255,255,255,.35); }

/* ---------- HERO ---------- */
.hero{
  background:
    radial-gradient(120% 90% at 78% 20%, #dff0e9 0%, rgba(223,240,233,0) 60%),
    linear-gradient(180deg,#eef7f2 0%, var(--paper) 100%);
  padding:clamp(28px,5vw,56px) 0 clamp(36px,6vw,64px);
  overflow:hidden;
}
.hero-inner{ display:flex; flex-direction:column; gap:clamp(24px,4vw,36px); }

.hero-tagline{
  display:inline-block;
  align-self:flex-start;
  font-size:.78rem; font-weight:700; letter-spacing:.08em;
  color:var(--teal-700); background:#fff;
  border:1px solid var(--line-2); border-radius:99px;
  padding:5px 14px; margin-bottom:14px;
}

.hero h1{
  font-size:clamp(1.5rem,4.4vw,2.15rem);
  font-weight:900;
  line-height:1.55;
  letter-spacing:.01em;
}
.hero h1 .hl{
  background:linear-gradient(transparent 62%, rgba(255,225,77,.75) 62%);
  padding-inline:.05em;
}

.hero-brand{
  display:flex; flex-direction:column; gap:1px;
  margin-top:18px; padding-left:14px;
  border-left:4px solid var(--green-400);
}
.hero-brand strong{
  font-size:1.18rem; font-weight:900; color:var(--teal-700); letter-spacing:.06em;
}
.hero-brand span{ font-size:.88rem; color:var(--ink-2); }

.hero-cta{ margin-top:clamp(22px,4vw,30px); }
.hero-cta .btn{ width:100%; max-width:400px; }
.hero-note{ margin-top:10px; font-size:.84rem; color:var(--ink-2); }

.trust-chips{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:18px;
}
.trust-chips li{
  font-size:.79rem; color:var(--teal-900);
  background:#fff; border:1px solid var(--line-2);
  border-radius:99px; padding:5px 13px;
  box-shadow:var(--shadow-s);
}
.trust-chips strong{ color:var(--teal-700); }

.hero-art img{
  width:100%;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-l);
}

/* ---------- 共感チェック ---------- */
.section-check{
  background:var(--surface);
  padding-block:clamp(44px,6vw,64px);
}
.section-check .section-title{ margin-bottom:26px; }
.check-list{
  display:grid; gap:10px;
  max-width:640px; margin:0 auto;
}
.check-list li{
  position:relative;
  background:var(--mint-050);
  border:1px solid var(--line);
  border-radius:12px;
  padding:13px 16px 13px 48px;
  font-size:.96rem;
  font-weight:500;
}
.check-list li::before{
  content:"✓";
  position:absolute; left:16px; top:50%; translate:0 -50%;
  width:22px; height:22px; border-radius:50%;
  display:grid; place-content:center;
  background:var(--green-500); color:#fff;
  font-size:.72rem; font-weight:700;
}
.check-footer{
  text-align:center; margin-top:24px;
  font-size:1rem;
}
.check-footer strong{
  color:var(--teal-700);
  background:linear-gradient(transparent 62%, rgba(255,225,77,.7) 62%);
}

/* ---------- GRID & CARD ---------- */
.grid{ display:grid; gap:18px; }
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
  box-shadow:var(--shadow-s);
  color:var(--ink-2);
}
.section-alt .card{ background:var(--mint-050); }
.card-title{ font-size:1.03rem; font-weight:700; margin-bottom:10px; color:var(--ink); }
.card strong{ color:var(--ink); }
.card p + p{ margin-top:10px; }
.card-label{
  display:inline-block;
  font-size:.74rem; font-weight:700; letter-spacing:.12em;
  color:#fff; background:var(--teal-700);
  border-radius:99px; padding:3px 12px; margin-bottom:12px;
}
.card-full{ grid-column:1/-1; }
.card p{ font-size:.95rem; }

.list-check li,.list-dash li{
  position:relative; padding-left:24px; margin-bottom:7px;
  font-size:.93rem; color:var(--ink-2);
}
.list-check li:last-child,.list-dash li:last-child{ margin-bottom:0; }
.list-check li::before{
  content:""; position:absolute; left:2px; top:.62em;
  width:11px; height:6px; border-left:2.5px solid var(--green-500);
  border-bottom:2.5px solid var(--green-500); rotate:-45deg;
}
.list-dash li::before{
  content:""; position:absolute; left:2px; top:.85em;
  width:11px; height:2px; background:var(--ink-3); border-radius:2px;
}
.list-check{ margin-top:12px; }

/* ---------- CYCLE STEPS ---------- */
.cycle-wrap{ display:grid; gap:18px; }
.cycle-step{
  color:var(--ink-2);
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 20px;
  box-shadow:var(--shadow-m);
  position:relative;
}
.cycle-number{
  display:inline-block;
  font-size:.74rem; font-weight:700; letter-spacing:.16em;
  color:#fff;
  background:linear-gradient(135deg,var(--teal-700),var(--green-500));
  border-radius:99px; padding:4px 14px; margin-bottom:12px;
}
.cycle-step h3{ font-size:1.08rem; font-weight:700; margin-bottom:12px; color:var(--ink); }
.cycle-step strong{ color:var(--ink); }
.cycle-step p{ font-size:.93rem; }
.cycle-step p + p{ margin-top:10px; }

/* ---------- RESULTS ---------- */
.card-result{ display:flex; flex-direction:column; }
.result-label{
  display:inline-block; align-self:flex-start;
  font-size:.74rem; font-weight:700; letter-spacing:.1em;
  color:var(--teal-700); background:var(--mint-100);
  border-radius:6px; padding:2px 10px; margin-bottom:10px;
}
.result-number{
  display:flex; flex-wrap:wrap; align-items:baseline; gap:6px;
  margin:6px 0 12px; font-weight:900;
  padding-bottom:12px; border-bottom:1px dashed var(--line-2);
}
.result-number .from{ font-size:.88rem; color:var(--ink-3); font-weight:500; }
.result-number .arrow{ color:var(--green-500); font-weight:900; }
.result-number .to{ font-size:1.14rem; color:var(--teal-700); }
.section-alt .card-result{ background:var(--surface); }

/* ---------- INLINE CTA ---------- */
.inline-cta{
  margin-top:clamp(28px,4vw,40px);
  background:linear-gradient(135deg,var(--teal-700),var(--green-500));
  border-radius:var(--radius-lg);
  padding:26px 22px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:16px;
  box-shadow:var(--shadow-m);
}
.inline-cta p{ color:#eafaf1; font-weight:700; font-size:1rem; }
.inline-cta .btn{ width:100%; max-width:380px; }

/* ---------- STRENGTHS ---------- */
.strength{ display:flex; gap:14px; align-items:flex-start; }
.strength-no{
  flex:none;
  width:32px; height:32px; border-radius:50%;
  display:grid; place-content:center;
  background:linear-gradient(135deg,var(--teal-700),var(--green-500));
  color:#fff; font-weight:900; font-size:.92rem;
  box-shadow:var(--shadow-s);
}
.strength .card-title{ margin-bottom:6px; }

/* ---------- 相談の流れ ---------- */
.flow-list{
  counter-reset:flow;
  display:grid; gap:14px;
  max-width:760px; margin-inline:auto;
}
.flow-list li{
  counter-increment:flow;
  color:var(--ink-2);
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 20px 20px 68px;
  box-shadow:var(--shadow-s);
}
.flow-list li::before{
  content:counter(flow);
  position:absolute; left:20px; top:20px;
  width:32px; height:32px; border-radius:50%;
  display:grid; place-content:center;
  background:var(--teal-700); color:#fff;
  font-weight:900; font-size:.92rem;
}
.flow-list li::after{
  content:""; position:absolute; left:35.5px; top:56px; bottom:-14px;
  width:2px; background:var(--line-2);
}
.flow-list li:last-child::after{ display:none; }
.flow-list h3{ font-size:1.02rem; font-weight:700; margin-bottom:4px; color:var(--ink); }
.flow-list strong{ color:var(--ink); }
.flow-list p{ font-size:.93rem; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin-inline:auto; display:grid; gap:10px; }
.faq-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.faq-item h3{ margin:0; font-size:inherit; font-weight:inherit; }
.faq-question{
  width:100%; border:none; background:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px 18px;
  font-size:.97rem; font-weight:700; text-align:left; line-height:1.65;
}
.faq-question:hover{ background:var(--mint-050); }
.faq-toggle{
  flex:none; position:relative; width:20px; height:20px;
}
.faq-toggle::before,.faq-toggle::after{
  content:""; position:absolute; inset:50% 0 auto 0;
  height:2.5px; border-radius:2px; background:var(--teal-700);
  translate:0 -50%; transition:transform .22s ease, opacity .22s ease;
}
.faq-toggle::after{ rotate:90deg; }
.faq-item.open .faq-toggle::after{ opacity:0; rotate:0deg; }

.faq-answer{
  max-height:0; overflow:hidden;
  transition:max-height .28s ease;
}
.faq-answer-inner{
  padding:2px 18px 18px;
  border-top:1px solid var(--line);
  margin-top:0;
}
.faq-answer-inner p{ font-size:.93rem; color:var(--ink-2); padding-top:12px; }
.note-small{ font-size:.85em; color:var(--ink-3); }

/* ---------- CLOSING ---------- */
.section-closing{
  background:linear-gradient(160deg,var(--teal-700) 0%, var(--green-500) 100%);
  color:#eafaf1;
}
.section-closing .section-title{ color:#fff; }
.section-closing .section-lead{ color:#dbf3e6; }
.section-closing .section-lead strong{ color:#fff; }
.section-closing .section-visual img{ box-shadow:0 20px 50px rgba(0,0,0,.22); }

.closing-card{
  max-width:560px; margin:clamp(28px,4vw,36px) auto 0;
  background:rgba(4,40,32,.26);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-lg);
  padding:26px 22px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.closing-note{ font-size:.92rem; font-weight:700; }
.closing-card .btn{ width:100%; max-width:380px; }
.closing-sub{ font-size:.9rem; color:#dbf3e6; }
.guarantee{
  width:100%;
  background:rgba(255,255,255,.14);
  border:1px dashed rgba(255,255,255,.4);
  border-radius:12px; padding:14px 16px;
  font-size:.9rem;
}
.guarantee strong{ display:block; color:#fff; font-size:.98rem; margin-bottom:2px; }
.guarantee span{ color:#dbf3e6; display:inline-block; line-height:1.75; }

/* ---------- ABOUT ---------- */
.section-about{ background:var(--surface); }
.about-list{
  max-width:640px; margin-inline:auto;
  display:grid; grid-template-columns:auto 1fr;
  border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden;
}
.about-list dt,.about-list dd{
  padding:13px 16px;
  border-bottom:1px solid var(--line);
  font-size:.92rem;
}
.about-list dt{
  background:var(--mint-050); font-weight:700; white-space:nowrap;
  color:var(--teal-900);
}
.about-list dd{ color:var(--ink-2); }
.about-list dt:nth-last-of-type(1),
.about-list dd:nth-last-of-type(1){ border-bottom:none; }
.about-list a{ color:var(--teal-700); }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height:54px; padding:12px 26px;
  border:none; border-radius:99px;
  font-size:1.02rem; font-weight:900; letter-spacing:.02em;
  text-decoration:none; cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold-300) 0%, var(--gold-500) 100%);
  color:var(--gold-ink);
  box-shadow:0 10px 24px rgba(242,183,36,.4);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(242,183,36,.5); }
.btn-primary:active{ transform:translateY(0); filter:brightness(.97); }
.btn-lg{ min-height:60px; font-size:1.08rem; }
.btn-sm{ min-height:42px; padding:8px 18px; font-size:.88rem; }

.line-icon{
  flex:none; width:20px; height:20px;
  background:currentColor;
  -webkit-mask:var(--line-mask) center/contain no-repeat;
  mask:var(--line-mask) center/contain no-repeat;
  --line-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.6c-5.4 0-9.8 3.5-9.8 7.9 0 3.9 3.5 7.2 8.2 7.8.3.07.75.22.86.5.1.26.07.66.03.92l-.14.83c-.04.25-.2.96.85.52 1.05-.44 5.64-3.32 7.7-5.69C21.1 13.8 21.8 12.2 21.8 10.5c0-4.4-4.4-7.9-9.8-7.9Z'/%3E%3C/svg%3E");
}
.btn-sm .line-icon{ width:17px; height:17px; }

/* ---------- STICKY CTA (SP) ---------- */
.sticky-cta{
  position:fixed; inset:auto 0 0 0; z-index:70;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  animation:slideUp .28s ease;
}
.sticky-cta[hidden]{ display:none; }
.sticky-cta .btn{ width:100%; min-height:52px; }
@keyframes slideUp{ from{ transform:translateY(100%); } to{ transform:translateY(0); } }

/* ---------- FOOTER ---------- */
.site-footer{
  background:var(--teal-900);
  color:#c3d8ce;
  padding:36px 0 calc(36px + 76px); /* sticky CTA分の逃げ */
  font-size:.86rem;
}
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.footer-brand{
  display:flex; flex-direction:column; gap:2px;
  font-weight:900; font-size:1.02rem; color:#fff; letter-spacing:.08em;
}
.footer-brand span{ font-size:.76rem; font-weight:400; color:#9dbcae; letter-spacing:.02em; }
.footer-nav ul{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px 20px; }
.footer-nav a{ color:#dbeee4; text-underline-offset:.25em; }
.footer-nav a:hover{ color:#fff; }
.footer-note{ color:#9dbcae; font-size:.8rem; max-width:34em; }
.footer-copy{ color:#7fa294; font-size:.76rem; }

/* =========================================================
   DESKTOP  (≥900px)
   ========================================================= */
@media (min-width:900px){
  :root{ --header-h:72px; }

  .container{ padding-inline:28px; }
  .sp-only{ display:none; }

  /* header */
  .nav{
    position:static; inset:auto; transform:none; background:none; box-shadow:none;
    margin-inline:auto;
  }
  .nav ul{ flex-direction:row; gap:22px; padding:0; }
  .nav a{
    display:inline; color:inherit; border-bottom:2px solid transparent; padding:0 0 3px;
    font-size:.85rem;
  }
  .nav-toggle{ display:none; }
  .site-header .header-cta{ display:inline-flex; }

  /* hero：イラストは画面右端まで伸ばして、切り抜かずに大きく見せる */
  .hero{ padding-block:clamp(40px,4vw,64px) clamp(52px,5vw,80px); }
  .hero-inner{
    display:grid;
    grid-template-columns:minmax(0,560px) minmax(0,1fr);
    align-items:center;
    gap:clamp(28px,4vw,52px);
    max-width:none;
    padding-right:0;
    padding-left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  }
  .hero-art img{ border-radius:var(--radius-lg) 0 0 var(--radius-lg); }
  .hero-cta .btn{ width:auto; min-width:320px; }
  .hero h1{ line-height:1.5; }

  /* grids */
  .grid-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .cycle-wrap{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
  .grid{ gap:22px; }
  .card{ padding:26px 24px; }

  .check-list{ grid-template-columns:repeat(2,minmax(0,1fr)); max-width:820px; }

  .inline-cta{
    flex-direction:row; justify-content:space-between; text-align:left;
    padding:28px 32px;
  }
  .inline-cta .btn{ width:auto; min-width:300px; flex:none; }

  .flow-list{ gap:16px; }

  .footer-inner{ gap:16px; }
  .site-footer{ padding-bottom:36px; }
}

/* sticky CTAはスマホのみ */
@media (min-width:900px){
  .sticky-cta{ display:none !important; }
}

/* =========================================================
   小さい画面の微調整
   ========================================================= */
@media (max-width:400px){
  .container{ padding-inline:16px; }
  .btn{ font-size:.96rem; padding-inline:18px; }
  .hero h1{ font-size:1.42rem; }
  .about-list{ grid-template-columns:1fr; }
  .about-list dt{ border-bottom:none; padding-bottom:0; background:transparent; }
  .about-list dd{ padding-top:2px; }
}

/* =========================================================
   MOTION
   ========================================================= */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print{
  .site-header,.sticky-cta,.nav-toggle{ display:none !important; }
  body{ background:#fff; }
  .section{ padding:24px 0; break-inside:avoid; }
}
