/* ══════════════════════════════════════════
   home.css — トップページ（index.html）専用
   ══════════════════════════════════════════ */

body { overflow-x: hidden; -moz-osx-font-smoothing: grayscale; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 88px;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(233,69,96,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 85% 85%, rgba(15,52,96,0.45) 0%, transparent 70%),
    var(--ink);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(233,69,96,0.22), rgba(233,69,96,0.08));
  border: 1.5px solid rgba(233,69,96,0.6);
  color: #ff6b84;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 10px 24px; border-radius: 50px; margin-bottom: 36px;
  box-shadow: 0 0 24px rgba(233,69,96,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-badge::before {
  content: '\2726';
  font-size: 0.7rem;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.85rem, 5.2vw, 3.6rem);
  font-weight: 700; line-height: 1.3; letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--accent) 20%, var(--gold) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-hook {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px; margin: 0 auto 28px;
  line-height: 2;
  font-weight: 400;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 44px;
}
.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.chip b { color: var(--gold); font-weight: 700; }
.hero-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 18px 36px;
  margin-bottom: 44px;
}
.hero-price .yen { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.hero-price .num { font-size: 3.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-price .tax { font-size: 0.78rem; color: var(--muted); }
.hero-price .mo  { font-size: 0.95rem; color: var(--muted); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c7253e);
  color: var(--white); font-size: 1.05rem; font-weight: 800;
  padding: 18px 42px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(233,69,96,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(233,69,96,0.5); }
.btn-ghost {
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  padding: 18px 32px; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── SECTION BASE ── */
section { padding: 96px 24px; }
.container { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.45; margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.section-desc { color: rgba(255,255,255,0.65); max-width: 580px; font-size: 0.97rem; line-height: 1.95; }

/* ── HERO STATS (社会的証明バッジ) ── */
.hero-stats {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { text-align: center; }
.stat-num {
  display: block; font-size: 1.6rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.02em; line-height: 1.2;
}
.stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; margin-top: 4px;
}

/* ── PAIN ── */
.pain { background: var(--deep); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 52px;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: attr(data-icon);
  position: absolute; top: 14px; right: 18px;
  font-size: 2.2rem; opacity: 0.13;
}
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.02em; }
.pain-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.85; }
.pain-card .quote {
  margin-top: 14px; padding: 11px 14px;
  background: rgba(233,69,96,0.1);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem; color: rgba(255,255,255,0.8); font-style: italic;
  line-height: 1.75;
}

/* ── HOW ── */
.how { background: var(--ink); }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px; align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; flex-shrink: 0;
}
.step-num.ai    { background: linear-gradient(135deg,#0f3460,#16213e); border: 2px solid rgba(126,184,247,0.35); color: var(--blue); }
.step-num.human { background: linear-gradient(135deg,rgba(233,69,96,0.18),rgba(233,69,96,0.04)); border: 2px solid rgba(233,69,96,0.4); color: var(--accent); }
.step-role {
  display: inline-block;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 14px;
}
.step-role.ai    { background: rgba(126,184,247,0.13); color: var(--blue); }
.step-role.human { background: rgba(233,69,96,0.13); color: var(--accent); }
.step-content h3 { font-family: 'Noto Serif JP', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.04em; }

/* AI: 3-block output */
.ai-blocks { display: flex; flex-direction: column; gap: 12px; }
.ai-block {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  background: rgba(126,184,247,0.06);
  border: 1px solid rgba(126,184,247,0.15);
  border-radius: 8px; padding: 14px 16px; align-items: start;
}
.ai-block-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(126,184,247,0.2); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; flex-shrink: 0;
}
.ai-block-text strong { font-size: 0.92rem; color: var(--blue); display: block; margin-bottom: 4px; font-weight: 700; }
.ai-block-text span   { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* Human: 4-point format */
.human-format { display: flex; flex-direction: column; gap: 12px; }
.hf-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  background: rgba(233,69,96,0.05);
  border: 1px solid rgba(233,69,96,0.18);
  border-radius: 8px; padding: 14px 16px; align-items: start;
}
.hf-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(233,69,96,0.18); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; flex-shrink: 0;
}
.hf-text strong { font-size: 0.92rem; color: rgba(255,255,255,0.92); display: block; margin-bottom: 4px; font-weight: 700; }
.hf-text span   { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.hf-key { color: var(--gold) !important; }
.step-policy {
  margin-top: 18px; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.58);
  line-height: 1.8;
}
.step-policy b { color: rgba(255,255,255,0.75); }

/* ── RHYTHM ── */
.rhythm { background: var(--deep); }
.rhythm-wrap { margin-top: 52px; }
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 28px;
}
.rhythm-week {
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
}
.rhythm-week.submit {
  background: rgba(233,69,96,0.09);
  border: 2px solid rgba(233,69,96,0.3);
}
.rhythm-week.post {
  background: rgba(126,184,247,0.07);
  border: 2px solid rgba(126,184,247,0.2);
}
.rhythm-week .wk-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.rhythm-week.submit .wk-label { color: var(--accent); }
.rhythm-week.post   .wk-label { color: var(--blue); }
.rhythm-week h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.02em; }
.rhythm-week p  { font-size: 0.85rem; color: rgba(255,255,255,0.62); line-height: 1.7; }
.rhythm-sub {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 24px 28px;
}
.rhythm-sub p { font-size: 0.92rem; color: rgba(255,255,255,0.68); margin-bottom: 14px; line-height: 1.85; }
.rhythm-sub p:last-child { margin-bottom: 0; }
.rhythm-sub b { color: var(--gold); }
.rhythm-sub .rl { color: var(--green); }

