@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #14151f;
  --muted: #62677a;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --line: #dde3ee;
  --blue: #1167e8;
  --blue-deep: #093b91;
  --cyan: #22c8dc;
  --green: #2ca66f;
  --coral: #ff6b57;
  --shadow: 0 20px 55px rgba(16, 31, 70, 0.16);
  --site-font: "Heebo", Arial, "Helvetica Neue", sans-serif;
  font-family: var(--site-font);
}

* {
  box-sizing: border-box;
  font-family: var(--site-font);
}

*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--site-font);
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 3px solid #ff2f8f;
  outline-offset: 3px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: var(--site-font);
}

button,
input,
select,
textarea,
option,
a,
p,
span,
strong,
label,
legend,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  font: inherit;
  font-family: var(--site-font);
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 22px clamp(18px, 4vw, 56px) 42px;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(5, 19, 57, 0.96), rgba(12, 70, 154, 0.84) 49%, rgba(7, 120, 142, 0.78)),
    #0b2d6c;
  isolation: isolate;
}

.page-hero {
  color: var(--paper);
  padding: 22px clamp(18px, 4vw, 56px) clamp(56px, 8vw, 92px);
  background:
    linear-gradient(120deg, rgba(5, 19, 57, 0.97), rgba(12, 70, 154, 0.9) 54%, rgba(7, 120, 142, 0.82)),
    #0b2d6c;
}

.page-hero-inner {
  width: min(960px, 100%);
  margin: clamp(54px, 8vw, 92px) auto 0;
  text-align: center;
}

.page-hero-inner h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 1.02;
}

.page-hero-inner p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.signal-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.site-header {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.brand,
.call-link,
.icon-action,
.header-nav a,
.footer-brand,
.footer-nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 54px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.authorized-label {
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav {
  flex: 1;
  justify-content: center;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav a,
.footer-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  transition: color 0.18s ease, background 0.18s ease;
}

.header-nav a:hover,
.footer-nav a:hover,
.header-nav a.active,
.footer-nav a.active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
}

.call-link {
  min-width: 78px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-action {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease;
}

.icon-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.icon-action::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background: var(--paper);
  mask: var(--icon) center / contain no-repeat;
}

.phone-action {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.79 19.79 0 0 1 11.19 18.85a19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.whatsapp-action {
  background: rgba(37, 211, 102, 0.9);
  border-color: rgba(37, 211, 102, 0.9);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.01 3.2c-7.04 0-12.77 5.73-12.77 12.77 0 2.25.59 4.45 1.72 6.39L3.2 28.8l6.62-1.73a12.7 12.7 0 0 0 6.19 1.58c7.04 0 12.77-5.73 12.77-12.77S23.05 3.2 16.01 3.2Zm0 23.28c-1.91 0-3.78-.51-5.41-1.48l-.39-.23-3.92 1.03 1.05-3.82-.25-.4a10.5 10.5 0 0 1-1.68-5.7c0-5.84 4.75-10.59 10.59-10.59s10.59 4.75 10.59 10.59-4.75 10.6-10.58 10.6Zm5.81-7.93c-.32-.16-1.88-.93-2.17-1.04-.29-.11-.5-.16-.71.16-.21.32-.82 1.04-1 1.25-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.77-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.55.16-.18.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.7-.97-2.33-.26-.61-.52-.53-.71-.54h-.61c-.21 0-.56.08-.85.4-.29.32-1.11 1.09-1.11 2.65s1.14 3.07 1.3 3.28c.16.21 2.24 3.42 5.43 4.8.76.33 1.35.52 1.81.67.76.24 1.46.21 2.01.13.61-.09 1.88-.77 2.15-1.51.27-.74.27-1.38.19-1.51-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E");
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 68px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 430px);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.hero-copy {
  max-width: 690px;
  padding-top: 2px;
}

.eyebrow {
  margin: 0 0 13px;
  color: #aeeefa;
  font-size: 0.96rem;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--blue-deep);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.42rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.33rem);
  line-height: 1.65;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
}

