/* =========================================================
   OFFER 1 — Medical / Scientific angle
   Palette: #1e6b4b (green) · #fff8e7 (cream) · #c68b3c (bronze)
   Typography: Cormorant Garamond (display) + Inter (body)
   Mobile-first. Apothecary / medical-booklet aesthetic.
   ========================================================= */

/* ===== Design tokens ===== */
:root {
  --green:         #1e6b4b;
  --green-dark:    #14492f;
  --green-deep:    #0e3521;
  --green-light:   #2d8a64;
  --cream:         #fff8e7;
  --cream-deep:    #f5ecd4;
  --cream-card:    #fffdf6;
  --bronze:        #c68b3c;
  --bronze-dark:   #8c5d23;
  --bronze-light:  #e0b57a;
  --text:          #1f2b25;
  --text-soft:     #4a5951;
  --text-muted:    #78857e;
  --border:        #e7dfc8;
  --border-soft:   #efe8d3;
  --danger:        #a43a2b;
  --warn:          #c67318;

  --serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1100px;
  --container-narrow: 920px;
  --pad: 18px;

  --shadow-sm: 0 1px 2px rgba(20, 73, 47, 0.06);
  --shadow-md: 0 4px 14px rgba(20, 73, 47, 0.08);
  --shadow-lg: 0 12px 36px rgba(20, 73, 47, 0.12);
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--bronze-light); color: var(--green-deep); }
img, svg { max-width: 100%; height: auto; display: block; }
button, input { font-family: inherit; }
a { color: var(--green); text-decoration: none; transition: color .15s; }
a:hover { color: var(--green-dark); }
s { color: var(--text-muted); }

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

/* ===== Headings ===== */
h1, h2, h3, .serif {
  font-family: var(--serif);
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 12px;
}
h1 { font-size: 30px; font-weight: 600; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; color: var(--green-dark); }
@media (min-width: 720px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 20px; }
}
p { margin: 0 0 14px; }

/* ===== Eyebrow + section head ===== */
.eyebrow,
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.eyebrow-bronze, .section-eyebrow.eyebrow-bronze { color: var(--bronze); }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head--compact { margin-bottom: 18px; }
.section-title {
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--bronze);
  margin: 10px auto 0;
}
.section-lead {
  color: var(--text-soft);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Buttons / CTA ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, color .15s, transform .08s, box-shadow .15s;
  min-height: 52px;
  line-height: 1.2;
}
.cta-arrow { font-size: 18px; transition: transform .15s; }
.cta-btn:hover .cta-arrow { transform: translateX(3px); }

.cta-primary {
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 2px 0 var(--green-dark), var(--shadow-md);
}
.cta-primary:hover {
  background: var(--green-dark);
  color: #fff !important;
}
.cta-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--green-dark);
}

