:root {
  --bg: #080808;
  --bg-soft: #111111;
  --surface: #151515;
  --surface-2: #1b1b1b;
  --text: #f6f6f2;
  --muted: #b8b8b0;
  --dark-text: #171717;
  --light-bg: #f5f2eb;
  --accent: #f5a800;
  --accent-2: #ffc84b;
  --accent-soft: #fff2c2;
  --green: #1fba75;
  --danger: #e85f5f;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(15, 15, 15, 0.12);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.section-light {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section-accent {
  background: linear-gradient(135deg, #f5a800 0%, #ffc845 55%, #ffe39a 100%);
  color: var(--dark-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: #9a6500;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  font-weight: 900;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  font-weight: 850;
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

p {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(8, 8, 8, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.94);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #111;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  font-weight: 950;
  box-shadow: 0 10px 25px rgba(245, 168, 0, 0.22);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small {
  margin-top: 4px;
  color: #9f9f9a;
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #d2d2cd;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #111;
  background: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.36;
  pointer-events: none;
}

.hero-glow-one {
  top: 6%;
  right: -12%;
  width: 520px;
  height: 520px;
  background: rgba(245, 168, 0, 0.45);
}

.hero-glow-two {
  bottom: -18%;
  left: -10%;
  width: 430px;
  height: 430px;
  background: rgba(31, 186, 117, 0.15);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: #c8c8c0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 32px;
  color: #e9e9e4;
  font-weight: 700;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-points span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #08150e;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 16px 38px rgba(245, 168, 0, 0.2);
}

.button-primary:hover {
  box-shadow: 0 20px 45px rgba(245, 168, 0, 0.3);
}

.button-secondary {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #fff;
  background: #111;
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.button-full {
  width: 100%;
}

.purchase-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #94948f;
  font-size: 0.86rem;
}

.secure-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 186, 117, 0.14);
}

.hero-visual {
  position: relative;
  max-width: 560px;
  justify-self: end;
}

.mockup-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.mockup-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 200, 75, 0.55), transparent 38%, rgba(255,255,255,0.12));
  z-index: -1;
}

.mockup-frame img {
  width: 100%;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  width: 180px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 16px 42px rgba(0,0,0,0.34);
  backdrop-filter: blur(15px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--accent-2);
  font-size: 1rem;
}

.floating-card span {
  margin-top: 3px;
  color: #bcbcb5;
  font-size: 0.76rem;
}

.floating-card-top {
  top: 10%;
  left: -18%;
}

.floating-card-bottom {
  right: -9%;
  bottom: 8%;
}

.trust-strip {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

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

.trust-grid div {
  min-width: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: #f1f1eb;
  font-size: 0.94rem;
}

.trust-grid span {
  margin-top: 2px;
  color: #8f8f89;
  font-size: 0.8rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: #62625e;
  font-size: 1.08rem;
}

.section-dark .section-heading p {
  color: #a9a9a2;
}

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

.problem-card,
.solution-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
}

.problem-card {
  border: 1px solid rgba(232, 95, 95, 0.2);
  background: #fff8f8;
}

.solution-card {
  border: 1px solid rgba(31, 186, 117, 0.22);
  background: #f5fff9;
}

.card-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-label.danger {
  color: #8a2525;
  background: #ffe2e2;
}

.card-label.success {
  color: #0f6c40;
  background: #dff7e9;
}

.feature-list,
.included-card ul,
.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--dark-line);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.negative-list li::before {
  content: "×";
  color: #fff;
  background: var(--danger);
}

.positive-list li::before {
  content: "✓";
  color: #fff;
  background: var(--green);
}

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

.included-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  overflow: hidden;
}

.included-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 168, 0, 0.07);
  filter: blur(4px);
}

.included-card.featured {
  border-color: rgba(245, 168, 0, 0.48);
  background: linear-gradient(145deg, rgba(245,168,0,0.14), rgba(255,255,255,0.035));
}

.included-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,0.08);
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1;
}

.included-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #111;
  background: var(--accent);
  font-size: 1.35rem;
  font-weight: 950;
}

.included-card p {
  color: #a9a9a2;
}

.included-card ul {
  margin-top: 22px;
}

.included-card li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: #d4d4ce;
  font-size: 0.92rem;
}

.included-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
}

.benefits-image {
  position: relative;
}

.portrait-panel {
  position: relative;
  padding: 14px;
  border-radius: 30px;
  background: rgba(17,17,17,0.95);
  box-shadow: 0 26px 70px rgba(103, 64, 0, 0.25);
  overflow: hidden;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 48%);
  pointer-events: none;
}

