@import url("../fonts/fonts.css");

/* ===== Design tokens (reconstructed from original Elementor kit) ===== */
:root {
  --ink: #262626;
  --ink-2: #2a2a2a;
  --paper: #ffffff;
  --paper-soft: #f7f8f8;
  --paper-soft-2: #f3f3f3;
  --cyan: #14bfe6;
  --cyan-dark: #0fa6c9;
  --green: #5ec429;
  --green-msg: #07b12a;
  --green-call: #34C759;
  --green-call-dark: #2DB84E;
  --blue-heading: #1a73e8;
  --red: #ff0000;
  --text: #000000;
  --text-muted: #4a4a4a;
  --white: #ffffff;
  --container: 1140px;
  --radius: 6px;
  --radius-btn: 999px;
  --font-display: "Assistant", "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", "Assistant", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .5em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

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

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  z-index: 1000;
  transform: translateY(-200%);
  transition: transform .2s ease;
  text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

/* ===== Visible focus (global a11y baseline) ===== */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
main:focus { outline: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.site-header__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(255, 255, 255, .12); }
.site-nav a[aria-current="page"] { color: var(--cyan); }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 3px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .12s ease, background-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--cyan { background: var(--cyan); color: var(--white); }
.btn--cyan:hover { background: var(--cyan-dark); }
.btn--green { background: var(--green); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost-dark:hover { background: rgba(0, 0, 0, .06); }
.btn--ghost-dark svg { width: 1em; height: 1em; }

/* ===== Home: hero ===== */
.hero {
  background: #222222;
  color: var(--white);
  padding-block: 36px 48px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 3vw, 48px);
  box-sizing: border-box;
}
.hero__media {
  display: flex;
  flex-direction: column;
  gap: 22px;
  order: 1;
  min-width: 0;
  width: 100%;
}
.hero__banner { border-radius: 10px; overflow: hidden; }
.hero__banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  order: 2;
  width: 100%;
  align-items: center;
  text-align: center;
}
.hero__panel h1 { margin: 0 0 0.2em; }
.hero__panel h2:not(.hero__subtitle),
.hero__panel p { margin: 0; }
.hero__panel .lead-form { max-width: 100%; width: 100%; gap: 8px; }
.hero__panel .form-note { text-align: center; }
.hero__panel .form-message { text-align: center; }
.hero__panel-banner { border-radius: 10px; overflow: hidden; margin-bottom: 6px; }
.hero h1, .hero h2 { color: var(--white); }
.hero__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-align: center; margin-bottom: 0.2em; }
.hero__phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  text-align: center;
}
.hero__phone-btn {
  background: transparent;
  color: var(--cyan);
  font-size: clamp(18px, 2.4vw, 24px);
  padding: 10px 20px;
  border: 1px solid var(--white);
  border-radius: 8px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.hero__phone-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--cyan-dark);
  border-color: var(--white);
}
.hero__phone-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}
.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-block: 14px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, .85);
}
.hero__subtitle::before,
.hero__subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

/* ===== Lead form ===== */
.lead-form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; text-align: right; }
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid #d7d7d7;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  direction: rtl;
  text-align: right;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  text-align: right;
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: var(--cyan);
}
.lead-form .btn { width: 100%; }
.form-note { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, .82); text-align: right; }
.form-note a { text-decoration: underline; }
.form-message { font-size: 15px; font-weight: 600; min-height: 1.2em; text-align: right; }
.form-message:empty { min-height: 0; margin: 0; display: none; }
.form-message--success { color: #7CFFB0; }
.form-message--error { color: #ff9a9a; }

.form-error {
  margin: -4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #ff9a9a;
  text-align: right;
  display: none;
}
.form-error.is-visible { display: block; }
.lead-form input[aria-invalid="true"] {
  border-color: #ff6b6b;
  outline-color: #ff6b6b;
}

/* ===== Carousel ===== */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  direction: ltr;
}
.hero__media .carousel {
  width: 75%;
  margin-inline: auto;
}
.carousel__viewport {
  flex: 1;
  min-width: 0;
  order: 2;
  overflow: hidden;
  border-radius: 10px;
}
.carousel__track {
  display: flex;
  align-items: stretch;
  transition: transform .5s ease;
  direction: ltr;
  will-change: transform;
}
.carousel__slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}
@media (min-width: 901px) {
  .hero__banner img {
    max-height: none;
    width: 100%;
    object-fit: contain;
  }
  .carousel__btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.carousel__btn {
  position: static;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, .45);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
  direction: ltr;
}
.carousel__btn:hover { background: rgba(0, 0, 0, .7); }
.carousel__btn--prev { order: 1; }
.carousel__btn--next { order: 3; }

