:root {
  /* Light, premium wellness/medical theme */
  --bg: #F4F7F6;
  --surface: #FFFFFF;
  --surface-2: #EDF3F1;
  --surface-3: #E2ECE9;
  --accent: #0E9F8E;          /* teal-emerald */
  --accent-hover: #0B7E70;
  --accent-deep: #0A5C53;
  --accent-soft: rgba(14, 159, 142, 0.10);
  --accent-glow: #18C2AC;
  --ink: #0F2620;             /* near-black green ink for headings */
  --warm: #0F2620;
  --muted: #6B807A;
  --body: #3A4F49;
  --line: #DCE6E2;
  --line-strong: #C5D4CF;
  --footer-bg: #0F2620;
  --shadow: 0 10px 30px rgba(15, 38, 32, 0.08);
  --shadow-hover: 0 18px 50px rgba(15, 38, 32, 0.14);
  --shadow-accent: 0 12px 30px rgba(14, 159, 142, 0.28);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 1180px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; position: relative; z-index: 1; }

/* Top bar */
.topbar {
  background: var(--accent-deep);
  color: #EAFBF7;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.5rem 1rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.1rem;
}
.topbar-item + .topbar-item { border-left: 1px solid rgba(255, 255, 255, 0.2); }
.topbar-item::before {
  content: "✦";
  color: var(--accent-glow);
  font-weight: 700;
  font-size: 11px;
}
.topbar-item svg { display: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 246, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px rgba(15, 38, 32, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
}
.brand::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 0.5rem;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent-deep));
  box-shadow: var(--shadow-accent);
}
.brand-accent { color: var(--accent); }
.footer-brand { display: inline-flex; align-items: center; gap: 0.05em; }
.nav-links { display: none; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  transition: color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  letter-spacing: -0.01em;
  text-transform: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-glow), var(--accent));
  color: #fff;
  padding: 0.95rem 1.9rem;
  font-size: 16px;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(14, 159, 142, 0.38);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-primary-lg { width: 100%; padding: 1.1rem 2rem; font-size: 18px; }
.btn-outline {
  background: var(--surface);
  color: var(--accent-deep);
  border: 1.5px solid var(--line-strong);
  padding: 0.6rem 1.4rem;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(15, 38, 32, 0.04);
}
.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 38, 32, 0.05);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(244, 247, 246, 0.98);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-transform: none;
}
.mobile-drawer a:hover { color: var(--accent); }
.drawer-overlay { display: none; }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 540px at 85% -10%, rgba(24, 194, 172, 0.16), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(14, 159, 142, 0.10), transparent 60%),
    var(--bg);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  clip-path: none;
}
.hero::before, .hero::after { content: none; }
.hero-bg-num { display: none; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-meta { font-size: 13px; color: var(--muted); margin-bottom: 0.85rem; text-transform: none; letter-spacing: 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.hero-tag::before { content: "●"; color: var(--accent-glow); font-size: 9px; }
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-lead { color: var(--body); font-size: 1.08rem; max-width: 54ch; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 2px 10px rgba(15, 38, 32, 0.04);
}
.trust-card::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.trust-card svg { display: none; }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--line);
  position: relative;
  background: var(--surface);
}
.hero-media::after { content: none; }
.hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); border: none; }
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

.intro-block {
  padding: 3rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;
  clip-path: none;
}

/* Sections */
.section { padding: 4.5rem 0; position: relative; }
.section--a, .section-white { background: var(--bg); }
.section--b, .section-alt { background: var(--surface); }
.section--c { background: var(--bg); }
.section-divider {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 0;
  opacity: 1;
}
.section-num { display: none; }
.section-header { margin-bottom: 2rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.section h2, .section-block h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  color: var(--ink);
  border-left: none;
  padding-left: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.section h2::after, .section-block h2::after { display: none; }

.story-grid { display: grid; gap: 2.5rem; align-items: start; }
.story-grid.reverse .story-content { order: 2; }
.story-grid.reverse .story-media { order: 1; }
.story-content p { color: var(--body); }
.story-media img, .demo-frame img, .ba-frame img, .product-image-frame img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s, transform 0.3s;
}
.story-media img:hover, .demo-frame img:hover, .ba-frame img:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.story-media-stack { display: grid; gap: 1.25rem; position: sticky; top: calc(var(--nav-h) + 1rem); }