.cta-bronze {
  background: var(--bronze);
  color: #fff !important;
  box-shadow: 0 2px 0 var(--bronze-dark);
}
.cta-bronze:hover { background: var(--bronze-dark); color: #fff !important; }

.cta-submit {
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 2px 0 var(--green-dark);
}
.cta-submit:hover { background: var(--green-dark); color: #fff !important; }

.cta-subtle {
  background: transparent;
  color: var(--green) !important;
  border: 1px solid var(--border);
  padding: 12px 22px;
  min-height: 44px;
}
.cta-subtle:hover { background: var(--cream-deep); color: var(--green-dark) !important; }

/* ===== Sticky promo bar ===== */
.promo-bar {
  background: var(--green-deep);
  color: #f8ecc5;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--green);
}
.promo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-label { display: inline-flex; align-items: center; gap: 8px; }
.promo-label strong { color: var(--bronze-light); font-weight: 700; }
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.promo-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.promo-timer .tt {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(198, 139, 60, 0.18);
  padding: 2px 8px;
  border-radius: 3px;
  min-width: 40px;
  justify-content: center;
}
.promo-timer .tt i {
  font-style: normal;
  font-size: 10px;
  color: var(--bronze-light);
  font-family: var(--sans);
  font-weight: 600;
  margin-left: 1px;
}
.promo-timer .tt-sep {
  color: var(--bronze-light);
  font-weight: 400;
}
.promo-bar.is-warning .promo-label strong { color: var(--bronze); }
.promo-bar.is-urgent {
  background: var(--bronze-dark);
  animation: flash 1.6s ease-in-out infinite;
}
@keyframes flash {
  0%, 100% { background: var(--bronze-dark); }
  50% { background: var(--bronze); }
}

/* ===== Header ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.logo-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  letter-spacing: -0.005em;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { color: var(--text-soft); }
.site-nav a:hover { color: var(--green); }
.site-nav .nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--green-dark); color: #fff !important; }
@media (max-width: 620px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .logo-sub { display: none; }
}

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(198,139,60,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--border-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; align-items: center; gap: 40px; }
  .hero { padding: 56px 0 72px; }
}

.hero-title {
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 16px;
}
@media (min-width: 520px) { .hero-title { font-size: 32px; } }
@media (min-width: 820px) { .hero-title { font-size: 42px; line-height: 1.12; } }

.hero-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 20px;
  max-width: 52ch;
  line-height: 1.55;
}
@media (min-width: 820px) { .hero-sub { font-size: 17px; } }

.hero-usp {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text);
}
.hero-usp li { display: flex; align-items: baseline; gap: 9px; }
.usp-check {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.price-old, .price-old-lg {
  font-family: var(--serif);
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 500;
}
.price-arrow { color: var(--text-muted); font-size: 14px; }
.price-new {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.price-badge {
  background: var(--bronze);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.hero-trust {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.mini-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--bronze);
}

.hero-right {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero-pack {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(20, 73, 47, 0.18));
}
.hero-sale {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: auto;
  transform: rotate(8deg);
}
.hero-stamp {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 88px;
  height: auto;
  opacity: 0.92;
}
@media (min-width: 520px) {
  .hero-sale { width: 110px; }
  .hero-stamp { width: 100px; }
}

/* ===== Bridge ===== */
.bridge {
  background: var(--cream-card);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}
.bridge p {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 14.5px;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.bridge strong { color: var(--green-deep); font-style: normal; font-weight: 700; }

/* ===== ABOUT ===== */
.about {
  padding: 50px 0;
  background: var(--cream);
}
.about-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 680px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-card {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 24px 22px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.about-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  width: 72px; height: 72px;
}
.about-icon img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.75) sepia(1) hue-rotate(100deg) saturate(3.2) brightness(0.85);
}
.about-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--green-dark); }
.about-card p { font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.55; }

