:root {
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-2: #f0f5ff;
  --text: #0b1220;
  --muted: #52607a;
  --border: rgba(15, 23, 42, 0.12);
  --primary: #2f6bff;
  --primary-2: #4fd0ff;
  --focus: rgba(47, 107, 255, 0.55);
  --radius: 16px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --container: 1100px;
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-display: "Space Grotesk", Inter, system-ui, -apple-system, Segoe UI,
    Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

html {
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
}

pre,
code {
  overflow-wrap: anywhere;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  /* background: radial-gradient(
      1200px 800px at 10% 0%,
      rgba(47, 107, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 90% 10%,
      rgba(79, 208, 255, 0.12),
      transparent 55%
    ),
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.025) 0,
      rgba(15, 23, 42, 0.025) 1px,
      transparent 1px,
      transparent 92px
    ); */
  background: var(--bg);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: linear-gradient(
    to bottom,
    rgba(246, 248, 255, 0.9),
    rgba(246, 248, 255, 0.65)
  );
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(91, 140, 255, 0.95),
    rgba(120, 212, 255, 0.95)
  );
  color: #071025;
  box-shadow: 0 10px 25px rgba(91, 140, 255, 0.25);
}
.brand-text {
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(91, 140, 255, 0.95),
    rgba(120, 212, 255, 0.95)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-link[aria-current="page"],
.nav-link:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
}
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.btn-primary {
  border-color: rgba(91, 140, 255, 0.45);
  background: linear-gradient(
    135deg,
    rgba(47, 107, 255, 0.95),
    rgba(79, 208, 255, 0.85)
  );
  color: #071025;
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

main {
  min-height: 70vh;
}

.hero {
  padding: 54px 0 34px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02) brightness(0.98);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
      to bottom,
      rgba(246, 248, 255, 0.55),
      rgba(246, 248, 255, 0.82)
    ),
    radial-gradient(
      1200px 600px at 12% 18%,
      rgba(47, 107, 255, 0.08),
      transparent 62%
    );
}
.hero::before {
  content: "";
  position: absolute;
  inset: -220px -140px auto -140px;
  height: 320px;
  pointer-events: none;
  opacity: 0.85;
  z-index: -1;
  background: radial-gradient(
      700px 220px at 18% 65%,
      rgba(79, 208, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      560px 210px at 78% 45%,
      rgba(47, 107, 255, 0.14),
      transparent 62%
    ),
    linear-gradient(90deg, rgba(79, 208, 255, 0.18), rgba(47, 107, 255, 0.1));
  filter: blur(1px);
  transform: rotate(-6deg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 0;
}

.hero-visual {
  align-self: stretch;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    var(--surface-2)
  );
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-illustration {
  width: min(520px, 100%);
  height: auto;
  display: block;
  padding: 10px;
  opacity: 0.95;
  border-radius: calc(var(--radius) + 10px);
}

.kicker {
  display: inline-block;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.24px;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

h1 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 12px 0;
}
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0 0 10px;
}
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-size: 18px;
  margin: 0 0 8px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}
.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.hero-stats > div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.65);
}
.hero-stats dt {
  font-weight: 800;
}
.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    var(--surface-2)
  );
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 10px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 212, 255, 0.55),
    rgba(91, 140, 255, 0.35),
    transparent
  );
  opacity: 0.8;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  margin: 10px 0;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgba(91, 140, 255, 0.95),
    rgba(120, 212, 255, 0.95)
  );
}

.hint {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
}

.section {
  padding: 52px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head p {
  margin: 0;
}

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

.card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform 140ms ease, border-color 140ms ease,
    background 140ms ease;
}
.card-icon {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 10px;
  opacity: 0.95;
  color: var(--primary-2);
}
.card-icon svg {
  width: 100%;
  height: 100%;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}
.card p {
  margin: 0 0 8px;
}

/* Home: most requested services (checkerboard) */
.service-splits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  transition: transform 140ms ease, border-color 140ms ease,
    background 140ms ease;
}

.service-split:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.service-split-copy h3 {
  margin-top: 0;
}

.service-split-copy p {
  margin: 0 0 10px;
}

.service-split-media {
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
}

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

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

.service-split--reverse {
  grid-template-columns: 1fr;
}

/* About: image placeholders */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* About: auto slides (replaces 3-up grid) */
.auto-slider {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.auto-slider .media {
  position: absolute;
  inset: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.auto-slider .media.is-active {
  opacity: 1;
  pointer-events: auto;
}

.auto-slider .media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.12);
}

