:root {
  --coral: #d9242b;
  --coral-deep: #aa151d;
  --yellow: #febd33;
  --orange: #f57c00;
  --orange-deep: #cf6300;
  --teal: #006572;
  --teal-deep: #034550;
  --sand: #fef3ea;
  --sand-strong: #f7e2d2;
  --white: #ffffff;
  --ink: #102229;
  --ink-soft: #4f666b;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-muted: rgba(255, 255, 255, 0.68);
  --line: rgba(16, 34, 41, 0.08);
  --line-strong: rgba(16, 34, 41, 0.14);
  --shadow-xl: 0 34px 90px rgba(16, 34, 41, 0.16);
  --shadow-lg: 0 24px 56px rgba(16, 34, 41, 0.14);
  --shadow-md: 0 16px 38px rgba(16, 34, 41, 0.11);
  --shadow-sm: 0 10px 24px rgba(16, 34, 41, 0.08);
  --radius-2xl: 40px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1220px, calc(100% - 28px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --cookie-banner-offset: 0px;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 36, 43, 0.1), transparent 22%),
    radial-gradient(circle at 86% 4%, rgba(254, 189, 51, 0.12), transparent 18%),
    linear-gradient(180deg, #fff9f4 0%, #fff4ec 18%, #fef3ea 42%, #fff7f1 100%);
}

body.has-legal-modal {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background-image:
    radial-gradient(rgba(0, 101, 114, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(217, 36, 43, 0.05) 1px, transparent 1px);
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
  opacity: 0.35;
}

body::after {
  inset: auto 0 0 0;
  height: 45vh;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0.52) 100%);
}

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

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

p,
h1,
h2,
h3,
strong {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

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

main > section[id] {
  scroll-margin-top: 120px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(84px, 9vw, 132px) 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 60;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.button:focus-visible {
  outline: 2px solid rgba(16, 34, 41, 0.2);
  outline-offset: 2px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a1f 100%);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(245, 124, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(245, 124, 0, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(16, 34, 41, 0.12);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(16, 34, 41, 0.2);
  box-shadow: var(--shadow-md);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: rgba(16, 34, 41, 0.08);
}

.button-dark {
  background: linear-gradient(135deg, var(--ink) 0%, #16333d 100%);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(16, 34, 41, 0.22);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 22px 40px rgba(16, 34, 41, 0.28);
}

.button-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 101, 114, 0.08);
  color: var(--teal);
  border: 1px solid rgba(0, 101, 114, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  background: rgba(16, 34, 41, 0.05);
  color: var(--ink);
  border-color: rgba(16, 34, 41, 0.08);
}

.returns-shell .eyebrow,
.offer-main .eyebrow,
.closing-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
}

.eyebrow-dark {
  background: rgba(0, 101, 114, 0.1);
  color: var(--teal);
}

.section-head,
.solution-copy,
.benefits-copy,
.operation-copy,
.closing-copy {
  display: grid;
  gap: 1rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.section-head h2,
.solution-copy h2,
.benefits-copy h2,
.operation-copy h2,
.statement-card h2,
.diagnostic-card h2,
.offer-main h2,
.closing-card h2,
.returns-copy h2,
.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-head h2,
.solution-copy h2,
.benefits-copy h2,
.operation-copy h2,
.statement-card h2,
.diagnostic-card h2,
.offer-main h2,
.closing-card h2,
.returns-copy h2 {
  font-size: clamp(2.4rem, 4.1vw, 4.4rem);
}

.section-head p,
.solution-copy p,
.benefits-copy p,
.operation-copy p,
.diagnostic-card p,
.closing-card p,
.returns-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0 0;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(16, 34, 41, 0.1);
  border-color: rgba(16, 34, 41, 0.1);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 34, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.42rem 0.82rem 0.42rem 0.42rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 100%);
  box-shadow: 0 16px 32px rgba(16, 34, 41, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(16, 34, 41, 0.11);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 4px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffe49a 0%, #ffc447 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 26px rgba(245, 124, 0, 0.18);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(16, 34, 41, 0.14);
}

.brand-copy {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.brand-copy strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--teal-deep);
}

.brand-copy strong span {
  color: var(--orange);
}

.brand-copy small {
  color: rgba(16, 34, 41, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.site-nav a,
.mobile-menu a {
  position: relative;
  padding: 0.3rem 0;
  font-weight: 700;
}

.site-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  min-height: 48px;
  padding-inline: 1rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -7px 0 currentColor,
    0 7px 0 currentColor;
}

.mobile-menu {
  padding: 0.8rem 0 0;
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(16, 34, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-button {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: 26px 0 78px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-section::before {
  top: 120px;
  left: -140px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(217, 36, 43, 0.18), transparent 72%);
}

.hero-section::after {
  top: 20px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(254, 189, 51, 0.24), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 36rem;
  gap: 1rem;
  padding-top: 0.55rem;
}

.hero-copy .eyebrow {
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(217, 36, 43, 0.08);
  color: var(--coral);
  border: 1px solid rgba(217, 36, 43, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--coral);
}

.hero-lead {
  max-width: 31rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-meta {
  display: grid;
  margin-top: 0.1rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  padding: 0.68rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.68rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 34, 41, 0.06);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(16, 34, 41, 0.05);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual-shell {
  position: relative;
  min-height: inherit;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(254, 189, 51, 0.42) 0%, rgba(217, 36, 43, 0.18) 22%, rgba(217, 36, 43, 0.95) 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.25), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
  z-index: -2;
}

.hero-visual-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: -1;
}

.hero-status-card,
.hero-dashboard-card,
.hero-mini-card,
.hero-whats-card,
.hero-stat {
  position: absolute;
}

.hero-status-card,
.hero-whats-card,
.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-status-card {
  top: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 0.65rem;
  max-width: 312px;
  padding: 1.08rem 1.15rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(3, 69, 80, 0.96) 0%, rgba(11, 30, 37, 0.95) 100%);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(3, 69, 80, 0.28);
}

.hero-status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 58%);
  pointer-events: none;
}

