:root {
  --ink: #2C2846;
  --ink-soft: #6B6685;
  --grape: #6C5CE0;
  --grape-deep: #5A49C7;
  --grape-tint: #EFEBFC;
  --leaf: #2FA97F;
  --leaf-deep: #238a66;
  --leaf-tint: #E2F5EC;
  --paper: #FBFAFF;
  --card: #FFFFFF;
  --sun: #F3B23F;
  --sun-tint: #FDF3DC;
  --line: #E9E5F5;
  --font-display: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-num: "Outfit", sans-serif;
  --shadow-sm: 0 2px 12px rgba(44,40,70,.05);
  --shadow-md: 0 12px 40px rgba(92,73,199,.10);
  --shadow-lg: 0 24px 60px rgba(92,73,199,.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; }
.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(--grape), var(--leaf)); border-radius: 2px; margin: 14px auto 40px; }
.title-accent--center { margin-inline: auto; }
.sec-link {
  color: var(--grape-deep);
  font-family: var(--font-display);
  margin: 1rem auto;
  font-weight: 700;
  line-height: 2;
  text-decoration: underline;
}

/* ===== 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(--grape); background: var(--grape-tint); padding: 8px 16px; border-radius: 50px; }
.eyebrow-pill.leaf { color: var(--leaf-deep); background: var(--leaf-tint); }
.eyebrow-pill.sun { color: #8a6410; background: var(--sun-tint); }
.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; }
.section-wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 2; }
.section-wave--top { top: -1px; color: var(--paper); }
.section-wave--bottom { bottom: -1px; color: var(--paper); }
.section-wave svg { width: 100%; height: 50px; }

/* ===== 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(--grape); color: #fff; box-shadow: 0 8px 24px rgba(108,92,224,.3); }
.btn-primary:hover { background: var(--grape-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(108,92,224,.38); }
.btn-ghost { background: #fff; color: var(--grape); border: 1.5px solid var(--grape); }
.btn-ghost:hover { background: var(--grape-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); }

/* ===== Header ===== */
header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,255,.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; }
.badge-supplier { font-family: var(--font-num); font-size: .68rem; font-weight: 600; letter-spacing: .1em; color: var(--leaf-deep); background: var(--leaf-tint); padding: 4px 10px; border-radius: 50px; }
.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(--grape); transition: width .2s; }
.nav-links a.link:hover { color: var(--grape); }
.nav-links a.link:hover::after { width: 100%; }
.nav-cta .btn { padding: 11px 24px; font-size: .9rem; border-radius: 8px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 24px; position: relative; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--ink); position: absolute; left: 0; transition: .3s; border-radius: 2px; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.mobile-nav { display: none; flex-direction: column; gap: 16px; padding: 24px 28px; background: var(--card); border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--ink); padding: 8px 0; }

