:root {
  --bg: #eef0f6;
  --bg-dark: #0c1222;
  --bg-alt: #dce2ef;
  --surface: #ffffff;
  --ink: #0c1222;
  --ink-soft: #3a4460;
  --muted: #6b7590;
  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-soft: #e0e7ff;
  --cta: #f97316;
  --cta-hover: #ea580c;
  --cta-soft: #fff7ed;
  --mint: #10b981;
  --mint-soft: #d1fae5;
  --border: rgba(12, 18, 34, 0.1);
  --shadow: 0 8px 32px rgba(12, 18, 34, 0.08);
  --shadow-lg: 0 24px 64px rgba(12, 18, 34, 0.14);
  --radius: 4px;
  --radius-lg: 16px;
  --max: 1200px;
  --error: #dc2626;
  --success: #059669;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* —— Top bars —— */
.advertorial-bar {
  background: var(--cta);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-pill {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.promo-pill strong {
  color: var(--cta);
  font-weight: 700;
}

/* —— Cookie notice —— */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 20px;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  font-size: 13px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-notice.is-hidden {
  display: none;
}

.cookie-notice p {
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
}

.cookie-notice a {
  color: #a5b4fc;
}

.cookie-notice button {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
}

.cookie-notice button:hover {
  background: var(--cta-hover);
}

body.has-cookie {
  padding-bottom: 80px;
}

@media (min-width: 900px) {
  body.has-cookie.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Header —— */
.site-header {
  background: var(--bg-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo span {
  color: var(--cta);
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.nav-inline {
  display: none;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-inline a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.nav-inline a:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-inline {
    display: flex;
  }
}

/* —— Buttons —— */
.btn-primary,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary--lg {
  padding: 18px 36px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.btn-secondary--light {
  color: var(--accent) !important;
  border-color: var(--accent);
}

.btn-secondary--light:hover {
  background: var(--accent-soft);
}

.btn-on-dark {
  background: #fff !important;
  color: var(--bg-dark) !important;
}

.btn-on-dark:hover {
  background: var(--accent-soft) !important;
}

.header-cta {
  padding: 10px 20px;
  font-size: 12px;
}

/* —— Hero —— */
.story-hero {
  background: var(--bg-dark);
  overflow: hidden;
}

.story-hero-grid {
  display: grid;
  min-height: 520px;
}

@media (min-width: 900px) {
  .story-hero-grid {
    grid-template-columns: 1.15fr 1fr;
    min-height: 640px;
  }
}

.story-hero-img {
  position: relative;
  order: 1;
  min-height: 320px;
}

@media (min-width: 900px) {
  .story-hero-img {
    order: 0;
  }
}

.story-hero-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.story-hero-img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(12, 18, 34, 0.85));
  padding: 40px 24px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.story-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
}

@media (min-width: 900px) {
  .story-hero-content {
    padding: 60px 56px 60px 48px;
  }

  .story-hero-content::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--bg-dark);
    transform: skewX(-6deg);
    z-index: 1;
  }
}

.story-hero-content > * {
  position: relative;
  z-index: 2;
}

.story-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-byline .tag {
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 10px;
}

.story-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}

.story-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 32px;
  line-height: 1.75;
  max-width: 480px;
}

.story-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.story-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin: 28px 0 0;
  line-height: 1.6;
  max-width: 460px;
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--surface);
  padding: 0;
  margin-top: -1px;
  border-bottom: 3px solid var(--accent);
}

.trust-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  padding: 22px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

@media (min-width: 640px) {
  .trust-item {
    border-bottom: none;
  }

  .trust-item:last-child {
    border-right: none;
  }
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* —— Features bento —— */
.features-strip {
  background: var(--bg);
  padding: 56px 0;
}

.features-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .features-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .feature-item:first-child {
    grid-row: span 2;
  }
}

