/* =============================================================
   BilPro — Stylesheet
   Architecture: BEM + utility helpers
   Token family: --brand / --brand-alt / --highlight
   ============================================================= */

:root {
  /* Brand tokens — light + saturated blues */
  --brand: #1e88e5;
  --brand-deep: #0d47a1;
  --brand-alt: #5eb9ff;
  --brand-soft: #e3f2fd;
  --brand-mist: #f4f9ff;
  --highlight: #00bcd4;
  --highlight-soft: #e0f7fa;

  /* Neutrals */
  --ink: #0d2845;
  --ink-soft: #3a5573;
  --ink-mute: #6b8197;
  --line: #d8e6f3;
  --line-soft: #ebf2f9;
  --paper: #ffffff;
  --paper-tinted: #f8fbfe;

  /* Surfaces */
  --surface-1: #ffffff;
  --surface-2: #f4f9ff;
  --surface-deep: #0a3d70;

  /* Status */
  --good: #16a34a;
  --warn: #f59e0b;

  /* Typography */
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing rhythm */
  --gutter: 1.5rem;
  --section-pad: clamp(3.5rem, 7vw, 6rem);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 2px 8px rgba(13, 71, 161, 0.06);
  --shadow-2: 0 10px 30px rgba(13, 71, 161, 0.09);
  --shadow-3: 0 24px 60px rgba(13, 71, 161, 0.14);

  --max-w: 1180px;
  --trans: 250ms cubic-bezier(.4,.0,.2,1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--brand-deep); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ========== LAYOUT HELPERS ========== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--brand-deep); background: var(--brand-soft); }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.section-lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.text-highlight {
  color: var(--brand);
  background: linear-gradient(180deg, transparent 60%, rgba(94, 185, 255, 0.35) 60%);
  padding: 0 0.1em;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  border-radius: var(--r-md);
  transition: all var(--trans);
  white-space: nowrap;
  text-align: center;
  border: 2px solid transparent;
}
.btn--pill { border-radius: var(--r-pill); }
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 136, 229, 0.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 136, 229, 0.42);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--brand-soft);
  border-color: var(--brand-alt);
}
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--brand-deep); }
.brand--light { color: #fff; }
.brand--light:hover { color: #fff; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__link {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform var(--trans);
  border-radius: 1px;
}
.nav__link:hover { color: var(--brand-deep); }
.nav__link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, var(--brand-mist) 100%);
}
.hero__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(94, 185, 255, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.hero__title {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  margin: 0.4rem 0 1.1rem;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 530px;
  margin: 0 0 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}
.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero__trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__trust-row svg { color: var(--brand); }
.hero__visual {
  position: relative;
  margin: 0;
}
.hero__visual-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4 / 5;
}
.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* ========== EDU INTRO ========== */
.edu-intro {
  padding: var(--section-pad) 0;
}
.edu-intro__head {
  text-align: center;
  margin-bottom: 3rem;
}
.edu-intro__head .section-lead { margin: 0 auto; }
.edu-intro__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}
.info-card {
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.5rem;
  transition: var(--trans);
}
.info-card:hover {
  border-color: var(--brand-alt);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.info-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card__title {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}
.info-card__text {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ========== AWARENESS ========== */
.awareness {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}
.awareness__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.awareness__image {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
}
.awareness__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.awareness__image--stack {
  position: relative;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  min-height: 480px;
}
.awareness__image-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
  width: 78%;
  position: relative;
  z-index: 1;
}
.awareness__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.awareness__image-accent {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  width: 52%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 6px solid #fff;
  z-index: 2;
}
.awareness__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.awareness__text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.awareness__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.awareness__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink);
}
.awareness__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ========== PRODUCT ========== */
.product {
  padding: var(--section-pad) 0;
}
.product__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.product__visual {
  position: relative;
  margin: 0;
  padding: 2rem;
  text-align: center;
}
.product__visual-aura {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--highlight-soft) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.product__visual img {
  position: relative;
  max-width: 100%;
  filter: drop-shadow(0 30px 40px rgba(13, 71, 161, 0.2));
}
.product__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1.7rem;
}
.product__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  background: var(--brand-mist);
  border-radius: var(--r-lg);
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.spec__label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.spec__value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 1.05rem;
}
.product__price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 2px solid var(--brand-soft);
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.product__price-old {
  font-size: 1.1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.product__price-now {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.product__note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ========== BENEFITS ========== */
.benefits {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--brand-mist) 0%, #fff 100%);
}
.benefits__head {
  text-align: center;
  margin-bottom: 3rem;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.benefit {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}
.benefit__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.benefit:hover .benefit__img img { transform: scale(1.06); }
.benefit__body { padding: 1.4rem 1.4rem 1.7rem; }
.benefit__title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.benefit__body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ========== ROUTINE TIMELINE ========== */
.routine {
  padding: var(--section-pad) 0;
}
.routine__head {
  text-align: center;
  margin-bottom: 3rem;
}
.routine__head .section-lead { margin: 0 auto; }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-alt) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline__step {
  position: relative;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  text-align: center;
  z-index: 1;
}
.timeline__num {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px rgba(30, 136, 229, 0.32);
}
.timeline__title {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.timeline__step p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
}
.routine__note {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.2rem 1.6rem;
  background: var(--highlight-soft);
  border-radius: var(--r-lg);
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.routine__note svg { color: var(--highlight); flex-shrink: 0; }
.routine__note p { margin: 0; }

/* ========== TRUST STRIP ========== */
.trust-strip {
  padding: 2.2rem 0;
  background: var(--surface-deep);
  color: #fff;
}
.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.trust-strip__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-strip__list svg {
  width: 36px;
  height: 36px;
  color: var(--brand-alt);
  flex-shrink: 0;
}
.trust-strip__list span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}
.trust-strip__list strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
}
.reviews__head {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.review-card--featured {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff;
}
.review-card--featured .review-card__text { color: #fff; }
.review-card--featured .review-card__name { color: #fff; }
.review-card--featured .review-card__meta { color: rgba(255,255,255,0.78); }
.review-card__stars {
  color: #ffb400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.review-card__text {
  font-size: 1.0rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}
.review-card--featured .review-card__author { border-color: rgba(255,255,255,0.2); }
.review-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.review-card__meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* ========== ORDER FORM ========== */
.order {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #fff 0%, var(--brand-mist) 100%);
}
.order__card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.order__intro {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff;
}
.order__intro .section-title { color: #fff; }
.order__intro .eyebrow { background: rgba(255,255,255,0.18); color: #fff; }
.order__intro p { color: rgba(255,255,255,0.92); margin-bottom: 1.6rem; }
.order__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.95);
}
.order__product-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.18);
}
.order__product-mini img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.order__product-mini strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
}
.order__price s { color: rgba(255,255,255,0.6); margin-right: 0.4rem; }
.order__price b { font-size: 1.1rem; }

