:root {
  --ink: #301b12;
  --muted: #7a5b45;
  --paper: #fff8e8;
  --cream: #fffdf4;
  --line: #ecd49d;
  --peach: #f19136;
  --coral: #e3482f;
  --wine: #8b1722;
  --green: #185c29;
  --gold: #c7861d;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(74, 36, 9, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 58px);
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid rgba(236, 212, 157, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine), var(--coral));
  font-size: 0.8rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--wine);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--wine));
  box-shadow: 0 14px 30px rgba(227, 72, 47, 0.24);
}

.button.secondary {
  color: var(--wine);
  background: var(--white);
  border-color: var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f5c24a;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 232, 0.98) 0%, rgba(255, 248, 232, 0.85) 39%, rgba(255, 248, 232, 0.3) 68%, rgba(255, 248, 232, 0.08) 100%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--wine);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.hero-copy {
  max-width: 620px;
  color: #563929;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 600;
}

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

.hero-actions {
  margin: 30px 0;
}

.hero-stats span {
  min-width: 136px;
  padding: 12px 14px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(74, 36, 9, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 1.28rem;
  color: var(--green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  padding: 20px 14px;
  text-align: center;
  font-weight: 900;
  background: var(--cream);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.intro-section,
.evidence-section {
  background: var(--cream);
}

.feature-grid,
.pricing-grid,
.image-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.price-card,
.image-grid figure,
.order-form,
.usage-card,
.caution-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(74, 36, 9, 0.07);
}

.feature-card {
  min-height: 228px;
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ffe1b1;
  font-size: 1.25rem;
}

.feature-card p,
.split-copy p,
.price-card li,
.caution-list p,
.checkout-copy p,
.form-note,
footer,
figcaption {
  color: var(--muted);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: linear-gradient(135deg, #fff1c7, #fff9ee 52%, #f6ffd9);
}

.visual-split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mini-points span {
  padding: 13px 16px;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.products-section {
  background: var(--wine);
  color: var(--white);
}

.products-section .eyebrow,
.products-section .section-heading h2 {
  color: var(--white);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  overflow: hidden;
  padding: 0 0 28px;
  color: var(--ink);
}

.price-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.price-card .plan,
.price-card h3,
.price-card .price,
.price-card ul,
.price-card .button {
  margin-left: 28px;
  margin-right: 28px;
}

.price-card.featured {
  border-color: #ffd977;
  box-shadow: 0 24px 50px rgba(255, 217, 119, 0.22);
}

.plan {
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price {
  margin: 12px 0 18px;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  padding-left: 20px;
}

.image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid figure {
  overflow: hidden;
  margin: 0;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px 18px;
  font-weight: 900;
}

.usage-section {
  background: linear-gradient(135deg, #effadb, #fff7df);
}

.usage-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 46px);
}

.usage-card img {
  width: 100%;
  border-radius: 8px;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 56px;
  padding: 14px 16px 14px 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 800;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.caution-section {
  background: var(--cream);
}

.caution-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.caution-layout img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.caution-list {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
}

.caution-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--coral);
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: linear-gradient(135deg, #fff0c2, #fffdf4 48%, #ffe0d2);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.countdown span {
  min-width: 112px;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.countdown strong {
  display: block;
  color: var(--coral);
  font-size: 1.8rem;
  line-height: 1;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(227, 72, 47, 0.16);
  border-color: var(--coral);
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 5px;
}

.order-form .button {
  width: 100%;
  min-height: 52px;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--cream);
}

footer p {
  margin: 0;
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 248, 232, 0.98) 0%, rgba(255, 248, 232, 0.82) 48%, rgba(255, 248, 232, 0.22) 100%);
  }

  .hero-content {
    width: min(620px, calc(100% - 32px));
    margin: 0 auto;
    align-self: start;
    padding-top: 126px;
  }

  .trust-strip,
  .feature-grid,
  .pricing-grid,
  .image-grid,
  .visual-split,
  .usage-card,
  .caution-layout,
  .checkout {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats span,
  .countdown span {
    flex: 1 1 130px;
  }

  .section {
    padding-inline: 16px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .price-card .plan,
  .price-card h3,
  .price-card .price,
  .price-card ul,
  .price-card .button {
    margin-left: 20px;
    margin-right: 20px;
  }

  footer {
    flex-direction: column;
  }
}
