/* =========================================================
   匂いサロン LP 2026新版
   Palette
   - bg:        #F7F4EE
   - moss:      #6B7F5F
   - rose:      #C9A19A
   - text:      #3A2E26
   - terracotta:#B8674F
   - line:      #06C755
========================================================= */

:root {
  --bg: #F7F4EE;
  --bg-soft: #F1ECE2;
  --moss: #6B7F5F;
  --moss-soft: #A2B392;
  --rose: #C9A19A;
  --rose-soft: #E5CDC8;
  --text: #3A2E26;
  --text-soft: #6E5F54;
  --terracotta: #B8674F;
  --line: #06C755;
  --line-dark: #05A745;

  --shadow-sm: 0 2px 8px rgba(58, 46, 38, 0.06);
  --shadow-md: 0 6px 24px rgba(58, 46, 38, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 46, 38, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-left: 4px;
  letter-spacing: 0.1em;
}

.site-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

.site-nav a:hover {
  color: var(--moss);
}

.nav-cta {
  background: var(--line);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--line-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Section common
========================================================= */
section {
  padding: 96px 0;
  position: relative;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 48px;
  color: var(--text);
}

.section-title--left {
  text-align: left;
  font-size: 28px;
}

/* =========================================================
   CTA buttons
========================================================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--line);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.cta:hover {
  background: var(--line-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.4);
  color: #fff;
}

.cta:active {
  transform: translateY(0);
}

.cta-sm {
  padding: 12px 28px;
  font-size: 14px;
}

.cta-md {
  padding: 18px 44px;
  font-size: 16px;
}

.cta-lg {
  padding: 24px 64px;
  font-size: 20px;
  width: min(100%, 480px);
}

.line-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
}

.cta-lg .line-icon {
  width: 32px;
  height: 32px;
}

.cta-sm .line-icon {
  width: 22px;
  height: 22px;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* =========================================================
   S1. ファーストビュー
========================================================= */
.s1 {
  padding: 120px 0 96px;
  background: linear-gradient(180deg, #FAF7F1 0%, var(--bg) 100%);
  overflow: hidden;
}

.s1-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.s1-plant {
  position: absolute;
  opacity: 0.35;
  width: 180px;
  filter: drop-shadow(0 4px 12px rgba(107, 127, 95, 0.15));
}

.s1-plant-left {
  top: 40px;
  left: -30px;
  transform: rotate(-8deg);
}

.s1-plant-right {
  bottom: 20px;
  right: -20px;
  transform: rotate(10deg);
}

.s1-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.s1-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--moss);
  margin: 0 0 24px;
}

.s1-headline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  color: var(--text);
}

.s1-headline-em {
  position: relative;
  display: inline-block;
}

.s1-headline-em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(201, 161, 154, 0.35);
  z-index: -1;
}

.s1-sub {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0 0 40px;
  letter-spacing: 0.05em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin: 0 0 40px;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.badge-icon {
  width: 18px;
  height: 18px;
  color: var(--moss);
}

.s1-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
}

/* =========================================================
   S2. 共感
========================================================= */
.s2 {
  background: var(--bg-soft);
}

.empathy-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.empathy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  line-height: 1.7;
}

.check-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(107, 127, 95, 0.12);
  color: var(--moss);
}

.check-mark svg {
  width: 18px;
  height: 18px;
}

.empathy-tail {
  text-align: center;
  margin: 40px auto 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* =========================================================
   S3. 不安の正体
========================================================= */
.s3 {
  background: var(--bg);
}

.s3-body {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  max-width: 720px;
  margin: 0 auto 56px;
}

.s3-body strong {
  color: var(--moss);
  font-weight: 700;
}

.venn {
  position: relative;
  width: 320px;
  height: 280px;
  margin: 0 auto 56px;
}

.venn-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  mix-blend-mode: multiply;
}

.venn-a {
  background: rgba(107, 127, 95, 0.45);
  top: 0;
  left: 0;
  color: #2c3a25;
}

.venn-b {
  background: rgba(201, 161, 154, 0.5);
  top: 0;
  right: 0;
  color: #6e3a31;
}

.venn-c {
  background: rgba(184, 103, 79, 0.45);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #5a2616;
}

.s3-warn {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1.7;
  letter-spacing: 0.04em;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  border-top: 1px solid rgba(184, 103, 79, 0.2);
  border-bottom: 1px solid rgba(184, 103, 79, 0.2);
}

/* =========================================================
   S4. 解決の場所
========================================================= */
.s4 {
  background: var(--bg-soft);
}

.s4-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  font-size: 16px;
  line-height: 2;
}

.accent {
  color: var(--moss);
  font-weight: 700;
  border-bottom: 2px dotted var(--rose);
  padding: 0 4px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.steps li {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(107, 127, 95, 0.3);
}

.steps h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.step-time {
  font-size: 13px;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.steps p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
  text-align: left;
}

/* =========================================================
   S5. 信頼の根拠
========================================================= */
.s5 {
  background: var(--bg);
}

.s5-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.s5-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.s5-imgs figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
  aspect-ratio: 1 / 1;
}

