:root {
  color-scheme: dark;
  --bg: #050b18;
  --bg-soft: #081224;
  --panel: rgba(9, 20, 38, 0.72);
  --panel-strong: rgba(12, 27, 52, 0.90);
  --line: rgba(105, 163, 255, 0.20);
  --line-strong: rgba(50, 145, 255, 0.52);
  --text: #f8fbff;
  --muted: #a6b5cc;
  --muted-2: #71839f;
  --blue: #1687ff;
  --blue-2: #36c2ff;
  --cyan: #7be7ff;
  --green: #28d17c;
  --red: #ff5b76;
  --yellow: #ffd36a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 135, 255, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 26%, rgba(54, 194, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #050b18 0%, #071020 46%, #050b18 100%);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.20;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 78%, transparent);
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px 10px 10px 14px;
  background: rgba(5, 11, 24, 0.60);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.topbar.scrolled {
  border-color: var(--line);
  background: rgba(5, 11, 24, 0.88);
}

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

.brand strong {
  color: var(--blue-2);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(54, 194, 255, 0.75);
  border-radius: 12px;
  color: #fff;
  background: rgba(22, 135, 255, 0.18);
  box-shadow: 0 0 28px rgba(22, 135, 255, 0.38);
  font-weight: 950;
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover,
.footer a:hover {
  color: #fff;
}

.top-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.top-cta {
  min-height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005fff);
  box-shadow: 0 14px 38px rgba(22, 135, 255, 0.34);
}

.btn:hover,
.top-cta:hover,
.print-card button:hover,
.premium-print:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005fff 55%, #00b8ff);
  box-shadow: 0 18px 52px rgba(22, 135, 255, 0.42);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: #ddecff;
  background: rgba(10, 25, 48, 0.72);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 120px 18px 92px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/assets/oficina-premium.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.97) 0%, rgba(5, 11, 24, 0.82) 38%, rgba(5, 11, 24, 0.42) 72%, rgba(5, 11, 24, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 11, 24, 0.12), rgba(5, 11, 24, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(54, 194, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: #96dfff;
  background: rgba(22, 135, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: #d5e4f8;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.46;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin-top: 28px;
}

.trust-strip {
  margin-top: 18px;
  color: #b6c7dd;
  font-size: 14px;
  font-weight: 800;
}

.band,
.showcase {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
  justify-items: center;
}

.section-head.compact {
  max-width: 720px;
}

.section-head.wide {
  max-width: 980px;
}

.section-head h2,
.offer-card h2,
.final-card h2,
.impact h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-head p,
.offer-card p,
.final-card p,
.impact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.judgment-grid,
.problem-grid,
.feature-grid,
.steps-grid,
.plan-grid,
.compare-grid,
.benefit-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

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

.contrast-card,
.problem-grid article,
.feature-grid article,
.steps-grid article,
.plan-card,
.compare-grid article,
.faq-list details,
.offer-card,
.why-grid article,
.print-card,
.timeline article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contrast-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.contrast-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.20;
}

.contrast-card.bad::before {
  background: radial-gradient(circle at 10% 10%, rgba(255, 91, 118, 0.55), transparent 24rem);
}

.contrast-card.good::before {
  background: radial-gradient(circle at 10% 10%, rgba(54, 194, 255, 0.70), transparent 24rem);
}

.card-label {
  position: relative;
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bad .card-label {
  color: #ffd7df;
  background: rgba(255, 91, 118, 0.16);
}

.good .card-label {
  color: #c7f4ff;
  background: rgba(54, 194, 255, 0.16);
}

.contrast-card h3 {
  position: relative;
  margin: 18px 0 22px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.contrast-card ul,
.offer-card ul,
.compare-grid ul {
  position: relative;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contrast-card li,
.offer-card li,
.compare-grid li {
  position: relative;
  padding-left: 28px;
  color: #d7e4f4;
  font-weight: 800;
}

.contrast-card li::before,
.offer-card li::before,
.compare-grid li::before {
  position: absolute;
  left: 0;
  font-weight: 950;
}

.bad li::before,
.without li::before {
  color: var(--red);
  content: "x";
}

.good li::before,
.with li::before,
.offer-card li::before {
  color: var(--green);
  content: "✓";
}

.showcase {
  padding-top: 32px;
}

.premium-print {
  display: block;
  width: min(650px, 100%);
  margin: 0 auto 34px;
  border: 1px solid rgba(54, 194, 255, 0.38);
  border-radius: 28px;
  padding: clamp(10px, 2vw, 18px);
  cursor: zoom-in;
  background:
    linear-gradient(145deg, rgba(54, 194, 255, 0.18), rgba(9, 20, 38, 0.72)),
    rgba(4, 10, 22, 0.88);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    0 0 90px rgba(22, 135, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.premium-print:hover {
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.52),
    0 0 120px rgba(54, 194, 255, 0.30);
}

.premium-print img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
}

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

.benefit-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(11, 27, 52, 0.78), rgba(7, 15, 30, 0.76));
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(54, 194, 255, 0.38);
  border-radius: 16px;
  color: #bdf4ff;
  background: rgba(22, 135, 255, 0.20);
  box-shadow: 0 0 34px rgba(22, 135, 255, 0.25);
  font-size: 12px;
  font-weight: 950;
}

.benefit-grid h3,
.why-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.20;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: timeline;
}

.timeline article {
  position: relative;
  border-radius: 20px;
  padding: 24px;
}

.timeline article:not(:last-child)::after {
  display: none;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005fff);
  box-shadow: 0 0 34px rgba(22, 135, 255, 0.32);
  font-weight: 950;
}