/* ===== Benefits (advantages section) ===== */
.benefits {
  background: linear-gradient(180deg, #ffffff 0%, #eaf6fb 100%);
  padding-block: clamp(40px, 6vw, 72px);
}
.benefits__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.benefits__title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.benefits__title-top {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
}
.benefits__title-main {
  display: block;
  font-size: clamp(26px, 4vw, 40px);
}
.benefits__divider {
  display: block;
  width: clamp(140px, 30vw, 320px);
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.benefits__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 96px);
  row-gap: clamp(20px, 3vw, 36px);
  max-width: 1040px;
  margin-inline: auto;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 4px;
}
.benefit__text {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  color: var(--ink);
  text-align: right;
}
.benefit__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(20, 191, 230, .18);
}
.benefit__icon svg {
  width: 32px;
  height: 32px;
}
.benefit__icon--badge {
  background: var(--white);
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.benefit__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.benefit__badge-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
}
.benefit__badge-main sup { font-size: 11px; }
.benefit__badge-sub {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 600;
  opacity: .85;
}

/* ===== Generic content page ===== */
.page { background: var(--paper-soft); padding-block: 44px 64px; }
.content {
  background: var(--white);
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}
.content h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: .6em; }
.content h2 {
  color: var(--blue-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-top: 1.4em;
}
.content p { margin: 0 0 1em; font-size: 17px; }
.content ul { padding-inline-start: 22px; margin: 0 0 1em; }
.content li { margin-bottom: .6em; font-size: 17px; }
.content a { color: var(--blue-heading); text-decoration: underline; }
.content strong { font-weight: 700; }
.muted { color: var(--text-muted); font-size: 15px; }

/* ===== CTA band (under benefits) ===== */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1f2b 100%);
  color: var(--white);
  padding-block: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(20, 191, 230, .18), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}
.cta-band__content {
  flex: 1 1 320px;
  min-width: 0;
}
.cta-band__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  line-height: 1.25;
}
.cta-band__sub {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cta-band__btn {
  font-size: 18px;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(20, 191, 230, .35);
}
.cta-band__btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(20, 191, 230, .45); }
.cta-band__arrow { width: 18px; height: 18px; }
.cta-band__call {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .45);
  font-size: 15px;
  padding: 12px 22px;
}
.cta-band__call:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }
.cta-band__call svg { width: 1em; height: 1em; opacity: .9; }

.page:has(> .cta-band) { padding-bottom: 0; }
.page > .cta-band { margin-top: 44px; }

/* ===== Thanks page ===== */
.thanks-page { background: var(--paper-soft); padding-block: clamp(48px, 8vw, 96px); }
.thanks {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, .08);
  text-align: center;
}
.thanks__icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(20, 191, 230, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.thanks__icon svg { width: 56px; height: 56px; }
.thanks__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--ink);
}
.thanks__lead {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
}
.thanks__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.thanks__cta-icon { width: 1em; height: 1em; }
.thanks__notes {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #ececec;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.thanks__notes li + li { margin-top: 4px; }

.not-found__code {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== Accessibility menu ===== */
.a11y {
  position: fixed;
  inset-inline-end: 16px;
  bottom: 16px;
  z-index: 200;
  font-family: var(--font-display);
}
@media (max-width: 768px) {
  .a11y {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
.a11y__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--cyan);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: background-color .2s ease, transform .15s ease;
}
.a11y__toggle:hover { background: var(--cyan-dark); }
.a11y__toggle:active { transform: scale(.95); }
.a11y__toggle svg { width: 28px; height: 28px; }
.a11y__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  inset-inline-end: 0;
  width: min(320px, calc(100vw - 32px));
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
  padding: 16px;
  text-align: right;
  direction: rtl;
}
.a11y__panel[hidden] { display: none; }
.a11y__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.a11y__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}
.a11y__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: 6px;
}
.a11y__close:hover { background: var(--paper-soft); color: var(--ink); }
.a11y__group {
  border-top: 1px solid #eee;
  padding-block: 12px;
}
.a11y__group:first-of-type { border-top: 0; padding-top: 0; }
.a11y__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.a11y__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.a11y__row button {
  padding: 10px 0;
  border: 1px solid #d7d7d7;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  transition: background-color .15s ease, border-color .15s ease;
}
.a11y__row button:hover { background: var(--paper-soft); border-color: var(--cyan); }
.a11y__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  font-family: var(--font-display);
  text-align: right;
  transition: all .15s ease;
}
.a11y__option:last-child { margin-bottom: 0; }
.a11y__option:hover { border-color: var(--cyan); background: rgba(20, 191, 230, .04); }
.a11y__option.is-active,
.a11y__option[aria-pressed="true"] {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}
.a11y__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-soft);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.a11y__option.is-active .a11y__option-icon,
.a11y__option[aria-pressed="true"] .a11y__option-icon {
  background: rgba(255, 255, 255, .25);
}
.a11y__footer {
  border-top: 1px solid #eee;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.a11y__reset {
  background: transparent;
  border: 0;
  color: var(--cyan-dark);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 4px;
  font-family: var(--font-display);
  text-decoration: underline;
}
.a11y__statement {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* ===== Accessibility state classes (applied on <html>) ===== */
.a11y-text-smaller { font-size: 87.5%; }
.a11y-text-larger { font-size: 112.5%; }
.a11y-text-larger-2 { font-size: 125%; }

.a11y-readable-font,
.a11y-readable-font * {
  font-family: Arial, Verdana, "Segoe UI", system-ui, sans-serif !important;
  letter-spacing: 0.02em !important;
}

.a11y-highlight-links a:not(.a11y__statement):not(.btn) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.a11y-no-motion *,
.a11y-no-motion *::before,
.a11y-no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

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

.a11y-big-cursor,
.a11y-big-cursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24'><path d='M5 3l14 9-6 1.5L9.5 21z' fill='black' stroke='white' stroke-width='1'/></svg>") 4 4, auto !important;
}