.benefit-strip div {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(7, 23, 57, 0.18);
  backdrop-filter: blur(14px);
}

.benefit-strip div::before {
  content: "✓";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #08245b;
  background: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.16);
}

.benefit-strip strong,
.benefit-strip span {
  display: block;
}

.benefit-strip strong {
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.22;
}

.benefit-strip span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.lead-panel {
  color: var(--ink);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.98)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(9, 59, 145, 0.22);
}

.lead-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--coral));
}

form {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 26px);
}

.form-heading {
  display: grid;
  gap: 8px;
  text-align: center;
}

.form-heading p,
.section-heading p {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 800;
}

.form-heading h2,
.section-heading h2,
.trust-layout h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.sales-callout {
  min-height: auto;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 2px 4px 8px;
  border: 0;
  border-radius: 0;
  color: var(--blue-deep);
  background: transparent;
  text-align: center;
  text-decoration: none;
  transition: transform 0.16s ease;
}

.sales-callout::before {
  content: "";
  grid-row: 2;
  grid-column: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  box-shadow: 0 8px 20px rgba(17, 103, 232, 0.22);
}

.sales-callout:hover {
  transform: translateY(-1px);
}

.sales-callout span {
  grid-column: 1 / -1;
  display: block;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.sales-callout strong {
  grid-row: 2;
  grid-column: 2;
  color: var(--blue-deep);
  font-size: clamp(1.3rem, 3vw, 1.62rem);
  font-weight: 900;
  letter-spacing: 0;
  direction: ltr;
  justify-self: center;
}

.form-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 4px 0 2px;
  color: #667085;
  font-size: 0.92rem;
  font-weight: 900;
}

.form-divider::before,
.form-divider::after {
  content: "";
  height: 1px;
  background: #dde6f2;
}

label,
fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #253149;
  font-weight: 800;
}

legend {
  margin-bottom: 9px;
  padding: 0;
  color: #273044;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d5e8;
  border-radius: 18px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  text-align: right;
  direction: rtl;
  box-shadow: 0 10px 24px rgba(16, 31, 70, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

input[type="tel"] {
  direction: rtl;
  text-align: right;
}

input,
select {
  height: 48px;
}

textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

input::placeholder {
  color: #98a3b6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(17, 103, 232, 0.13), 0 14px 28px rgba(16, 31, 70, 0.08);
  transform: translateY(-1px);
}

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

.segment-control label {
  display: block;
}

.segment-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-control span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd5e3;
  border-radius: 8px;
  color: #31405b;
  background: #f8faff;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}

.segment-control input:checked + span {
  color: var(--paper);
  border-color: var(--blue);
  background: var(--blue);
}

.submit-button {
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: #ff2f8f;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 47, 143, 0.3);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 47, 143, 0.36);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.field-error {
  display: none;
  color: #b52020;
  font-size: 0.82rem;
  font-weight: 700;
}

.invalid .field-error {
  display: block;
}

.invalid input,
.invalid select {
  border-color: #d54a4a;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.form-note a {
  color: var(--blue-deep);
  font-weight: 900;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #b52020;
}

.offer-band,
.trust-band {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 4vw, 56px);
}

.urgency-line {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff4c2;
  background: rgba(255, 107, 87, 0.18);
  font-weight: 900;
}

.hero-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(17, 103, 232, 0.34);
  font-weight: 900;
  text-decoration: none;
}

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

.trust-urgency-strip div {
  min-height: 82px;
}

.pressure-band,
.faq-band {
  padding: clamp(50px, 8vw, 84px) clamp(18px, 4vw, 56px);
}

.pressure-band {
  color: var(--paper);
  background: #071739;
}

.pressure-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.pressure-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.pressure-inner p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.55;
}