.portrait-panel img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
}

.portrait-caption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  color: #fff;
}

.portrait-caption span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portrait-caption strong {
  font-size: 1.7rem;
}

.portrait-caption small {
  color: #bdbdb7;
}

.benefits-content > p {
  max-width: 680px;
  color: #533700;
  font-size: 1.05rem;
}

.benefit-list {
  margin-top: 36px;
  display: grid;
  gap: 10px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(52, 34, 0, 0.17);
}

.benefit-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,15,15,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  font-size: 0.8rem;
  font-weight: 900;
}

.benefit-item h3 {
  margin-bottom: 6px;
}

.benefit-item p {
  margin-bottom: 0;
  color: #634200;
}

.workflow-preview {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.06);
}

.timeline-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  font-weight: 950;
}

.timeline-card p {
  margin-bottom: 0;
  color: #64645f;
}

.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(245, 168, 0, 0.14);
  filter: blur(15px);
}

.pricing-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.pricing-copy > p {
  max-width: 650px;
  color: #a9a9a3;
  font-size: 1.05rem;
}

.value-stack {
  max-width: 690px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.value-stack div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.value-stack span {
  color: #d5d5cf;
}

.value-stack strong {
  color: var(--accent-2);
}

.pricing-card {
  padding: 38px;
  border: 1px solid rgba(245,168,0,0.52);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.price-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1a1200;
  background: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  margin: 24px 0 2px;
  font-size: clamp(3.8rem, 7vw, 5.9rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price small {
  margin-right: 4px;
  color: var(--accent-2);
  font-size: 0.38em;
  vertical-align: top;
}

.price-note {
  color: #a8a8a2;
}

.pricing-features {
  margin: 28px 0;
}

.pricing-features li {
  position: relative;
  padding: 9px 0 9px 28px;
  color: #deded8;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.checkout-note {
  margin-top: 14px;
  color: #85857f;
  font-size: 0.8rem;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.6fr) minmax(0, 1.4fr);
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  color: #62625e;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #9a6500;
  font-weight: 850;
}

.accordion {
  border-top: 1px solid var(--dark-line);
}

.accordion-item {
  border-bottom: 1px solid var(--dark-line);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  border: 0;
  color: var(--dark-text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.accordion-panel > p {
  min-height: 0;
  margin-bottom: 0;
  color: #63635e;
  overflow: hidden;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel > p {
  padding-bottom: 26px;
}

.final-cta {
  padding: 74px 0;
  color: #111;
  background: linear-gradient(135deg, #f5a800, #ffd76d);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.final-cta .eyebrow {
  color: #6f4900;
}

.site-footer {
  padding: 68px 0 30px;
  background: #060606;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.6fr 0.4fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 540px;
  color: #8d8d87;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  color: #c8c8c2;
}

.footer-action {
  justify-self: end;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #74746f;
  font-size: 0.82rem;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 11px 11px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  background: rgba(12,12,12,0.94);
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
  backdrop-filter: blur(16px);
}

.mobile-buy-bar div {
  display: grid;
  line-height: 1.08;
}

.mobile-buy-bar span {
  color: #9e9e98;
  font-size: 0.72rem;
}

.mobile-buy-bar strong {
  color: #fff;
  font-size: 1.05rem;
}

.mobile-buy-bar a {
  padding: 11px 16px;
  border-radius: 12px;
  color: #111;
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.09s;
}

.delay-2 {
  transition-delay: 0.18s;
}

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

  .hero-visual {
    width: min(100%, 650px);
    justify-self: center;
  }

  .floating-card-top {
    left: -4%;
  }

  .floating-card-bottom {
    right: -2%;
  }

  .benefits-layout,
  .pricing-wrap {
    gap: 46px;
  }

  .portrait-panel img {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 20px;
    background: rgba(7, 7, 7, 0.98);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 24px;
    padding: 17px 20px;
    text-align: center;
  }

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

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

  .benefits-layout,
  .pricing-wrap,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-action {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 74px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-points {
    display: grid;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .purchase-note {
    align-items: flex-start;
  }

  .mockup-frame {
    transform: none;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-grid,
  .problem-solution-grid,
  .included-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card,
  .included-card,
  .pricing-card {
    padding: 28px;
  }

  .portrait-panel img {
    min-height: 420px;
  }

  .value-stack div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .footer-action {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
