:root {
  --ink-900: #0f3044;
  --ink-800: #173f56;
  --ink-700: #27556f;
  --ink-500: #4f6d7f;
  --lime-500: #57be2a;
  --lime-400: #78cf2d;
  --sun-500: #e2a916;
  --blue-500: #047bb9;
  --red-500: #e6264d;
  --paper: #f6f8fa;
  --paper-2: #edf3f7;
  --white: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-1: 0 16px 42px rgba(10, 32, 50, 0.12);
  --shadow-2: 0 8px 24px rgba(15, 48, 68, 0.16);
  --max: 1200px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f9fbfc 0%, #f2f8fb 100%);
  color: #17232f;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  min-width: 0;
  overflow-x: clip;
}

a {
  color: var(--blue-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--ink-900);
}

:focus-visible {
  outline: 3px solid rgba(87, 190, 42, 0.55);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  color: var(--ink-900);
  font-family: "Barlow", sans-serif;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1200;
  background: #fff;
  color: #000;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1250;
  height: var(--header-h);
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 250, 252, 0.86);
  border-bottom: 1px solid rgba(22, 51, 70, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 64px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  color: #274355;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(86, 191, 42, 0.14);
  color: #123;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(24, 58, 77, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #163a4d;
  border-radius: 2px;
  transition: transform 240ms ease;
}

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

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

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: min(88vh, 790px);
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 900ms ease, transform 5600ms ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(87, 190, 42, 0.28), transparent 45%),
    radial-gradient(circle at 86% 20%, rgba(4, 123, 185, 0.25), transparent 45%),
    linear-gradient(100deg, rgba(15, 48, 68, 0.72), rgba(15, 48, 68, 0.42));
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: auto -9% -40% -8%;
  height: 58%;
  background: linear-gradient(180deg, rgba(248, 252, 253, 0) 0%, #f8fcfd 65%);
  border-radius: 100% 100% 0 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  display: grid;
  gap: 1rem;
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(4.2rem, 10vh, 6.2rem);
}

.kicker {
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.95rem, 4.35vw, 3.6rem);
  max-width: 18.5ch;
  text-wrap: balance;
}

.hero p {
  max-width: 66ch;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

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

.btn {
  border: 0;
  padding: 0.85rem 1.18rem;
  border-radius: 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, #58be2c, #79d32d);
  color: #112;
  box-shadow: 0 12px 24px rgba(103, 207, 55, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #07120a;
  box-shadow: 0 16px 26px rgba(103, 207, 55, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.hero-badges li {
  font-size: 0.86rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.signal-bar {
  position: relative;
  margin-top: -1.7rem;
  z-index: 4;
}

.signal-grid {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  box-shadow: var(--shadow-1);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.signal-grid p {
  margin: 0;
  font-size: 0.96rem;
  color: #233847;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(34, 91, 121, 0.2);
}

.section {
  padding: clamp(3.7rem, 8vw, 6rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 0.55rem;
  max-width: 80ch;
}

.eyebrow {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--lime-500);
  font-size: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  text-wrap: balance;
}

.section-head > p {
  color: #304657;
}

.about {
  overflow: clip;
}

.about::before {
  content: "";
  position: absolute;
  right: -13vw;
  top: -6rem;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 40%, rgba(4, 123, 185, 0.1), transparent 55%),
    radial-gradient(circle at 32% 70%, rgba(87, 190, 42, 0.14), transparent 58%);
  pointer-events: none;
}

.about-layout {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.about-main,
.about-side {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 66, 89, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2vw, 2rem);
}

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

.about-main p {
  color: #203645;
}

.hand-note {
  font-family: "Caveat", cursive;
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  color: #56bc2b;
  line-height: 1.1;
}

.about-side {
  display: grid;
  align-content: start;
  gap: 0.92rem;
  background: linear-gradient(175deg, #0f3044, #1f4f6a);
  color: #edf5fb;
}

.about-side h3,
.about-side h4 {
  color: #fff;
}

.qrs-item {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.qrs-item h4 {
  margin-bottom: 0.32rem;
  font-size: 1.16rem;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 245, 249, 0.65) 100%);
  overflow: visible;
}

.services-scroll {
  margin-top: clamp(1.7rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: clamp(1.35rem, 3.2vw, 3rem);
  align-items: start;
}

.service-visual {
  position: sticky;
  top: calc(var(--header-h) + 1.15rem);
}

.service-visual-frame {
  position: relative;
  overflow: hidden;
  min-height: max(520px, calc(100vh - var(--header-h) - 2.3rem));
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 42px rgba(15, 48, 68, 0.14);
  background: #0f3044;
}

.service-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 520ms ease, transform 720ms ease;
}

.service-visual-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 42, 0) 42%, rgba(8, 30, 42, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 30, 42, 0.34), rgba(8, 30, 42, 0));
}

.service-visual-caption {
  position: absolute;
  left: clamp(1.1rem, 3vw, 1.7rem);
  right: clamp(1.1rem, 3vw, 1.7rem);
  bottom: clamp(1.1rem, 3vw, 1.7rem);
  color: #fff;
  display: grid;
  gap: 0.44rem;
}

.service-visual-count {
  width: max-content;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-visual-caption strong {
  max-width: 16ch;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.75rem, 3.1vw, 2.7rem);
  line-height: 1.02;
}

.service-steps {
  display: grid;
  gap: 1rem;
}

.service-step {
  min-height: clamp(320px, 44vh, 430px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 62, 84, 0.09);
  box-shadow: 0 10px 24px rgba(19, 53, 72, 0.06);
  position: relative;
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease, transform 260ms ease;
}

.service-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--lime-500), var(--blue-500));
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-step.is-active {
  background: #fff;
  border-color: rgba(87, 190, 42, 0.36);
  box-shadow: 0 18px 38px rgba(15, 48, 68, 0.13);
  transform: translateX(-6px);
}