.callout {
  background: var(--accent-soft);
  border-left: none;
  border: 1px solid rgba(14, 159, 142, 0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  font-size: 15px;
  color: var(--body);
}
.callout strong { color: var(--accent-deep); }

/* Pillars */
.pillars { display: grid; gap: 1.25rem; margin: 2rem 0; }
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  border-top: none;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.pillar-card h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.6rem; font-weight: 700; }
.pillar-card p { color: var(--body); font-size: 15px; margin: 0; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }

/* Benefits */
.benefits-grid { display: grid; gap: 1.25rem; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.benefit-icon {
  color: var(--accent);
  margin-bottom: 0.9rem;
  stroke: var(--accent);
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 8px;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
}
.benefit-card h3 { font-size: 1.2rem; color: var(--ink); font-weight: 700; }
.benefit-card p { color: var(--body); font-size: 15px; margin: 0; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }

/* Demo */
.demo-grid { display: grid; gap: 1.5rem; position: relative; }
.demo-label {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}
.demo-frame { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.demo-grid::after { display: none; }

/* Compare */
.compare-table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 15px;
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th { font-weight: 700; color: var(--ink); background: var(--surface-2); font-family: var(--font-display); text-transform: none; letter-spacing: -0.01em; font-size: 15px; }
.compare-table th.highlight { background: var(--accent); color: #fff; }
.compare-table tr:nth-child(even) td { background: var(--surface-2); }
.compare-table td { color: var(--body); }
.check { color: var(--accent); font-weight: 800; }
.dot { color: var(--line-strong); }
.compare-list { list-style: none; margin: 1rem 0; padding: 0; font-size: 15px; color: var(--muted); }
.compare-list li { margin-bottom: 0.5rem; }
.compare-list strong { color: var(--ink); }

/* Before/After */
.ba-grid { display: grid; gap: 2rem; position: relative; }
.ba-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}
.ba-label-gray { background: var(--surface-2); color: var(--muted); border: 1px solid var(--line); }
.ba-label-accent, .ba-label-teal { background: var(--accent-soft); color: var(--accent-deep); border: 1px solid rgba(14, 159, 142, 0.3); }
.ba-frame { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.ba-divider {
  display: none;
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: var(--line-strong);
  transform: translateX(-50%);
  opacity: 0.6;
}

/* Price */
.price-section {
  padding: 5rem 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(24, 194, 172, 0.12), transparent 60%),
    var(--bg);
  clip-path: none;
  position: relative;
}
.price-section::before { content: none; }
.price-wrap { max-width: 480px; margin: 0 auto; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
  border-top: none;
}
.price-card p { color: var(--body); font-size: 15px; }
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--accent-deep);
  margin: 1rem 0;
  letter-spacing: -0.03em;
}
.price-features { list-style: none; margin: 1.5rem 0; padding: 0; text-align: left; }
.price-features li {
  padding: 0.5rem 0 0.5rem 1.9rem;
  position: relative;
  font-size: 15px;
  color: var(--body);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
}
.price-disclaimer { font-size: 13px; color: var(--muted); }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(15, 38, 32, 0.03);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  padding: 0 1.25rem;
}
.faq-item.is-open { background: var(--surface); border-color: var(--accent); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item.is-open .faq-question { color: var(--accent-deep); }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding: 0 0 1.15rem; color: var(--body); font-size: 15px; }

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #B9CCC6;
  padding: 3.5rem 0 2rem;
  border-top: none;
}
.site-footer::after { display: none; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: none;
}
.footer-brand::before {
  content: "";
  width: 20px; height: 20px;
  margin-right: 0.5rem;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent));
}
.footer-brand .brand-accent { color: var(--accent-glow); }
.footer-note { font-size: 13px; color: #88A39C; line-height: 1.65; max-width: 55ch; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.footer-links a { color: #B9CCC6; font-size: 14px; transition: color 0.2s; text-transform: none; letter-spacing: 0; }
.footer-links a:hover { color: var(--accent-glow); }
.warn-box {
  background: var(--accent-soft);
  border: 1px solid rgba(14, 159, 142, 0.2);
  border-left: none;
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin-top: 2rem;
  font-size: 14px;
  color: var(--body);
}

/* Animations */
.slide-in, .reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.slide-in { transform: translateY(34px); }
.slide-in--left { transform: translateY(34px); }
.slide-in--right { transform: translateY(34px); }
.reveal { transform: translateY(40px); }
.slide-in.is-visible, .reveal.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Subpages */
.page-main { padding: 3rem 0 4rem; background: var(--bg); min-height: 60vh; }
.page-main--checkout { padding-top: 2rem; }
.page-main--legal { padding-top: 2.5rem; }
.container--narrow { max-width: 780px; }
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { font-size: clamp(2.1rem, 5vw, 3rem); color: var(--ink); font-weight: 800; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 0.75rem; text-transform: none; letter-spacing: 0; }
.page-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14, 159, 142, 0.2);
  margin-bottom: 1rem;
}
.page-lead { color: var(--body); font-size: 1.05rem; max-width: 60ch; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.text-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--accent-hover); }
.text-muted { color: var(--muted); }

