/* =========================
   ROOT
========================== */
:root {
  --bg: #07121f;
  --panel: #0f1b2c;
  --panel-soft: #132338;
  --panel-deep: #0c1626;
  --text: #f5f8fc;
  --muted: #b9c6d8;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #d9e7f7;
  --accent-dark: #0c1728;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
}

/* =========================
   BASE
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html.is-locked,
body.is-loading {
  overflow: hidden;
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 25%),
    linear-gradient(180deg, #0a1422 0%, #06101c 100%);
  overflow-x: clip;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-shell {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.is-ready .site-shell {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   LOADER
========================== */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.035), transparent 35%),
    linear-gradient(180deg, #08111d 0%, #050d16 100%);
  transition: opacity 800ms ease, visibility 800ms ease;
  pointer-events: none;
}

#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-mark {
  position: relative;
  width: 150px;
  height: 150px;
  color: #f4f8fd;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.07));
  animation: loaderFloat 3.2s ease-in-out infinite;
}

.loader-r,
.loader-l,
.brand-r,
.brand-l {
  position: absolute;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.loader-r {
  top: 6px;
  left: 34px;
  font-size: 7rem;
}

.loader-l {
  right: 22px;
  bottom: 8px;
  font-size: 7rem;
}

.loader-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  color: #f5f8fc;
}

.loader-line {
  width: 180px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}

.loader-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  animation: loaderSweep 2s linear infinite;
}

@keyframes loaderSweep {
  from { left: -40%; }
  to { left: 100%; }
}

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.92;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* =========================
   HEADER
========================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(7, 14, 24, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  white-space: nowrap;
  transition: 180ms ease;
}

.back-home-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  width: 56px;
  height: 56px;
  color: #f5f8fc;
  flex: 0 0 auto;
}

.brand-r {
  top: 0;
  left: 10px;
  font-size: 2.9rem;
}

.brand-l {
  right: 4px;
  bottom: 2px;
  font-size: 2.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.menu-btn,
.btn,
.nav-links a {
  -webkit-tap-highlight-color: transparent;
}

.menu-btn {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  touch-action: manipulation;
}

/* =========================
   BUTTONS
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  transition: 180ms ease;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.34);
}

.btn-primary {
  background: linear-gradient(180deg, #f5f8fc, #dfe9f5);
  color: var(--accent-dark);
  border-color: rgba(255,255,255,0.85);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* =========================
   COMMON LAYOUT
========================== */
.section-shell {
  padding: 48px 0;
}

.section-shell-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.004));
  border-top: 1px solid rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.035);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head-wide {
  align-items: end;
  justify-content: space-between;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.section-head p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.hero-copy,
.hero-card,
.info-card,
.deliverable-card,
.pricing-card,
.contact-card,
.proof-panel,
.positioning-panel {
  position: relative;
  padding: 30px;
  background: linear-gradient(180deg, rgba(16, 28, 45, 0.96), rgba(11, 20, 32, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before,
.hero-card::before,
.info-card::before,
.deliverable-card::before,
.pricing-card::before,
.contact-card::before,
.proof-panel::before,
.positioning-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.004));
}

.panel-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* =========================
   HERO
========================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
}

h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.94;
  max-width: 10.5ch;
}

.hero-text,
.info-card p,
.deliverable-card p,
.pricing-copy,
.contact-card p,
.point-item span,
.info-item span,
.positioning-panel p,
.positioning-point span,
.contact-item span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  margin-top: 22px;
  max-width: 54ch;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.008));
}

.hero-note {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.014), rgba(255,255,255,0.006));
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.info-list,
.point-list,
.contact-list {
  display: grid;
  gap: 14px;
}

.info-item,
.point-item,
.contact-item,
.positioning-point {
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.info-item strong,
.point-item strong,
.contact-item small,
.positioning-point strong {
  display: block;
  margin-bottom: 6px;
}

.contact-item small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-card-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.008));
}

/* =========================
   PAPER ANIMATION
========================== */
.paper-stage {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  min-height: 250px;
  display: grid;
  place-items: center;
}

.paper-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 231, 247, 0.12), transparent 68%);
  filter: blur(14px);
}

.paper-sheet {
  position: relative;
  width: min(100%, 330px);
  min-height: 220px;
  padding: 18px 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(227, 236, 248, 0.96));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
  transform: rotate(-4deg);
  animation: paperFloat 5.2s ease-in-out infinite;
}

.paper-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.paper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c97b9;
  box-shadow: 0 0 0 6px rgba(124, 151, 185, 0.14);
}

.paper-title {
  color: #22354d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.paper-lines {
  display: grid;
  gap: 10px;
}

.paper-gap {
  height: 8px;
}

.paper-line {
  height: 9px;
  border-radius: 999px;
  background: rgba(34, 53, 77, 0.14);
  overflow: hidden;
  position: relative;
}

.paper-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 53, 77, 0.78), rgba(91, 126, 166, 0.7));
  transform: scaleX(0);
  transform-origin: left;
}

.paper-line-heading {
  width: 58%;
  height: 12px;
  background: rgba(34, 53, 77, 0.18);
}

.paper-line-heading::after {
  transform: scaleX(1);
}

.paper-line-label {
  width: 34%;
  background: rgba(34, 53, 77, 0.18);
}

.paper-line-label::after {
  transform: scaleX(1);
}

.paper-line-long {
  width: 100%;
}

.paper-line-mid {
  width: 82%;
}

.paper-line-short {
  width: 58%;
}

.writing-line::after {
  animation: writeLine 3.6s ease-in-out infinite;
}