.hero-status-card span,
.hero-whats-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-status-card span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe39a;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
}

.hero-status-card strong,
.hero-stat strong,
.hero-whats-card strong {
  font-size: 1rem;
  line-height: 1.4;
}

.hero-status-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.38;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.hero-dashboard-card {
  inset: 18% 8% 12% 10%;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, 0.16);
  background: #08141a;
  box-shadow: var(--shadow-xl);
}

.hero-dashboard-card img,
.hero-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08141a;
}

.hero-mini-card {
  top: 70px;
  right: 18px;
  z-index: 4;
  width: min(240px, 34%);
  aspect-ratio: 0.92;
  overflow: hidden;
  border-radius: 24px;
  border: 8px solid rgba(255, 255, 255, 0.14);
  background: #08141a;
  box-shadow: var(--shadow-lg);
  transform: rotate(7deg);
}

.hero-whats-card {
  right: 18px;
  bottom: 24px;
  z-index: 5;
  width: min(320px, 45%);
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(16, 34, 41, 0.08);
}

.hero-whats-list {
  display: grid;
  gap: 0.55rem;
}

.hero-whats-list span {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(16, 34, 41, 0.05);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-whats-list span:nth-child(1) {
  background: #ddfdd1;
}

.hero-whats-list span:nth-child(2) {
  background: #fff3c8;
}

.hero-whats-list span:nth-child(3) {
  background: rgba(0, 101, 114, 0.08);
}

.hero-stat {
  display: grid;
  gap: 0.28rem;
  max-width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  color: var(--white);
  background: rgba(16, 34, 41, 0.2);
  z-index: 4;
}

.hero-stat span {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stat-primary {
  left: 24px;
  bottom: 34px;
}

.hero-stat-secondary {
  left: 44px;
  bottom: 168px;
}

.pain-section .container,
.process-section .container {
  position: relative;
}

.pain-grid,
.step-grid,
.module-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.pain-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 290px;
  padding: 1.55rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pain-card::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.pain-card:hover,
.pain-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pain-card h3,
.step-card h3,
.module-card h3,
.pillar-card strong,
.benefit-tile strong,
.returns-card strong {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pain-card h3 {
  font-size: 1.78rem;
  max-width: 10ch;
}

.pain-card p {
  position: relative;
  z-index: 1;
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.7;
}

.pain-card-coral {
  background: linear-gradient(180deg, #f84a52 0%, var(--coral) 100%);
  color: var(--white);
}

.pain-card-yellow {
  background: linear-gradient(180deg, #ffd457 0%, var(--yellow) 100%);
  color: var(--ink);
}

.pain-card-orange {
  background: linear-gradient(180deg, #ff9a1f 0%, var(--orange) 100%);
  color: var(--white);
}

.pain-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 1;
}

.impact-line {
  margin-top: 2rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--coral);
}

.solution-shell,
.benefits-grid,
.operation-grid,
.returns-shell {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.solution-shell {
  gap: clamp(22px, 3vw, 34px);
}

.benefits-grid,
.operation-grid,
.returns-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-copy,
.benefits-copy,
.operation-copy {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.check-list {
  display: grid;
  gap: 0.95rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
}

.solution-note {
  font-weight: 800;
  color: var(--teal);
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  margin-bottom: 0.35rem;
}

.feature-showcase-media,
.feature-showcase-copy {
  position: relative;
}

.feature-showcase-media {
  z-index: 1;
  margin-right: -54px;
  padding: clamp(0.7rem, 1.4vw, 0.95rem);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-xl);
}

.feature-showcase-media img {
  width: 100%;
  aspect-ratio: 1.38;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.feature-showcase-copy {
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  align-content: center;
  margin-left: -18px;
  padding: clamp(1.9rem, 4vw, 3rem);
  border-radius: 34px;
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-xl);
}

.feature-showcase-copy strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.feature-showcase-copy p {
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.feature-showcase-coral .feature-showcase-copy {
  background:
    radial-gradient(circle at top left, rgba(254, 189, 51, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(217, 36, 43, 0.12), rgba(255, 255, 255, 0.98) 58%);
}

.solution-overview {
  gap: 1.1rem;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.solution-list li {
  min-height: 100%;
  padding: 1rem 1rem 1rem 2.2rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.pillar-stack {
  display: grid;
  gap: 1rem;
}

.pillar-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 1.3rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pillar-card:hover,
.pillar-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 34, 41, 0.14);
}

.pillar-copy {
  display: grid;
  gap: 0.72rem;
}

.pillar-card strong {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.pillar-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.pillar-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(228px, 22vw, 252px);
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 34, 41, 0.08);
  overflow: hidden;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.pillar-media-wide {
  height: clamp(228px, 22vw, 252px);
}

.pillar-card-media-strong {
  grid-template-columns: minmax(0, 0.88fr) minmax(250px, 320px);
}

.pillar-media-emphasis {
  padding: 0.4rem;
}

.pillar-media-emphasis img {
  transform: scale(1.08);
  transform-origin: center;
}

.pillar-media-tall img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.pillar-label,
.module-kicker,
.offer-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar-card-coral {
  background:
    linear-gradient(135deg, rgba(217, 36, 43, 0.1), rgba(255, 255, 255, 0.94) 55%);
}

.pillar-card-yellow {
  background:
    linear-gradient(135deg, rgba(254, 189, 51, 0.18), rgba(255, 255, 255, 0.96) 58%);
}

.pillar-card-teal {
  background:
    linear-gradient(135deg, rgba(0, 101, 114, 0.14), rgba(255, 255, 255, 0.96) 58%);
}

.statement-section {
  padding: 0 0 24px;
}

.statement-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top left, rgba(254, 189, 51, 0.28), transparent 30%),
    linear-gradient(135deg, var(--teal) 0%, #0a7a86 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.statement-card p {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-card span {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
  line-height: 1.75;
}

.process-section {
  padding-top: 72px;
}

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

.step-card {
  position: relative;
  display: grid;
  gap: 0.95rem;
  min-height: 220px;
  padding: 1.5rem;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral), var(--orange));
}

.step-card:hover,
.step-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 34, 41, 0.12);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(217, 36, 43, 0.1);
  color: var(--coral);
  font-size: 1rem;
  font-weight: 800;
}

.step-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.benefits-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-tile {
  display: grid;
  gap: 0.72rem;
  padding: 1.4rem;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.benefit-tile:hover,
.benefit-tile:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-tile span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.benefit-tile-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(0, 101, 114, 0.14), rgba(255, 255, 255, 0.96));
}

.returns-section {
  position: relative;
}

.returns-shell {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 82% 18%, rgba(254, 189, 51, 0.18), transparent 22%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.returns-copy p,
.returns-copy .returns-text {
  color: rgba(255, 255, 255, 0.82);
}

.returns-number {
  font-family: "Sora", sans-serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.08em;
  color: var(--yellow);
}

.returns-lead {
  font-size: 1.1rem;
  font-weight: 800;
}

.returns-highlight {
  font-weight: 800;
  color: var(--white);
}

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

.returns-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.returns-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.operation-media {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 12%, rgba(254, 189, 51, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(16, 34, 41, 0.04), rgba(16, 34, 41, 0.08)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.operation-media::before {
  content: "";
  position: absolute;
  inset: 9% 8% 10% 8%;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(217, 36, 43, 0.14), rgba(0, 101, 114, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.operation-shot,
.operation-badge {
  position: absolute;
  box-shadow: var(--shadow-lg);
}

.operation-shot {
  overflow: hidden;
  border-radius: 28px;
  background: #08141a;
  z-index: 1;
}

.operation-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08141a;
}

.operation-shot-main {
  inset: 16% 5% 7% 12%;
  border: 10px solid rgba(255, 255, 255, 0.18);
}

.operation-shot-top {
  top: 8%;
  left: 4%;
  width: 42%;
  aspect-ratio: 1.08;
  transform: rotate(-5deg);
}

.operation-shot-bottom {
  right: 2%;
  bottom: 10%;
  width: 38%;
  aspect-ratio: 1.06;
  transform: rotate(7deg);
}

.operation-badge {
  z-index: 2;
  left: 12%;
  bottom: 4%;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.diagnostic-section {
  padding-top: 92px;
  padding-bottom: 34px;
}

.diagnostic-card {
  display: grid;
  gap: 1.2rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(135deg, #ffd35d 0%, var(--yellow) 100%);
  box-shadow: var(--shadow-xl);
}

.diagnostic-card p,
.diagnostic-card .eyebrow {
  color: var(--ink);
}

.diagnostic-actions,
.offer-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.offer-section {
  padding-top: 48px;
}

.offer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: stretch;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--orange) 0%, #ff8f13 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.offer-main-copy {
  display: grid;
  gap: 1rem;
}

.offer-badge,
.module-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 34, 41, 0.16);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-main p,
.offer-list li,
.offer-price-block p {
  color: rgba(255, 255, 255, 0.92);
}

.offer-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-price-block {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(16, 34, 41, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-price-block p {
  font-size: 1.08rem;
  font-weight: 700;
}

.offer-price-block s {
  opacity: 0.72;
}

.offer-price-block strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.06em;
}

.offer-list li::before {
  color: var(--yellow);
}

.offer-main-actions {
  align-self: end;
  justify-content: end;
}

.pricing-head {
  margin-top: 2.8rem;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.module-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 34, 41, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.module-card:hover,
.module-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 34, 41, 0.14);
}

.module-card-featured {
  background:
    radial-gradient(circle at top right, rgba(254, 189, 51, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(0, 101, 114, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(0, 101, 114, 0.22);
}

.module-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.module-prices {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(16, 34, 41, 0.04);
  font-weight: 700;
}

.module-list li {
  font-size: 0.98rem;
}

.closing-section {
  padding-top: 76px;
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy actions"
    "copy tags";
  gap: 1.4rem 2rem;
  align-items: end;
  padding: clamp(1.8rem, 4vw, 2.9rem);
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 189, 51, 0.12), transparent 20%),
    linear-gradient(135deg, var(--coral) 0%, #e63b42 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.closing-copy {
  grid-area: copy;
}

.closing-card p {
  color: rgba(255, 255, 255, 0.88);
}

.closing-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.closing-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.closing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  background: rgba(16, 34, 41, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(16, 34, 41, 0.14);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-footer {
  padding: 96px 0 36px;
  background:
    radial-gradient(circle at top right, rgba(254, 189, 51, 0.12), transparent 16%),
    linear-gradient(180deg, #08313a 0%, var(--teal-deep) 100%);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.footer-brand {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.footer-brand .brand-mark {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: none;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy strong span {
  color: #ffd676;
}

.footer-brand .brand-copy small,
.footer-text {
  color: rgba(255, 255, 255, 0.72);
}

.footer-text {
  max-width: 34rem;
  margin-top: 1.2rem;
  line-height: 1.72;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a:not(.footer-button) {
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:not(.footer-button):hover,
.footer-links a:not(.footer-button):focus-visible {
  color: var(--yellow);
}

.footer-button {
  margin-top: 0.35rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.footer-legal-button {
  width: auto;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 20px rgba(3, 33, 39, 0.16);
  text-align: center;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-legal-button:hover,
.footer-legal-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(3, 33, 39, 0.2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  margin-top: 2.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 33, 39, 0.82);
  backdrop-filter: blur(6px);
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 1080px);
  max-height: 94vh;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(16, 34, 41, 0.12);
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(3, 33, 39, 0.34);
}

.legal-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--orange) 52%, var(--yellow) 100%);
}

.legal-modal-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.7rem 5.6rem 1.25rem 2rem;
  border-bottom: 1px solid rgba(16, 34, 41, 0.08);
  background: #ffffff;
}

.legal-modal-copy {
  display: grid;
  gap: 0.55rem;
}

.legal-modal-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  max-width: none;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-modal-updated {
  color: rgba(16, 34, 41, 0.82);
  font-size: 1rem;
  font-weight: 700;
}

.legal-modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.legal-modal-close:hover,
.legal-modal-close:focus-visible {
  transform: translateY(-2px);
  background: #16333d;
  box-shadow: 0 12px 24px rgba(16, 34, 41, 0.22);
}

.legal-modal-close:focus-visible {
  outline: 2px solid rgba(16, 34, 41, 0.3);
  outline-offset: 2px;
}

.legal-modal-body {
  display: block;
  padding: 1.55rem 2rem 2rem;
  overflow: auto;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 101, 114, 0.35) rgba(16, 34, 41, 0.08);
}

.legal-modal-section {
  display: block;
  position: relative;
  margin-top: 1.35rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.legal-modal-section:first-child {
  margin-top: 0;
}

.legal-modal-section + .legal-modal-section {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(16, 34, 41, 0.1);
}

.legal-modal-section h3 {
  margin-bottom: 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1.14rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-modal-section p,
.legal-modal-section li {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.82;
}

.legal-modal-section p + p,
.legal-modal-section p + ul,
.legal-modal-section ul + p {
  margin-top: 0.78rem;
}

.legal-modal-section li::marker {
  color: var(--teal);
}

.legal-modal-section ul {
  display: block;
  margin: 0;
  padding-left: 1.45rem;
}

.legal-modal-section li + li {
  margin-top: 0.45rem;
}

.legal-modal-section strong {
  color: var(--ink);
}

.legal-modal-section a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-modal-section a:hover,
.legal-modal-section a:focus-visible {
  color: var(--teal-deep);
}

.legal-modal-note {
  display: block;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  background: rgba(0, 101, 114, 0.06);
  color: var(--teal-deep) !important;
  font-size: 0.98rem !important;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 36px), 920px);
  padding: 1rem 1.1rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 34, 41, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.cookie-banner-button {
  min-height: 50px;
  padding-inline: 1.2rem;
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: calc(94px + var(--cookie-banner-offset));
  z-index: 29;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(16, 34, 41, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: var(--shadow-lg);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.back-to-top span {
  font-size: 0.9rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + var(--cookie-banner-offset));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1dbb5c 0%, #25d366 100%);
  color: var(--white);
  box-shadow: 0 20px 36px rgba(29, 187, 92, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(29, 187, 92, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.whatsapp-float span {
  font-weight: 800;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

html.js [data-reveal][data-reveal-direction="left"] {
  opacity: 0;
  transform: translateX(-52px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

html.js [data-reveal][data-reveal-direction="right"] {
  opacity: 0;
  transform: translateX(52px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js [data-reveal][data-reveal-direction="left"].is-visible,
html.js [data-reveal][data-reveal-direction="right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1180px) {
  .header-actions {
    display: none;
  }

  .hero-grid,
  .benefits-grid,
  .operation-grid,
  .returns-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1024px) {
  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-showcase-media,
  .feature-showcase-copy {
    margin: 0;
  }

  .feature-showcase-copy {
    margin-top: -10px;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual-shell {
    display: grid;
    gap: 1rem;
    min-height: auto;
    padding: 1rem;
  }

  .hero-status-card,
  .hero-dashboard-card,
  .hero-mini-card,
  .hero-whats-card,
  .hero-stat {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: none;
  }

  .hero-status-card {
    order: 1;
    background: linear-gradient(180deg, rgba(3, 69, 80, 0.96) 0%, rgba(11, 30, 37, 0.95) 100%);
  }

  .hero-dashboard-card {
    order: 2;
    aspect-ratio: 1.25;
  }

  .hero-mini-card {
    order: 3;
    width: min(280px, 62%);
    justify-self: end;
  }

  .hero-whats-card {
    order: 5;
    width: 100%;
  }

  .hero-stat {
    max-width: none;
  }

  .hero-stat-primary {
    order: 4;
  }

  .hero-stat-secondary {
    order: 6;
  }

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

  .offer-main {
    grid-template-columns: 1fr;
  }

  .offer-main-actions {
    justify-content: flex-start;
  }

  .closing-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "actions"
      "tags";
  }

  .closing-actions,
  .closing-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 11vw, 5rem);
  }

  .pillar-card,
  .solution-secondary-grid {
    grid-template-columns: 1fr;
  }

  .module-card-featured {
    transform: none;
  }

}

@media (max-width: 720px) {
  .section-pad {
    padding: 76px 0;
  }

  .feature-showcase-copy {
    margin-top: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .diagnostic-actions,
  .offer-main-actions,
  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .module-grid,
  .offer-prices,
  .returns-grid,
  .benefits-board {
    grid-template-columns: 1fr;
  }

  .footer-legal-actions {
    justify-content: flex-start;
  }

  .footer-legal {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
  }

  .footer-legal-button {
    width: auto;
    min-height: 46px;
    padding: 0.75rem 1rem;
  }

  .legal-modal {
    padding: 14px;
  }

  .legal-modal-panel {
    max-height: 92vh;
    border-radius: 26px;
  }

  .legal-modal-header {
    padding: 1.15rem 4.5rem 1rem 1rem;
  }

  .legal-modal-body {
    padding: 1rem 1rem 1.2rem;
  }

  .hero-proof-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .operation-media {
    min-height: 500px;
  }

  .operation-shot-main {
    inset: 18% 4% 8% 8%;
  }

  .operation-shot-top,
  .operation-shot-bottom {
    width: 44%;
  }

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

  .cookie-banner {
    bottom: 12px;
    left: 12px;
    transform: none;
    width: auto;
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .cookie-banner-button {
    width: 100%;
  }

  .back-to-top {
    right: 12px;
    bottom: calc(84px + var(--cookie-banner-offset));
    width: 52px;
    min-width: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .back-to-top span {
    display: none;
  }

  .whatsapp-float {
    bottom: calc(12px + var(--cookie-banner-offset));
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .header-shell {
    padding: 0.8rem 0.9rem;
  }

  .brand img {
    box-shadow: 0 4px 10px rgba(16, 34, 41, 0.12);
  }

  .brand {
    gap: 0.75rem;
    padding: 0.35rem 0.72rem 0.35rem 0.35rem;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

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

  .brand-copy small {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .solution-copy h2,
  .benefits-copy h2,
  .operation-copy h2,
  .statement-card h2,
  .diagnostic-card h2,
  .offer-main h2,
  .closing-card h2,
  .returns-copy h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.3rem);
  }

  .hero-lead,
  .section-head p,
  .solution-copy p,
  .benefits-copy p,
  .operation-copy p,
  .diagnostic-card p,
  .closing-card p,
  .returns-copy p {
    font-size: 0.98rem;
  }

  .pain-card,
  .module-card,
  .step-card,
  .pillar-card,
  .feature-showcase-copy,
  .benefit-tile,
  .returns-card,
  .offer-price-block,
  .footer-links,
  .legal-modal-section {
    padding: 1.2rem;
  }

  .hero-mini-card {
    width: 100%;
    justify-self: stretch;
  }

  .operation-media {
    min-height: 420px;
  }

  .operation-shot-top,
  .operation-shot-bottom {
    width: 46%;
  }

  .operation-badge {
    left: 8%;
  }

  .pain-card {
    min-height: 240px;
  }

  .legal-modal-header {
    gap: 0.85rem;
  }

  .legal-modal-title {
    font-size: 1.4rem;
  }

  .legal-modal-close {
    top: 0.85rem;
    right: 0.85rem;
    width: 40px;
    height: 40px;
  }

}

@media (max-width: 420px) {
  .site-header .brand-copy {
    display: none;
  }

  .site-header .brand {
    padding-right: 0.35rem;
  }

  .site-header .brand-mark {
    width: 52px;
    height: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