/* ===== COMPOSITION ===== */
.composition {
  padding: 54px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.composition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
@media (min-width: 560px) { .composition-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .composition-grid { grid-template-columns: repeat(4, 1fr); } }

.ing-card {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--bronze);
  border-radius: 4px;
  padding: 22px 20px 20px;
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
.ing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ing-photo {
  margin: 0 auto 14px;
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ing-photo img { width: 100%; height: 100%; object-fit: cover; }
.ing-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 4px;
}
.ing-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-deep);
  text-align: center;
  margin: 0 0 4px;
}
.ing-latin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 12px;
}
.ing-latin em { color: var(--bronze); font-style: italic; }
.ing-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 12px;
}
.ing-meta {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--bronze-dark);
  background: var(--cream-deep);
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}
.ing-footnote {
  margin: 20px auto 0;
  max-width: 820px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* ===== MECHANISM ===== */
.mechanism { padding: 52px 0; background: var(--cream); }
.mech-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--container-narrow);
  display: grid;
  gap: 18px;
}
.mech-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--green);
  padding: 22px 22px;
  border-radius: 4px;
}
.step-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--bronze);
  width: 56px;
  height: 56px;
  border: 2px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  flex-shrink: 0;
}
.step-body h3 { font-size: 18px; margin: 0 0 6px; color: var(--green-deep); }
.step-body p { margin: 0; color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
.mech-arrow {
  list-style: none;
  text-align: center;
  padding-left: 20px;
}
.mech-arrow img { display: inline-block; opacity: 0.5; }

/* ===== PROTOCOL ===== */
.protocol {
  padding: 54px 0;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.protocol-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}
.dose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
@media (min-width: 560px) {
  .dose-grid { grid-template-columns: 1fr auto 1fr; align-items: start; gap: 0; }
}
.dose-col { text-align: center; padding: 8px 16px; }
.dose-icon {
  font-size: 28px;
  color: var(--bronze);
  margin-bottom: 4px;
}
.dose-time {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.dose-val {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.dose-note { font-size: 13px; color: var(--text-soft); line-height: 1.5; }
.dose-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
}
@media (max-width: 559px) { .dose-divider { height: 1px; width: 100%; } }

.milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
@media (min-width: 560px) { .milestones { grid-template-columns: repeat(3, 1fr); } }
.milestone { text-align: center; }
.milestone-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  color: var(--green);
  display: block;
}
.milestone-day {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.milestone-note { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

.protocol-note {
  margin: 0;
  padding: 14px 16px;
  background: var(--cream-deep);
  border-left: 3px solid var(--bronze);
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
}
.protocol-note strong { color: var(--green-deep); }

/* ===== DOCTOR ===== */
.doctor {
  padding: 58px 0;
  background: var(--cream);
}
.doctor-card {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .doctor-card { grid-template-columns: minmax(260px, 40%) 1fr; align-items: stretch; }
}
.doctor-photo {
  margin: 0;
  background: var(--cream-deep);
  position: relative;
  min-height: 280px;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 280px;
}
@media (min-width: 720px) {
  .doctor-photo img { min-height: 460px; }
}
.doctor-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doctor-quote {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  position: relative;
}
.doctor-quote::before {
  content: "\201C";
  position: absolute;
  top: -20px; left: -8px;
  font-family: var(--serif);
  font-size: 70px;
  color: var(--bronze);
  opacity: 0.35;
  line-height: 1;
}
.doctor-quote p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--green-deep);
  margin: 0 0 14px;
}
.doctor-quote p:last-child { margin-bottom: 0; }
.doctor-quote em { color: var(--bronze-dark); font-style: italic; font-weight: 600; }

.doctor-sig {
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.sig-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--bronze-dark);
  margin-bottom: 2px;
}
.sig-credentials {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.sig-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.doctor-disclaimer {
  max-width: 820px;
  margin: 16px auto 0;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* ===== RESEARCH ===== */
.research {
  padding: 54px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.research-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.research-graphs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 680px) { .research-graphs { grid-template-columns: 1fr 1fr; } }
.research-graph {
  margin: 0;
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 20px 20px 16px;
}
.graph-img {
  background: var(--cream);
  border-radius: 3px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.graph-img img { max-height: 220px; }
.research-graph figcaption {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}
.research-graph figcaption strong { color: var(--green-deep); }
.research-disclaimer {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* ===== ORDER ===== */
.order {
  padding: 56px 0;
  background: var(--cream);
}
.order-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .order-card { grid-template-columns: 1.1fr 1fr; }
}

/* Left visual column */
.order-visual {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
  padding: 30px 24px;
  text-align: center;
}
.order-pack {
  position: relative;
  margin: 0 auto 16px;
  max-width: 220px;
}
.order-pack img { margin: 0 auto; filter: drop-shadow(0 10px 28px rgba(0,0,0,0.35)); }
.order-sale-stamp {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  transform: rotate(12deg);
}
.order-price-block { margin-bottom: 18px; }
.order-price-block .price-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--bronze-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.price-big-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.price-old-lg {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.price-new-lg {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media (min-width: 520px) { .price-new-lg { font-size: 64px; } }
.price-save {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze-light);
}

.order-timer {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 14px 12px;
  margin-bottom: 18px;
}
.order-timer-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bronze-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.order-timer-digits {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: var(--serif);
}
.tt-lg {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  min-width: 52px;
  justify-content: center;
}
.tt-lg i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--bronze-light);
  font-family: var(--sans);
  margin-left: 1px;
}
.tt-sep { color: var(--bronze-light); font-size: 26px; font-family: var(--serif); }

.order-timer.is-warning { border-color: var(--bronze); }
.order-timer.is-urgent { border-color: var(--bronze); background: rgba(198, 139, 60, 0.2); animation: flash-timer 1.2s ease-in-out infinite; }
@keyframes flash-timer {
  0%, 100% { background: rgba(198, 139, 60, 0.2); }
  50% { background: rgba(198, 139, 60, 0.4); }
}

.order-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  text-align: left;
  display: grid;
  gap: 6px;
}
.order-bullets li {
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-left: 20px;
}
.order-bullets li::before {
  content: "✓";
  color: var(--bronze-light);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Right form column */
.order-form {
  padding: 30px 24px 32px;
  background: var(--cream-card);
}
.order-title {
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--green-deep);
}
.order-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 20px;
  line-height: 1.5;
}
.order-subtitle s { color: var(--text-muted); }
.order-subtitle strong { color: var(--bronze-dark); font-size: 16px; font-weight: 700; }