.feature-item {
  background: var(--surface);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-item:first-child {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.feature-item:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-item .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.9;
}

.feature-item:first-child .num {
  color: rgba(255, 255, 255, 0.25);
  font-size: 5rem;
  position: absolute;
  right: 16px;
  top: 8px;
  margin: 0;
}

.feature-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* —— Chapters —— */
.story-chapter {
  padding: 72px 0;
}

.story-chapter:nth-child(odd) {
  background: var(--surface);
}

.story-chapter:nth-child(even) {
  background: var(--bg);
}

.chapter-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .chapter-split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .chapter-split--reverse .chapter-text {
    order: 2;
  }

  .chapter-split--reverse .chapter-media {
    order: 1;
  }
}

.chapter-text-only .container {
  max-width: 720px;
}

.chapter-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
  background: var(--cta-soft);
  padding: 5px 10px;
  border-radius: var(--radius);
}

.story-chapter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.story-chapter p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 18px;
}

.chapter-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.chapter-media--round img {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 420px;
  margin-inline: auto;
  border: 6px solid var(--accent-soft);
}

.chapter-media--wide img {
  border-radius: 0;
  width: 100%;
}

.story-quote {
  background: var(--bg-dark);
  color: #fff;
  padding: 32px 36px;
  margin: 36px 0 0;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}

.story-quote::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--cta);
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
  opacity: 0.6;
}

.story-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* —— Compare block —— */
.compare-block {
  padding: 72px 0;
  background: var(--bg-dark);
  color: #fff;
}

.compare-block .section-head h2,
.compare-block .section-head p {
  color: #fff;
}

.compare-block .section-head p {
  opacity: 0.65;
}

.compare-grid {
  display: grid;
  gap: 0;
  position: relative;
}

@media (min-width: 720px) {
  .compare-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.compare-vs span {
  width: 56px;
  height: 56px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.2);
}

.compare-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}

