:root {
  --navy-950: #03101d;
  --navy-900: #061425;
  --navy-850: #08182b;
  --navy-800: #0a1c32;
  --navy-700: #102947;
  --blue-600: #0868ef;
  --blue-500: #1482ff;
  --blue-400: #4ba5ff;
  --blue-100: #dcebff;
  --gold-500: #d8aa55;
  --gold-300: #f0cf8f;
  --white: #fff;
  --off-white: #f4f7fb;
  --ink: #0b1828;
  --muted: #a7b6c9;
  --muted-dark: #5d6b7d;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: #dfe6ef;
  --success: #71dcac;
  --danger: #ff9a9a;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(0, 12, 30, 0.32);
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --anchor-offset: 85px;
}

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

html {
  scroll-behavior: smooth;
}

:where(#main-content, main > section[id], #quote-form-card) {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 11vw, 4.8rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 7vw, 3.6rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 4px;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 82px 0;
}

/* Keep the long landing page inexpensive to initialise while preserving every
   section in the document and accessibility tree. Browsers render each section
   normally as it approaches the viewport or becomes an anchor destination. */
@supports (content-visibility: auto) and selector(html:has(:target)) {
  main > .section {
    content-visibility: auto;
    contain-intrinsic-size: auto 1100px;
  }

  /* Native hash navigation needs the complete preceding document flow. */
  html:has(:target) main > .section {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

.section--light {
  color: var(--ink);
  background: var(--off-white);
}

.section--light p {
  color: var(--muted-dark);
}

.section--light .eyebrow {
  color: #0066c4;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-400);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 180ms ease;
}

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

.button:hover > span[aria-hidden="true"] {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 14px 34px rgba(8, 104, 239, 0.28);
}

.button--primary:hover {
  box-shadow: 0 18px 40px rgba(8, 104, 239, 0.4);
}

.button--outline {
  color: #dceaff;
  border-color: rgba(112, 174, 255, 0.34);
  background: rgba(11, 34, 61, 0.58);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--blue-400);
  background: rgba(20, 130, 255, 0.1);
}

.button--ghost {
  border-color: rgba(107, 170, 255, 0.3);
  background: rgba(7, 25, 45, 0.5);
}

.button--gold {
  color: #201609;
  background: linear-gradient(135deg, #f3d59a, var(--gold-500));
  box-shadow: 0 14px 34px rgba(216, 170, 85, 0.17);
}

.button--whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #27b765, #168a49);
  box-shadow: 0 14px 34px rgba(21, 151, 80, 0.22);
}

.button--google {
  color: #162236;
  background: var(--white);
  border-color: #d9e3ee;
  box-shadow: 0 14px 34px rgba(0, 10, 27, 0.16);
}

.button--whatsapp img,
.button--google img {
  flex: 0 0 auto;
}

.button--light {
  color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 31, 78, 0.18);
}

.button--wide {
  width: 100%;
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6f1ff;
  font-weight: 680;
}

.text-link--blue {
  color: var(--blue-400);
}

.text-link:hover {
  color: var(--blue-400);
}

.announcement {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  color: #dcecff;
  background: #071a31;
  border-bottom: 1px solid rgba(83, 155, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
}

.announcement strong {
  color: var(--white);
}

.announcement__pulse {
  position: relative;
  isolation: isolate;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(75, 165, 255, 0.12);
}

.announcement__pulse::after {
  position: absolute;
  z-index: -1;
  inset: -5px;
  content: "";
  background: rgba(75, 165, 255, 0.32);
  border-radius: 50%;
  animation: campaign-dot-pulse 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes campaign-dot-pulse {
  0% {
    opacity: 0.42;
    transform: scale(0.85);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(2.35);
  }
}

.header-sentinel {
  height: 1px;
  margin-bottom: -1px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(3, 16, 29, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 6, 17, 0.14);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 16, 29, 0.97);
  border-bottom-color: rgba(84, 161, 255, 0.2);
  box-shadow: 0 15px 36px rgba(0, 6, 17, 0.32);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(126px, 38vw, 145px);
  height: auto;
  aspect-ratio: 220 / 53;
}

.brand--footer .brand-logo {
  width: clamp(158px, 44vw, 184px);
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-content: center;
  gap: 7px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 999;
  padding: 18px;
  background: rgba(3, 16, 29, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 15px 2px;
  color: #d5e2f1;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-nav a:last-child {
  margin-top: 12px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--blue-600);
  border-bottom: 0;
  border-radius: 10px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--navy-950);
}

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

.hero-media {
  background: url("assets/hero-cctv-installation-mobile.webp") center / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(3, 16, 29, 0.3) 0%, rgba(3, 16, 29, 0.76) 43%, var(--navy-950) 93%),
    linear-gradient(90deg, rgba(3, 16, 29, 0.86), rgba(3, 16, 29, 0.14));
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: end;
  gap: 36px;
  padding-top: 92px;
  padding-bottom: 58px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 span {
  color: var(--blue-400);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 26px;
  color: #c5d2e1;
  font-size: 1.03rem;
  line-height: 1.72;
}

.price-lockup {
  display: flex;
  max-width: 440px;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 13px 17px;
  background: rgba(4, 23, 43, 0.7);
  border: 1px solid rgba(97, 165, 255, 0.28);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(0, 9, 24, 0.2);
  backdrop-filter: blur(12px);
}