.field {
  display: block;
  margin-bottom: 16px;
  position: relative;
}
.field-label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input {
  width: 100%;
  padding: 13px 14px;
  font-size: 15.5px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.field input.invalid { border-color: var(--danger); background: #fef5f3; }
.field-error {
  display: block;
  color: var(--danger);
  font-size: 12.5px;
  margin-top: 4px;
  min-height: 14px;
}

.form-micro {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 12px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.micro-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 4px;
}
.form-cod {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: var(--cream-deep);
  border-left: 2px solid var(--bronze);
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.form-cod strong { color: var(--green-deep); }
.form-privacy {
  margin: 8px 0 0;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.order-shipping {
  margin: 22px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  padding: 10px 14px;
  background: var(--cream-deep);
  border-radius: 4px;
  border: 1px solid var(--border-soft);
}
.ship-icon { margin-right: 4px; }

/* ===== TRUST ===== */
.trust {
  padding: 50px 0;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 28px;
}
@media (min-width: 620px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center;
  padding: 18px 10px;
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--green);
  display: block;
}
.trust-label {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
}

/* ===== FAQ (inside trust section) ===== */
.faq {
  max-width: 720px;
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.faq-title {
  font-size: 22px;
  text-align: center;
  margin: 0 0 18px;
  color: var(--green-deep);
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--green-dark);
  list-style: none;
  position: relative;
  padding-right: 28px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--bronze);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .15s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 44px 0;
  background: var(--green-deep);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 28px;
}
.fcta-price { color: var(--bronze-light); }
.final-cta h2 s { color: rgba(255,255,255,0.45); font-weight: 400; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 14px; margin: 0 0 22px; }
.final-cta .cta-btn { min-width: 280px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.65);
  padding: 26px 0;
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-disclaimer {
  max-width: 920px;
  margin: 0 auto 14px;
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
  text-align: left;
  line-height: 1.6;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.82); }
.footer-meta {
  text-align: center;
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

/* ===== Sticky mobile CTA ===== */
.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--green);
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 2px 0 var(--green-dark);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}
.sticky-price-wrap { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); }
.sticky-price-wrap s { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; }
.sticky-price {
  font-size: 22px;
  font-weight: 700;
}
.sticky-text { flex: 1; text-align: center; font-size: 13px; }
@media (min-width: 760px) { .sticky-mobile-cta { display: none !important; } }

/* ===== Success modal ===== */
.success-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success-modal[hidden] { display: none; }
.success-backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 53, 33, 0.72);
  backdrop-filter: blur(3px);
}
.success-body {
  position: relative;
  background: var(--cream-card);
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  padding: 32px 24px 24px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: modal-in .25s ease-out;
}
@keyframes modal-in {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px rgba(30, 107, 75, 0.3);
}
.success-body h3 {
  font-size: 24px;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.success-body p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0 0 10px;
}
.success-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin: 8px 0 18px !important;
}
.success-body .cta-subtle { width: auto; min-width: 160px; }

/* ===== Responsive tweaks ===== */
@media (max-width: 380px) {
  :root { --pad: 14px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .hero-title { font-size: 25px; }
  .cta-btn { font-size: 14.5px; padding: 13px 22px; }
  .price-new-lg { font-size: 44px; }
  .tt-lg { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .promo-dot, .order-timer.is-urgent, .promo-bar.is-urgent { animation: none; }
  .cta-btn, .about-card, .ing-card { transition: none; }
}