.s5-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s5-imgs figure:nth-child(1) {
  margin-top: 32px;
}

.s5-imgs figure:nth-child(2) {
  margin-bottom: 32px;
}

.s5-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--moss);
  margin: 0 0 16px;
  font-weight: 500;
}

.s5-points {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s5-points li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.85;
}

.s5-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--rose);
}

.s5-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* =========================================================
   S6. 5つの約束
========================================================= */
.s6 {
  background: var(--bg-soft);
}

.promises {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promises li {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--moss);
}

.promise-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(107, 127, 95, 0.12);
  color: var(--moss);
}

.promise-icon svg {
  width: 26px;
  height: 26px;
}

.promises h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}

.promises p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* =========================================================
   S7. お客様の声
========================================================= */
.s7 {
  background: var(--bg);
}

.s7-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.85;
}

.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--rose);
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-soft);
}

.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--bg-soft);
}

.voice-id {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.05em;
}

.voice-attr {
  font-size: 12px;
  color: var(--text-soft);
  margin: 2px 0 0;
}

.voice-before,
.voice-after {
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 14px;
}

.voice-before {
  color: var(--text-soft);
}

.voice-before::first-line,
.voice-after::first-line {
  font-weight: 700;
}

.voice-after {
  color: var(--text);
  margin-bottom: 0;
}

/* =========================================================
   S8. 価格
========================================================= */
.s8 {
  background: var(--bg-soft);
}

.s8-lead {
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 auto 40px;
  max-width: 600px;
}

.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 32px;
}

.compare-col {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(58, 46, 38, 0.08);
}

.compare-col h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.5;
  min-height: 3em;
  letter-spacing: 0.04em;
}

.compare-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.compare-note {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

.compare-col--ours {
  border: 2px solid var(--moss);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F0 100%);
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(107, 127, 95, 0.16);
}

.compare-col--ours::before {
  content: '当サロン';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--moss);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.compare-col--ours .compare-price {
  color: var(--moss);
}

.s8-tail {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 40px auto 0;
  max-width: 720px;
}

/* =========================================================
   S9. FAQ
========================================================= */
.s9 {
  background: var(--bg);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  line-height: 1.6;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: 'Q';
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--moss);
  margin-right: 12px;
  font-size: 18px;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item summary:hover {
  background: var(--bg-soft);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px 24px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  border-top: 1px solid var(--bg-soft);
  padding-top: 20px;
}

.faq-item p::before {
  content: 'A ';
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--rose);
  font-size: 16px;
  margin-right: 8px;
}

/* =========================================================
   S10. 最終CTA
========================================================= */
.s10 {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding-bottom: 120px;
}

.s10-inner {
  text-align: center;
}

.s10-headline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}

.s10-sub {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.85;
  margin: 0 0 56px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: left;
}

.flow li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.flow p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
}

.s10-note {
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: #2D241D;
  color: #DCD4C6;
  padding: 64px 0 32px;
  font-size: 14px;
  line-height: 1.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-heading {
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
  color: #fff;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer a:hover {
  color: #fff;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  font-size: 12px;
  color: #B4A99A;
  line-height: 1.85;
}

.disclaimer p {
  margin: 0 0 8px;
}

.copyright {
  margin-top: 16px !important;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* =========================================================
   Responsive — 768px
========================================================= */
@media (max-width: 1024px) {
  .s5-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s5-imgs figure:nth-child(1),
  .s5-imgs figure:nth-child(2) {
    margin: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .section-title--left {
    font-size: 22px;
  }

  /* Header / nav */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
  }

  .site-nav li {
    border-bottom: 1px solid var(--bg-soft);
  }

  .site-nav li:last-child {
    border-bottom: 0;
    margin-top: 12px;
  }

  .site-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 14px;
  }

  .nav-cta {
    text-align: center;
    padding: 14px 24px !important;
  }

  /* S1 */
  .s1 {
    padding: 64px 0 56px;
  }

  .s1-headline {
    font-size: 24px;
    line-height: 1.6;
  }

  .s1-sub {
    font-size: 16px;
  }

  .s1-plant {
    width: 100px;
    opacity: 0.25;
  }

  .trust-badges li {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* S3 venn */
  .venn {
    width: 280px;
    height: 240px;
  }

  .venn-circle {
    width: 150px;
    height: 150px;
    font-size: 13px;
  }

  .s3-warn {
    font-size: 16px;
    padding: 20px 16px;
  }

  .s3-body {
    font-size: 16px;
  }

  /* S4 steps -> stacked */
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* S6 promises */
  .promises li {
    padding: 18px 18px;
    gap: 14px;
  }

  /* S7 voices */
  .voices {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* S8 compare */
  .compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-col--ours {
    transform: scale(1);
  }

  .compare-col h3 {
    min-height: auto;
  }

  /* S10 */
  .s10-headline {
    font-size: 24px;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .cta-lg {
    padding: 20px 32px;
    font-size: 17px;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .s1-headline {
    font-size: 22px;
  }

  .section-title {
    font-size: 22px;
  }

  .s10-headline {
    font-size: 22px;
  }
}
