/* ============================================================
   INSUNORM — STYLE.CSS
   Architecture: SMACSS-inspired modular
   Token family : --tone-main / --tone-support / --tone-cta
   Mood         : Soft blue trust · pastel + saturated + dark
   ============================================================ */

/* ----- 1. TOKENS ----- */
:root {
  /* tone palette */
  --tone-main:        #0b3d91;   /* deep saturated blue */
  --tone-main-soft:   #143f8a;
  --tone-support:     #7cc4f0;   /* pastel blue accent */
  --tone-support-2:   #e6f1fb;   /* very light pastel */
  --tone-cta:         #f59e0b;   /* warm amber CTA */
  --tone-cta-hover:   #d98708;

  /* surfaces */
  --surface-0:        #ffffff;
  --surface-1:        #f6f9fd;
  --surface-2:        #eef4fb;
  --surface-3:        #dde9f6;
  --surface-ink:      #0a1f4a;

  /* ink / text */
  --ink-strong:       #0a1f4a;
  --ink-body:         #29406d;
  --ink-muted:        #6b7c98;
  --ink-on-dark:      #f4f8ff;

  /* borders */
  --line-soft:        #e3ecf6;
  --line-mid:         #cddef0;

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* shadows */
  --sh-1: 0 2px 6px rgba(11,61,145,.06);
  --sh-2: 0 12px 30px rgba(11,61,145,.10);
  --sh-3: 0 24px 60px rgba(11,61,145,.14);

  /* typography */
  --ff-display: "DM Sans", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, sans-serif;
  --ff-quote:   "Lora", Georgia, serif;

  /* layout */
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ----- 2. BASE ----- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-body);
  background: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--tone-main); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--tone-cta); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink-strong);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}

p { margin: 0 0 1em; }

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

.container {
  width: 100%;
  max-width: var(--wrap);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

/* ----- 3. UTILITY ----- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tone-main);
  background: var(--surface-2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow--alt {
  background: transparent;
  border: 1px solid var(--line-mid);
  color: var(--tone-main-soft);
}

.section-title {
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.55rem);
  letter-spacing: -.01em;
}
.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

/* ----- 4. BUTTONS (soft pill) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease;
  text-align: center;
}
.btn--primary {
  background: var(--tone-cta);
  color: #2a1500;
  box-shadow: var(--sh-2);
}
.btn--primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-1px);
  color: #2a1500;
}
.btn--ghost {
  background: transparent;
  color: var(--tone-main);
  border: 1.5px solid var(--line-mid);
}
.btn--ghost:hover {
  border-color: var(--tone-main);
  color: var(--tone-main);
  background: var(--surface-1);
}
.btn--block { width: 100%; }
.btn--small { padding: 10px 18px; font-size: .9rem; }

/* ----- 5. HEADER ----- */
.page-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark { display: inline-flex; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-strong);
}
.brand__by {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav a {
  font-size: .95rem;
  color: var(--ink-body);
  font-weight: 500;
}
.primary-nav a:hover { color: var(--tone-main); }
.primary-nav__cta {
  background: var(--tone-main);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--r-pill);
}
.primary-nav__cta:hover { background: var(--tone-main-soft); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--line-mid);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--tone-main);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 18px;
  gap: 4px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
}
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-body);
}
.mobile-nav__cta {
  margin-top: 8px;
  background: var(--tone-cta);
  color: #2a1500 !important;
  border-radius: var(--r-pill);
  text-align: center;
  font-weight: 600;
  border: 0 !important;
}

/* ----- 6. HERO ----- */
.hero {
  background:
    radial-gradient(1000px 500px at 90% -10%, var(--tone-support-2), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, #d6e8fa, transparent 60%),
    var(--surface-0);
  padding: clamp(50px, 8vw, 96px) 0 clamp(60px, 10vw, 110px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.05rem, 1.4rem + 2.6vw, 3.4rem);
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--ink-body);
  margin-bottom: 28px;
  max-width: 56ch;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__chips {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--ink-muted);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tone-support);
  display: inline-block;
}

.hero__visual {
  position: relative;
  margin: 0;
}
.hero__image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4/3.2;
  background: var(--surface-3);
}
.hero__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(11,61,145,.18));
}
.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--tone-main);
  color: var(--ink-on-dark);
  padding: 16px 20px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-2);
}
.hero__badge strong { font-size: 1.4rem; font-family: var(--ff-display); }
.hero__badge span { font-size: .85rem; max-width: 130px; line-height: 1.3; opacity: .9; }

/* ----- 7. TRUST STRIP ----- */
.trust-strip {
  background: var(--tone-main);
  color: var(--ink-on-dark);
  padding: 28px 0;
}
.trust-strip__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-strip__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-strip__num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--tone-support);
  font-weight: 700;
  letter-spacing: -.02em;
}
.trust-strip__item p {
  margin: 0;
  font-size: .96rem;
  color: rgba(244,248,255,.92);
}