.auto-slider .media figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.media {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.media figcaption {
  margin-top: 10px;
}

.note-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.text-link {
  color: var(--primary-2);
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.note {
  border: 1px solid rgba(91, 140, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(91, 140, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: var(--radius);
  padding: 18px;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.steps li {
  margin: 10px 0;
}
.steps strong {
  color: var(--text);
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li {
  margin: 8px 0;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 44px 0 8px;
}

.mt-18 {
  margin-top: 18px;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.form-status {
  margin: 0;
  color: var(--muted);
}
.form-status.is-ok {
  color: #b9ffd1;
}
.form-status.is-bad {
  color: #ffb9b9;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 16px;
}
.contact-label {
  color: var(--muted);
  font-size: 13px;
}
.contact-value {
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 54px 0 34px;
  background: var(--text);
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 42px;
}

.site-footer .footer-brand {
  color: var(--surface);
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
}

.footer-logo .footer-brand {
  margin: 0;
}

.footer-title {
  margin: 0 0 14px;
  font-weight: 900;
  color: var(--surface);
}

.footer-text {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-list a:hover {
  color: var(--surface);
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 34px 0 18px;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-company {
  margin: 18px auto 0;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.footer-company p {
  margin: 6px 0;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.78);
}

.footer-disclaimer {
  margin: 26px auto 0;
  max-width: 1100px;
  text-align: left;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  font-size: 13px;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-divider {
    margin: 26px 0 16px;
  }
}

.footer-legal {
  flex: 1 1 520px;
  max-width: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 14px;
  overflow-wrap: anywhere;
}

.footer-legal-title {
  margin: 0 0 10px;
  font-weight: 900;
}

.footer-legal-list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.footer-legal-list li {
  margin: 8px 0;
}

.footer-legal-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
}

/* Scroll modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.35);
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.modal-overlay.is-open {
  opacity: 1;
  transform: translateY(0);
}

.modal-overlay.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.modal {
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(240, 245, 255, 0.88)
  );
  backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  isolation: isolate;
  max-height: calc(100vh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(120, 212, 255, 0.75),
    rgba(91, 140, 255, 0.65),
    rgba(120, 212, 255, 0.55)
  );
  filter: blur(0.2px);
  opacity: 0.85;
}

.modal::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      520px 220px at 18% 18%,
      rgba(120, 212, 255, 0.14),
      transparent 62%
    ),
    radial-gradient(
      520px 240px at 82% 22%,
      rgba(91, 140, 255, 0.12),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.92);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.9);
}

.modal-title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 18px;
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.modal-text {
  margin: 0;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.modal-discount {
  margin-top: 10px;
  font-weight: 900;
  color: #ff2a2a;
  text-shadow: 0 0 16px rgba(255, 42, 42, 0.35),
    0 0 28px rgba(255, 42, 42, 0.22);
  animation: discountBlink 0.85s ease-in-out infinite;
}

@keyframes discountBlink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.25;
    filter: brightness(1.25);
  }
}

.modal-illustration {
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin: 6px auto 10px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 14px 32px rgba(91, 140, 255, 0.18));
}

.modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.rate-stars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

.rate-star {
  line-height: 1;
  letter-spacing: 0.5px;
  padding-inline: 14px;
}

.btn-blink {
  position: relative;
  overflow: hidden;
  animation: btnShimmerGlow 1.25s ease-in-out infinite;
  box-shadow: 0 18px 46px rgba(91, 140, 255, 0.22),
    0 10px 24px rgba(120, 212, 255, 0.14);
}

.btn-blink::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -70%;
  width: 60%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(0.2px);
  transform: translateX(-120%) rotate(12deg);
  opacity: 0.9;
  animation: btnShimmerSweep 1.35s linear infinite;
  mix-blend-mode: screen;
}

@keyframes btnShimmerGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}

@keyframes btnShimmerSweep {
  0% {
    transform: translateX(-120%) rotate(12deg);
  }
  100% {
    transform: translateX(340%) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-blink {
    animation: none;
  }

  .btn-blink::before {
    animation: none;
    opacity: 0;
  }

  .modal-discount {
    animation: none;
  }
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner-inner {
  width: min(var(--container), 100%);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow);
}

.cookie-banner-text {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

.cookie-banner-text a {
  color: var(--primary-2);
  font-weight: 800;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    display: none;
  }
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  font-weight: 900;
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-splits {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-bg {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

  .service-split,
  .service-split--reverse {
    grid-template-columns: 1fr;
  }

  .service-split--reverse .service-split-copy,
  .service-split--reverse .service-split-media {
    order: initial;
  }

  .auto-slider .media {
    inset: 8px;
  }

  .auto-slider .media figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    padding: 8px 10px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px 16px;
    background: rgba(11, 18, 32, 0.92);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }
  .nav-link {
    width: 100%;
  }
  .nav-cta {
    width: 100%;
    margin: 6px 0 0;
  }
}
.text-description {
  color: var(--surface-2);
}