.service-step.is-active::before {
  opacity: 1;
}

.service-step-media {
  display: none;
}

.service-step-number {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  background: rgba(15, 48, 68, 0.08);
  color: var(--ink-900);
  font-family: "Barlow", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.service-step.is-active .service-step-number {
  background: linear-gradient(135deg, var(--lime-500), var(--blue-500));
  color: #fff;
}

.service-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

.service-step p {
  color: #2a4254;
}

.incentive-layout {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.incentive-layout > div:first-child {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(30, 62, 84, 0.09);
  border-radius: 18px;
  padding: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.incentive-list {
  border-radius: 18px;
  padding: 1.2rem;
  color: #fff;
  background: linear-gradient(128deg, #1c485f, #0e2d40 48%, #266a2f 100%);
  box-shadow: var(--shadow-2);
  display: grid;
  gap: 0.75rem;
}

.incentive-list p {
  margin: 0;
  padding: 0.72rem 0.84rem;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.why-grid article {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(10, 30, 44, 0.08);
  border: 1px solid rgba(30, 61, 83, 0.1);
}

.why-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.74rem;
}

.faq-list details {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(33, 66, 89, 0.11);
  box-shadow: 0 8px 20px rgba(15, 48, 68, 0.08);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  color: #16394d;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(87, 190, 42, 0.14);
  color: var(--ink-900);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 240ms ease, background 240ms ease;
}

.faq-list details[open] summary::after {
  background: rgba(4, 123, 185, 0.14);
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 280ms ease, opacity 220ms ease;
}

.faq-list details[open] .faq-answer {
  height: auto;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.2rem 1.1rem;
  color: #243e51;
}

.contact-layout {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact-info {
  display: grid;
  gap: 0.78rem;
}

.contact-info article,
.contact-form {
  background: #fff;
  border: 1px solid rgba(31, 66, 89, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(14, 43, 61, 0.08);
}

.contact-info article {
  padding: 1.1rem;
}

.contact-info article h3 {
  margin-bottom: 0.25rem;
}

.contact-note {
  background: linear-gradient(135deg, #f0f7fb, #f8fff3);
  border: 1px solid rgba(81, 154, 47, 0.26);
  border-radius: 14px;
  padding: 0.9rem;
  color: #1c3645;
}

.contact-form {
  padding: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.field-row {
  display: grid;
  gap: 0.35rem;
}

.field-row label {
  font-weight: 700;
  color: #1f3f52;
  font-size: 0.95rem;
}

.field-row input,
.field-row textarea,
.field-row select {
  font: inherit;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c8d6df;
  padding: 0.74rem 0.82rem;
  background: #fcfefe;
  color: #122533;
}

.field-row input:focus,
.field-row textarea:focus,
.field-row select:focus {
  border-color: var(--lime-500);
  outline: 2px solid rgba(87, 190, 42, 0.22);
  outline-offset: 1px;
}

.field-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.9rem;
}

.check-row input {
  margin-top: 0.22rem;
}

.human-check {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.78rem;
  align-items: center;
  padding: 0.82rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #c8d6df;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  box-shadow: 0 8px 20px rgba(15, 48, 68, 0.07);
  cursor: pointer;
}

.human-check.is-verified {
  border-color: rgba(87, 190, 42, 0.5);
  background: linear-gradient(180deg, #f7fff2, #ffffff);
  box-shadow: 0 10px 24px rgba(87, 190, 42, 0.14);
  cursor: default;
}

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

.human-check-box {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 2px solid #8ca1af;
  background: #fff;
  display: inline-grid;
  place-items: center;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.human-check-box::after {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 180ms ease;
}

.human-check-input:checked + .human-check-box {
  border-color: var(--lime-500);
  background: linear-gradient(135deg, var(--lime-500), #2ea949);
  box-shadow: 0 0 0 4px rgba(87, 190, 42, 0.15);
}

.human-check-input:checked + .human-check-box::after {
  transform: rotate(-45deg) scale(1);
}

.human-check-input:focus-visible + .human-check-box {
  outline: 3px solid rgba(87, 190, 42, 0.45);
  outline-offset: 3px;
}

.human-check-copy {
  display: grid;
  gap: 0.05rem;
  color: #19394e;
}

.human-check-copy strong {
  font-size: 1rem;
  line-height: 1.2;
}

.human-check-copy small {
  color: #526d7f;
  font-size: 0.78rem;
}

.human-check.is-verified .human-check-copy small {
  color: #2c7a2f;
  font-weight: 700;
}

.human-check-badge {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  color: #496376;
  font-size: 0.68rem;
  font-weight: 800;
}

.human-check-badge span {
  width: 24px;
  height: 28px;
  border-radius: 9px 9px 11px 11px;
  background: linear-gradient(145deg, #1d8fca, #57be2a);
  position: relative;
}

.human-check-badge span::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: -6px;
  height: 12px;
  border: 3px solid #1d8fca;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.inline-policy-btn {
  justify-self: start;
  border: 0;
  padding: 0;
  background: none;
  color: var(--blue-500);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.inline-policy-btn:hover,
.inline-policy-btn:focus-visible {
  color: var(--ink-900);
}

.hidden-field {
  display: none;
}

.form-feedback {
  min-height: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.form-feedback.success {
  color: #1f7729;
}

.form-feedback.error {
  color: #a52535;
}

.site-footer {
  background: linear-gradient(165deg, #132f42, #0c2535);
  color: #dbe7ef;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.6fr;
  gap: 1.2rem;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: #ecf6ff;
}

.link-btn {
  display: block;
  background: none;
  color: #ecf6ff;
  border: 0;
  padding: 0;
  margin-bottom: 0.4rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1.4rem;
  padding: 0.8rem 0 1.3rem;
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 1rem;
  z-index: 1001;
  display: grid;
  gap: 0.52rem;
}

.floating-cta a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  box-shadow: 0 10px 24px rgba(5, 24, 35, 0.32);
}

.cta-call {
  background: linear-gradient(120deg, #1794d0, #066f9f);
}

.cta-whatsapp {
  background: linear-gradient(120deg, #3ac742, #2c9f30);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 1100;
  width: min(720px, calc(100% - 2rem));
  max-width: calc(100% - 2rem);
  background: #fff;
  border: 1px solid rgba(24, 58, 77, 0.14);
  box-shadow: var(--shadow-2);
  border-radius: 16px;
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

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

.cookie-banner p {
  margin: 0;
  color: #1d3848;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.cookie-banner .btn-ghost {
  background: #f4f8fb;
  color: #113347;
  border: 1px solid rgba(17, 51, 71, 0.25);
}

.cookie-banner .btn-ghost:hover,
.cookie-banner .btn-ghost:focus-visible {
  background: #e7f0f5;
  color: #102a3a;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(12, 31, 42, 0.72);
  display: none;
  place-items: center;
  padding: 1rem;
}

.modal:not([hidden]) {
  display: grid;
}

.modal-card {
  width: min(760px, 100%);
  background: #fff;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 18px 42px rgba(7, 22, 32, 0.4);
  max-height: 84vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.modal-card h2 {
  padding: 1.1rem 1.2rem 0.7rem;
  border-bottom: 1px solid rgba(26, 56, 76, 0.12);
}

.modal-scroll {
  overflow: auto;
  padding: 1rem 1.2rem 1.2rem;
  display: grid;
  gap: 0.68rem;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(30, 61, 83, 0.09);
  color: #193c51;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav a {
    padding-inline: 0.68rem;
    font-size: 0.86rem;
  }

  .services-scroll {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 1.4rem;
  }

  .service-step {
    min-height: clamp(300px, 42vh, 400px);
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 82px;
  }

  body {
    padding-top: var(--header-h);
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .brand img {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1202;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(22rem, calc(100% - 1.4rem));
    max-width: calc(100% - 1.4rem);
    min-height: 100vh;
    z-index: 1201;
    background: #fff;
    border-left: 1px solid rgba(24, 58, 77, 0.12);
    box-shadow: -24px 0 48px rgba(7, 26, 36, 0.24);
    padding: calc(var(--header-h) + 1.1rem) 1rem calc(1.2rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 280ms ease, visibility 280ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    border: 0;
    padding: 0;
    background: rgba(8, 25, 36, 0.56);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    font-size: 1rem;
    border-radius: 12px;
    padding: 0.86rem 0.9rem;
  }

  .hero {
    min-height: 78vh;
  }

  .signal-grid,
  .about-layout,
  .incentive-layout,
  .why-grid,
  .contact-layout,
  .footer-grid,
  .field-row.split {
    grid-template-columns: 1fr;
  }

  .services-scroll {
    grid-template-columns: 1fr;
  }

  .service-visual {
    display: none;
  }

  .service-steps {
    gap: 1.1rem;
  }

  .service-step {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: #fff;
    transform: none;
  }

  .service-step.is-active {
    transform: none;
  }

  .service-step::before {
    width: 100%;
    height: 4px;
    inset: 0 0 auto;
    opacity: 1;
  }

  .service-step-media {
    display: block;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dce8ee;
  }

  .service-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .service-step-number {
    margin: 1rem 1rem 0;
  }

  .service-step > div {
    padding: 0.85rem 1rem 1.1rem;
  }

  .hero-overlay {
    inset: auto -35% -52% -35%;
    height: 65%;
  }

  .floating-cta {
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
    bottom: 0.55rem;
    grid-template-columns: 1fr 1fr;
    width: auto;
    max-width: none;
  }

  .floating-cta a {
    min-width: 0;
    text-align: center;
    border-radius: 14px;
    padding-inline: 0.7rem;
  }

  .site-footer {
    padding-bottom: 5.9rem;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.2vw, 2.45rem);
  }

  .hero p {
    font-size: 0.97rem;
  }

  .cookie-banner {
    left: max(0.6rem, env(safe-area-inset-left));
    right: max(0.6rem, env(safe-area-inset-right));
    bottom: 4.3rem;
    width: auto;
    max-width: none;
  }

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

  .human-check-badge {
    grid-column: 1 / -1;
    justify-items: start;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .btn {
    padding-inline: 0.95rem;
  }
}

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

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