.faq-band {
  background: var(--paper);
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mobile-sticky-actions {
  display: none;
}

.content-band {
  padding: clamp(52px, 8vw, 88px) clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.content-copy,
.content-aside,
.terms-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.content-copy,
.content-aside {
  padding: clamp(24px, 4vw, 38px);
}

.content-copy h2,
.content-aside h2,
.terms-list h2,
.contact-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.content-copy p,
.content-aside p,
.terms-list p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.content-copy p:last-child,
.content-aside p:last-child,
.terms-list p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.article-flow h2:not(:first-child) {
  margin-top: 30px;
}

.article-flow p {
  margin-bottom: 14px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-right: 26px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.terms-list {
  display: grid;
  gap: 16px;
}

.terms-list article {
  padding: clamp(22px, 4vw, 34px);
}

.page-cta {
  padding: 34px clamp(18px, 4vw, 56px);
  background: #eaf7fb;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cta-row h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

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

.contact-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.contact-details-list {
  display: grid;
  gap: 12px;
  margin: 6px 0;
  padding: 0;
  list-style: none;
}

.contact-details-list li {
  display: grid;
  gap: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-details-list a {
  color: var(--blue-deep);
  font-weight: 900;
}

.site-contact-form {
  padding: 0;
}

.thank-you-hero {
  min-height: 100vh;
}

.thanks-panel {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(620px, calc(100% - 36px));
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #d6e1ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 44px rgba(16, 31, 70, 0.18);
}

.cookie-banner p {
  margin: 0;
  color: #2f3b52;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.cookie-approve,
.cookie-policy {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.cookie-approve {
  border: 0;
  color: var(--paper);
  background: var(--blue);
  cursor: pointer;
}

.cookie-policy {
  color: var(--blue-deep);
  border: 1px solid #c9d7ea;
  background: #f8fbff;
}

.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(7, 23, 57, 0.58);
}

.exit-popup-overlay.visible {
  display: grid;
}

.exit-popup {
  position: relative;
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(7, 23, 57, 0.32);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #eef3fb;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.exit-popup h2 {
  margin-bottom: 10px;
  padding-left: 34px;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.exit-popup p {
  color: var(--muted);
  line-height: 1.6;
}

.exit-popup-form {
  padding: 0;
}

.exit-popup-form small {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.exit-popup-status {
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.exit-popup-status.error {
  color: #b52020;
}

.exit-popup-status.success {
  color: var(--green);
}

.accessibility-widget {
  position: fixed;
  left: 18px;
  top: 45%;
  z-index: 45;
  display: grid;
  gap: 8px;
}

.accessibility-toggle {
  min-height: 46px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: #071739;
  box-shadow: 0 14px 32px rgba(7, 23, 57, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.accessibility-panel {
  width: min(260px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid #d7e2ef;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(16, 31, 70, 0.18);
}

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.accessibility-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef3fb;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
}

.accessibility-options {
  display: grid;
  gap: 8px;
}

.accessibility-option,
.accessibility-reset {
  min-height: 40px;
  border: 1px solid #d7e2ef;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcff;
  font-weight: 800;
  cursor: pointer;
}

.accessibility-option[aria-pressed="true"] {
  color: var(--paper);
  border-color: var(--blue);
  background: var(--blue);
}

.accessibility-reset {
  width: 100%;
  margin-top: 10px;
  color: #9f1239;
  background: #fff1f2;
}

body.a11y-large-text {
  font-size: 118%;
}

body.a11y-small-text {
  font-size: 92%;
}

body.a11y-high-contrast {
  --ink: #000000;
  --muted: #1f2937;
  --paper: #ffffff;
  --soft: #ffffff;
}

body.a11y-high-contrast .hero,
body.a11y-high-contrast .page-hero,
body.a11y-high-contrast .site-footer,
body.a11y-high-contrast .pressure-band {
  background: #000000;
}

body.a11y-grayscale {
  filter: grayscale(1);
}

body.a11y-highlight-links a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

body.a11y-stop-animations *,
body.a11y-stop-animations *::before,
body.a11y-stop-animations *::after {
  animation: none !important;
  scroll-behavior: auto !important;
  transition: none !important;
}

.admin-hero {
  padding-bottom: 58px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-toolbar,
.admin-fieldset,
.import-export-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
  box-shadow: 0 14px 28px rgba(16, 31, 70, 0.06);
}

.admin-toolbar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.admin-toolbar h2,
.import-export-panel h2 {
  margin-bottom: 4px;
  font-size: 1.24rem;
}

.admin-toolbar .contact-button {
  width: 100%;
}

.contact-button.danger {
  color: #9f1239;
  border: 1px solid rgba(159, 18, 57, 0.28);
  background: #fff1f2;
}

.admin-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--green);
  font-weight: 800;
  line-height: 1.45;
}

.admin-status.error {
  color: #b52020;
}

.admin-form {
  display: grid;
  gap: 16px;
  padding: 0;
}

.admin-fieldset {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.admin-fieldset legend {
  margin: 0 0 4px;
  padding: 0;
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.admin-fieldset label {
  color: #273044;
  font-size: 0.94rem;
}

.admin-fieldset textarea,
.import-export-panel textarea {
  min-height: 96px;
}

.import-export-panel {
  grid-column: 2;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.contact-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 4vw, 36px);
}

.contact-kicker {
  color: var(--blue);
  font-weight: 900;
}

.contact-card h2 {
  margin-bottom: 0;
}

.contact-card .contact-button {
  width: fit-content;
  margin-top: 8px;
}

.articles-layout {
  display: grid;
  gap: 22px;
}

.featured-article,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.featured-article {
  padding: clamp(24px, 4vw, 42px);
}

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

.article-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 24px;
}

.article-tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(34, 200, 220, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

.featured-article h2,
.article-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.article-card h2 {
  font-size: 1.24rem;
}

.featured-article p,
.article-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  width: fit-content;
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.offer-band {
  background: var(--paper);
}

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

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 690px;
}

.section-subtitle {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.55;
}

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

.offer-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 47, 143, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fff7fb);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 103, 232, 0.24);
  box-shadow: 0 18px 36px rgba(16, 31, 70, 0.12);
}

.offer-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-size: 1.22rem;
  font-weight: 900;
}

.offer-card:nth-child(2) .offer-icon {
  background: var(--blue);
}

.offer-card:nth-child(3) .offer-icon {
  background: var(--blue);
}

.offer-card:nth-child(4) .offer-icon {
  background: var(--blue);
}

.offer-card h3 {
  grid-column: 2;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.offer-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.offer-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #d9e4f2;
  border-radius: 8px;
  background: #f7fbff;
}

.offer-urgency p {
  max-width: 720px;
  margin: 0;
  color: #28354e;
  font-weight: 900;
  line-height: 1.5;
}

.offer-urgency .contact-button {
  background: #ff2f8f;
  box-shadow: 0 14px 30px rgba(255, 47, 143, 0.24);
}

.trust-band,
.info-band,
.contact-band {
  background: #edf2f8;
}

.info-band {
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.info-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.info-layout h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.info-text {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.info-text p {
  margin: 0;
}

.contact-band {
  padding: clamp(46px, 7vw, 74px) clamp(18px, 4vw, 56px);
  background: #eaf7fb;
}

.contact-layout {
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.contact-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.contact-button.primary {
  color: var(--paper);
  background: var(--blue);
}

.contact-button.secondary {
  color: var(--blue-deep);
  border: 1px solid #b8c7df;
  background: rgba(255, 255, 255, 0.72);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 18px 48px 18px 18px;
  border: 1px solid #d4deeb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 19px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(44, 166, 111, 0.14);
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 56px);
  color: #dbe6f5;
  background: #111827;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-brand {
  font-weight: 900;
}

.footer-nav {
  justify-content: center;
}

.footer-nav a {
  color: rgba(219, 230, 245, 0.86);
}

.site-footer p {
  margin: 0;
  color: rgba(219, 230, 245, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .content-grid,
  .contact-page-grid,
  .contact-admin-grid,
  .admin-layout,
  .article-grid,
  .faq-grid,
  .trust-layout,
  .info-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    position: static;
  }

  .import-export-panel {
    grid-column: auto;
  }

  .hero-grid {
    margin-top: 48px;
  }

  .lead-panel {
    max-width: 560px;
  }

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

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

  .site-header {
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: right;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 9px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    order: 2;
  }

  .call-link,
  .header-actions {
    order: 3;
  }

  .call-link {
    min-width: 0;
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-action {
    width: 40px;
    height: 40px;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    order: 4;
    display: grid;
    flex: none;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(7, 23, 57, 0.97);
    box-shadow: 0 20px 45px rgba(7, 23, 57, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-header.menu-open .header-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .header-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 38px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1,
  .hero-copy .hero-lede {
    order: 1;
  }

  .lead-panel {
    order: 2;
  }

  .benefit-strip {
    order: 3;
    width: 100%;
  }

  .hero-lede {
    margin-bottom: 20px;
  }

  .lead-panel {
    max-width: none;
  }

  .mobile-sticky-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(7, 23, 57, 0.96);
    box-shadow: 0 -16px 34px rgba(7, 23, 57, 0.26);
  }

  .mobile-sticky-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--paper);
    background: #ff2f8f;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-sticky-actions a:last-child {
    background: var(--green);
  }

  .cookie-banner {
    right: 10px;
    bottom: 84px;
    width: calc(100% - 20px);
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions > * {
    flex: 1;
  }

  .accessibility-widget {
    left: 10px;
    top: auto;
    bottom: 86px;
  }

  .accessibility-toggle {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .accessibility-panel {
    max-height: min(420px, calc(100vh - 150px));
    overflow: auto;
  }

  .exit-popup {
    padding: 24px 18px 18px;
  }

  .exit-popup h2 {
    padding-left: 36px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 14px 14px 30px;
  }

  .page-hero {
    padding: 14px 14px 48px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 38px;
    height: 50px;
  }

  .authorized-label {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .header-nav {
    overflow: visible;
  }

  .header-nav a,
  .footer-nav a {
    padding-inline: 10px;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.04;
    margin-bottom: 4px;
  }

  .hero-copy .hero-lede {
    margin-bottom: 10px;
    line-height: 1.42;
  }

  .page-hero-inner {
    margin-top: 40px;
    text-align: right;
  }

  .hero-lede,
  .page-hero-inner p:last-child {
    font-size: 1rem;
    line-height: 1.58;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .offer-grid,
  .contact-page-grid,
  .contact-admin-grid,
  .article-grid,
  .faq-grid,
  .segment-control {
    grid-template-columns: 1fr;
  }

  .benefit-strip div,
  .offer-card,
  .contact-card,
  .article-card,
  .faq-grid article {
    min-height: auto;
  }

  .benefit-strip div {
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
  }

  form {
    gap: 12px;
    padding: 16px;
  }

  .sales-callout {
    min-height: auto;
  }

  input,
  select {
    min-height: 48px;
  }

  .submit-button {
    min-height: 50px;
  }

  .form-note {
    font-size: 0.78rem;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .offer-band,
  .content-band,
  .pressure-band,
  .faq-band {
    padding: 42px 14px;
  }

  .offer-urgency {
    display: grid;
    gap: 14px;
  }

  .offer-urgency .contact-button {
    width: 100%;
  }

  .pressure-inner {
    justify-items: stretch;
    text-align: right;
  }

  .pressure-inner .contact-button {
    width: 100%;
  }

  .footer-inner {
    gap: 14px;
  }
}

@media (max-width: 380px) {
  .authorized-label {
    display: none;
  }

  .call-link {
    font-size: 0.72rem;
    padding-inline: 8px;
  }

  .icon-action {
    width: 38px;
    height: 38px;
  }
}
