:root {
  --ink: #172033;
  --muted: #657084;
  --navy: #0d3b66;
  --blue: #1b75bb;
  --sky: #e6f7ff;
  --mint: #1ea87a;
  --mint-dark: #12785a;
  --amber: #ffb23f;
  --coral: #ee6f45;
  --paper: #ffffff;
  --stone: #f5f7f4;
  --line: #dbe4e8;
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.16);
  --glow: 0 18px 46px rgba(30, 168, 122, 0.34);
  --radius: 8px;
  --max: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 36%, #ffffff 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(255, 178, 63, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(219, 228, 232, 0.86);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 47%, rgba(13, 59, 102, 0.95) 47% 53%, transparent 53%),
    linear-gradient(180deg, transparent 47%, rgba(13, 59, 102, 0.95) 47% 53%, transparent 53%),
    var(--sky);
  box-shadow: inset -8px 0 0 rgba(30, 168, 122, 0.25);
}

.brand-mark::after {
  position: absolute;
  right: -6px;
  top: 6px;
  width: 12px;
  height: 24px;
  content: "";
  background: var(--amber);
  border-radius: 7px;
}

.brand strong {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #344052;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover {
  color: var(--mint-dark);
}

.nav-toggle {
  display: none;
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  isolation: isolate;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.header-cta {
  padding: 12px 16px;
  color: var(--paper);
  background: linear-gradient(135deg, #20c58e 0%, #159b73 48%, #0d6f86 100%);
  box-shadow: var(--glow);
}

.header-cta:hover,
.button-primary:hover {
  background: linear-gradient(135deg, #19ad7d 0%, #107b5e 48%, #0a5970 100%);
  transform: translateY(-1px);
}

.button svg,
.header-cta svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.button {
  width: fit-content;
  padding: 15px 20px;
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, #20c58e 0%, #159b73 48%, #0d6f86 100%);
  box-shadow: var(--glow);
}

.button-primary::after,
.header-cta::after {
  position: absolute;
  inset: 0 auto 0 -46%;
  z-index: 0;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  animation: cta-sheen 4.4s ease-in-out infinite;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(13, 59, 102, 0.16);
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--paper);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 26, 43, 0.9) 0%, rgba(9, 26, 43, 0.67) 35%, rgba(9, 26, 43, 0.16) 72%, rgba(9, 26, 43, 0.02) 100%),
    linear-gradient(115deg, rgba(30, 168, 122, 0.2), transparent 42%),
    linear-gradient(0deg, rgba(9, 26, 43, 0.20), rgba(9, 26, 43, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 20px 74px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 4.4rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  color: #f8fffb;
  background: rgba(30, 168, 122, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row svg {
  width: 17px;
  height: 17px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -34px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 4;
}

.signal-strip::before {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 2;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--coral));
  border-radius: var(--radius) var(--radius) 0 0;
}

.strip-item {
  min-height: 112px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.1);
}

.strip-item:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.strip-item:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.strip-item strong {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--mint-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.strip-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 94px 20px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2,
.split-copy h2,
.solution-band h2,
.availability-copy h2,
.contact-copy h2 {
  font-size: 2.55rem;
}

.section-head p:not(.eyebrow),
.split-copy p,
.solution-band p,
.availability-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.compare-section {
  background: var(--paper);
}

.comparison-table {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(23, 32, 51, 0.08);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.1fr;
}

.table-row > div {
  min-width: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.table-row > div + div {
  border-left: 1px solid var(--line);
}

.table-row:last-child > div {
  border-bottom: 0;
}

.table-head {
  color: var(--paper);
  background: var(--navy);
  font-weight: 800;
}

.table-row:not(.table-head) > div:first-child {
  color: var(--ink);
  font-weight: 800;
}

.table-row svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  color: var(--mint);
  vertical-align: -3px;
}

.problem-section,
.pricing-section,
.faq-section {
  background: var(--stone);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.issue-grid,
.benefit-grid,
.audience-grid,
.pricing-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.issue-grid article,
.benefit-grid article,
.audience-grid article,
.price-card,
.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.issue-grid article,
.benefit-grid article,
.audience-grid article,
.steps article {
  padding: 24px;
}

.issue-grid svg,
.benefit-grid svg,
.audience-grid svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
  stroke-width: 2;
}

.issue-grid h3,
.benefit-grid h3,
.audience-grid h3,
.price-card h3,
.steps h3 {
  margin-top: 16px;
  font-size: 1.15rem;
}

.issue-grid p,
.benefit-grid p,
.audience-grid p,
.price-card p,
.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.visual-proof-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(30, 168, 122, 0.12), transparent 32%),
    linear-gradient(180deg, var(--stone) 0%, #ffffff 100%);
}

.visual-proof-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(219, 228, 232, 0.88);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(110deg, rgba(13, 59, 102, 0.22), transparent 42%),
    linear-gradient(0deg, rgba(13, 59, 102, 0.16), transparent 38%);
  pointer-events: none;
}

