/* ═══════════════════════════════════════════
   HITOKI — index.css
═══════════════════════════════════════════ */

:root {
  --orange:      #F4845F;
  --orange-dark: #E06840;
  --peach-bg:    #FFF0EB;
  --peach-mid:   #FFDDD2;
  --peach-dark:  #F4D5C8;
  --night:       #1E1A18;
  --night-soft:  #3A3330;
  --muted:       #9A8880;
  --green:       #3D9A7A;
  --green-dark:  #2D7A5A;
  --green-bg:    #F0FAF6;
  --green-bg2:   #E8F5F0;
  --amber:       #F0B429;
  --amber-dark:  #D9920A;
  --amber-bg:    #FFFBF0;
  --amber-bg2:   #FEF3CC;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--peach-bg);
  color: var(--night);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--night-soft); text-decoration: none;
  padding: 8px 14px; border-radius: 99px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--night); background: var(--peach-mid); }

/* ══════════════════════════════════════════
   BOUTONS GLOBAUX
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--orange); color: white;
  padding: 15px 32px; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-primary--light { background: white; color: var(--night); }
.btn-primary--light:hover { background: var(--peach-mid); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center;
  background: transparent; color: white;
  padding: 15px 32px; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* Bouton Hikari (amber) */
.btn-hikari {
  display: inline-flex; align-items: center;
  background: white; color: var(--amber-dark);
  padding: 14px 28px; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--amber);
  box-shadow: 0 4px 16px rgba(240,180,41,0.20);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-hikari:hover {
  background: var(--amber-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,180,41,0.28);
}

/* Bouton Mamori (vert) */
.btn-mamori {
  display: inline-flex; align-items: center;
  background: white; color: var(--green-dark);
  padding: 14px 28px; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--green);
  box-shadow: 0 4px 16px rgba(61,154,122,0.20);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-mamori:hover {
  background: var(--green-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,154,122,0.28);
}

/* ══════════════════════════════════════════
   TYPO SECTIONS
══════════════════════════════════════════ */
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.section-eyebrow--light { color: rgba(255,240,235,0.5); }

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
  color: var(--night); margin-bottom: 16px;
}
.section-title--light { color: white; }

.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 52px;
}
.section-sub--light { color: rgba(255,240,235,0.5); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--peach-mid); border: 1px solid var(--peach-dark);
  border-radius: 99px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--orange-dark);
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 6vw, 58px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.04em; color: var(--night);
  max-width: 800px;
  animation: fadeUp 0.6s ease 0.08s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(13px, 3.5vw, 17px);
  color: var(--muted); max-width: 500px;
  line-height: 1.75; margin: 32px auto 0;
  text-align: center;
  animation: fadeUp 0.6s ease 0.16s both;
}
.hero-sub--solution {
  color: var(--night-soft);
  margin-top: 0;
  margin-bottom: 0;
}
.hero-solution-card {
  background: white;
  border: 1px solid var(--peach-dark);
  border-radius: 16px;
  padding: 18px 28px;
  margin: 20px auto 32px;
  max-width: 560px;
}
.hero-cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeUp 0.6s ease 0.24s both;
  margin-bottom: 40px;
}
.hero-reassurance { font-size: 13px; color: var(--muted); }

/* Hero tools — deux pills amber/green */
.hero-tools {
  display: flex; gap: 12px;
  animation: fadeUp 0.6s ease 0.32s both;
  width: 100%; max-width: 480px;
}
.hero-tool {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  background: white; justify-content: space-between;
  flex: 1;
}
.hero-tool:hover { transform: translateY(-2px); }

.hero-tool--hikari {
  border: 1.5px solid var(--amber);
  box-shadow: 0 4px 14px rgba(240,180,41,0.18);
}
.hero-tool--hikari:hover { box-shadow: 0 6px 20px rgba(240,180,41,0.26); }

.hero-tool--mamori {
  border: 1.5px solid var(--green);
  box-shadow: 0 4px 14px rgba(61,154,122,0.18);
}
.hero-tool--mamori:hover { box-shadow: 0 6px 20px rgba(61,154,122,0.26); }

