/* ===== DR-wellness For Biz — Client LP (Pro v3) ===== */
:root {
  --ink: #1a2332;
  --ink-soft: #5a6a7a;
  --green: #2d8a5e;
  --green-deep: #236b49;
  --green-tint: #e8f5ee;
  --blue: #3b82f6;
  --blue-tint: #eff6ff;
  --paper: #f9fdfb;
  --card: #FFFFFF;
  --line: #e5ede8;
  --font-display: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-num: "Outfit", sans-serif;
  --shadow-sm: 0 2px 12px rgba(45,138,94,.05);
  --shadow-md: 0 12px 40px rgba(45,138,94,.10);
  --shadow-lg: 0 24px 60px rgba(45,138,94,.14);
  --radius: 12px;
  --radius-lg: 16px;
  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden; font-size: 16px; }
h1, h2, h3, h4, .disp { font-family: var(--font-display); line-height: 1.4; letter-spacing: .04em; font-feature-settings: "palt"; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.num { font-family: var(--font-num); }
.center { text-align: center; }
.center .sec-lead { margin-inline: auto; }
section { position: relative; padding: 100px 0; }

/* ===== Section Headers ===== */
.section-header { margin-bottom: 48px; }
.sec-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; margin: 18px 0 14px; letter-spacing: .05em; }
.sec-lead { color: var(--ink-soft); font-size: 1.02rem; max-width: 660px; line-height: 1.9; }
.title-accent { width: 50px; height: 3px; background: linear-gradient(90deg, var(--green), var(--blue)); border-radius: 2px; margin: 14px auto 40px; }
.title-accent--center { margin-inline: auto; }

