
:root {
  --primary: #1C3829;
  --accent: #E8912D;
  --accent-hover: #C97820;
  --bg: #F4F6F2;
  --surface: #FFFFFF;
  --text: #1A2818;
  --muted: #5C6B58;
  --divider: #DDE4D8;
  --faq-open-bg: #FDF6EE;
  --footer-muted: #8AA08A;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-input: 8px;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --nav-height: 72px;
}

*, *::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(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4 { font-family: var(--font-heading); margin: 0 0 1rem; line-height: 1.25; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: var(--primary);
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { flex-shrink: 0; }
.topbar-item svg path { stroke: var(--accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.site-header:not(.is-scrolled) .brand { color: #fff; }
.site-header:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,0.80); }
.site-header:not(.is-scrolled) .nav-links a:hover { color: #fff; }
.site-header:not(.is-scrolled) .menu-toggle span { background: #fff; }
.site-header:not(.is-scrolled) .btn-pill-nav { background: var(--accent); border-color: var(--accent); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
}
.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.brand-mark { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 14px;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-btn);
  width: 100%;
}
.btn-pill-nav {
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 14px;
  background: var(--accent);
  color: #fff;
}
.btn-pill-nav:hover { background: var(--accent-hover); }
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  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;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--surface);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a { font-size: 1.1rem; color: var(--text); font-weight: 500; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  background-image: none;
  padding: 2rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,56,41,0.97) 0%, rgba(28,56,41,0.80) 55%, rgba(28,56,41,0.30) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-meta { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.hero-tag {
  display: inline-block;
  background: rgba(232,145,45,0.18);
  color: #F5B76A;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(232,145,45,0.35);
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-lead { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-bottom: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}
.trust-item svg { flex-shrink: 0; }
.hero-media-wrap {
  position: relative;
  z-index: 2;
}
.hero-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.hero-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg); }
.section-white { background: var(--surface); }
.section-divider { border: none; border-top: 1px solid var(--divider); margin: 0; }
.section-header { margin-bottom: 2rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  position: relative;
}
.section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.5rem;
  margin-left: -1rem;
  padding-left: 1rem;
}
.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(--muted); }
.section .story-content > p { color: var(--muted); }
.story-media img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
}
.story-media-stack { display: grid; gap: 1.25rem; }
.callout {
  background: #F0F4FA;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-input);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.callout strong { color: var(--text); }

/* Pillars */
.pillars { display: grid; gap: 1.25rem; margin: 2rem 0; }
.pillar-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  padding: 1.5rem;
}
.pillar-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.pillar-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Benefits */
.benefits-grid { display: grid; gap: 1.25rem; }
.benefit-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  padding: 1.5rem;
}
.benefit-icon { color: var(--accent); margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); }
.benefit-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Demo */
.demo-grid { display: grid; gap: 1.5rem; }
.demo-item { position: relative; }
.demo-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.demo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.demo-frame:focus-within { border-color: var(--accent); }
.demo-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}
.compare-table th { font-weight: 600; color: var(--primary); background: #FAFBFD; }
.compare-table th.highlight { color: var(--accent); background: #F0FDFB; }
.compare-table tr:nth-child(even) td { background: #FAFBFD; }
.compare-table tr:last-child td { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; }
.dot { color: var(--muted); }

/* Before/After */
.ba-grid {
  display: grid;
  gap: 0;
  position: relative;
}
.ba-item { text-align: center; }
.ba-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.ba-label-gray { background: #EAEEF4; color: var(--muted); }
.ba-label-teal { background: var(--accent); color: #fff; }
.ba-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.ba-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ba-divider {
  display: none;
  position: absolute;
  left: 50%; top: 10%; bottom: 10%;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

/* Price */
.price-section { padding: 4rem 0; background: var(--bg); }
.price-wrap { max-width: 500px; margin: 0 auto; }
.price-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  padding: 2rem;
  text-align: center;
}
.price-card p { color: var(--muted); font-size: 15px; }
.price-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}
.price-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.price-features li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-size: 15px;
  color: var(--text);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-disclaimer { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* FAQ */
.faq-list { display: grid; gap: 0.5rem; }
.faq-item {
  border-radius: var(--radius-input);
  overflow: hidden;
  transition: background 0.25s;
}
.faq-item.is-open {
  background: var(--faq-open-bg);
  border-left: 3px solid var(--accent);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 15px;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 2rem;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.footer-brand .brand-mark { color: var(--accent); }
.footer-note { font-size: 0.8rem; color: var(--footer-muted); line-height: 1.6; 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: #C5CED9; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.warn-box {
  background: #FFF8F0;
  border-left: 4px solid #E8A04C;
  border-radius: var(--radius-input);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #8B6914;
  font-weight: 500;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .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; gap: 2rem; }
  .ba-divider { display: block; }
}

@media (min-width: 1200px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero h1 { font-size: 62px; }
  .section h2 { font-size: 40px; }
  .hero-grid { grid-template-columns: 55% 45%; }
  .hero-media img { aspect-ratio: 3/4; }
  .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); }
}

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

.story-content .callout {
  background: #F0F4FA;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-input);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-header--solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--divider);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hover); background: #F0FDFB; }
.page-main { padding: 2.5rem 0 4rem; }
.page-main--checkout { padding-top: 2rem; }
.page-main--legal { padding-bottom: 3rem; }
.container--narrow { max-width: 800px; }
.page-header { margin-bottom: 2.5rem; }
.page-header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.page-tag {
  display: inline-block;
  background: #E8FBF7;
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.page-lead { color: var(--muted); font-size: 1.05rem; max-width: 65ch; }
.section-block { margin: 2.5rem 0; }
.section-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.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: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 40px rgba(0,201,167,0.12);
}
.product-image-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.price-card--inline { text-align: left; }
.price-card--inline h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 1rem; border: none; padding: 0; }
.price-card--inline h2::after { display: none; }

.info-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.info-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  border: none;
  padding: 0;
}
.info-card h2::after { display: none; }
.info-card p, .info-card li { color: var(--muted); font-size: 15px; }
.info-card h2 + p { margin-top: 0; }
.check-list { list-style: none; margin: 0.5rem 0 0; }
.check-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.form-card, .summary-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.form-card { border-top: 4px solid var(--accent); }
.summary-card { border-top: 4px solid var(--primary); position: sticky; top: calc(var(--nav-height) + 1rem); }
.summary-card h2 { font-size: 1.25rem; color: var(--primary); margin-top: 0; border: none; padding: 0; }
.summary-card h2::after { display: none; }
.summary-inner p { margin-bottom: 0.5rem; font-size: 15px; color: var(--text); }
.summary-divider { border: none; border-top: 1px solid var(--divider); margin: 1rem 0; }
.summary-total { font-size: 1.1rem; color: var(--primary); }

form { display: grid; gap: 1rem; }
.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0 0;
  border: none;
  padding: 0;
}
.form-section-title::after { display: none; }
label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 14px; color: var(--text); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: var(--radius-input);
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,201,167,0.15);
}
input.invalid { border-color: #E05252; background: #FFF5F5; }
.field-error { min-height: 1rem; font-size: 0.78rem; color: #C53030; 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.85rem 1rem;
  border: 2px solid var(--divider);
  border-radius: var(--radius-input);
  background: var(--bg);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  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: #F0FDFB; }
.payment-block { display: grid; gap: 1rem; }
.hidden { display: none !important; }
.checkout-feedback {
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-input);
  border: 1px solid transparent;
  font-size: 0.9rem;
  display: none;
}
.checkout-feedback.error { display: block; background: #FFF2F0; border-color: #F5C4BC; color: #9B2C2C; }
.checkout-feedback.success { display: block; background: #F0FDFB; border-color: #9DE8D8; color: #0D6B58; }

.legal-doc h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.75rem 0 0.75rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}
.legal-doc h2::after { display: none; }
.legal-doc p, .legal-doc li { color: var(--muted); font-size: 15px; }
.legal-doc ul { margin: 0.5rem 0 1rem; padding-left: 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; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(0,201,167,0.35);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .product-layout { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1.4fr 1fr; }
}
@media (min-width: 1200px) {
  .section-block h2 { font-size: 32px; }
}