.writing-delay-1::after { animation-delay: 0.15s; }
.writing-delay-2::after { animation-delay: 0.35s; }
.writing-delay-3::after { animation-delay: 0.55s; }
.writing-delay-4::after { animation-delay: 0.95s; }
.writing-delay-5::after { animation-delay: 1.15s; }
.writing-delay-6::after { animation-delay: 1.55s; }
.writing-delay-7::after { animation-delay: 1.75s; }
.writing-delay-8::after { animation-delay: 1.95s; }

.paper-pen {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c97b9, #22354d);
  transform: rotate(-22deg);
  box-shadow: 0 8px 20px rgba(34, 53, 77, 0.18);
  animation: penMove 3.6s ease-in-out infinite;
}

.paper-pen::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 1px;
  border-left: 10px solid #22354d;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@keyframes writeLine {
  0%, 12% {
    transform: scaleX(0);
  }
  25%, 100% {
    transform: scaleX(1);
  }
}

@keyframes paperFloat {
  0%, 100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-8px);
  }
}

@keyframes penMove {
  0%, 18% {
    transform: rotate(-22deg) translate(0, 0);
    opacity: 0.85;
  }
  28% {
    transform: rotate(-20deg) translate(-16px, -26px);
  }
  42% {
    transform: rotate(-20deg) translate(-42px, -10px);
  }
  56% {
    transform: rotate(-19deg) translate(-18px, 8px);
  }
  70% {
    transform: rotate(-21deg) translate(-44px, 34px);
  }
  100% {
    transform: rotate(-22deg) translate(0, 0);
    opacity: 0.85;
  }
}

/* =========================
   CONTENT GRIDS
========================== */
.card-grid,
.deliverables-grid,
.pricing-grid,
.contact-grid,
.split-grid,
.positioning-points,
.before-after-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.deliverables-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.positioning-points {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.before-after-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.card-number {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.info-card h3,
.deliverable-card h3,
.pricing-card h3,
.contact-card h3,
.proof-panel h3,
.positioning-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.info-card h3,
.deliverable-card h3,
.pricing-card h3,
.contact-card h3,
.proof-panel h3 {
  font-size: 1.55rem;
}

.positioning-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.price {
  position: relative;
  z-index: 1;
  margin: 10px 0 14px;
  font-size: 3rem;
  line-height: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.price span {
  font-size: 1rem;
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
}

.feature-list,
.compare-card ul {
  position: relative;
  z-index: 1;
  margin: 18px 0 22px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-card-featured {
  border-color: rgba(217, 231, 247, 0.32);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.pricing-card-addon {
  background: linear-gradient(180deg, rgba(14, 25, 40, 0.96), rgba(10, 17, 28, 0.98));
}

.compare-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.compare-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.compare-before {
  background: linear-gradient(180deg, rgba(34, 46, 62, 0.8), rgba(18, 26, 38, 0.9));
}

.compare-after {
  background: linear-gradient(180deg, rgba(219, 231, 247, 0.1), rgba(112, 142, 180, 0.08));
}

.proof-quote {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--text);
  line-height: 1.75;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card-cta {
  background: linear-gradient(180deg, rgba(17, 30, 48, 0.96), rgba(12, 20, 32, 0.98));
}

/* =========================
   FOOTER / MOBILE BAR / REVEAL
========================== */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0 40px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.mobile-return-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .deliverables-grid,
  .pricing-grid,
  .three-up,
  .positioning-points {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .section-head-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 84px;
  }

  .nav {
    position: relative;
    gap: 12px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: rgba(8, 16, 26, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 1001;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links .btn,
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-copy,
  .hero-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .deliverable-card,
  .proof-panel,
  .positioning-panel {
    padding: 24px;
  }

  .brand-text,
  .back-home-link {
    display: none;
  }

  .loader-mark {
    width: 120px;
    height: 120px;
  }

  .loader-r,
  .loader-l {
    font-size: 5.8rem;
  }

  .loader-word {
    font-size: 2.3rem;
  }

  .hero {
    padding-top: 4px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 3.7rem);
  }

  .hero-card h2,
  .section-head h2,
  .positioning-panel h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-text,
  .info-card p,
  .deliverable-card p,
  .pricing-copy,
  .contact-card p,
  .point-item span,
  .info-item span,
  .positioning-panel p,
  .positioning-point span,
  .contact-item span,
  .proof-quote {
    line-height: 1.72;
  }

  .hero-trust-row {
    flex-direction: column;
  }

  .hero-trust-row span {
    width: 100%;
    justify-content: center;
  }

  .paper-stage {
    min-height: 220px;
    margin-top: 22px;
  }

  .paper-sheet {
    width: min(100%, 300px);
    min-height: 205px;
    padding: 16px 16px 20px;
    transform: rotate(-2deg);
  }

  .paper-title {
    font-size: 0.68rem;
  }

  .paper-line {
    height: 8px;
  }

  .paper-line-heading {
    height: 11px;
  }

  .paper-pen {
    width: 72px;
    right: 18px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .mobile-return-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 17, 29, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }

  .mobile-return-link,
  .mobile-return-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 600;
  }

  .mobile-return-link {
    color: var(--text);
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  }

  .mobile-return-cta {
    color: var(--accent-dark);
    background: linear-gradient(180deg, #f5f8fc, #dfe9f5);
    border: 1px solid rgba(255,255,255,0.85);
  }

  .footer-row {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero-copy,
  .hero-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .deliverable-card,
  .proof-panel,
  .positioning-panel {
    padding: 22px;
  }

  .paper-stage {
    min-height: 204px;
  }

  .paper-sheet {
    width: 100%;
    min-height: 194px;
  }

  .hero-card-badges span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
  }
}