:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #5a6578;
  --navy: #071328;
  --blue: #0d57c7;
  --blue-dark: #06255f;
  --gold: #f7c948;
  --gold-soft: #fff7dd;
  --gold-deep: #ce8b18;
  --red: #d80d18;
  --white: #ffffff;
  --line: rgba(7, 17, 31, 0.14);
  --shadow: 0 18px 48px rgba(3, 13, 33, 0.22);
  --soft-shadow: 0 14px 34px rgba(4, 20, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: rgba(4, 10, 24, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  flex: 0 1 auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  font-size: 0.88rem;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(216, 13, 24, 0.28);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 112px clamp(18px, 5vw, 72px) clamp(38px, 7vh, 72px);
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/facebook-ads-content-marketing-2026.png");
  background-position: center right;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 20, 0.95) 0%, rgba(3, 8, 20, 0.76) 38%, rgba(3, 8, 20, 0.22) 74%),
    linear-gradient(180deg, rgba(3, 8, 20, 0.34) 0%, rgba(3, 8, 20, 0.08) 54%, rgba(3, 8, 20, 0.86) 100%);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.audience-grid h2,
.download-panel h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4.55vw, 4.35rem);
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.46);
}

.hero-copy {
  width: min(640px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.65vw, 1.25rem);
  line-height: 1.72;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(680px, 100%);
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-size: 0.94rem;
  font-weight: 900;
}

.hero-badges strong {
  margin-left: 4px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 28px;
}

.hero .button-primary {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.copy-button:focus-visible,
.copy-mini:focus-visible,
.header-link:focus-visible {
  outline: 3px solid rgba(247, 201, 72, 0.9);
  outline-offset: 3px;
}

.button-primary {
  color: #170c01;
  background: linear-gradient(180deg, #ffe777 0%, var(--gold) 48%, #efaa24 100%);
  box-shadow: 0 14px 30px rgba(247, 201, 72, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(247, 201, 72, 0.36);
}

.button-large {
  width: min(320px, 100%);
}

.password-chip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  min-height: 58px;
  min-width: 250px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-soft);
  border: 1px solid rgba(247, 201, 72, 0.86);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  font-weight: 900;
}

.password-chip span {
  grid-column: 1 / -1;
  color: #6b4a00;
  font-size: 0.88rem;
}

.password-chip strong {
  color: var(--red);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0;
}

.copy-mini {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.download-microcopy {
  width: min(620px, 100%);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.58;
}

.download-microcopy strong {
  color: var(--gold);
  font-size: 1.08em;
}

.limited-note {
  width: min(640px, 100%);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  line-height: 1.65;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 74px;
}

.intro-section {
  background: var(--gold-soft);
  border-bottom: 1px solid rgba(206, 139, 24, 0.24);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) 0;
}

.intro-grid h2,
.audience-grid h2,
.download-panel h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.intro-grid p:not(.section-kicker),
.audience-list,
.download-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.78;
}