/* ===== 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(251,250,255,1) 0%, rgba(251,250,255,.8) 25%, rgba(251,250,255,0) 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(108,92,224,.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: 600px; }
.hero-copy .eyebrow-pill { margin-bottom: 22px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: .06em; line-height: 1.7; }
.hero h1 .hl { color: var(--grape); position: relative; }
.hero h1 .hl::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: rgba(108,92,224,.12); border-radius: 4px; z-index: -1; }
.hero .sub { margin: 24px 0 36px; font-size: 1.12rem; max-width: 520px; line-height: 1.85; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .86rem; display: flex; align-items: center; gap: 8px; }

/* ===== Trust Bar ===== */
.trustbar { padding: 60px 0; background: linear-gradient(180deg, #faf9ff 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 #ede9fc; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(91,76,196,.06); transition: transform .2s, box-shadow .2s; }
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(91,76,196,.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-num); font-weight: 700; font-size: 1.6rem; color: var(--grape); }
.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(--grape); 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(--grape); }
.pcard-accent { display: none; }
.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(--grape-tint); border-radius: 10px; padding: 18px 20px; border: 1px solid rgba(108,92,224,.12); }
.stat-highlight { display: flex; align-items: baseline; gap: 12px; }
.stat-number { font-family: var(--font-num); font-weight: 700; font-size: 1.5rem; color: var(--grape); min-width: 6em; }
.stat-desc { font-size: .88rem; color: var(--ink-soft); }
.stat-src { font-size: .72rem; color: #a6a1bd; margin-top: 8px; }

/* ===== Mechanism ===== */
.mech { background: var(--paper); padding: 100px 0 110px; }
.flow-diagram { margin-top: 52px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.fnode { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 22px; text-align: center; box-shadow: var(--shadow-sm); position: relative; transition: transform .2s, box-shadow .2s; }
.fnode:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fnode--center { background: linear-gradient(135deg, var(--grape) 0%, #7d6ee8 60%, var(--leaf) 240%); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); transform: scale(1.04); }
.fnode--center:hover { transform: scale(1.06) translateY(-4px); }
.fnode-glow { position: absolute; inset: -3px; border-radius: 18px; background: linear-gradient(135deg, var(--grape), var(--leaf)); opacity: .2; z-index: -1; filter: blur(8px); }
.fnode-icon { width: 56px; height: 56px; margin: 0 auto 12px; }
.fnode-icon svg { width: 100%; height: 100%; }
.fnode-label { display: block; font-family: var(--font-num); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.fnode--center .fnode-label { color: rgba(255,255,255,.8); }
.fnode h4 { font-size: 1.06rem; font-weight: 600; letter-spacing: .02em; }
.fnode p { font-size: .84rem; color: var(--ink-soft); margin-top: 6px; line-height: 1.6; }
.fnode--center p { color: rgba(255,255,255,.88); }
.farrow { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--grape); }
.farrow-line { width: 30px; height: 2px; background: linear-gradient(90deg, var(--grape), var(--leaf)); border-radius: 2px; }
.farrow-head svg { width: 28px; height: 20px; }
.flabel { font-size: .72rem; color: var(--ink-soft); white-space: nowrap; font-weight: 500; }
.badges { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.mbadge { display: inline-flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: 50px; padding: 14px 24px; font-weight: 600; box-shadow: var(--shadow-sm); font-size: .92rem; transition: transform .2s, box-shadow .2s; }
.mbadge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mbadge-icon { width: 28px; height: 28px; flex: none; }
.mbadge-icon svg { width: 100%; height: 100%; }
.mbadge--purple { color: var(--grape-deep); }
.mbadge--purple .mbadge-icon { color: var(--grape); }
.mbadge--green { color: var(--leaf-deep); }
.mbadge--green .mbadge-icon { color: var(--leaf); }
.mbadge--gold { color: #8a6410; }
.mbadge--gold .mbadge-icon { color: var(--sun); }

/* ===== Benefits ===== */
.sbenefits { background: #fff; padding-top: 120px; }
.b3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.bcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; position: relative; }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bcard-number { position: absolute; top: 16px; left: 16px; z-index: 3; }
.bcard-number span { font-family: var(--font-num); font-weight: 700; font-size: .8rem; color: #fff; background: var(--grape); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(108,92,224,.3); }
.bcard-img { height: 200px; overflow: hidden; position: relative; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bcard:hover .bcard-img img { transform: scale(1.05); }
.bcard-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(44,40,70,.06) 100%); }
.bcard-content { padding: 28px; }
.bcard-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: .02em; }
.bcard-content p { color: var(--ink-soft); font-size: .94rem; line-height: 1.8; }

/* ===== Differentiators ===== */
.diff { background: var(--paper); }
.dwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.dcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.dcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dcard-visual { height: 220px; overflow: hidden; position: relative; }
.dcard-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dcard:hover .dcard-visual img { transform: scale(1.04); }
.dcard-tag { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 50px; font-family: var(--font-num); font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--grape); display: flex; align-items: center; gap: 6px; }
.dcard-tag svg { width: 14px; height: 14px; }
.dcard-tag--green { color: var(--leaf-deep); }
.dcard-content { padding: 30px; }
.dcard-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; letter-spacing: .02em; line-height: 1.5; }
.dcard-content p { color: var(--ink-soft); font-size: .96rem; line-height: 1.8; margin-bottom: 16px; }
.dcard-point { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--grape); }
.dcard-point svg { color: var(--grape); flex: none; }

/* ===== Steps ===== */
.steps { background: #fff; padding-top: 120px; }
.steprow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; position: relative; }
.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; position: relative; }
.snum { font-family: var(--font-num); font-weight: 700; font-size: 1rem; color: #fff; background: linear-gradient(135deg, var(--grape), var(--grape-deep)); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(108,92,224,.25); }
.step-connector { display: none; }
.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(--leaf-tint); color: var(--leaf-deep); font-weight: 600; padding: 18px 24px; border-radius: 50px; font-size: 1rem; display: inline-flex; align-items: center; gap: 10px; margin-left: auto; margin-right: auto; display: flex; justify-content: center; }
.step-foot svg { flex: none; }
.step-coment { margin: 3rem auto 0; }
.step-coment h3 { font-size: 1.5rem; color: var(--grape); margin-bottom: 1em; }
.step-coment p { padding: 0 1em; }

/* ===== Fees ===== */
.fees { background: var(--paper); }
.feebox { margin-top: 44px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; box-shadow: var(--shadow-md); max-width: 820px; margin-inline: auto; position: relative; overflow: hidden; }
.feebox::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--grape), var(--leaf)); }
.feebox-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.feebox-icon svg { width: 100%; height: 100%; }
.feebox h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .02em; line-height: 1.5; }
.feebox p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 28px; line-height: 1.8; }
.fee-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.fee-point { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--leaf-deep); }
.fee-point svg { color: var(--leaf); flex: none; }
.fcta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== 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(108,92,224,.03); }
.fq .qmark { font-family: var(--font-num); font-weight: 700; font-size: 1.1rem; color: var(--grape); flex: none; width: 32px; height: 32px; background: var(--grape-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(--grape); 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(108,92,224,.88) 0%, rgba(47,169,127,.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(--grape); }
.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 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(--grape); background: #fff; box-shadow: 0 0 0 3px rgba(108,92,224,.08); }
.field textarea { resize: vertical; min-height: 80px; }
.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(--leaf); 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: #cfc9e6; 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: #8f89ab; 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%; }
  .hero h1 { font-size: 2rem; }
  .problem-layout { grid-template-columns: 1fr; }
  .stat-highlight { gap: 5px; flex-direction: column; }
  .stat-number { min-width: 100%; }
  .flow-diagram { grid-template-columns: 1fr; gap: 8px; }
  .farrow { transform: rotate(90deg); margin: 4px 0; }
  .flabel { transform: rotate(-90deg) translate(-18px, 0); }
  .fnode--center { transform: none; }
  .b3 { grid-template-columns: 1fr; }
  .dwrap { 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; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .steprow { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .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; }
  .feebox { padding: 36px 24px; }
  .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; }
}