.timeline h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.timeline p,
.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.impact {
  margin: 36px 0;
  padding: 74px 18px;
  background:
    linear-gradient(135deg, rgba(22, 135, 255, 0.22), rgba(5, 11, 24, 0.94)),
    radial-gradient(circle at 82% 10%, rgba(54, 194, 255, 0.24), transparent 26rem);
  border-block: 1px solid var(--line);
}

.impact-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.impact blockquote {
  margin: 0;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  background: rgba(9, 20, 38, 0.74);
  box-shadow: var(--shadow);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 850;
  line-height: 1.35;
}

.impact blockquote span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 20px;
}

.problem-grid,
.feature-grid {
  grid-template-columns: 1fr;
}

.problem-grid article {
  min-height: 86px;
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.feature-grid article {
  min-height: 128px;
  border-radius: 18px;
  padding: 22px;
}

.feature-grid span {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 950;
}

.feature-grid h3 {
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.25;
}

.prints-grid {
  display: grid;
  gap: 18px;
}

.print-card {
  overflow: hidden;
  border-radius: 22px;
  padding: 12px;
}

.print-card button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(54, 194, 255, 0.26);
  border-radius: 16px;
  cursor: zoom-in;
  background: rgba(4, 10, 22, 0.85);
  transition: transform 180ms ease, border-color 180ms ease;
}

.print-card button:hover {
  border-color: rgba(54, 194, 255, 0.70);
}

.print-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.print-card.print-large img {
  aspect-ratio: auto;
  max-height: 760px;
  object-fit: contain;
  background: #fff;
}

.print-card h3 {
  margin: 16px 6px 8px;
  font-size: 21px;
}

.why-grid article {
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(22, 135, 255, 0.12), rgba(9, 20, 38, 0.74)),
    var(--panel);
}

.steps-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 20px;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(22, 135, 255, 0.22);
  color: #fff;
  box-shadow: 0 0 24px rgba(22, 135, 255, 0.34);
  font-weight: 950;
}

.offer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0;
}

.offer-card {
  display: grid;
  gap: 28px;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(22, 135, 255, 0.20), rgba(7, 16, 32, 0.88)),
    var(--panel-strong);
}

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

.plan-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 260px;
  border-radius: 20px;
  padding: 26px;
}

.plan-card span {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
}

.plan-card p {
  color: var(--muted);
  line-height: 1.55;
}

.plan-card.recommended {
  border-color: rgba(54, 194, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(22, 135, 255, 0.23), rgba(9, 20, 38, 0.72)),
    var(--panel);
  box-shadow: 0 0 64px rgba(22, 135, 255, 0.28);
}