/* ===== Eyebrow Pill ===== */
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-num); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); background: var(--green-tint); padding: 8px 16px; border-radius: 50px; }
.eyebrow-pill svg { width: 16px; height: 16px; }
.eyebrow-pill--white { color: #fff; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); }

/* ===== Section Waves ===== */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; color: var(--paper); line-height: 0; z-index: 3; }
.hero-wave svg { width: 100%; height: 60px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: 16px 32px; border-radius: 8px; cursor: pointer; border: none; transition: all .22s ease; white-space: nowrap; letter-spacing: .03em; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(45,138,94,.3); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(45,138,94,.38); }
.btn-ghost { background: #fff; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-tint); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.08rem; }
.btn-arrow svg { transition: transform .2s; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ===== Other ===== */
.spbr { display: none; }
@media (max-width: 560px) {
  .spbr { display: block; }
}

/* ===== Header ===== */
header { position: sticky; top: 0; z-index: 50; background: rgba(249,253,251,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a.link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green); transition: width .2s; }
.nav-links a.link:hover { color: var(--green); }
.nav-links a.link:hover::after { width: 100%; }
.nav-cta .btn { padding: 12px 24px; font-size: .92rem; border-radius: 50px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 22px; position: relative; }
.hamburger span { display: block; width: 100%; height: 2.5px; background: var(--ink); border-radius: 2px; position: absolute; left: 0; transition: all .3s; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.mobile-nav { display: none; flex-direction: column; gap: 16px; background: #fff; padding: 24px 28px; border-bottom: 1px solid var(--line); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }

/* ===== Hero ===== */
.hero { padding: 0; min-height: 600px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(249,253,251,.94) 0%, rgba(249,253,251,.82) 45%, rgba(249,253,251,.5) 100%); }
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.deco-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(45,138,94,.12); }
.deco-circle--1 { width: 500px; height: 500px; top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.deco-circle--2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation: float 6s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-content { position: relative; z-index: 2; padding: 100px 0; }
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow-pill { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: .06em; line-height: 1.7; }
.hero h1 .hl { color: var(--green); position: relative; }
.hero h1 .hl::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: rgba(45,138,94,.12); border-radius: 4px; z-index: -1; }
.hero .sub { margin: 24px 0 28px; font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; line-height: 1.85; }
.hero-tags { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.htag { background: rgba(45,138,94,.08); color: var(--green); padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600; border: 1px solid rgba(45,138,94,.15); }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .86rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }

/* ===== Trust Bar ===== */
.trustbar { padding: 60px 0; background: linear-gradient(180deg, #f0faf5 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: #fff; border: 1px solid #d4edda; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(26,109,78,.06); transition: transform .2s, box-shadow .2s; }
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,109,78,.12); }
.trust-card-img { margin-bottom: 16px; display: flex; justify-content: center; }
.trust-card-img img { width: 88px; height: 88px; object-fit: contain; margin: 0 auto; }
.trust-card-body { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-card-num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--green-deep); }
.trust-card-label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.trust-card-desc { font-size: .78rem; color: var(--ink-soft); line-height: 1.5; margin-top: 6px; }

/* ===== Problem ===== */
.problem { background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); padding-bottom: 120px; }
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 10px; }
.problem-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.problem-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.img-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); padding: 8px 14px; border-radius: 8px; font-size: .82rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.img-badge svg { color: var(--green); flex: none; }
.problem-cards { display: flex; flex-direction: column; gap: 20px; }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pcard--primary { border-left: 4px solid var(--green); }
.pcard-body { padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.pcard-icon { width: 48px; height: 48px; flex: none; }
.pcard-icon svg { width: 100%; height: 100%; }
.pcard-text h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 6px; }
.pcard-text p { color: var(--ink-soft); font-size: .94rem; }
.statbox { margin: 0 28px 24px; background: var(--green-tint); border-radius: 10px; padding: 18px 20px; border: 1px solid rgba(45,138,94,.12); }
.stat-highlight { display: flex; align-items: baseline; gap: 12px; }
.stat-number { font-family: var(--font-num); font-weight: 700; font-size: 1.4rem; color: #c0392b; min-width: 7em; }
.stat-desc { font-size: .88rem; color: var(--ink-soft); }
.stat-src { font-size: .72rem; color: #a6a1bd; margin-top: 8px; }

/* ===== Services ===== */
.services { background: var(--paper); }
.service-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; background: linear-gradient(135deg, var(--green), #3da86e); border-radius: var(--radius-lg); padding: 48px; margin-bottom: 40px; color: #fff; }
.service-main__tag { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; opacity: .85; margin-bottom: 12px; font-family: var(--font-num); text-transform: uppercase; }
.service-main__content h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.service-main__content p { font-size: .95rem; line-height: 1.8; opacity: .92; margin-bottom: 20px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.schip { display: inline-block; background: rgba(255,255,255,.2); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 500; }
.schip--accent { background: rgba(243,178,63,.9); color: #5a4210; font-weight: 700; }
.service-main__note { font-size: .8rem; opacity: .75; }
.service-main__image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.service-main__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.service-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.scard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard-img { height: 220px; overflow: hidden; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.scard:hover .scard-img img { transform: scale(1.05); }
.scard-body { padding: 28px 24px; }
.scard-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.scard-body p { font-size: .9rem; color: var(--ink-soft); line-height: 1.8; }
.service-comment { margin: 2rem auto 0; }
.service-comment p { padding: 0 1rem; font-size: .9rem; color: var(--ink-soft); line-height: 1.8; }

/* ===== Benefits ===== */
.sbenefits { background: #fff; padding-top: 120px; }
.benefit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bcol { border-radius: var(--radius-lg); padding: 36px 32px; }
.bcol--company { background: #f0faf4; border: 1px solid rgba(45,138,94,.12); }
.bcol--staff { background: var(--blue-tint); border: 1px solid rgba(59,130,246,.12); }
.bcol-tag { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--green); margin-bottom: 24px; }
.bcol-tag--blue { color: var(--blue); }
.bcol-tag svg { width: 24px; height: 24px; }
.bcol-list { display: flex; flex-direction: column; gap: 16px; }
.bcol-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; font-weight: 500; color: var(--ink); line-height: 1.6; }
.bcheck { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--green); color: #fff; border-radius: 50%; font-size: .7rem; font-weight: 700; margin-top: 2px; }
.bcheck--blue { background: var(--blue); }

/* ===== Why Us ===== */
.whyus { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wcard { text-align: center; padding: 40px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: all .3s; }
.wcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wcard-icon { width: 120px; height: 120px; margin: 0 auto 24px; }
.wcard-icon svg { width: 100%; height: 100%; }
.wcard-icon img { width: 100%; height: 100%; object-fit: contain; }
.wcard h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.wcard p { font-size: .9rem; color: var(--ink-soft); line-height: 1.8; }

/* ===== Steps ===== */
.steps { background: #fff; padding-top: 120px; }
.steprow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.stepcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; text-align: center; }
.stepcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stepcard-top { display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.snum { font-family: var(--font-num); font-weight: 700; font-size: 1rem; color: #fff; background: linear-gradient(135deg, var(--green), var(--green-deep)); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45,138,94,.25); }
.stepcard-icon { width: 100px; height: 100px; margin: 0 auto 16px; }
.stepcard-icon svg { width: 100%; height: 100%; }
.stepcard-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.stepcard h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; letter-spacing: .02em; }
.stepcard p { color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }
.step-foot { margin-top: 32px; text-align: center; background: var(--green-tint); color: var(--green-deep); font-weight: 600; padding: 18px 24px; border-radius: 50px; font-size: 1rem; display: flex; justify-content: center; align-items: center; gap: 10px; }
.step-foot svg { flex: none; color: var(--green); }

/* ===== Pricing ===== */
.pricing { background: var(--paper); }
.price-table { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table thead tr { background: var(--green-tint); }
.price-table th, .price-table td { padding: 20px 24px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table th:not(:first-child), .price-table td:not(:first-child) { border-left: 1px solid var(--line); }
.price-table th { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.ptbl-range { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 400; margin-top: 4px; }
.ptbl-badge { display: inline-block; background: var(--green); color: #fff; padding: 3px 10px; border-radius: 50px; font-size: .7rem; font-weight: 600; margin-top: 6px; }
.ptbl-popular { background: var(--green-tint) !important; }
.ptbl-label { font-weight: 700; text-align: left !important; color: var(--ink); background: #fafafa; }
.ptbl-price strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--green); }
.ptbl-price small { font-size: .85rem; color: var(--ink-soft); margin-left: 4px; }
.ptbl-check { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--green-tint); color: var(--green); border-radius: 50%; font-weight: 700; font-size: .85rem; }
.price-note { text-align: center; font-size: .85rem; color: var(--ink-soft); margin-top: 16px; }

/* ===== FAQ ===== */
.faq { background: #fff; padding-top: 120px; }
.faqlist { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; max-width: 840px; margin-inline: auto; }
.fitem { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.fitem:hover { box-shadow: var(--shadow-md); }
.fq { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; gap: 14px; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); transition: background .15s; }
.fq:hover { background: rgba(45,138,94,.03); }
.fq .qmark { font-family: var(--font-num); font-weight: 700; font-size: 1.1rem; color: var(--green); flex: none; width: 32px; height: 32px; background: var(--green-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fq-text { flex: 1; }
.fq-toggle { margin-left: auto; width: 24px; height: 24px; flex: none; color: var(--green); transition: transform .3s; }
.fq-toggle svg { width: 100%; height: 100%; }
.fq[aria-expanded="true"] .fq-toggle { transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fa .inner { padding: 0 26px 24px 72px; color: var(--ink-soft); font-size: .96rem; line-height: 1.85; }

/* ===== Final CTA ===== */
.final { padding: 100px 0; position: relative; overflow: hidden; }
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,138,94,.88) 0%, rgba(59,130,246,.65) 100%); }
.final .wrap { position: relative; z-index: 2; }
.box { padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.box-text { color: #fff; }
.box-text .eyebrow-pill { margin-bottom: 18px; }
.box-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: .04em; line-height: 1.45; }
.box-text .lead { margin: 18px 0 0; font-size: 1.05rem; opacity: .92; line-height: 1.8; }
.trust-checks { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.trust-checks span { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .94rem; }
.trust-checks svg { width: 20px; height: 20px; flex: none; opacity: .9; }

/* Form Card */
.formcard { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.formcard h3 { color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; letter-spacing: .02em; }
.form-time { font-size: .82rem; color: var(--ink-soft); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.form-time svg { color: var(--green); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field label .req { color: #d64b6a; font-size: .74rem; margin-left: 4px; }
.field label .opt { color: var(--ink-soft); font-size: .74rem; margin-left: 4px; }
.field input, .field textarea { width: 100%; font-family: var(--font-body); font-size: .94rem; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--paper); transition: border-color .2s, background .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(45,138,94,.08); }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: .74rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-done { display: none; text-align: center; padding: 40px 10px; }
.form-done-icon { width: 60px; height: 60px; color: var(--green); margin: 0 auto 16px; }
.form-done-icon svg { width: 100%; height: 100%; }
.form-done h3 { color: var(--ink); margin-bottom: 8px; }
.form-done p { color: var(--ink-soft); font-size: .94rem; }

/* ===== Footer ===== */
footer { background: var(--ink); color: #b8c9d6; padding: 48px 0; }
.foot { display: flex; flex-direction: column; gap: 20px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-logo { filter: brightness(0) invert(1); height: 32px; }
.fnav { display: flex; gap: 24px; font-size: .88rem; }
.fnav a { transition: color .2s; }
.fnav a:hover { color: #fff; }
.cp { font-size: .78rem; color: #6b8399; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-content { padding: 25px 5% 65px; }
  .hero h1 { font-size: 1.9rem; }
  .problem-layout { grid-template-columns: 1fr; }
  .stat-highlight { gap: 5px; flex-direction: column; }
  .stat-number { min-width: 100%; }
  .service-main { grid-template-columns: 1fr; padding: 32px; }
  .service-main__image { order: -1; }
  .service-sub { grid-template-columns: 1fr; }
  .benefit-cols { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steprow { grid-template-columns: 1fr 1fr; }
  .box { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trust-card { padding: 24px 16px; }
  .trust-card-img img { width: 72px; height: 72px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .price-table { overflow-x: auto; }
  .price-table table { min-width: 600px; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .steprow { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero .sub { font-size: .85rem; }
  .trust-cards { grid-template-columns: 1fr; gap: 16px; }
  .trust-card { display: flex; flex-direction: row; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; }
  .trust-card-img { margin-bottom: 0; flex-shrink: 0; }
  .trust-card-img img { width: 64px; height: 64px; }
  .trust-card-body { align-items: flex-start; }
  .formcard { padding: 24px; }
  .box { gap: 32px; }
  .btn-lg { padding: 12px 25px; font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .deco-circle { animation: none; }
}