.features-section {
  padding: clamp(50px, 8vw, 94px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.pain-section {
  padding: clamp(50px, 8vw, 94px) 0;
  background: #ffffff;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.section-heading .section-kicker,
.intro-section .section-kicker,
.preview-section .section-kicker,
.audience-section .section-kicker,
.steps-section .section-kicker,
.faq-section .section-kicker,
.download-section .section-kicker {
  color: var(--red);
}

.preview-section {
  padding: clamp(54px, 8vw, 96px) 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(216, 13, 24, 0.32), rgba(216, 13, 24, 0) 38%),
    linear-gradient(135deg, #071328 0%, #06255f 58%, #07111f 100%);
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
}

.preview-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preview-content > p:not(.section-kicker) {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.preview-content h2,
.steps-section h2,
.faq-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.preview-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.preview-module {
  min-height: 168px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.preview-module span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.preview-module h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.65vw, 1.34rem);
  line-height: 1.24;
}

.preview-module p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.trust-section {
  padding: clamp(50px, 7vw, 86px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

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

.trust-card {
  min-height: 226px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(13, 87, 199, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(4, 20, 48, 0.08);
}

.trust-pass-card {
  background: var(--gold-soft);
  border-color: rgba(247, 201, 72, 0.74);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  margin-bottom: 16px;
  padding: 0 10px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-pass-card .trust-icon {
  color: var(--navy);
  background: var(--gold);
}

.trust-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.32rem);
  line-height: 1.34;
}

.trust-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.trust-card strong {
  color: var(--red);
  font-size: 1.2em;
}

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

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 282px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(4, 20, 48, 0.08);
}

.pain-card {
  min-height: 226px;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid rgba(13, 87, 199, 0.14);
  border-left: 5px solid var(--red);
  border-radius: 8px;
}

.pain-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  line-height: 1.36;
}

.pain-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  line-height: 1.36;
}

.feature-card p,
.pain-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.pain-card p strong {
  color: var(--ink);
}

.mid-cta-section {
  padding: 0 0 clamp(50px, 8vw, 94px);
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.mid-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(216, 13, 24, 0.92), rgba(216, 13, 24, 0) 36%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mid-cta-panel .section-kicker {
  color: var(--gold);
}

.mid-cta-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.mid-cta-panel p:not(.section-kicker) {
  width: min(680px, 100%);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.66;
}

.mid-cta-panel strong {
  color: var(--gold);
}

.mid-cta-actions {
  display: grid;
  gap: 12px;
  min-width: min(260px, 100%);
}

.copy-button-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.audience-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(216, 13, 24, 0.86), rgba(216, 13, 24, 0) 42%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 62%, #071328 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: clamp(50px, 8vw, 94px) 0;
}

.audience-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
}

.audience-list li {
  position: relative;
  min-height: 56px;
  padding: 14px 16px 14px 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.audience-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 16px;
  height: 10px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.steps-section {
  padding: clamp(50px, 8vw, 94px) 0;
  background: #ffffff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 214px;
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(13, 87, 199, 0.14);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.step-pass-card {
  background: var(--gold-soft);
  border-color: rgba(247, 201, 72, 0.7);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.step-card h3 strong {
  color: var(--red);
  font-size: 1.24em;
}

.faq-section {
  padding: clamp(50px, 8vw, 94px) 0;
  background: #f6f9ff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(4, 20, 48, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 900;
  line-height: 1.5;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(247, 201, 72, 0.9);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.68;
}

.faq-list strong {
  color: var(--red);
}

.download-section {
  padding: clamp(54px, 8vw, 100px) 18px;
  background: var(--gold-soft);
}

.download-panel {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(206, 139, 24, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(3, 13, 33, 0.18);
}

.download-copy {
  width: min(580px, 100%);
  margin: 18px auto 0;
}

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px auto 0;
}

.mini-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid rgba(13, 87, 199, 0.12);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.35;
}

.mini-steps strong {
  color: var(--red);
}

.download-cta-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.password-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(360px, 100%);
  min-height: 76px;
  padding: 14px;
  text-align: left;
  background: var(--gold-soft);
  border: 1px solid rgba(247, 201, 72, 0.86);
  border-radius: 8px;
}

.password-label {
  grid-column: 1 / -1;
  color: #6b4a00;
  font-size: 0.95rem;
  font-weight: 900;
}

.password-box strong {
  color: var(--red);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.copy-button {
  min-height: 44px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.copy-status {
  min-height: 28px;
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.hero .copy-status {
  color: var(--gold);
}

.noscript-note {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 26px 18px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  font-weight: 800;
}

.sticky-download {
  display: none;
}

@media (max-width: 940px) {
  .hero {
    min-height: 86svh;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 8, 20, 0.94) 0%, rgba(3, 8, 20, 0.68) 58%, rgba(3, 8, 20, 0.28) 100%),
      linear-gradient(180deg, rgba(3, 8, 20, 0.24) 0%, rgba(3, 8, 20, 0.12) 48%, rgba(3, 8, 20, 0.9) 100%);
  }

  .intro-grid,
  .audience-grid,
  .preview-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .preview-media {
    width: min(420px, 100%);
  }

  .mid-cta-panel {
    grid-template-columns: 1fr;
  }

  .mid-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 106px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand span:last-child {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-link {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding: 90px 18px 128px;
    background-position: 70% center;
  }

  .hero-content {
    width: min(360px, 100%);
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(1.95rem, 8.3vw, 2.72rem);
  }

  .hero h1,
  .intro-grid h2,
  .audience-grid h2,
  .download-panel h2,
  .section-heading h2,
  .preview-content h2,
  .mid-cta-panel h2,
  .steps-section h2,
  .faq-layout h2,
  p,
  li,
  summary {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .intro-grid h2,
  .audience-grid h2,
  .download-panel h2,
  .section-heading h2,
  .preview-content h2,
  .mid-cta-panel h2,
  .steps-section h2,
  .faq-layout h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.22rem);
    line-height: 1.16;
    word-break: normal;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .download-microcopy {
    font-size: 0.92rem;
  }

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

  .hero-badges li {
    justify-content: center;
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.86rem;
    text-align: center;
  }

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

  .password-chip {
    grid-template-columns: 1fr auto;
  }

  .feature-grid,
  .pain-grid,
  .preview-modules,
  .trust-grid,
  .mini-steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .pain-card,
  .preview-module,
  .trust-card,
  .step-card {
    min-height: auto;
  }

  .preview-section,
  .trust-section,
  .steps-section,
  .faq-section {
    padding: 44px 0;
  }

  .mid-cta-section {
    padding-bottom: 44px;
  }

  .mid-cta-panel {
    padding: 24px 18px;
  }

  .mid-cta-actions {
    grid-template-columns: 1fr;
  }

  .download-panel {
    padding: 28px 18px;
  }

  .download-cta-row {
    flex-direction: column;
  }

  .button-large,
  .password-box {
    width: 100%;
  }

  .password-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .copy-button {
    width: 100%;
  }

  .sticky-download {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: minmax(112px, 0.8fr) minmax(0, 1.2fr);
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    background: rgba(4, 10, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 16px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-download.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-password {
    display: grid;
    align-content: center;
    min-height: 50px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  .sticky-password span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.1;
  }

  .sticky-password strong {
    color: var(--gold);
    font-size: 1.28rem;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .sticky-download .button {
    width: auto;
    min-height: 50px;
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

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

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