.order__form {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}
.field input,
.field select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--ink);
  transition: var(--trans);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}
.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  margin-top: 2px;
  flex-shrink: 0;
}
.order__legal {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ========== FAQ ========== */
.faq {
  padding: var(--section-pad) 0;
}
.faq__head {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 0;
  transition: var(--trans);
}
.faq-item[open] {
  border-color: var(--brand-alt);
  box-shadow: var(--shadow-1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform var(--trans);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--surface-deep);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 1.5rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.site-footer__about {
  font-size: 0.94rem;
  margin: 0.8rem 0 0;
}
.site-footer address {
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.7;
}
.site-footer address a { color: var(--brand-alt); }
.site-footer address a:hover { color: #fff; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__col ul a {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
}
.site-footer__col ul a:hover { color: #fff; }
.site-footer__bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
}
.site-footer__bottom p { margin: 0 0 0.6rem; }
.site-footer__disclaimer {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: 1.2rem 1.4rem;
  z-index: 100;
  transform: translateY(120%);
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line-soft);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text { flex: 1; min-width: 250px; }
.cookie-banner__text strong { display: block; margin-bottom: 0.2rem; color: var(--ink); }
.cookie-banner__text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ========== LEGAL PAGES ========== */
.legal {
  padding: 4rem 0;
  background: var(--paper-tinted);
  min-height: calc(100vh - 200px);
}
.legal__wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-1);
}
.legal h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-bottom: 0.4rem;
}
.legal__meta {
  color: var(--ink-mute);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.legal h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: var(--brand-deep);
}
.legal p, .legal li {
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.legal ul, .legal ol { padding-left: 1.4rem; }
.legal a { color: var(--brand); }

/* ========== SUCCESS PAGE ========== */
.thanks {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--brand-mist) 0%, #fff 100%);
}
.thanks__card {
  max-width: 580px;
  text-align: center;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-3);
}
.thanks__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: grid;
  place-items: center;
  color: #fff;
}
.thanks__icon svg { width: 48px; height: 48px; }
.thanks h1 { font-size: 1.9rem; margin-bottom: 0.6rem; }
.thanks p { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .awareness__grid,
  .product__grid,
  .order__card { grid-template-columns: 1fr; }
  .awareness__image { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .awareness__image--stack { max-width: 520px; margin: 0 auto 2.5rem; min-height: 0; aspect-ratio: auto; }
  .awareness__image-main { width: 82%; aspect-ratio: 4/3; }
  .awareness__image-accent { width: 48%; bottom: -1rem; }
  .timeline { grid-template-columns: 1fr; gap: 1rem; }
  .timeline::before { display: none; }
  .nav { display: none; }
  .site-header__cta { display: none; }
  .hamburger { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-2);
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 560px) {
  .hero { padding: 2.5rem 0 3rem; }
  .hero__badge { left: 1rem; right: auto; bottom: -1rem; }
  .product__specs { grid-template-columns: 1fr; }
  .product__price-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .product__price { justify-content: center; }
  .order__intro,
  .order__form { padding: 1.5rem; }
}

/* ========== UTILITIES ========== */
.u-center { text-align: center; }
.u-mt-lg { margin-top: 2rem; }