/* ── FEATURES ── */
.features { background: var(--ink); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 22px; margin-top: 52px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 34px 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(233,69,96,0.28); }
.feature-icon { font-size: 2rem; display: inline-block; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 11px; letter-spacing: 0.02em; }
.feature-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.9; }
.feature-tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px;
}
.feature-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
}

/* Before/After block */
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px;
}
.ba-box { border-radius: 8px; padding: 12px 14px; }
.ba-box.before { background: rgba(233,69,96,0.08); border: 1px solid rgba(233,69,96,0.18); }
.ba-box.after  { background: rgba(76,222,138,0.08); border: 1px solid rgba(76,222,138,0.2); }
.ba-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 6px; }
.ba-box.before .ba-label { color: var(--accent); }
.ba-box.after  .ba-label { color: var(--green); }
.ba-box ul { list-style: none; }
.ba-box ul li { font-size: 0.84rem; color: rgba(255,255,255,0.75); padding: 4px 0; line-height: 1.6; }
.ba-box.before ul li::before { content: '\2715 '; color: rgba(233,69,96,0.6); }
.ba-box.after  ul li::before { content: '\2713 '; color: var(--green); }

/* Exit form demo */
.exit-form-demo {
  margin-top: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 16px;
}
.efd-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 8px; }
.efd-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.efd-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
}
.efd-chip.sel {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.4);
  color: var(--gold);
}

/* ── TRUST ── */
.trust { background: var(--deep); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 52px;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.trust-icon {
  font-size: 1.6rem; flex-shrink: 0; margin-top: 2px;
}
.trust-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.02em; }
.trust-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.85; }

/* ── COMPARE ── */
.compare { background: var(--ink); }
.table-wrap { overflow-x: auto; margin-top: 52px; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; line-height: 1.6; }
thead th {
  padding: 16px 18px; text-align: center; font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,0.08); color: var(--muted);
}
thead th.highlight {
  background: rgba(233,69,96,0.09); color: var(--white);
  border-bottom-color: var(--accent);
}
td {
  padding: 16px 18px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.62);
}
td:first-child { text-align: left; font-weight: 600; color: rgba(255,255,255,0.82); }
td.highlight { background: rgba(233,69,96,0.06); color: var(--white); font-weight: 700; }
.tag-good   { color: var(--green); font-weight: 700; }
.tag-bad    { color: var(--muted); }
.tag-accent { color: var(--accent); font-weight: 800; }

/* ── CASE STUDY ── */
.case-study { background: var(--deep); }
.cs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 32px;
  max-width: 780px; margin: 0 auto;
}
.cs-image-wrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
  background: #fff;
}
.cs-image {
  width: 100%; height: auto; display: block;
}
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 20px;
}
.cs-metric {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(233,69,96,0.06);
  border: 1px solid rgba(233,69,96,0.18);
  border-radius: 12px; padding: 18px 16px;
}
.cs-metric-icon {
  font-size: 1.5rem; flex-shrink: 0; margin-top: 2px;
}
.cs-metric-value {
  font-size: 1.05rem; font-weight: 800; color: var(--gold);
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.cs-metric-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.65;
}
.cs-note {
  text-align: center; font-size: 0.76rem;
  color: rgba(255,255,255,0.35); margin-top: 4px;
}