.visual-card::after {
  position: absolute;
  right: 36px;
  top: 32px;
  z-index: 2;
  width: 92px;
  height: 92px;
  content: "";
  border: 2px solid rgba(255, 178, 63, 0.7);
  border-radius: 999px;
  box-shadow:
    0 0 0 16px rgba(255, 178, 63, 0.12),
    0 0 58px rgba(255, 178, 63, 0.28);
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: min(310px, calc(100% - 36px));
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(13, 59, 102, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(13, 59, 102, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.visual-badge svg {
  width: 19px;
  height: 19px;
  color: var(--amber);
}

.visual-badge-top {
  left: 18px;
  top: 18px;
}

.visual-badge-bottom {
  left: 18px;
  bottom: 18px;
  background: rgba(30, 168, 122, 0.82);
}

.visual-copy {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.08);
}

.visual-copy::before {
  position: absolute;
  top: -10px;
  right: 30px;
  width: 74px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--coral));
  border-radius: 999px;
}

.visual-copy h2 {
  font-size: 2.2rem;
}

.visual-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.mini-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.mini-comparison > div {
  min-height: 138px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--sky);
  border: 1px solid rgba(27, 117, 187, 0.18);
}

.mini-comparison > div:last-child {
  background: #e8f8f2;
  border-color: rgba(30, 168, 122, 0.24);
}

.mini-comparison span {
  display: block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-comparison div:last-child span {
  color: var(--mint-dark);
}

.mini-comparison strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.35;
}

.mini-comparison > svg {
  width: 24px;
  height: 24px;
  color: var(--mint-dark);
  stroke-width: 2.5;
}

.solution-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef9f6 100%);
}

.solution-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 178, 63, 0.16), transparent 34%),
    linear-gradient(125deg, #0d3b66 0%, #0b466f 52%, #0b645d 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-band .eyebrow {
  color: var(--amber);
}

.solution-band p {
  color: rgba(255, 255, 255, 0.84);
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 28px auto 0;
}

.audience-section {
  background: var(--paper);
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 286px;
  padding: 26px;
  flex-direction: column;
}

.price-card.featured {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 178, 63, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy), #0b5a61);
  border-color: var(--navy);
}

.price-card.featured::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  content: "";
  border-top: 3px solid rgba(255, 255, 255, 0.45);
  border-right: 3px solid rgba(255, 255, 255, 0.45);
  border-radius: 0 var(--radius) 0 0;
}

.price-label {
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--amber);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  color: var(--mint-dark);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.price-card.featured strong,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.price-card .button {
  margin-top: auto;
}

.rate-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.rate-list div {
  padding: 18px;
  background: var(--paper);
}

.rate-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.rate-list strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
}

.price-note {
  max-width: var(--max);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.availability-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
}

.availability-copy {
  max-width: 760px;
}

.process-section {
  background: var(--paper);
}

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.steps article {
  min-height: 220px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--coral);
  border-radius: var(--radius);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.contact-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--sky);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-direct svg {
  width: 19px;
  height: 19px;
}

.lead-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #39475a;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfdbe2;
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 168, 122, 0.16);
}

.full-field,
.file-field,
.consent {
  margin-top: 16px;
}

.file-field input {
  background: var(--sky);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  flex: 0 0 18px;
  accent-color: var(--mint);
}

.consent span {
  color: var(--muted);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--mint-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px max(20px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: #101827;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-contact {
  justify-content: flex-end;
}

.footer-contact a {
  width: 100%;
  text-align: right;
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  text-align: right;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-credit a:hover {
  color: var(--amber);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: calc(100% - 28px);
  min-height: 52px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--mint);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(30, 168, 122, 0.32);
  font-weight: 800;
}

.mobile-sticky-cta svg {
  width: 19px;
  height: 19px;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
  padding: 12px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 232, 0.86);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
  backdrop-filter: blur(18px);
}