/* ----- 8. AUDIENCE ----- */
.audience { padding: clamp(60px, 8vw, 100px) 0; background: var(--surface-1); }
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}
.audience__cards { display: grid; gap: 22px; }
.audience-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .25s ease;
}
.audience-card:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.audience-card__media {
  background: var(--surface-3);
}
.audience-card__media img { width: 100%; height: 100%; object-fit: cover; }
.audience-card__body { padding: 20px 22px; }
.audience-card__body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.audience-card__body p { font-size: .94rem; color: var(--ink-muted); margin: 0; }

/* ----- 9. PRODUCT ----- */
.product { padding: clamp(70px, 9vw, 110px) 0; background: var(--surface-0); }
.product__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.product__media {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__halo {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tone-support-2), transparent 70%);
  z-index: 0;
}
.product__media img {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 22px 32px rgba(11,61,145,.18));
}
.feature-list { display: grid; gap: 18px; margin: 22px 0 28px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list__bullet {
  flex: 0 0 28px; height: 28px;
  border-radius: 50%;
  background: var(--tone-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}
.feature-list strong {
  display: block;
  color: var(--ink-strong);
  font-family: var(--ff-display);
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.feature-list p { margin: 0; color: var(--ink-muted); font-size: .94rem; }

.product__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.product__note { font-size: .85rem; color: var(--ink-muted); }

/* ----- 10. CONFIDENCE GRID ----- */
.confidence {
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    linear-gradient(180deg, var(--surface-1), var(--surface-2));
}
.confidence__head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.confidence__head .section-lead { margin: 0 auto; }
.confidence__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.info-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: transform .2s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.info-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--tone-support-2);
  color: var(--tone-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.info-card p { font-size: .92rem; color: var(--ink-muted); margin: 0; }

/* ----- 11. ROUTINE TIMELINE ----- */
.routine { padding: clamp(60px, 9vw, 110px) 0; background: var(--surface-0); }
.routine__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.timeline { position: relative; padding-left: 40px; display: grid; gap: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line-mid);
}
.timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  position: relative;
}
.timeline__num {
  position: absolute;
  left: -40px;
  top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--tone-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--ff-display);
  box-shadow: 0 0 0 6px var(--surface-0);
}
.timeline__step h3 { font-size: 1.12rem; margin-bottom: 4px; }
.timeline__step p { margin: 0; color: var(--ink-muted); font-size: .96rem; }

/* ----- 12. HABIT CARDS ----- */
.habits {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--surface-2);
}
.habits__head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.habits__head .section-lead { margin: 0 auto; }
.habit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.habit-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.habit-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.habit-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-3);
}
.habit-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.habit-card:hover .habit-card__img img { transform: scale(1.04); }
.habit-card h3 {
  padding: 18px 20px 4px;
  font-size: 1.06rem;
}
.habit-card p {
  padding: 0 20px 22px;
  margin: 0;
  font-size: .92rem;
  color: var(--ink-muted);
}

/* ----- 13. REVIEWS ----- */
.reviews { padding: clamp(60px, 9vw, 110px) 0; background: var(--surface-0); }
.reviews__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.reviews__head .section-lead { margin: 0 auto; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--surface-1);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  padding: 30px 26px 24px;
  position: relative;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--ff-quote);
  font-size: 5rem;
  color: var(--tone-support);
  line-height: 1;
  font-style: italic;
}
.review-card__text {
  font-family: var(--ff-quote);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-strong);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.review-card__meta { font-style: normal; }
.review-card__meta strong {
  display: block;
  color: var(--tone-main);
  font-family: var(--ff-display);
  font-size: 1rem;
}
.review-card__meta span {
  font-size: .85rem;
  color: var(--ink-muted);
}

/* ----- 14. TRANSPARENCY ----- */
.transparency {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--tone-main);
  color: var(--ink-on-dark);
}
.transparency__inner {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.transparency .eyebrow {
  background: rgba(124,196,240,.18);
  color: var(--tone-support);
}
.transparency .section-title {
  color: #fff;
}
.transparency p { color: rgba(244,248,255,.88); }
.transparency strong { color: #fff; }
.transparency a { color: var(--tone-support); }
.transparency a:hover { color: #fff; }

.transparency__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.transparency__list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1);
}
.transparency__list span { color: var(--tone-support); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

.transparency__note {
  background: rgba(255,255,255,.08);
  padding: 26px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--tone-support);
}
.transparency__note em {
  font-family: var(--ff-quote);
  font-size: 1rem;
  line-height: 1.6;
}

/* ----- 15. FAQ ----- */
.faq { padding: clamp(60px, 9vw, 110px) 0; background: var(--surface-1); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}
.faq__list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--tone-support); box-shadow: var(--sh-1); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--tone-main);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: .96rem;
}