.hero-tool-icon {
  width: 42px; height: 42px;
  border-radius: 12px; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-tool-icon--amber { background: rgba(240,180,41,0.12); }
.hero-tool-icon--green { background: rgba(61,154,122,0.12); }

.hero-tool-body { text-align: left; }
.hero-tool-name { font-size: 16px; font-weight: 700; }
.hero-tool-name--amber { color: var(--amber-dark); }
.hero-tool-name--green { color: var(--green-dark); }

.hero-tool-desc  { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-tool-arrow { font-size: 14px; color: var(--muted); margin-left: 4px; }

/* ══════════════════════════════════════════
   DOULEURS — fond night
══════════════════════════════════════════ */
.section--pain {
  background: var(--night);
  padding: 96px 5%;
}
.pain-inner  { max-width: 1100px; margin: 0 auto; }
.pain-header { margin-bottom: 52px; }
.pain-header .section-sub--light { margin-bottom: 0; }

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.pain-card {
  background: rgba(255,240,235,0.04);
  border: 1px solid rgba(255,240,235,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,133,95,0.25);
}
.pain-emoji { font-size: 26px; margin-bottom: 14px; display: block; }
.pain-title { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.pain-text  { font-size: 14px; color: rgba(255,240,235,0.55); line-height: 1.7; }
.pain-quote {
  margin-top: 14px; padding: 12px 14px;
  background: rgba(255,240,235,0.04);
  border-radius: 10px;
  font-size: 13px; color: rgba(255,240,235,0.45);
  font-style: italic; line-height: 1.6;
  border-left: 3px solid var(--orange);
}

/* Points indicateurs (mobile) */
.pain-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.pain-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,240,235,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.pain-dot--active {
  background: var(--orange);
  transform: scale(1.2);
}
.pain-scroll-hint {
  font-size: 14px;
  color: rgba(255,240,235,0.4);
  margin-left: 4px;
  transition: opacity 0.3s ease;
}
.pain-scroll-hint.hidden { opacity: 0; }

/* ══════════════════════════════════════════
   SOLUTION EYEBROW (amber / green)
══════════════════════════════════════════ */
.solution-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.solution-eyebrow--amber { color: var(--amber-dark); }
.solution-eyebrow--green { color: var(--green-dark); }

.solution-eyebrow-icon {
  width: 28px; height: 28px; border-radius: 8px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.solution-eyebrow-icon--amber { background: rgba(240,180,41,0.14); }
.solution-eyebrow-icon--green { background: rgba(61,154,122,0.14); }

.solution-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 16px;
}
.solution-title--dark { color: var(--night); }

.solution-desc--muted {
  font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px;
}

/* Liste Hikari amber */
.solution-list--amber {
  list-style: none; margin-bottom: 32px;
}
.solution-list--amber li {
  font-size: 14px; color: var(--night-soft);
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(240,180,41,0.12);
  position: relative;
}
.solution-list--amber li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--amber);
}

/* ══════════════════════════════════════════
   HIKARI BLOCK
══════════════════════════════════════════ */
.solution-block {
  background: var(--peach-bg);
  padding: 60px 5%;
}
.mamori-block {
  background: var(--peach-bg);
  padding: 60px 5%;
}

/* Card commune aux deux blocs */
.solution-card {
  background: white;
  border-radius: 28px;
  padding: 52px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.solution-card--amber {
  border: 1.5px solid rgba(240,180,41,0.4);
  box-shadow: 0 4px 32px rgba(240,180,41,0.10);
}
.solution-card--green {
  border: 1.5px solid rgba(61,154,122,0.35);
  box-shadow: 0 4px 32px rgba(61,154,122,0.10);
}

.solution-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Carte mockup Hikari */
.sv-card {
  background: white;
  border: 1.5px solid rgba(240,180,41,0.35);
  border-radius: 18px; padding: 20px; margin-bottom: 12px;
  box-shadow: 0 4px 24px rgba(240,180,41,0.12);
}
.sv-card--risk.sv-card--risk-amber {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(240,180,41,0.06);
  border-color: rgba(240,180,41,0.22); margin-bottom: 0;
  box-shadow: none;
}
.sv-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sv-icon {
  width: 34px; height: 34px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.sv-icon--amber    { background: rgba(240,180,41,0.14); }
.sv-doc-name       { font-size: 13px; font-weight: 600; color: var(--night); }
.sv-doc-date       { font-size: 11px; color: var(--muted); margin-top: 1px; }
.sv-section        { margin-bottom: 12px; }
.sv-section:last-child { margin-bottom: 0; }
.sv-section-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.sv-section-label--amber { color: var(--amber-dark); }
.sv-section-text   { font-size: 13px; color: var(--night-soft); line-height: 1.6; }
.sv-step {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--night-soft);
  margin-bottom: 6px; line-height: 1.5;
}
.sv-step--faded    { opacity: 0.35; }
.sv-step-n {
  width: 18px; height: 18px;
  border-radius: 5px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: white;
}
.sv-step-n--amber  { background: var(--amber); }
.sv-risk-icon      { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.sv-risk-label {
  font-size: 11px; font-weight: 700;
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em;
}
.sv-risk-label--amber { color: var(--amber-dark); }
.sv-risk-text      { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   MAMORI INNER LAYOUT
══════════════════════════════════════════ */
.mamori-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.mamori-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.mamori-cat {
  display: flex; align-items: center; gap: 6px;
  border-radius: 99px; padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  transition: transform 0.15s;
}
.mamori-cat--green {
  background: white;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(61,154,122,0.12);
}
.mamori-cat--green:hover { transform: translateY(-1px); }
.mamori-cat span { font-size: 14px; }

/* Mockup dashboard Mamori */
.mamori-dash {
  background: white; border-radius: 24px;
  border: 1.5px solid rgba(61,154,122,0.35);
  padding: 24px;
  box-shadow: 0 4px 32px rgba(61,154,122,0.12);
}
.mamori-dash-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--night); margin-bottom: 20px;
}
.mamori-section-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px; margin-top: 14px;
}
.mamori-section-label:first-of-type { margin-top: 0; }
.mamori-section-label--urgent { color: var(--red); }
.mamori-section-label--ok     { color: var(--green); }
.mamori-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid transparent; margin-bottom: 6px;
  transition: transform 0.15s;
}
.mamori-item:hover            { transform: translateX(3px); }
.mamori-item--urgent          { background: var(--red-bg); border-color: rgba(217,79,79,0.15); }
.mamori-item--approche        { background: var(--amber-bg2); border-color: rgba(240,180,41,0.18); }
.mamori-item--ok              { background: #F8FFFE; border-color: rgba(61,154,122,0.1); }
.mamori-dot                   { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mamori-dot--urgent           { background: var(--red); }
.mamori-dot--approche         { background: var(--amber); }
.mamori-dot--ok               { background: var(--green); }
.mamori-item-info             { flex: 1; min-width: 0; }
.mamori-item-name             { font-size: 13px; font-weight: 600; color: var(--night); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mamori-item-date             { font-size: 11px; color: var(--muted); margin-top: 1px; }
.mamori-item-badge {
  flex-shrink: 0; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 99px;
}
.mamori-item-badge--urgent    { background: var(--red-bg);    color: var(--red);   border: 1px solid rgba(217,79,79,0.2); }
.mamori-item-badge--approche  { background: var(--amber-bg2); color: #A0660A;      border: 1px solid rgba(240,180,41,0.25); }
.mamori-item-badge--ok        { background: var(--green-bg2); color: var(--green); border: 1px solid rgba(61,154,122,0.2); }

/* ══════════════════════════════════════════
   ACCORDÉON RAPPELS (mobile)
══════════════════════════════════════════ */
.reminder-accordion-arrow {
  display: none;
  margin-left: 6px;
  font-size: 14px;
  color: var(--orange);
  transition: transform 0.3s ease;
}

/* ══════════════════════════════════════════
   COMMENT CA MARCHE
══════════════════════════════════════════ */
.how-section {
  background: white;
  padding: 96px 5%;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 100px;
  max-width: 1100px;
}
.how-divider {
  width: 1px;
  background: var(--peach-dark);
  align-self: stretch;
}
.how-col-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.how-col-icon-wrap {
  width: 32px; height: 32px; border-radius: 9px; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.how-col-icon-wrap--amber { background: rgba(240,180,41,0.14); }
.how-col-icon-wrap--green { background: rgba(61,154,122,0.14); }

.how-col-name {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.how-col-name--amber { color: var(--amber-dark); }
.how-col-name--green { color: var(--green-dark); }

.how-step-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--peach-dark);
}
.how-step-item:last-child    { border-bottom: none; padding-bottom: 0; }
.how-step-item:first-of-type { padding-top: 0; }

.how-num {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 8px; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; color: white;
}
.how-num--amber { background: var(--amber); }
.how-num--green { background: var(--green); }

.how-title { font-size: 14px; font-weight: 700; color: var(--night); margin-bottom: 4px; }
.how-text  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   RAPPELS
══════════════════════════════════════════ */
.reminders-section { padding: 80px 5%; background: var(--peach-bg); }
.reminders-card {
  background: #FFFAF7;
  border: 1px solid var(--peach-dark);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(30,26,24,0.05);
  max-width: 1100px;
  margin: 0 auto;
}
.reminders-card .section-sub { max-width: 480px; }
.reminders-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}
.reminder-group-label {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.reminder-tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: flex-start; }
.reminder-tag {
  background: white;
  border: 1px solid var(--peach-dark);
  border-radius: 99px;
  padding: 4px 13px;
  font-size: 13px;
  color: var(--night-soft);
  display: inline-block;
  width: fit-content;
}
.reminders-note { margin-top: 36px; font-size: 13px; color: var(--muted); font-style: italic; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-section {
  background: var(--orange);
  border-radius: 32px; margin: 24px 3% 80px; padding: 72px 5%;
  text-align: center;
}
.cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 700;
  color: white; letter-spacing: -0.03em; margin-bottom: 12px;
}
.cta-sub       { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.cta-reassurance { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  padding: 32px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--peach-dark);
}
.footer-links             { display: flex; gap: 24px; }
.footer-links a           { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover     { color: var(--night); }
.footer-copy              { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: white;
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; z-index: 999;
  box-shadow: 0 4px 12px rgba(244,132,95,0.4);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover   { background: var(--orange-dark); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 640px) {
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .mamori-inner   { grid-template-columns: 1fr; gap: 40px; }
  .mamori-visual  { order: 2; }
  .mamori-text    { order: 1; }

  .how-grid    { grid-template-columns: 1fr; gap: 48px; }
  .how-divider { display: none; }

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


  nav                        { padding: 14px 4%; }
  .hero                      { padding: 90px 4% 52px; }
  .hero-solution-card        { padding: 14px 16px; }
  .hero-tools                { gap: 8px; }
  .hero-tool                 { padding: 12px 14px; gap: 8px; }
  .hero-tool-icon            { width: 34px; height: 34px; font-size: 16px; }
  .hero-tool-name            { font-size: 14px; }
  .hero-tool-desc            { font-size: 11px; }

  .section--pain             { padding: 64px 0; }
  .pain-inner                { padding: 0; max-width: none; }
  .pain-header               { padding: 0 16px; margin-bottom: 36px; }
  .pain-dots                 { display: flex; align-items: center; gap: 8px; }

  .pain-grid::before {
    content: "";
    flex: 0 0 8px;
  }
  .pain-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 4px 0 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .pain-grid::-webkit-scrollbar { display: none; }
  .pain-card {
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    margin: 0 16px 0 0;
    padding: 28px 24px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .pain-card:last-child      { margin-right: 16px; }

  .how-section,
  .reminders-section         { padding: 48px 4%; }
  .solution-block            { padding: 32px 4%; }
  .mamori-block              { padding: 32px 4%; }
  .solution-card             { padding: 28px 20px; }
  .reminders-card            { padding: 28px 20px; }

  .reminders-grid            { grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
  .reminder-group-label      { font-size: 10px; margin-bottom: 7px; }
  .reminder-tags             { align-items: flex-start; }
  .reminder-tag { font-size: 11px; padding: 3px 10px; border-radius: 10px; }

  .cta-section               { margin: 0 2%; padding: 52px 5%; }
  .cta-buttons               { flex-direction: column; }

  footer {
    padding: 24px 4%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}