.legal-main {
  min-height: calc(100vh - 170px);
  padding: 54px 20px 86px;
  background:
    radial-gradient(circle at 16% 4%, rgba(30, 168, 122, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
}

.legal-hero,
.legal-document,
.legal-grid,
.legal-contact-card {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.legal-hero {
  padding: 44px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 178, 63, 0.17), transparent 32%),
    linear-gradient(135deg, var(--navy), #0b5a61);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-hero .eyebrow {
  color: var(--amber);
}

.legal-hero h1 {
  max-width: 760px;
  font-size: 3rem;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.legal-document {
  margin-top: 24px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.08);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-document a {
  color: var(--mint-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal-grid a {
  min-height: 220px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.legal-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 168, 122, 0.42);
  box-shadow: 0 20px 48px rgba(23, 32, 51, 0.12);
}

.legal-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--coral);
  border-radius: var(--radius);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.legal-grid strong {
  display: block;
  margin-top: 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.legal-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-contact-card {
  margin-top: 24px;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px max(20px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #101827;
}

.legal-footer a {
  color: var(--amber);
  font-weight: 800;
}

@keyframes cta-sheen {
  0%,
  54% {
    transform: translateX(0) skewX(-18deg);
  }

  78%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@media (hover: hover) {
  .issue-grid article:hover,
  .benefit-grid article:hover,
  .audience-grid article:hover,
  .price-card:hover,
  .steps article:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 168, 122, 0.45);
    box-shadow: 0 20px 48px rgba(23, 32, 51, 0.12);
  }

  .site-nav a {
    position: relative;
  }

  .site-nav a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--mint), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
  }

  .site-nav a:hover::after {
    transform: scaleX(1);
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.45rem;
  }

  .section-head h2,
  .split-copy h2,
  .solution-band h2,
  .availability-copy h2,
  .contact-copy h2 {
    font-size: 2.12rem;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .split-layout,
  .solution-band,
  .visual-proof-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

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

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

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

  .visual-copy {
    order: -1;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero,
  .hero-content {
    min-height: 72svh;
  }

  .hero-content {
    padding-top: 52px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 3.65rem;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 1.03rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-row {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 68px;
  }

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

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle span {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 68svh;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 26, 43, 0.92) 0%, rgba(9, 26, 43, 0.72) 68%, rgba(9, 26, 43, 0.26) 100%),
      linear-gradient(0deg, rgba(9, 26, 43, 0.24), rgba(9, 26, 43, 0.08));
  }

  .hero-content {
    padding: 40px 18px 32px;
  }

  h1 {
    max-width: 420px;
    font-size: 2.42rem;
  }

  .hero-copy {
    max-width: 410px;
    font-size: 1rem;
  }

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

  .hero-actions {
    margin-top: 24px;
  }

  .trust-row {
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .trust-row::-webkit-scrollbar {
    display: none;
  }

  .trust-row span {
    width: max-content;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .strip-item,
  .strip-item:first-child,
  .strip-item:last-child {
    border-radius: 0;
    box-shadow: none;
  }

  .section {
    padding: 58px 18px;
  }

  .section-head {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-head h2,
  .split-copy h2,
  .solution-band h2,
  .availability-copy h2,
  .contact-copy h2 {
    font-size: 1.86rem;
  }

  .comparison-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
  }

  .table-row > div,
  .table-row > div + div {
    border-left: 0;
  }

  .table-row > div {
    border-bottom: 0;
    padding: 14px;
  }

  .table-head {
    display: none;
  }

  .table-row:not(.table-head) > div:first-child {
    grid-column: 1 / -1;
    color: var(--paper);
    background: linear-gradient(135deg, var(--navy), #0b5a61);
    font-size: 1rem;
    font-weight: 800;
  }

  .table-row > div[data-label] {
    min-height: 96px;
    background: #fbfcfd;
    border-top: 1px solid var(--line);
  }

  .table-row > div[data-label] + div[data-label] {
    border-left: 1px solid var(--line);
  }

  .table-row > div[data-label]::before {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .table-row > div[data-label="Fólie na okna"] {
    background: #e8f8f2;
  }

  .table-row > div[data-label="Fólie na okna"]::before {
    color: var(--mint-dark);
  }

  .table-row > div[data-label="Klimatizace"]::before {
    color: var(--coral);
  }

  .issue-grid,
  .benefit-grid,
  .audience-grid,
  .pricing-grid,
  .steps,
  .form-grid,
  .rate-list,
  .mini-comparison {
    grid-template-columns: 1fr;
  }

  .issue-grid > *,
  .benefit-grid > *,
  .audience-grid > *,
  .pricing-grid > *,
  .steps > *,
  .rate-list > *,
  .legal-grid > * {
    min-width: 0;
  }

  .price-card .button {
    width: 100%;
    white-space: normal;
  }

  .visual-card,
  .visual-card img {
    min-height: 330px;
  }

  .visual-copy {
    padding: 24px;
  }

  .visual-copy h2 {
    font-size: 1.82rem;
  }

  .visual-badge {
    max-width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .visual-badge-top,
  .visual-badge-bottom {
    left: 14px;
  }

  .visual-badge-top {
    top: 14px;
  }

  .visual-badge-bottom {
    bottom: 14px;
  }

  .visual-card::after {
    right: 22px;
    top: 24px;
    width: 62px;
    height: 62px;
  }

  .mini-comparison > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .solution-band {
    padding: 26px;
  }

  .availability-section {
    display: grid;
    padding: 56px 18px;
  }

  .availability-section .button {
    width: 100%;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .footer-links,
  .footer-contact {
    justify-content: flex-start;
  }

  .footer-contact a,
  .footer-credit {
    text-align: left;
  }

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

  .legal-header .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .legal-main {
    padding: 34px 18px 68px;
  }

  .legal-hero,
  .legal-document {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 2.28rem;
  }

  .legal-document h2 {
    font-size: 1.22rem;
  }

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

  .legal-grid a {
    min-height: 0;
  }

  .legal-footer {
    display: grid;
    padding: 22px 18px 92px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 390px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-header,
  .legal-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-content,
  .section,
  .availability-section,
  .contact-section,
  .legal-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-sticky-cta {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 2.28rem;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }
}