.price-overline {
  display: block;
  margin-bottom: -5px;
  color: #93b9e9;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-price {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 810;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero-price sup,
.offer-price sup {
  position: relative;
  top: -0.32em;
  margin-right: 2px;
  font-size: 0.47em;
}

.price-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.price-detail span {
  font-weight: 700;
}

.price-detail del {
  color: #8fa0b3;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

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

.microcopy {
  max-width: 650px;
  margin: 18px 0 0;
  color: #91a5bd;
  font-size: 0.79rem;
}

.microcopy span {
  margin-right: 5px;
  color: var(--success);
}

.hero-proof {
  display: none;
}

.hero-proof-card {
  padding: 26px;
  background: rgba(5, 23, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-kicker {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d3dfec;
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "✓";
  color: #aee2ff;
  background: rgba(20, 130, 255, 0.15);
  border: 1px solid rgba(90, 169, 255, 0.36);
  border-radius: 50%;
  font-size: 0.63rem;
  font-weight: 800;
}

.check-list--compact {
  gap: 10px;
}

.allocation-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.allocation-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 780;
}

.allocation-note p {
  margin: 0;
  color: #e5eef8;
  font-size: 0.84rem;
  line-height: 1.35;
}

.allocation-note small {
  color: #96a8bd;
}

.trust-strip {
  position: relative;
  background: #08192c;
  border-top: 1px solid rgba(74, 157, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trust-grid > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}

.trust-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-400);
  border: 1px solid rgba(67, 153, 255, 0.27);
  border-radius: 10px;
  transition: transform 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.trust-grid p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  line-height: 1.3;
}

.trust-grid strong {
  color: #e9f2fb;
  font-size: 0.74rem;
}

.trust-grid small {
  display: none;
  margin-top: 3px;
  color: #8296ae;
  font-size: 0.63rem;
}

.problem-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(20, 130, 255, 0.1), transparent 28%),
    var(--navy-950);
}

.split-copy {
  display: grid;
  gap: 28px;
}

.split-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.lead-stack p {
  font-size: 1.02rem;
}

.concern-grid {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.concern-card {
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(13, 39, 68, 0.72), rgba(5, 20, 36, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.card-icon,
.benefit-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 35px;
  color: var(--blue-400);
  background: rgba(20, 130, 255, 0.08);
  border: 1px solid rgba(75, 165, 255, 0.25);
  border-radius: 11px;
  transition: transform 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.benefit-icon {
  color: var(--blue-600);
  background: rgba(20, 130, 255, 0.07);
  border-color: rgba(20, 130, 255, 0.19);
}

.concern-card h3 {
  font-size: 1.35rem;
}

.concern-card p {
  margin: 0;
  font-size: 0.91rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading--dark h2 {
  color: var(--ink);
}

.section-heading p {
  max-width: 700px;
  font-size: 1rem;
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(21, 48, 82, 0.06);
}

.benefit-card::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  content: "";
  background: radial-gradient(circle, rgba(20, 130, 255, 0.13), transparent 67%);
}

.benefit-card h3 {
  color: var(--ink);
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

.offer-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(20, 130, 255, 0.16), transparent 28%),
    #061425;
}

.offer-grid {
  display: grid;
  gap: 24px;
}

.offer-card {
  position: relative;
  padding: 32px 22px 26px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(14, 44, 78, 0.96), rgba(5, 20, 38, 0.98));
  border: 1px solid rgba(84, 161, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.offer-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 0 0 0 14px;
  font-size: 0.66rem;
  font-weight: 790;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card__top {
  display: grid;
  gap: 10px;
  padding: 30px 0 24px;
  border-bottom: 1px solid var(--line);
}

.offer-card__top h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3rem);
}

.offer-price {
  display: grid;
  align-content: end;
  justify-items: start;
}

.offer-price del {
  color: #91a4ba;
  font-size: 0.9rem;
}

.offer-price strong {
  color: var(--white);
  font-size: 3.5rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.offer-price span {
  color: #bdd4ef;
  font-size: 0.78rem;
  font-weight: 680;
}

.offer-equipment {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.offer-equipment > p {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.equipment-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.equipment-list strong {
  color: #e7f1fb;
  font-size: 0.87rem;
}

.equipment-list span {
  color: #93a8bf;
  font-size: 0.75rem;
}

.offer-inclusions {
  padding: 25px 0;
}

.offer-inclusions .check-list {
  grid-template-columns: 1fr;
}

.offer-qualifier {
  margin: 16px 0 0;
  color: #8ea2b9;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.standard-installation {
  align-self: center;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.standard-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  color: #bad8ff;
  background: rgba(20, 130, 255, 0.12);
  border: 1px solid rgba(81, 161, 255, 0.28);
  border-radius: 50%;
  font-weight: 800;
}

.standard-installation p {
  font-size: 0.91rem;
}

.reassurance-line {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  padding-top: 18px;
  color: #dce9f6;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 680;
}

.reassurance-line span {
  color: var(--success);
}

.feature-section {
  overflow: hidden;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-section--reverse,
.audio-section {
  background: var(--navy-900);
}

.feature-grid {
  display: grid;
  align-items: center;
  gap: 38px;
}

.feature-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: inherit;
}

.feature-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.feature-visual--detection img {
  object-position: 50% 50%;
}

.feature-visual--night img {
  object-position: 50% 48%;
}

.feature-visual--audio img {
  object-position: 50% 46%;
}

.feature-copy > p {
  font-size: 1rem;
}

.feature-points {
  display: grid;
  gap: 16px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

.point-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue-400);
  background: rgba(20, 130, 255, 0.1);
  border: 1px solid rgba(66, 151, 255, 0.25);
  border-radius: 10px;
  transition: transform 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.point-icon .ui-icon {
  width: 19px;
  height: 19px;
}

.feature-points strong {
  color: #e7f1fb;
}

.feature-points p {
  margin: 3px 0 0;
  font-size: 0.82rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 30px 0;
}

.stat-row > div {
  padding: 18px 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.stat-row strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.stat-row span {
  display: block;
  margin-top: 4px;
  color: #8da0b6;
  font-size: 0.61rem;
  line-height: 1.35;
}

.accuracy-note {
  display: flex;
  gap: 10px;
  padding: 14px;
  color: #a9bbcf;
  background: rgba(20, 130, 255, 0.06);
  border: 1px solid rgba(70, 156, 255, 0.2);
  border-radius: 12px;
  font-size: 0.78rem !important;
}

.accuracy-note > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-400);
  border: 1px solid rgba(76, 159, 255, 0.4);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.mobile-section {
  background:
    radial-gradient(circle at 15% 55%, rgba(20, 130, 255, 0.12), transparent 25%),
    #04111f;
}

.feature-visual--phone img {
  object-fit: contain;
  object-position: center;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.mini-card-grid > div {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mini-card-grid > div > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--blue-400);
  transition: transform 200ms ease, filter 200ms ease;
}

.mini-card-grid .ui-icon {
  width: 21px;
  height: 21px;
}

.mini-card-grid strong {
  font-size: 0.9rem;
}

.mini-card-grid small {
  margin-top: 4px;
  color: #869bb2;
  font-size: 0.69rem;
  line-height: 1.4;
}

.model-note {
  margin: 25px 0 16px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
}

.model-note strong {
  color: #e6f0fb;
  font-size: 0.88rem;
}

.model-note p {
  margin: 6px 0 0;
  font-size: 0.79rem;
}

.enhanced-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 42%, rgba(216, 170, 85, 0.11), transparent 32%),
    linear-gradient(145deg, #090e17, #071422 70%);
  border-top: 1px solid rgba(216, 170, 85, 0.16);
  border-bottom: 1px solid rgba(216, 170, 85, 0.16);
}

.enhanced-grid {
  display: grid;
  align-items: center;
  gap: 38px;
}

.enhanced-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 85, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.4);
}

.enhanced-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #07111d;
}

