:root {
  --bg: #ffffff;
  --surface: #f7f7f8;
  --surface-2: #f1f2f4;
  --text: #121212;
  --muted: #5f6368;
  --line: #e3e5e8;
  --accent: #d72638;
  --accent-dark: #b41b2c;
  --ink-soft: #1d2228;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.site-wrap {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.topbar-inner,
.hero,
.split,
.narrow {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topnav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 410px;
  gap: 44px;
  padding: 54px 0 46px;
  align-items: start;
}

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

h1,
h2 {
  font-family: "Libre Baskerville", serif;
  letter-spacing: -0.04em;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 760px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
}

.lead,
.content-section p,
.faq-list p,
.review-card p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.03rem;
}

.lead {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 1.14rem;
}

.primary-cta,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 16px 30px rgba(215, 38, 56, 0.24);
}

.primary-cta {
  margin-bottom: 26px;
}

.hero-points {
  margin: 0 0 28px;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-visual {
  max-width: 360px;
}

.checkout-panel,
.review-card,
.portrait-placeholder,
.bonus-item,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-panel {
  position: sticky;
  top: 94px;
  overflow: hidden;
}

.checkout-head {
  padding: 24px 24px 18px;
  background: #111418;
  color: #fff;
}

.checkout-kicker,
.payment-title,
.label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.checkout-head h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.12;
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}

.price-old {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: line-through;
}

.price-now {
  font-size: 2rem;
  font-weight: 800;
}

.value-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.checkout-form {
  padding: 22px 24px 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  font-weight: 600;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.checkout-form input:focus,
.checkout-form select:focus {
  outline: none;
  border-color: rgba(215, 38, 56, 0.65);
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.12);
}

.payment-note-block {
  margin: 8px 0 14px;
}

.payment-title {
  color: var(--accent);
}

.payment-note,
.checkout-message,
.subhead,
.review-card span {
  color: var(--muted);
}

.payment-note,
.checkout-message,
.subhead {
  margin: 0;
  line-height: 1.6;
}

.payment-element {
  min-height: 92px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
}

.loading-state {
  color: var(--muted);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.checkout-message {
  margin-top: 14px;
  min-height: 24px;
}

.content-section {
  padding: 72px 0;
}

.content-section.contrast {
  background: #111418;
}

.content-section.contrast p,
.content-section.contrast h2 {
  color: #fff;
}

.content-section.contrast .eyebrow {
  color: #ff6a77;
}

.strong-line {
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 34px;
  align-items: center;
}

.subhead {
  margin-bottom: 14px;
  font-weight: 600;
}

.portrait-placeholder {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, #f5f6f8 0%, #eceef1 100%);
}

.portrait-placeholder span {
  max-width: 220px;
  line-height: 1.7;
  color: var(--muted);
}

.content-section.soft {
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 24px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.review-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.bonus-list {
  display: grid;
  gap: 14px;
}

.bonus-item {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bonus-item span {
  line-height: 1.55;
}

.bonus-total {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.bonus-total > div {
  border-radius: var(--radius);
  background: #111418;
  color: #fff;
  padding: 22px;
}

.bonus-total strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 22px;
}

.faq-list h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .field-grid,
  .reviews-grid,
  .bonus-total {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.4rem;
  }
}