.compare-card.negative {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-card.positive {
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.compare-card li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.compare-card li:last-child {
  border-bottom: none;
}

.compare-card.negative li {
  color: rgba(255, 255, 255, 0.6);
}

.compare-card.positive li {
  color: rgba(255, 255, 255, 0.92);
}

.compare-card.negative li::before {
  content: "— ";
  color: #f87171;
}

.compare-card.positive li::before {
  content: "+ ";
  color: var(--mint);
  font-weight: 800;
}

/* —— Product block —— */
.product-block {
  padding: 72px 0;
  background: var(--surface);
}

.product-showcase {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .product-showcase {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.product-showcase-img {
  position: sticky;
  top: 100px;
}

.product-showcase-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.product-showcase h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.checklist-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 600px) {
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist-grid li {
  list-style: none;
  padding: 16px 18px 16px 44px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  line-height: 1.5;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--mint);
  font-weight: 800;
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* —— Specs —— */
.specs-section {
  padding: 72px 0;
  background: var(--bg);
}

.specs-wrap {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .specs-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.specs-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.specs-card h2 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.specs-card .sub {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
  font-size: 13px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.swatch.white { background: #f0f0f0; }
.swatch.charcoal { background: #4a5568; }
.swatch.sand { background: #d4c4a8; }

.specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.specs li:last-child {
  border-bottom: none;
}

.specs span:first-child {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
}

.specs span:last-child {
  font-weight: 600;
  text-align: right;
}

.steps-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.steps-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.steps {
  counter-reset: step;
  border-left: 2px solid var(--accent-soft);
  padding-left: 28px;
}

.step {
  position: relative;
  margin-bottom: 32px;
  padding-left: 8px;
}

.step:last-child {
  margin-bottom: 0;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -42px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* —— FAQ —— */
.faq-section {
  padding: 72px 0;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  margin-bottom: 0;
  overflow: hidden;
  border-left: 4px solid var(--accent);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

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

.faq-item summary::after {
  content: "↓";
  font-size: 1rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item .answer {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* —— Order form (new design) —— */
.order-section {
  padding: 0 0 80px;
  background: var(--bg-dark);
  scroll-margin-top: 80px;
}

.order-section-header {
  padding: 64px 0 40px;
  text-align: center;
}

.order-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.order-section-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.order-product-bar {
  display: grid;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .order-product-bar {
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    padding: 24px 32px;
  }
}

.order-product-bar img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto;
}

.order-product-info h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.order-product-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cta);
  margin: 0;
  line-height: 1;
}

.order-product-info .price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 6px 0 0;
}

.order-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

@media (min-width: 768px) {
  .order-perks {
    flex-direction: column;
    gap: 6px;
  }
}

.order-perks li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 18px;
  position: relative;
}

.order-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}

.order-form-shell {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-steps-nav {
  display: flex;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}

.form-step-tab {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.form-step-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: var(--surface);
}

.order-form-card {
  padding: 36px 28px 40px;
}

@media (min-width: 600px) {
  .order-form-card {
    padding: 40px 48px 48px;
  }
}

.order-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-form-card > .form-intro {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 32px;
}

.form-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-section-label:first-of-type {
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field label .req {
  color: var(--cta);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 0 10px;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7590' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  resize: vertical;
  min-height: 90px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-bottom-color: var(--error);
}

.form-field textarea.is-invalid {
  border-color: var(--error);
}

.form-field input.is-valid,
.form-field select.is-valid {
  border-bottom-color: var(--success);
}

.field-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.field-error {
  font-size: 11px;
  color: var(--error);
  font-weight: 600;
  min-height: 0;
  display: none;
  margin-top: 6px;
}

.field-error.is-visible {
  display: block;
}

.color-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-option {
  position: relative;
}

.color-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 0.2s, background 0.2s;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.color-option label .dot {
  width: 20px;
  height: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.color-option label .dot.white { background: #f0f0f0; }
.color-option label .dot.charcoal { background: #4a5568; }
.color-option label .dot.sand { background: #d4c4a8; }

.color-option input:checked + label {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.color-option input:focus + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-top: 8px;
}

.form-checkbox input {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-checkbox label {
  flex: 1;
  min-width: 200px;
}

.form-checkbox .field-error {
  flex-basis: 100%;
  margin-left: 32px;
}

.form-checkbox.is-invalid {
  border: 1px solid var(--error);
}

.form-submit-row {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 600px) {
  .form-submit-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-submit-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.form-submit-note a {
  color: var(--accent);
  font-weight: 600;
}

.btn-submit {
  padding: 18px 40px;
  font-size: 14px;
  min-width: 240px;
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 64px 32px;
}

.form-success.is-visible {
  display: block;
}

.form-success .icon {
  width: 72px;
  height: 72px;
  background: var(--mint-soft);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  font-weight: 800;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-success p {
  color: var(--ink-soft);
  margin: 0 0 8px;
  font-size: 15px;
}

#order-form-body.is-hidden {
  display: none;
}

/* Legacy order layout (unused but kept for compat) */
.order-layout {
  display: grid;
  gap: 36px;
}

.order-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
}

.order-summary .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cta);
}

/* —— CTA band —— */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-band > .container > p {
  opacity: 0.88;
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 15px;
}

/* —— Footer —— */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  border-top: 4px solid var(--cta);
}

.footer-top {
  padding: 56px 0 48px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.footer-logo span {
  color: var(--cta);
}

.footer-tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-order-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cta);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-order-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-heading {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a::after {
  content: "→";
  font-size: 12px;
  opacity: 0;
  color: var(--cta);
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 6px;
  text-decoration: none;
}

.footer-nav a:hover::after {
  opacity: 1;
}

.footer-nav li:last-child a {
  border-bottom: none;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.footer-contact-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 5px;
}

.footer-contact-list a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  word-break: break-all;
}

.footer-contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-list address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  background: #060a14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Legacy footer classes (unused) */
.footer-links,
.footer-company,
.legal-block {
  display: none;
}

.health-disclaimer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 26px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.health-disclaimer .container {
  max-width: 840px;
}

/* —— Inner pages —— */
.page-hero {
  background: var(--bg-dark);
  padding: 48px 0 40px;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-hero .subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 32px 0 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.prose h3 {
  font-size: 1rem;
  margin: 24px 0 10px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.75;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
  margin: 0 0 16px;
}

.prose .info-box {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--accent);
}

/* —— Sticky CTA —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  border-top: 2px solid var(--cta);
}

.sticky-cta strong {
  color: #fff;
}

.sticky-cta .btn-primary {
  padding: 11px 20px;
  font-size: 12px;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

body.has-sticky {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