.plan-card b {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #061124;
  background: #8de4ff;
  font-size: 12px;
  text-transform: uppercase;
}

.compare-grid article {
  border-radius: 20px;
  padding: 26px;
}

.compare-grid h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.without {
  border-color: rgba(255, 91, 118, 0.34);
}

.with {
  border-color: rgba(40, 209, 124, 0.42);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: 16px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0 88px;
}

.thank-you-page {
  display: grid;
  align-items: center;
  min-height: 100vh;
}

.thank-you-page h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
}

.final-card {
  display: grid;
  gap: 20px;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(54, 194, 255, 0.40);
  border-radius: 30px;
  padding: clamp(30px, 6vw, 70px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 194, 255, 0.25), transparent 28rem),
    linear-gradient(135deg, rgba(22, 135, 255, 0.22), rgba(8, 18, 36, 0.92));
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.46),
    0 0 90px rgba(22, 135, 255, 0.22);
}

.footer {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(40, 209, 124, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  color: #052312;
  background: linear-gradient(135deg, #2ee67f, #16c965);
  box-shadow: 0 20px 52px rgba(40, 209, 124, 0.34);
  font-weight: 950;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 70px 18px 24px;
  background: rgba(2, 6, 14, 0.90);
  backdrop-filter: blur(18px);
}

.lightbox img {
  width: auto;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 110px);
  border: 1px solid rgba(54, 194, 255, 0.38);
  border-radius: 20px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  background: rgba(9, 20, 38, 0.86);
  font-weight: 900;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 10%, rgba(54, 194, 255, 0.18), transparent 34%),
    rgba(2, 6, 14, 0.88);
  backdrop-filter: blur(18px);
}

.lead-modal[hidden] {
  display: none;
}

.lead-card {
  position: relative;
  display: grid;
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(88, 190, 255, 0.34);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(10, 24, 44, 0.96), rgba(5, 10, 20, 0.96)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56), 0 0 70px rgba(38, 168, 255, 0.18);
}

.lead-card h2 {
  max-width: 620px;
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.98;
}

.lead-card p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.lead-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text);
  cursor: pointer;
  background: rgba(9, 20, 38, 0.88);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(145, 163, 187, 0.24);
  border-radius: 16px;
  padding: 17px 18px;
  color: var(--text);
  background: rgba(4, 10, 20, 0.88);
  font: inherit;
  font-weight: 850;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(54, 194, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(54, 194, 255, 0.14);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form small {
  min-height: 22px;
  color: var(--muted);
  font-weight: 850;
}

.lead-form small[data-tone="ok"] {
  color: #7dd3fc;
}

.lead-form small[data-tone="error"] {
  color: #fecaca;
}

@media (min-width: 680px) {
  .nav {
    display: flex;
  }

  .hero-inner {
    margin-left: max(24px, calc((100vw - 1180px) / 2));
    margin-right: 0;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    width: fit-content;
  }

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

  .problem-grid,
  .feature-grid,
  .benefit-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps-grid article {
    display: grid;
    min-height: 154px;
  }

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

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

  .lead-form label:nth-child(5),
  .lead-form button,
  .lead-form small {
    grid-column: 1 / -1;
  }

  .offer-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr) auto;
    align-items: center;
  }

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

  .print-large {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(680px, 100%);
  }

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

  .timeline article:not(:last-child)::after {
    position: absolute;
    top: 48px;
    right: -18px;
    z-index: 2;
    display: block;
    color: var(--blue-2);
    content: "↓";
    transform: rotate(-90deg);
    font-size: 28px;
    font-weight: 950;
  }
}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .impact-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100% - 16px);
    margin-top: 8px;
  }

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

  .top-cta {
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 11, 24, 0.94), rgba(5, 11, 24, 0.68)),
      linear-gradient(180deg, rgba(5, 11, 24, 0.10), rgba(5, 11, 24, 0.88));
  }

  .btn {
    width: 100%;
    min-height: 54px;
    text-align: center;
  }

  .premium-print {
    border-radius: 20px;
  }
}

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

  .btn,
  .top-cta,
  .premium-print,
  .print-card button {
    transition: none;
  }
}