/* High contrast: force black background, yellow links — but keep accessibility menu styled */
.a11y-contrast,
.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}
.a11y-contrast :where(header, footer, main, section, article, aside, nav, div, p, h1, h2, h3, h4, h5, h6, li, span, label) {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.a11y-contrast :where(input, textarea, select) {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
.a11y-contrast :where(a:not(.a11y__statement):not(.btn)) {
  color: #ffff00 !important;
  text-decoration: underline !important;
}
.a11y-contrast .btn {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #fff !important;
}
.a11y-contrast .a11y,
.a11y-contrast .a11y * {
  background-color: revert !important;
  color: revert !important;
  border-color: revert !important;
}
.a11y-contrast .a11y__panel { background: #fff !important; color: #000 !important; }
.a11y-contrast .a11y__option { background: #fff !important; color: #000 !important; }
.a11y-contrast .a11y__option.is-active { background: var(--cyan) !important; color: #fff !important; }

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  padding: clamp(22px, 3vw, 36px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}
.contact-form .lead-form { max-width: none; }
.contact-form .lead-form input,
.contact-form .lead-form textarea { background: var(--paper-soft); }
.contact-form .form-note { color: var(--text-muted); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 28px 24px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 20px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, .88);
  padding: 4px 0;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--cyan); }
.footer-legal {
  max-width: 680px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
}
.footer-legal p { margin: 0; }
.footer-legal p + p { margin-top: 6px; }
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--ink-2);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 720px;
  margin-inline: auto;
  transform: translateY(140%);
  transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.6; flex: 1 1 280px; }
.cookie-banner a { text-decoration: underline; }

/* ===== Exit popup ===== */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.exit-popup[hidden] { display: none; }
.exit-popup__box {
  position: relative;
  background: var(--ink-2);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  padding: 32px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: grid;
  gap: 14px;
}
.exit-popup__close {
  position: absolute;
  top: 8px;
  inset-inline-start: 12px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* ===== Sticky mobile call bar ===== */
.sticky-call { display: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { padding-block: 24px 32px; }
  .hero__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero__media { display: contents; }
  .hero__banner { order: 1; width: 100%; }
  .hero__panel { order: 2; gap: 6px; max-width: 26rem; margin-inline: auto; }
  .hero__media .carousel { display: none; }
  .hero__title { margin-bottom: 0.2em; }
  .hero__phone { margin: 0; }
  .hero__subtitle { margin-block: 14px; }
  .hero__panel .lead-form { gap: 8px; }
  .hero__panel .form-note { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .benefits__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
    max-width: 460px;
  }
  .benefit { gap: 14px; }
  .benefit__icon { width: 54px; height: 54px; }
  .benefit__icon svg { width: 28px; height: 28px; }
  .cta-band {
    padding-block: 28px;
  }
  .cta-band__inner {
    flex-direction: column;
    gap: 18px;
  }
  .cta-band__content {
    flex: 0 0 auto;
    width: 100%;
  }
  .cta-band__title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .cta-band__sub {
    font-size: 14px;
  }
  .cta-band__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .cta-band__actions .btn {
    width: 100%;
    max-width: 320px;
    font-size: 17px;
    padding: 14px 24px;
  }
  .cta-band__call {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 150;
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    background: var(--green-call);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .2);
    transition: background-color .2s ease;
  }
  .sticky-call:active { background: var(--green-call-dark); }
  .sticky-call__icon {
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
  }
  .sticky-call__number {
    font-size: 20px;
    letter-spacing: 0.02em;
  }
  .cookie-banner {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
  .site-header__inner { justify-content: space-between; flex-wrap: nowrap; }
  .site-header__logo img { height: 52px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink);
    box-shadow: 0 14px 24px rgba(0, 0, 0, .3);
    padding: 10px 16px 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 18px; padding: 14px 12px; }
}

/* ==========================================================================
   Homepage redesign additions (index.html only, 2026 refresh)
   Appended at the end of the file so equal-specificity rules above are
   safely overridden without editing/removing anything the other pages
   (about/contact/privacy-policy/thanks/404) still rely on.
   ========================================================================== */

/* 0) Honeypot: off-screen (not display:none — bots skip those) and out of
      the tab order / screen-reader tree. Humans never see or reach it. */
.hp-field {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* 1) Hero: gradient background + radial cyan glow */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a1f2b 0%, var(--ink) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(20, 191, 230, .18), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
}
@media (min-width: 901px) {
  .hero__grid {
    grid-template-columns: minmax(20rem, 26rem) minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    gap: clamp(20px, 2.5vw, 40px);
  }
}