@media (max-width: 680px) {
  .cs-metrics { grid-template-columns: 1fr; }
  .cs-card { padding: 24px 18px; }
}

/* ── PRICING ── */
.pricing { background: var(--deep); }
.pricing-card {
  max-width: 520px; margin: 52px auto 0;
  background: linear-gradient(145deg, rgba(233,69,96,0.09), rgba(26,26,46,0.92));
  border: 2px solid rgba(233,69,96,0.32);
  border-radius: 20px; padding: 52px 44px; text-align: center;
  box-shadow: 0 0 80px rgba(233,69,96,0.11);
}
.pricing-badge {
  display: inline-block; background: var(--accent); color: var(--white);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 26px;
}
.price-big { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 7px; }
.price-big .yen { font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.price-big .num { font-size: 5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.price-big .mo  { font-size: 1.1rem; color: var(--muted); }
.price-tax { font-size: 0.78rem; color: var(--muted); margin-bottom: 32px; }
.price-list { list-style: none; text-align: left; margin-bottom: 36px; display: flex; flex-direction: column; gap: 13px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: rgba(255,255,255,0.85); line-height: 1.75; }
.price-list li::before { content: '\2726'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.btn-cta-big {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--accent), #c7253e);
  color: var(--white); font-size: 1.08rem; font-weight: 800;
  padding: 20px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(233,69,96,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-big:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(233,69,96,0.55); }
.btn-cta-big small { display: block; font-size: 0.74rem; font-weight: 400; opacity: 0.8; margin-top: 4px; }

/* ── VOICES ── */
.voices { background: var(--ink); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
  gap: 22px; margin-top: 52px;
}
.voice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 26px;
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.voice-card blockquote {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 2;
  font-style: normal; margin-bottom: 18px;
}
.voice-author { font-size: 0.78rem; color: var(--muted); }
.voice-author strong { color: rgba(255,255,255,0.6); font-weight: 600; }

/* ── FAQ ── */
.faq { background: var(--deep); }
.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; background: rgba(255,255,255,0.04);
  border: none; color: var(--white); text-align: left;
  padding: 22px 28px; font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.02em; line-height: 1.65;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.07); }
.faq-q .arrow { font-size: 0.78rem; color: var(--accent); transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.32s ease;
  background: rgba(255,255,255,0.02);
}
.faq-a p { padding: 20px 28px; font-size: 0.92rem; color: rgba(255,255,255,0.68); line-height: 2; }

/* ── FINAL CTA ── */
.final-cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(233,69,96,0.12) 0%, transparent 70%),
    var(--ink);
  text-align: center; padding: 120px 24px;
}
.final-cta h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.5; margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.final-cta h2 em {
  font-style: normal;
  background: linear-gradient(130deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.final-cta p { color: rgba(255,255,255,0.62); margin-bottom: 44px; font-size: 1rem; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 2; }

/* ── PLATFORMS ── */
.platforms { background: var(--deep); }
.platform-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 44px 0 40px;
}
.platform-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 8px 20px;
  font-size: 0.84rem; color: rgba(255,255,255,0.72); font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.platform-chip:hover {
  background: rgba(233,69,96,0.12);
  border-color: rgba(233,69,96,0.4);
  color: var(--white);
}
.platform-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 8px;
}
.platform-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 28px 22px;
  text-align: center;
}
.platform-feature .pf-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }
.platform-feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.02em; }
.platform-feature p { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.85; }
.platform-feature .pf-kw {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px;
}
.platform-feature .pf-kw span {
  font-size: 0.72rem; padding: 3px 10px; border-radius: 50px;
  background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .platform-3col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { padding: 96px 20px 64px; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-num { width: 46px; height: 46px; font-size: 1rem; }
  .pricing-card { padding: 36px 24px; }
  section { padding: 68px 20px; }
  .before-after { grid-template-columns: 1fr; }
}