.product-layout { display: grid; gap: 2rem; align-items: start; margin-bottom: 2rem; }
.product-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--line);
}
.price-card--inline { text-align: left; }
.price-card--inline h2 { font-size: 1.5rem; border: none; padding: 0; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  margin-bottom: 1.25rem;
  border-top: none;
  box-shadow: var(--shadow);
}
.info-card h2 { font-size: 1.3rem; border: none; padding: 0; margin-bottom: 0.75rem; }
.info-card p, .info-card li { color: var(--body); font-size: 15px; }
.check-list { list-style: none; margin: 0.5rem 0 0; padding: 0; }
.check-list li { padding: 0.4rem 0 0.4rem 1.7rem; position: relative; color: var(--body); font-size: 15px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.4rem;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: 11px;
}

.checkout-grid { display: grid; gap: 1.5rem; align-items: start; }
.form-card, .summary-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: none;
  box-shadow: var(--shadow);
}
.summary-card { position: sticky; top: calc(var(--nav-h) + 1rem); }
.summary-card h2 { font-size: 1.5rem; border: none; padding: 0; }
.summary-inner p { margin-bottom: 0.5rem; font-size: 15px; color: var(--body); }
.summary-inner strong { color: var(--ink); }
.summary-divider { border: none; border-top: 1px solid var(--line); margin: 1rem 0; }
.summary-total { font-size: 1.2rem; color: var(--accent-deep); font-weight: 800; font-family: var(--font-display); letter-spacing: -0.02em; }

form { display: grid; gap: 1rem; }
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.5rem 0 0;
  letter-spacing: -0.01em;
}
label { display: grid; gap: 0.4rem; font-weight: 600; font-size: 14px; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
input.invalid { border-color: #E5484D; background: rgba(229, 72, 77, 0.05); }
.field-error { min-height: 1rem; font-size: 0.78rem; color: #E5484D; font-weight: 500; }
.grid-2 { display: grid; gap: 1rem; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.method-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--body);
  transition: border-color 0.2s, background 0.2s;
}
.method-option input { width: auto; margin: 0; accent-color: var(--accent); }
.method-option.active { border-color: var(--accent); background: var(--accent-soft); }
.payment-block { display: grid; gap: 1rem; }
.hidden { display: none !important; }
.checkout-feedback {
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.checkout-feedback.error { display: block; background: rgba(229, 72, 77, 0.08); border: 1px solid rgba(229, 72, 77, 0.3); color: #C13339; }
.checkout-feedback.success { display: block; background: var(--accent-soft); border: 1px solid rgba(14, 159, 142, 0.3); color: var(--accent-deep); }

.legal-doc h2 {
  font-size: 1.25rem;
  border-left: none;
  padding-left: 0;
  margin: 1.75rem 0 0.75rem;
  color: var(--ink);
}
.legal-doc p, .legal-doc li { color: var(--body); font-size: 15px; }
.legal-doc ul { margin: 0.5rem 0 1rem; padding: 0; list-style: none; }
.legal-doc ul li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; }
.legal-doc ul li::before { content: "•"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.legal-doc strong { color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

/* Sticky mobile order bar (new) */
.order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(15, 38, 32, 0.08);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease);
}
.order-bar.is-visible { transform: translateY(0); }
.order-bar-price { display: flex; flex-direction: column; line-height: 1.1; }
.order-bar-price .ob-amount { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--accent-deep); }
.order-bar-price .ob-label { font-size: 11px; color: var(--muted); }
.order-bar .btn-primary { padding: 0.8rem 1.5rem; }

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .ba-divider { display: block; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1200px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero-grid { grid-template-columns: 54% 46%; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .story-grid.reverse .story-content { order: 1; }
  .story-grid.reverse .story-media { order: 2; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1.4fr 1fr; }
  .order-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .slide-in, .reveal, .scroll-indicator { animation: none; transition: none; opacity: 1; transform: none; }
}