/* ----- 16. ORDER ----- */
.order {
  padding: clamp(60px, 9vw, 110px) 0;
  background: linear-gradient(180deg, var(--surface-2), var(--surface-0));
}
.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}
.order__bullets { display: grid; gap: 10px; margin-top: 20px; }
.order__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  color: var(--ink-body);
}
.order__bullets span { color: var(--tone-cta); }

.order-form {
  background: #fff;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-2);
  display: grid;
  gap: 16px;
}
.order-form__title {
  font-size: 1.3rem;
  margin: 0 0 6px;
  color: var(--tone-main);
}
.field { display: grid; gap: 6px; }
.field__label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: .01em;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  padding: 13px 14px;
  border: 1.5px solid var(--line-mid);
  border-radius: var(--r-sm);
  font: inherit;
  background: var(--surface-1);
  color: var(--ink-strong);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus {
  outline: 0;
  border-color: var(--tone-main);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,61,145,.1);
}
.field--check {
  flex-direction: row;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-muted);
}
.field--check input { margin-top: 4px; accent-color: var(--tone-main); }
.field--check a { color: var(--tone-main); text-decoration: underline; }

.order-form__note {
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 4px 0 0;
}

/* ----- 17. FOOTER ----- */
.page-footer {
  background: var(--surface-ink);
  color: var(--ink-on-dark);
  padding: 60px 0 0;
}
.page-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.page-footer h4 {
  color: var(--tone-support);
  font-size: 1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__by { color: var(--tone-support); }
.page-footer__about {
  font-size: .92rem;
  color: rgba(244,248,255,.72);
  margin-top: 16px;
  max-width: 32ch;
}
.page-footer address {
  font-style: normal;
  font-size: .92rem;
  color: rgba(244,248,255,.78);
  line-height: 1.7;
}
.page-footer address a { color: var(--tone-support); }
.page-footer ul li { margin-bottom: 8px; }
.page-footer ul a {
  color: rgba(244,248,255,.78);
  font-size: .92rem;
}
.page-footer ul a:hover { color: var(--tone-support); }

.page-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: .82rem;
  color: rgba(244,248,255,.6);
}
.page-footer__bottom .container { display: grid; gap: 8px; }
.page-footer__disclaimer { font-size: .78rem; line-height: 1.55; }

/* ----- 18. COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 100;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-mid);
  box-shadow: var(--sh-3);
  padding: 22px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--tone-main);
}
.cookie-banner p {
  font-size: .9rem;
  color: var(--ink-muted);
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ----- 19. FLOATING CTA ----- */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--tone-cta);
  color: #2a1500;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: var(--sh-3);
  z-index: 40;
  transition: transform .2s ease;
  display: none;
}
.float-cta:hover { transform: translateY(-2px); color: #2a1500; }

/* ----- 20. LEGAL PAGES ----- */
.legal {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--surface-1);
}
.legal__inner {
  background: #fff;
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line-soft);
  max-width: 880px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.3rem);
  margin-bottom: 8px;
  color: var(--tone-main);
}
.legal__meta {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink-strong);
}
.legal h3 {
  font-size: 1.02rem;
  margin-top: 22px;
  color: var(--tone-main-soft);
}
.legal p, .legal li { font-size: .98rem; color: var(--ink-body); }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 1em; }
.legal ul li, .legal ol li { list-style: disc; margin-bottom: 6px; }
.legal ol li { list-style: decimal; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  color: var(--tone-main);
  font-weight: 600;
}

/* ----- 21. SUCCESS PAGE ----- */
.success {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface-0));
  padding: 80px 0;
}
.success__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-2);
}
.success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--tone-support-2);
  color: var(--tone-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.success h1 {
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.4rem);
  color: var(--tone-main);
}
.success p {
  font-size: 1.05rem;
  color: var(--ink-body);
  max-width: 50ch;
  margin: 0 auto 28px;
}

/* ============================================================
   22. RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero__grid,
  .audience__grid,
  .product__grid,
  .routine__grid,
  .transparency__inner,
  .faq__grid,
  .order__grid {
    grid-template-columns: 1fr;
  }
  .confidence__grid { grid-template-columns: repeat(2, 1fr); }
  .habit-cards { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .trust-strip__row { grid-template-columns: 1fr; gap: 14px; }
  .page-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero__badge { left: 12px; bottom: -16px; }
  .audience-card { grid-template-columns: 110px 1fr; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
  .float-cta { display: inline-flex; }
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-card__media { aspect-ratio: 16/9; }
  .order-form { padding: 22px; }
  .timeline { padding-left: 36px; }
  .timeline__num { left: -36px; width: 30px; height: 30px; font-size: .9rem; }
}

@media (max-width: 520px) {
  .confidence__grid,
  .habit-cards,
  .page-footer__inner {
    grid-template-columns: 1fr;
  }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; }
  .product__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .product__cta .btn { width: 100%; }
}