.enhanced-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.enhanced-price {
  margin-bottom: 20px;
  color: #b8c3cf;
  font-size: 1rem;
}

.enhanced-price strong {
  color: var(--gold-300);
  font-size: 1.12rem;
}

.check-list--gold {
  margin: 26px 0;
}

.check-list--gold li::before {
  color: var(--gold-300);
  background: rgba(216, 170, 85, 0.1);
  border-color: rgba(216, 170, 85, 0.35);
}

.enhanced-disclaimer {
  font-size: 0.74rem;
}

.warranty-section {
  background:
    radial-gradient(circle at 10% 50%, rgba(20, 130, 255, 0.14), transparent 27%),
    var(--navy-900);
}

.warranty-grid {
  display: grid;
  align-items: center;
  gap: 38px;
}

.warranty-badge {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(270px, 72vw);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-direction: column;
  padding: 30px;
  background:
    radial-gradient(circle, rgba(20, 130, 255, 0.18), rgba(5, 22, 40, 0.94) 67%),
    var(--navy-900);
  border: 1px solid rgba(91, 169, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(20, 130, 255, 0.04), 0 30px 70px rgba(0, 8, 22, 0.36);
  text-align: center;
}

.warranty-badge::after {
  position: absolute;
  z-index: -1;
  inset: -1px;
  content: "";
  border: 1px solid rgba(75, 165, 255, 0.46);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.warranty-badge > span {
  color: var(--white);
  font-size: 5.5rem;
  font-weight: 810;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.warranty-badge strong {
  margin-top: 10px;
  color: var(--blue-400);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warranty-badge small {
  max-width: 145px;
  margin-top: 8px;
  color: #98aac0;
  font-size: 0.7rem;
  line-height: 1.4;
}

.warranty-lead {
  color: #c3d0df;
  font-size: 1.04rem;
}

.warranty-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.warranty-details p {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.79rem;
}

.warranty-details strong {
  color: #e7f0fa;
}

.statutory-note {
  margin: 18px 0 0;
  color: #dce8f4;
  font-size: 0.83rem;
  font-weight: 670;
}

.statutory-note span {
  margin-right: 7px;
  color: var(--success);
}

.comparison-table {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 55px rgba(17, 43, 76, 0.09);
}

.comparison-table table {
  width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  color: #5b697a;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.8rem;
  text-align: left;
}

.comparison-table thead th {
  color: var(--ink);
  background: #edf2f8;
  font-size: 0.78rem;
}

.comparison-table tbody th {
  color: #233448;
  font-weight: 680;
}

.comparison-table .bluemax-col,
.comparison-table td:last-child {
  background: rgba(20, 130, 255, 0.055);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.tick {
  margin-right: 6px;
  color: #05814e;
  font-weight: 800;
}

.minus {
  margin-right: 6px;
  color: #9aa5b3;
}

.centered-cta {
  margin-top: 34px;
  text-align: center;
}

.centered-cta p {
  color: #354960;
  font-weight: 650;
}

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

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

.process-list li {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14, 40, 68, 0.76), rgba(5, 20, 35, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-list li::after {
  position: absolute;
  top: -20px;
  right: -12px;
  color: rgba(75, 165, 255, 0.07);
  content: attr(data-step);
  font-size: 8rem;
  font-weight: 850;
  line-height: 1;
}

.process-number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--blue-400);
  font-size: 0.75rem;
  font-weight: 790;
  letter-spacing: 0.12em;
}

.process-list h3 {
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  font-size: 0.88rem;
}

.gallery-section {
  background: #071727;
}

.gallery-grid {
  display: grid;
  align-items: center;
  gap: 18px;
}

.gallery-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.gallery-main img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: 50% 48%;
}

.installation-principles {
  display: grid;
  gap: 12px;
}

.installation-principles > div {
  display: flex;
  min-height: 150px;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(20, 130, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(132, 166, 204, 0.22);
  border-radius: 14px;
}

.installation-principles .principle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--blue-400);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.principle-icon {
  width: 17px;
  height: 17px;
  transition: transform 200ms ease, filter 200ms ease;
}

.installation-principles strong {
  color: #dfeaf5;
}

.installation-principles p {
  margin: 5px 0 0;
  font-size: 0.75rem;
}

.pricing-section {
  background:
    radial-gradient(circle at 82% 15%, rgba(20, 130, 255, 0.1), transparent 25%),
    var(--navy-950);
}

.pricing-panels {
  display: grid;
  gap: 18px;
}

.pricing-panel {
  overflow: hidden;
  background: rgba(9, 30, 52, 0.92);
  border: 1px solid rgba(72, 153, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.pricing-panel--enhanced {
  border-color: rgba(216, 170, 85, 0.28);
  background: linear-gradient(150deg, rgba(25, 25, 29, 0.96), rgba(9, 20, 32, 0.98));
}

.pricing-panel__head {
  min-height: 200px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}

.pricing-panel__head > span {
  color: var(--blue-400);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-panel--enhanced .pricing-panel__head > span {
  color: var(--gold-300);
}

.pricing-panel__head h3 {
  margin-top: 10px;
  font-size: 1.75rem;
}

.pricing-panel__head p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.price-list li > span {
  color: #aab9c9;
}

.price-list strong {
  color: #eef5fc;
  font-size: 0.9rem;
}

.featured-price {
  background: rgba(20, 130, 255, 0.11);
}

.featured-price > span {
  display: flex;
  flex-direction: column;
}

.featured-price b {
  color: var(--white);
}

.featured-price small {
  color: var(--blue-400);
  font-size: 0.61rem;
  font-weight: 720;
}

.featured-price strong {
  color: var(--blue-400);
  font-size: 1.08rem;
}

.featured-price strong del {
  margin-right: 5px;
  color: #8294a8;
  font-size: 0.72rem;
  font-weight: 500;
}

.featured-price--gold {
  background: rgba(216, 170, 85, 0.09);
}

.featured-price--gold small,
.featured-price--gold strong {
  color: var(--gold-300);
}

.pricing-panel .button {
  width: calc(100% - 48px);
  margin: 24px;
}

.pricing-note {
  max-width: 820px;
  margin: 25px auto 0;
  font-size: 0.74rem;
  text-align: center;
}

.faq-section {
  background: var(--navy-900);
}

.faq-grid {
  display: grid;
  gap: 36px;
}

.faq-intro p {
  font-size: 0.95rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  color: #e9f2fb;
  font-size: 0.93rem;
  font-weight: 680;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  content: "+";
  color: var(--blue-400);
  background: rgba(20, 130, 255, 0.09);
  border: 1px solid rgba(80, 159, 255, 0.25);
  border-radius: 50%;
  font-size: 1.05rem;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: rgba(20, 130, 255, 0.18);
  border-color: rgba(80, 159, 255, 0.45);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details > p {
  display: block;
  max-height: 0;
  margin: 0;
  padding: 0 38px 0 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.83rem;
  transform: translateY(-4px);
  transition: max-height 320ms ease, opacity 220ms ease, padding 320ms ease, transform 220ms ease;
}

.faq-list details[open] > p {
  max-height: 28rem;
  padding-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.faq-list details > p a {
  color: var(--blue-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 15%, rgba(20, 130, 255, 0.18), transparent 25%),
    linear-gradient(145deg, #04101d, #07182a);
}

.quote-grid {
  display: grid;
  gap: 36px;
}

.quote-copy > p {
  font-size: 1rem;
}

.quote-reassurance {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.quote-reassurance > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-reassurance > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--success);
  background: rgba(113, 220, 172, 0.09);
  border: 1px solid rgba(113, 220, 172, 0.22);
  border-radius: 50%;
  font-size: 0.7rem;
}

.quote-reassurance p {
  display: flex;
  flex-direction: column;
  margin: 1px 0 0;
  line-height: 1.35;
}

.quote-reassurance strong {
  color: #e8f2fc;
  font-size: 0.86rem;
}

.quote-reassurance small {
  margin-top: 4px;
  color: #8da1b8;
  font-size: 0.72rem;
}

.direct-contact {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.direct-contact > p {
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 690;
}

.direct-contact > div {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.contact-link > span:first-child {
  color: var(--blue-400);
  font-size: 1.1rem;
}

.contact-link > .contact-link__brand {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  background: #1f9d55;
  border-radius: 50%;
}

.contact-link > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-link strong {
  font-size: 0.79rem;
}

.contact-link small {
  color: #8296ad;
  font-size: 0.65rem;
}

.form-card {
  padding: 26px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dfe7f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 9, 24, 0.34);
}

.form-card__head {
  margin-bottom: 24px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line-dark);
}

.form-card__head > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-card__head h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.65rem;
}

.form-card__head p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.73rem;
}

.form-grid {
  display: grid;
  gap: 17px;
}

.field,
.fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: #24354a;
  font-size: 0.73rem;
  font-weight: 680;
}

.field label > span {
  color: #7a8797;
  font-weight: 500;
}

.field input:not([type="radio"], [type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #d8e1eb;
  border-radius: 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input:not([type="radio"], [type="checkbox"]),
.field select {
  height: 50px;
  padding: 0 13px;
}

.field textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa7b6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(20, 130, 255, 0.1);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: #d63737 !important;
  box-shadow: 0 0 0 3px rgba(214, 55, 55, 0.09) !important;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #b52828;
  font-size: 0.66rem;
  line-height: 1.3;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segmented label {
  margin: 0;
  cursor: pointer;
}

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

.segmented span {
  display: grid;
  min-height: 50px;
  place-items: center;
  color: #536477;
  background: #f8fafc;
  border: 1px solid #d8e1eb;
  border-radius: 9px;
  font-size: 0.78rem;
}

.segmented input:checked + span {
  color: var(--blue-600);
  background: rgba(20, 130, 255, 0.07);
  border-color: var(--blue-500);
  font-weight: 720;
}

.segmented input:focus-visible + span {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #4c5d71 !important;
  font-size: 0.71rem !important;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.checkbox-label a {
  color: var(--blue-600);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.submit-button {
  margin-top: 20px;
  border: 0;
}

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

.button-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.button-loading[hidden],
.form-status [hidden] {
  display: none !important;
}

.loading-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: form-spinner 700ms linear infinite;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-footnote {
  margin: 12px 0 0;
  color: #788697;
  font-size: 0.64rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  scroll-margin-top: var(--anchor-offset);
  margin-top: 15px;
  padding: 18px;
  border-radius: 13px;
  font-size: 0.76rem;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(7, 24, 43, 0.08);
}

.form-status:focus {
  outline: none;
}

.form-status h4 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 0.96rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.form-status p {
  margin: 0;
  color: inherit;
}

.form-status p + p {
  margin-top: 8px;
}

.form-status--error {
  color: #8b1c1c;
  background: #fff1f1;
  border: 1px solid #f1caca;
}

.form-status--info {
  color: #164f86;
  background: #edf6ff;
  border: 1px solid #c7e1fa;
}

.form-status--success {
  color: #12623d;
  background: linear-gradient(145deg, #f4fff9, #e5f8ef);
  border: 1px solid #acd9c3;
}

.form-status__actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.button--status {
  min-height: 44px;
  padding: 11px 13px;
  color: #104d78;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 77, 120, 0.19);
  box-shadow: 0 8px 20px rgba(7, 40, 62, 0.07);
  font-size: 0.7rem;
}

.button--status-whatsapp {
  color: #ffffff;
  background: #138f4d;
  border-color: #138f4d;
}

.button--status:hover {
  box-shadow: 0 10px 24px rgba(7, 40, 62, 0.12);
}

.analytics-consent {
  position: fixed;
  z-index: 1800;
  right: 12px;
  bottom: calc(76px + env(safe-area-inset-bottom));
  left: 12px;
  padding: 16px;
  color: #dcecff;
  background: rgba(4, 17, 31, 0.97);
  border: 1px solid rgba(84, 164, 255, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 68px rgba(0, 7, 19, 0.46);
  backdrop-filter: blur(18px);
  contain: layout paint style;
  max-height: calc(100dvh - 96px - env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent__inner {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}

.analytics-consent h2 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.analytics-consent p {
  max-width: 760px;
  margin: 0;
  color: #a9bfd6;
  font-size: 0.72rem;
  line-height: 1.6;
}

.analytics-consent p a {
  color: #86c3ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.analytics-consent__actions .button {
  min-height: 44px;
  font-size: 0.72rem;
}

.button--consent-primary,
.button--consent-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button--consent-primary {
  color: #ffffff;
  background: #0068cf;
  border-color: #4aa4ff;
}

.button--consent-secondary {
  color: #d5e6f8;
  background: rgba(255, 255, 255, 0.07);
}

.button--consent-primary:hover,
.button--consent-primary:focus-visible,
.button--consent-secondary:hover,
.button--consent-secondary:focus-visible {
  transform: none;
  border-color: #75baff;
  box-shadow: 0 8px 22px rgba(0, 79, 166, 0.2);
}

.analytics-consent [hidden] {
  display: none;
}

.analytics-consent__preferences {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.analytics-consent__preferences fieldset {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 8px;
}

.analytics-consent__preferences legend {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.analytics-consent__option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  padding: 9px 10px 9px 12px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  cursor: pointer;
  gap: 14px;
}

.analytics-consent__option--essential {
  cursor: default;
}

.analytics-consent__option strong,
.analytics-consent__option small {
  display: block;
}

.analytics-consent__option strong {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.74rem;
}

.analytics-consent__option small {
  color: #9fb6cb;
  font-size: 0.65rem;
  line-height: 1.4;
}

.analytics-consent__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.analytics-consent__switch {
  position: relative;
  width: 42px;
  height: 24px;
  background: #344b61;
  border: 1px solid #60788e;
  border-radius: 999px;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.analytics-consent__switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  transition: transform 160ms ease;
}

.analytics-consent__option input:checked + .analytics-consent__switch {
  background: #0068cf;
  border-color: #63b0ff;
}

.analytics-consent__option input:checked + .analytics-consent__switch::after {
  transform: translateX(18px);
}

.analytics-consent__option input:focus-visible + .analytics-consent__switch {
  outline: 3px solid rgba(117, 186, 255, 0.42);
  outline-offset: 3px;
}

.analytics-consent__option input:disabled + .analytics-consent__switch {
  opacity: 0.82;
}

.analytics-consent__preference-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.analytics-consent__preference-actions .button {
  min-height: 44px;
  font-size: 0.72rem;
}

.cookie-settings-link {
  width: fit-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-grid .cookie-settings-link,
.simple-footer .cookie-settings-link {
  color: #8fa7bd;
  font-size: 0.72rem;
}

.footer-grid .cookie-settings-link:hover,
.simple-footer .cookie-settings-link:hover {
  color: var(--white);
}

.final-cta {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(1, 51, 122, 0.9), rgba(10, 121, 239, 0.94)),
    var(--blue-600);
}

.final-cta__inner {
  display: grid;
  align-items: center;
  gap: 28px;
}

.final-cta .eyebrow {
  color: #cfe7ff;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  margin-bottom: 0;
  color: #dceeff;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(20, 130, 255, 0.17), transparent 32%),
    linear-gradient(160deg, #071b31 0%, #03101d 72%);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

.contact-shell {
  position: relative;
}

.contact-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.contact-heading > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-channel-grid {
  display: grid;
  gap: 12px;
}

.contact-channel {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-channel:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(75, 165, 255, 0.45);
  transform: translateY(-2px);
}

.contact-channel__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue-400);
  background: rgba(20, 130, 255, 0.11);
  border: 1px solid rgba(75, 165, 255, 0.22);
  border-radius: 13px;
}

.contact-channel__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel__icon--whatsapp {
  background: #1b9250;
  border-color: rgba(112, 224, 163, 0.3);
}

.contact-channel > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-channel small,
.business-detail > span {
  color: #8198b2;
  font-size: 0.66rem;
  font-weight: 740;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-channel strong {
  overflow: hidden;
  margin-top: 2px;
  color: #eef6ff;
  font-size: 0.9rem;
  text-overflow: ellipsis;
}

.contact-channel em {
  margin-top: 2px;
  color: #91a6bc;
  font-size: 0.68rem;
  font-style: normal;
}

.business-details {
  display: grid;
  overflow: hidden;
  background: rgba(1, 10, 21, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.business-detail {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.business-detail:last-child {
  border-bottom: 0;
}

.business-detail strong {
  display: block;
  margin-top: 7px;
  color: #eef6ff;
  font-size: 0.9rem;
}

.business-detail p,
.business-detail address {
  margin: 4px 0 0;
  color: #9eb0c4;
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-actions .button {
  width: 100%;
  min-height: 50px;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links > span {
  margin-right: 4px;
  color: #8fa3b9;
  font-size: 0.71rem;
  font-weight: 680;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  background: rgba(20, 130, 255, 0.15);
  border-color: rgba(75, 165, 255, 0.42);
  transform: translateY(-2px);
}

.site-footer {
  padding: 60px 0 92px;
  background: #020b14;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  font-size: 0.78rem;
}

.footer-brand address {
  max-width: 320px;
  margin-top: 16px;
  color: #788ca3;
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #e7f0f8;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  color: #8799ae;
  font-size: 0.74rem;
}

.footer-grid a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.63rem;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 1500;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(3, 16, 29, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -10px 30px rgba(0, 7, 20, 0.25);
  backdrop-filter: blur(16px);
}

.mobile-sticky-cta:has(.mobile-call[hidden]) {
  grid-template-columns: 1fr;
}

.mobile-sticky-cta a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 720;
}

.mobile-call {
  color: #d9e8f8;
  background: #0b2849;
  border: 1px solid rgba(105, 169, 247, 0.25);
}

.mobile-quote {
  color: var(--white);
  background: var(--blue-600);
}

.floating-whatsapp {
  position: fixed;
  z-index: 1450;
  right: 14px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #2bc66f, #168848);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(0, 12, 26, 0.38), 0 0 0 7px rgba(33, 176, 95, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 12, 26, 0.46), 0 0 0 8px rgba(33, 176, 95, 0.13);
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 82px;
  left: 18px;
  max-width: 440px;
  padding: 14px 16px;
  color: #eaf3fc;
  background: #102b49;
  border: 1px solid rgba(98, 172, 255, 0.34);
  border-radius: 11px;
  box-shadow: var(--shadow);
  font-size: 0.76rem;
}

/* Content remains visible by default. JavaScript adds .js only after the
   observer is ready, keeping reveal effects safely progressive. */
.js :is(.reveal, .reveal-up, .reveal-scale) {
  opacity: 0;
  transition:
    opacity 660ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 660ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js :is(.reveal, .reveal-up) {
  transform: translate3d(0, 20px, 0);
}

.js .reveal-scale {
  transform: scale(0.985);
}

.js :is(.reveal, .reveal-up, .reveal-scale).is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .warranty-badge--animated.reveal-scale {
  transform: scale(0.96);
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.js .warranty-badge--animated.reveal-scale.is-visible {
  transform: none;
}

.js .warranty-badge--animated.reveal-scale.is-visible::after {
  animation: warranty-ring-pulse 4.4s cubic-bezier(0.22, 1, 0.36, 1) 900ms infinite;
}

.js .warranty-badge--animated.reveal-scale.is-visible > span {
  animation: warranty-number-reveal 800ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

@keyframes warranty-ring-pulse {
  0% {
    opacity: 0;
    transform: scale(0.99);
  }

  8% {
    opacity: 0.38;
  }

  30%,
  100% {
    opacity: 0;
    transform: scale(1.055);
  }
}

@keyframes warranty-number-reveal {
  0% {
    transform: scale(0.96);
  }

  55%,
  100% {
    transform: none;
  }
}

.js .reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
  will-change: opacity, transform;
}

.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .reveal-stagger.is-visible > :nth-child(2) {
  transition-delay: 85ms;
}

.js .reveal-stagger.is-visible > :nth-child(3) {
  transition-delay: 170ms;
}

.js .reveal-stagger.is-visible > :nth-child(4) {
  transition-delay: 255ms;
}

.js .pricing-panels.reveal-stagger.is-visible > .pricing-panel:first-child {
  transition-delay: 140ms;
}

.js .pricing-panels.reveal-stagger.is-visible > .pricing-panel:nth-child(2) {
  transition-delay: 40ms;
}

.concern-card,
.benefit-card,
.offer-card,
.standard-installation,
.mini-card-grid > div,
.warranty-details p,
.process-list li,
.installation-principles > div,
.pricing-panel,
.quote-reassurance > div,
.form-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .js .reveal-stagger.is-visible > :hover {
    transform: translateY(-2px);
  }

  .js :is(.offer-card, .standard-installation, .form-card).reveal-up.is-visible:hover {
    transform: translateY(-2px);
  }

  .concern-card:hover,
  .process-list li:hover,
  .installation-principles > div:hover,
  .mini-card-grid > div:hover,
  .warranty-details p:hover,
  .quote-reassurance > div:hover {
    border-color: rgba(92, 168, 255, 0.34);
    box-shadow: 0 18px 42px rgba(0, 10, 27, 0.18);
  }

  .benefit-card:hover {
    border-color: rgba(20, 130, 255, 0.3);
    box-shadow: 0 20px 48px rgba(21, 48, 82, 0.12);
  }

  .trust-grid > div:hover .trust-icon,
  .concern-card:hover .card-icon,
  .benefit-card:hover .benefit-icon,
  .feature-points li:hover .point-icon,
  .mini-card-grid > div:hover > span,
  .installation-principles > div:hover .principle-icon {
    transform: translateY(-2px);
    border-color: rgba(75, 165, 255, 0.48);
    filter: drop-shadow(0 5px 9px rgba(20, 130, 255, 0.24));
  }

  .pricing-panel:hover,
  .offer-card:hover,
  .standard-installation:hover,
  .form-card:hover {
    border-color: rgba(92, 168, 255, 0.42);
    box-shadow: 0 30px 78px rgba(0, 10, 27, 0.38);
  }
}

/* Legal and thank-you pages */
.simple-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0, rgba(20, 130, 255, 0.11), transparent 28%),
    var(--navy-950);
}

.simple-header {
  border-bottom: 1px solid var(--line);
  background: rgba(3, 16, 29, 0.9);
}

.simple-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #b6c9dc;
  font-size: 0.78rem;
  font-weight: 660;
}

.legal-main {
  padding: 70px 0 100px;
}

.legal-hero {
  max-width: 790px;
  margin-bottom: 45px;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 9vw, 4rem);
}

.legal-content {
  max-width: 850px;
  padding: 28px 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.legal-content a,
.simple-footer a {
  overflow-wrap: anywhere;
}

.not-found-code {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-400);
  font-size: clamp(3.5rem, 18vw, 7rem);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.legal-content section {
  padding: 23px 0;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  color: var(--ink);
  font-size: 1.35rem;
}

.legal-content h3 {
  color: var(--ink);
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #556579;
  font-size: 0.87rem;
}

.legal-content strong {
  color: #26384d;
}

.legal-content a {
  color: var(--blue-600);
  text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content code {
  padding: 0.15em 0.38em;
  color: #234f7e;
  background: #edf5fd;
  border-radius: 5px;
  font-size: 0.8em;
  overflow-wrap: anywhere;
}

.legal-address {
  margin: 18px 0;
  padding: 16px 18px;
  color: #52657b;
  background: #f5f8fc;
  border-left: 3px solid var(--blue-500);
  border-radius: 0 10px 10px 0;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.65;
}

.legal-quote {
  margin: 20px 0;
  padding: 18px 20px;
  color: #32485f;
  background: #f3f7fc;
  border: 1px solid #dfe8f2;
  border-left: 4px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  font-size: 0.88rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  color: #4d6075;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #24364a;
  background: #eff5fb;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table :is(th, td):last-child {
  border-right: 0;
}

.legal-hero--warranty {
  max-width: 900px;
}

.thankyou-main {
  display: grid;
  min-height: calc(100vh - 78px);
  align-items: center;
  padding: 70px 0 100px;
}

.thankyou-card {
  max-width: 760px;
  margin-inline: auto;
  padding: 36px 24px;
  background: linear-gradient(145deg, rgba(13, 42, 74, 0.95), rgba(5, 20, 37, 0.98));
  border: 1px solid rgba(85, 160, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #24a875, #16815a);
  border: 8px solid rgba(113, 220, 172, 0.12);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
}

.thankyou-card h1 {
  font-size: clamp(2.35rem, 9vw, 4rem);
}

.thankyou-card > p {
  max-width: 590px;
  margin-inline: auto;
}

.thankyou-steps {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  text-align: left;
}

.thankyou-steps > div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.thankyou-steps strong {
  display: block;
  color: #e7f0fa;
  font-size: 0.84rem;
}

.thankyou-steps span {
  color: #91a5bb;
  font-size: 0.74rem;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.thankyou-qualifier {
  margin: 25px auto 0 !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.thankyou-card--unverified .success-mark {
  color: #f7d899;
  background: rgba(216, 170, 85, 0.12);
  border-color: rgba(216, 170, 85, 0.07);
}

.simple-footer {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  background: #020b14;
  border-top: 1px solid var(--line);
}

.simple-footer__grid {
  display: grid;
  gap: 24px;
}

.simple-footer strong {
  color: #e7f0fa;
  font-size: 0.8rem;
}

.simple-footer p,
.simple-footer address {
  margin: 4px 0 0;
  color: #74899f;
  font-size: 0.68rem;
  font-style: normal;
  line-height: 1.55;
}

.simple-footer nav,
.simple-footer__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.simple-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #93a8bd;
  font-size: 0.72rem;
}

.simple-footer a:hover,
.simple-footer a[aria-current="page"] {
  color: var(--blue-400);
}

@media (min-width: 600px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .section {
    padding: 100px 0;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .hero-actions .button {
    width: auto;
  }

  .trust-grid > div {
    padding: 20px 16px;
  }

  .trust-grid small {
    display: block;
  }

  .benefit-grid,
  .concern-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card {
    padding: 42px 38px 32px;
  }

  .offer-card__top {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .offer-price {
    justify-items: end;
  }

  .offer-inclusions .check-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }

  .warranty-details {
    grid-template-columns: 1fr 1fr;
  }

  .process-list,
  .installation-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-panels {
    grid-template-columns: 1fr 1fr;
  }

  .direct-contact > div {
    grid-template-columns: 1fr 1fr;
  }

  .form-card {
    padding: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }

  .form-status__actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .analytics-consent__actions {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
  }

  .field--wide,
  .consent-field {
    grid-column: 1 / -1;
  }

  .final-cta__inner {
    grid-template-columns: 1fr auto;
  }

  .final-cta__inner .button {
    max-width: 300px;
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .legal-content {
    padding: 48px;
  }

  .thankyou-card {
    padding: 55px;
  }

  .thankyou-steps {
    grid-template-columns: 1fr 1fr;
  }

  .thankyou-actions {
    flex-direction: row;
  }

  .simple-footer__grid {
    grid-template-columns: minmax(0, 1.5fr) 0.8fr 1fr;
    align-items: start;
  }
}

@media (min-width: 760px) {
  .analytics-consent {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 18px 20px;
  }

  .analytics-consent__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .analytics-consent__actions {
    min-width: 495px;
  }
}

@media (min-width: 900px) {
  :root {
    --anchor-offset: 91px;
  }

  .hero-media {
    background-image: url("assets/hero-security-home.webp");
  }

  @supports (content-visibility: auto) and selector(html:has(:target)) {
    main > .section {
      contain-intrinsic-size: auto 900px;
    }

    html:has(:target) main > .section {
      contain-intrinsic-size: none;
    }
  }

  body {
    padding-bottom: 0;
  }

  .announcement {
    font-size: 0.76rem;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand--header .brand-logo {
    width: 162px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    color: #a9bbce;
    font-size: 0.75rem;
    font-weight: 660;
    transition: color 180ms ease;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--blue-400);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
  }

  .desktop-nav a:hover {
    color: var(--white);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero,
  .hero-grid {
    min-height: 800px;
  }

  .hero-media {
    background-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 16, 29, 0.97) 2%, rgba(3, 16, 29, 0.85) 38%, rgba(3, 16, 29, 0.18) 73%),
      linear-gradient(180deg, rgba(3, 16, 29, 0.15), rgba(3, 16, 29, 0.62) 100%);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 55px;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 5.5vw, 5.15rem);
  }

  .hero-proof {
    display: block;
    align-self: end;
    margin-bottom: 10px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid > div {
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
  }

  .split-copy {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 80px;
  }

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

  .concern-card {
    min-height: 310px;
    padding: 35px;
  }

  .card-icon {
    margin-bottom: 82px;
  }

  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-card {
    min-height: 290px;
    padding: 30px;
  }

  .benefit-icon {
    margin-bottom: 75px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 30px;
  }

  .standard-installation {
    padding: 34px;
  }

  .feature-grid,
  .enhanced-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 80px;
  }

  .feature-section--reverse .feature-copy {
    order: 1;
  }

  .feature-section--reverse .feature-visual {
    order: 2;
  }

  .feature-copy h2,
  .enhanced-copy h2 {
    font-size: clamp(2.5rem, 3.7vw, 3.5rem);
  }

  .warranty-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 85px;
  }

  .warranty-badge {
    width: 330px;
  }

  .warranty-badge > span {
    font-size: 7rem;
  }

  .comparison-table table {
    width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 20px 24px;
    font-size: 0.86rem;
  }

  .process-list {
    gap: 18px;
  }

  .process-list li {
    min-height: 330px;
    padding: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1.45fr 0.55fr;
  }

  .installation-principles {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    height: auto;
    min-height: 0;
    object-position: 48% 48%;
  }

  .pricing-panels {
    max-width: 980px;
    margin-inline: auto;
  }

  .faq-grid {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
  }

  .faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .quote-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
    align-items: start;
    gap: 75px;
  }

  .quote-copy {
    position: sticky;
    top: 120px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: stretch;
    gap: 22px;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .contact-actions .button {
    width: auto;
    min-width: 142px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }

  .site-footer {
    padding-bottom: 50px;
  }

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

  .floating-whatsapp {
    right: 26px;
    bottom: 26px;
    display: flex;
    width: auto;
    padding: 0 18px;
    gap: 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 760;
  }

  .floating-whatsapp span {
    display: inline;
  }

  .toast {
    right: 28px;
    bottom: 28px;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(100% - 80px, var(--container));
  }

  .section {
    padding: 120px 0;
  }

  .offer-card {
    padding: 48px 48px 36px;
  }

  .pricing-panel__head {
    padding: 34px 32px;
  }

  .price-list li {
    padding-inline: 32px;
  }
}

@media (max-width: 899px) {
  html {
    scroll-padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .field {
    scroll-margin-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js :is(.reveal, .reveal-up, .reveal-scale),
  .js .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .announcement__pulse::after,
  .js .warranty-badge--animated.reveal-scale.is-visible::after,
  .js .warranty-badge--animated.reveal-scale.is-visible > span {
    animation: none !important;
  }

  .warranty-badge::after {
    opacity: 0 !important;
  }

  .button:hover,
  .button:hover > span[aria-hidden="true"],
  .floating-whatsapp:hover,
  .contact-channel:hover,
  .social-links a:hover {
    transform: none;
  }

  .trust-grid > div:hover .trust-icon,
  .concern-card:hover .card-icon,
  .benefit-card:hover .benefit-icon,
  .feature-points li:hover .point-icon,
  .mini-card-grid > div:hover > span,
  .installation-principles > div:hover .principle-icon {
    transform: none;
    filter: none;
  }

  .faq-list details[open] summary::after {
    transform: translateY(-50%);
  }
}