/* 2) Lead-form panel becomes an elevated white card with dark text */
.hero__panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  border-top: 4px solid var(--cyan);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  padding: 28px;
  max-width: 26rem;
  width: 100%;
  justify-self: stretch;
}
.hero__panel .hero__title { color: var(--ink); }
.hero__panel .hero__subtitle { color: var(--text-muted); }
.hero__panel .hero__subtitle::before,
.hero__panel .hero__subtitle::after { background: rgba(0, 0, 0, .12); }
.hero__panel .form-note { color: var(--text-muted); }
.hero__panel .form-message--success { color: var(--green-msg); }
.hero__panel .form-message--error { color: var(--red); }

/* 3) Panel first / media second on desktop (DOM order already panel-first;
      only the desktop visual flip needs neutralizing — mobile keeps its
      existing banner-first order untouched) */
@media (min-width: 901px) {
  .hero__panel { order: 0; }
  .hero__media { order: 0; }
}

/* 4) Pill-shaped buttons; form inputs keep a smaller 8px radius */
.btn { border-radius: var(--radius-btn); }
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea { border-radius: 8px; }
.btn--green-call { background: var(--green-call); color: var(--white); border: 0; }
.btn--green-call:hover { background: var(--green-call-dark); }
.btn--white { background: var(--white); color: var(--ink); border: 0; }
.btn--white:hover { background: var(--paper-soft-2); }

/* 5) Benefits become white elevated cards, 3-up grid (1-up ≤900px already
      handled by the existing mobile rule below) */
@media (min-width: 901px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit {
  flex-direction: column;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(20, 191, 230, .10);
  padding: 28px 20px;
}
.benefit__text { text-align: center; }
.benefit__icon { background: var(--cyan); color: var(--white); box-shadow: none; }
.benefit__icon--badge { background: var(--cyan); color: var(--white); border-color: var(--cyan); }
.benefits__divider {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--cyan);
}

/* 6) Promo carousel lives in its own full-width section, visible on mobile too */
.promos { background: var(--paper-soft); padding-block: clamp(28px, 5vw, 48px); }
.promos__inner { max-width: 900px; margin-inline: auto; padding-inline: 20px; }

/* 7) CTA band inverted (homepage only, via modifier class — base .cta-band
      is left untouched for about/contact/privacy-policy) */
.cta-band--invert { background: var(--cyan); }
.cta-band--invert::before { display: none; }
.cta-band--invert .cta-band__title,
.cta-band--invert .cta-band__sub { color: var(--ink); }
.cta-band--invert .cta-band__btn { box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.cta-band--invert .cta-band__btn:hover { box-shadow: 0 12px 28px rgba(0, 0, 0, .28); }

/* 8) Mobile dual sticky bar — new markup/class, additive alongside the
      existing single-link .sticky-call still used by the other pages */
.sticky-bar { display: none; }
@media (max-width: 768px) {
  .sticky-bar {
    display: flex;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 150;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .2);
  }
  .sticky-bar {
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .2);
  }
  .sticky-bar__form { display: none; }
  .sticky-bar__call {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1;
    color: var(--white);
    background: linear-gradient(180deg, var(--green-call), var(--green-call-dark));
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    animation: sticky-call-pulse 2.2s ease-in-out infinite;
  }
  .sticky-bar__call:active { transform: scale(.97); }
  .sticky-bar__call::before { content: "📞"; font-size: 22px; }
  @keyframes sticky-call-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, .35); }
    50% { box-shadow: 0 6px 28px rgba(0, 200, 90, .55); }
  }
}

/* 9) Header: cyan accent bar + desktop-only green call pill in the nav row.
      Selector is deliberately more specific than ".site-nav a" so the pill
      colors/radius/padding win over the generic nav-link styling. */
.site-header { border-top: 4px solid var(--cyan); }
.site-nav a.site-header__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-call);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  margin-inline-start: 8px;
}
.site-nav a.site-header__call:hover { background: var(--green-call-dark); }
@media (max-width: 768px) {
  .site-header__call { display: none; }
}

/* 10) Hero offer banner — native card using site tokens (replaces hero-1.png) */
.hero__banner {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.offer-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.4vw, 16px);
  height: 100%;
  min-height: 220px;
  padding: clamp(16px, 2.2vw, 28px) clamp(14px, 2vw, 28px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 191, 230, .2), transparent 46%),
    linear-gradient(160deg, #243044 0%, #1a1f2b 48%, #141820 100%);
  border: 1px solid rgba(20, 191, 230, .28);
  border-top: 4px solid var(--cyan);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
}
.offer-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px;
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius-btn);
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  background: rgba(20, 191, 230, .1);
}
.offer-banner__palm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.offer-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--white);
}
.offer-banner__title span { display: block; }
.offer-banner__title sup {
  font-size: .62em;
  top: -.25em;
}
.offer-banner__yes { color: var(--cyan); }
.offer-banner__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}
.offer-banner__from,
.offer-banner__period {
  font-size: clamp(13px, 1.5vw, 18px);
  white-space: nowrap;
}
.offer-banner__amount {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .82;
  text-shadow: 0 0 28px rgba(20, 191, 230, .4);
}
.offer-banner__currency {
  font-size: .28em;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: .55em;
  margin-inline-end: .06em;
  text-shadow: none;
}
.offer-banner__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 360px);
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
}
.offer-banner__lead::before,
.offer-banner__lead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 191, 230, .55), transparent);
}
.offer-banner__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-banner__perks li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 118px;
  padding: 10px 16px 12px;
  border: 1.5px solid rgba(20, 191, 230, .4);
  border-radius: 12px;
  background: rgba(20, 191, 230, .08);
  box-shadow: 0 8px 20px rgba(20, 191, 230, .12);
}
.offer-banner__also {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}
.offer-banner__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  color: var(--white);
}
.offer-banner__brand--disney { letter-spacing: .01em; }
.offer-banner__brand--hbo {
  letter-spacing: .06em;
  font-size: 16px;
}
.offer-banner__brand--hbo em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: lowercase;
}
.offer-banner__note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 420px);
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
.offer-banner__note::before,
.offer-banner__note::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 191, 230, .45), transparent);
}
@media (max-width: 900px) {
  .offer-banner { min-height: 0; }
  .offer-banner__amount { font-size: clamp(3.2rem, 18vw, 4.6rem); }
}

/* 11) Form legal note as a collapsible shelf */
.hero__panel .form-note {
  width: 100%;
  margin: 4px 0 0;
  text-align: center;
  background: var(--paper-soft);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  overflow: hidden;
}
.hero__panel .form-note summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  user-select: none;
  transition: background-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hero__panel .form-note summary::-webkit-details-marker,
.hero__panel .form-note summary::marker {
  display: none;
  content: none;
}
.hero__panel .form-note summary svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hero__panel .form-note[open] summary {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.hero__panel .form-note[open] summary svg {
  transform: rotate(180deg);
}
.hero__panel .form-note p {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
  color: var(--text-muted);
}
@media (hover: hover) and (pointer: fine) {
  .hero__panel .form-note summary:hover {
    background: rgba(0, 0, 0, .03);
  }
}
.hero__panel .form-note summary:active {
  background: rgba(0, 0, 0, .05);
}
@media (prefers-reduced-motion: reduce) {
  .hero__panel .form-note summary,
  .hero__panel .form-note summary svg {
    transition: none;
  }
}
