:root {
  --bg: #090b10;
  --bg-2: #11151e;
  --surface: #161e2a;
  --surface-2: #1b2433;
  --line: rgba(255, 255, 255, 0.16);
  --text: #ecf2fb;
  --muted: #9db0c8;
  --accent: #c58a2a;
  --accent-2: #f2d59a;
  --ok: #52d3ab;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 10%, rgba(235, 96, 36, 0.2), transparent 30%), radial-gradient(circle at 90% 20%, rgba(82, 211, 171, 0.16), transparent 30%), var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 100% - 2.6rem);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 100;
  color: #000;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 0.225rem;
}
.skip-link:focus {
  top: 1rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.8rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--section-eyebrow-text, var(--accent-2));
  background: var(--section-eyebrow-bg, rgba(255, 255, 255, 0.08));
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.36rem;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.65rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #181109;
  border-color: rgba(248, 227, 181, 0.6);
  background: linear-gradient(140deg, #fff1cf 0%, var(--accent-2) 35%, var(--accent) 72%, #9f6c1d 100%);
  box-shadow: 0 12px 30px rgba(175, 120, 28, 0.35), inset 0 1px 0 rgba(255, 249, 236, 0.72);
}
.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(175, 120, 28, 0.42), inset 0 1px 0 rgba(255, 249, 236, 0.82);
}

.btn-catch-bounce {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  --btn-catch-sweep: -140%;
  --btn-glitch-x: 0px;
  --btn-glitch-opacity: 0;
  will-change: transform, box-shadow;
}
.btn-catch-bounce::before, .btn-catch-bounce::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
}
.btn-catch-bounce::before {
  z-index: 0;
  mix-blend-mode: screen;
  background: linear-gradient(108deg, rgba(255, 242, 213, 0) calc(var(--btn-catch-sweep) - 26%), rgba(255, 252, 236, 0.98) calc(var(--btn-catch-sweep) - 12%), rgba(255, 219, 146, 0.68) calc(var(--btn-catch-sweep) - 3%), rgba(255, 242, 213, 0) calc(var(--btn-catch-sweep) + 12%));
}
.btn-catch-bounce::after {
  z-index: 1;
  opacity: var(--btn-glitch-opacity);
  mix-blend-mode: screen;
  transform: translateX(var(--btn-glitch-x));
  background: linear-gradient(90deg, rgba(255, 200, 114, 0.88), rgba(149, 225, 255, 0.62));
  clip-path: polygon(0 22%, 100% 10%, 100% 63%, 0 74%);
}

.btn-ghost {
  border-color: rgba(242, 213, 154, 0.5);
  color: #f3e3be;
  background: rgba(175, 120, 28, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 245, 222, 0.12);
}
.btn-ghost:hover {
  border-color: rgba(242, 213, 154, 0.72);
  background: rgba(175, 120, 28, 0.2);
}

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: background 0.25s ease;
}
.site-header.scrolled {
  background: linear-gradient(122deg, rgba(11, 13, 16, 0.58), rgba(19, 22, 26, 0.44));
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

.brand-gilded {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
  --gold-sweep: 8%;
  --glitter-shift: 0px;
  --glitch-x: 0px;
  --glitch-opacity: 0;
  --catch-opacity: 0;
  --catch-scale: 1;
  --catch-tilt: 0deg;
  --catch-glow: 9px;
}

.brand-logo-stage {
  position: relative;
  display: block;
  width: clamp(188px, 18vw, 280px);
  aspect-ratio: 1300/89;
  transform: translateZ(0) scale(var(--catch-scale)) rotate(var(--catch-tilt));
  transform-origin: center;
}

.brand-logo-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.07) contrast(1.05) saturate(1.03) drop-shadow(0 8px 28px rgba(0, 0, 0, 0.42));
}

.brand-logo-fx {
  display: none;
}

@supports (-webkit-mask-image: url("assets/logo.png")) or (mask-image: url("assets/logo.png")) {
  .brand-logo-fx {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    -webkit-mask-image: url("assets/logo.png");
    mask-image: url("assets/logo.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
  .brand-logo-bands {
    z-index: 3;
    opacity: 0.76;
    mix-blend-mode: screen;
    background: linear-gradient(108deg, rgba(255, 228, 164, 0) calc(var(--gold-sweep) - 28%), rgba(255, 246, 214, 0.94) calc(var(--gold-sweep) - 14%), rgba(248, 205, 120, 0.58) calc(var(--gold-sweep) - 5%), rgba(255, 228, 164, 0) calc(var(--gold-sweep) + 10%)), linear-gradient(90deg, rgba(239, 188, 86, 0.26), rgba(255, 239, 195, 0.06) 46%, rgba(232, 173, 63, 0.24));
  }
  .brand-logo-glitter {
    z-index: 4;
    opacity: 0.66;
    mix-blend-mode: color-dodge;
    background: radial-gradient(circle at 14% 34%, rgba(255, 252, 236, 0.94) 0 1px, rgba(255, 252, 236, 0) 2.2px), radial-gradient(circle at 42% 72%, rgba(255, 251, 236, 0.88) 0 1.15px, rgba(255, 251, 236, 0) 2.4px), radial-gradient(circle at 74% 28%, rgba(255, 247, 222, 0.92) 0 1px, rgba(255, 247, 222, 0) 2.1px), linear-gradient(100deg, rgba(255, 241, 206, 0) calc(var(--gold-sweep) - 22%), rgba(255, 247, 226, 0.86) calc(var(--gold-sweep) - 9%), rgba(255, 241, 206, 0) calc(var(--gold-sweep) + 12%));
    background-size: 240px 90px, 260px 90px, 220px 90px, 100% 100%;
    background-position: calc(var(--glitter-shift) * 1) 0, calc(var(--glitter-shift) * -0.8) 0, calc(var(--glitter-shift) * 0.6) 0, 0 0;
    background-repeat: repeat-x, repeat-x, repeat-x, no-repeat;
  }
  .brand-logo-glitch {
    z-index: 5;
    opacity: var(--glitch-opacity);
    mix-blend-mode: screen;
  }
  .brand-logo-catch {
    z-index: 6;
    opacity: var(--catch-opacity);
    mix-blend-mode: screen;
    background: radial-gradient(circle at 18% 52%, rgba(255, 252, 237, 0.92) 0 16%, rgba(255, 252, 237, 0) 54%), linear-gradient(102deg, rgba(255, 241, 207, 0) calc(var(--gold-sweep) - 18%), rgba(255, 250, 229, 0.96) calc(var(--gold-sweep) - 4%), rgba(255, 231, 177, 0.52) calc(var(--gold-sweep) + 4%), rgba(255, 241, 207, 0) calc(var(--gold-sweep) + 18%));
    filter: drop-shadow(0 0 var(--catch-glow) rgba(255, 224, 150, 0.78));
  }
  .brand-logo-glitch-warm {
    transform: translateX(var(--glitch-x));
    background: linear-gradient(90deg, rgba(255, 200, 110, 0.9), rgba(255, 241, 204, 0.42));
    clip-path: polygon(0 7%, 100% 0, 100% 31%, 0 39%);
  }
  .brand-logo-glitch-cool {
    transform: translateX(calc(var(--glitch-x) * -1));
    background: linear-gradient(90deg, rgba(128, 211, 255, 0.72), rgba(198, 240, 255, 0.28));
    clip-path: polygon(0 62%, 100% 54%, 100% 91%, 0 100%);
  }
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 0.25rem;
  padding: 0.42rem 0.62rem;
}
.site-nav a:hover, .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.pill-link {
  border: 1px solid rgba(242, 213, 154, 0.56);
  color: #f4e5c3 !important;
  background: linear-gradient(142deg, rgba(197, 138, 42, 0.2), rgba(242, 213, 154, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 245, 222, 0.2);
}
.pill-link:hover, .pill-link:focus-visible {
  background: linear-gradient(142deg, rgba(197, 138, 42, 0.34), rgba(242, 213, 154, 0.22));
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  border-radius: 0.275rem;
  min-height: 46px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 7vw, 6rem) 0 2.2rem;
}

.hero-video-stage {
  min-height: min(940px, 98vh);
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 30%, rgba(18, 21, 30, 0.1), rgba(7, 10, 14, 0.42) 70%), linear-gradient(180deg, rgba(6, 10, 14, 0.16), rgba(5, 8, 12, 0.48));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-overlay-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(7rem, 16vh, 11rem) 0 clamp(1.2rem, 4vh, 2.2rem);
  text-align: center;
}

.hero-copy-centered {
  max-width: 900px;
}
.hero-copy-centered h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(3rem, 7.8vw, 6.4rem);
  line-height: 0.92;
}
.hero-copy-centered h1 span {
  display: block;
}
.hero-copy-centered p {
  margin: 0 auto;
  max-width: 62ch;
  color: #deebf8;
  font-size: clamp(1.03rem, 1.55vw, 1.2rem);
}

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

.hero-actions-centered {
  justify-content: center;
}

.hero-rating {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e2edf8;
  font-weight: 600;
  font-size: 0.96rem;
}

.stars {
  letter-spacing: 0.14em;
  color: var(--accent-2);
}

.trust-bar {
  margin: 1rem auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}
.trust-bar p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: #f0e6d2;
  background: rgba(9, 12, 16, 0.52);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-video-variants {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.video-variant {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f2f7fc;
  background: rgba(8, 12, 17, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.38rem 0.8rem;
}
.video-variant.is-active {
  border-color: rgba(255, 192, 106, 0.9);
  color: #141414;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.video-variant:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-partners {
  margin-top: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: center;
  padding-top: 1.1rem;
}
.hero-partners span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.325rem;
  color: rgba(238, 245, 252, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(7, 11, 16, 0.36);
}

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(3.6rem, 8vw, 6.2rem) 0;
  --section-bg-1: rgba(21, 25, 31, 0.9);
  --section-bg-2: rgba(11, 14, 19, 0.94);
  --section-glow-a: rgba(255, 255, 255, 0.07);
  --section-glow-b: rgba(244, 213, 157, 0.05);
  --section-top-line: rgba(255, 255, 255, 0.11);
  --section-bottom-line: rgba(255, 255, 255, 0.06);
  --section-text: var(--text);
  --section-muted: var(--muted);
  --section-copy: #cfd6df;
  --section-link: var(--text);
  --section-card-line: rgba(255, 255, 255, 0.16);
  --section-card-bg-1: rgba(28, 33, 40, 0.9);
  --section-card-bg-2: rgba(14, 18, 24, 0.93);
  --section-card-hover-1: rgba(34, 40, 48, 0.94);
  --section-card-hover-2: rgba(16, 21, 27, 0.95);
  --section-card-glow: rgba(255, 255, 255, 0.14);
  --section-eyebrow-text: var(--accent-2);
  --section-eyebrow-bg: rgba(255, 255, 255, 0.08);
  --section-table-line: rgba(255, 255, 255, 0.12);
  --section-input-bg: rgba(14, 18, 24, 0.84);
  --section-input-text: #ffffff;
  --section-input-border: rgba(255, 255, 255, 0.16);
  --section-fieldset-bg: linear-gradient(165deg, rgba(24, 29, 36, 0.78), rgba(13, 17, 24, 0.82));
  --section-detail-bg: rgba(9, 12, 18, 0.5);
  --section-detail-border: rgba(255, 255, 255, 0.18);
  --section-detail-marker: #ffffff;
  border-top: 1px solid var(--section-top-line);
  border-bottom: 1px solid var(--section-bottom-line);
  background-image: radial-gradient(circle at 14% 6%, var(--section-glow-a), transparent 38%), radial-gradient(circle at 84% 88%, var(--section-glow-b), transparent 42%), repeating-linear-gradient(132deg, rgba(255, 255, 255, 0.01) 0 2px, rgba(255, 255, 255, 0) 2px 20px), linear-gradient(165deg, var(--section-bg-1), var(--section-bg-2));
  color: var(--section-text);
}
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(0, 0, 0, 0.18));
  mix-blend-mode: soft-light;
}
.section > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  --section-top-line: rgba(255, 255, 255, 0.16);
  --section-bottom-line: rgba(255, 255, 255, 0.09);
}

.section.section--dark {
  --section-bg-1: rgba(21, 25, 31, 0.9);
  --section-bg-2: rgba(11, 14, 19, 0.94);
  --section-glow-a: rgba(255, 255, 255, 0.07);
  --section-glow-b: rgba(244, 213, 157, 0.05);
  --section-top-line: rgba(255, 255, 255, 0.11);
  --section-bottom-line: rgba(255, 255, 255, 0.06);
  --section-text: var(--text);
  --section-muted: var(--muted);
  --section-copy: #cfd6df;
  --section-link: var(--text);
  --section-card-line: rgba(255, 255, 255, 0.16);
  --section-card-bg-1: rgba(28, 33, 40, 0.9);
  --section-card-bg-2: rgba(14, 18, 24, 0.93);
  --section-card-hover-1: rgba(34, 40, 48, 0.94);
  --section-card-hover-2: rgba(16, 21, 27, 0.95);
  --section-card-glow: rgba(255, 255, 255, 0.14);
  --section-eyebrow-text: var(--accent-2);
  --section-eyebrow-bg: rgba(255, 255, 255, 0.08);
  --section-table-line: rgba(255, 255, 255, 0.12);
  --section-input-bg: rgba(14, 18, 24, 0.84);
  --section-input-text: #ffffff;
  --section-input-border: rgba(255, 255, 255, 0.16);
  --section-fieldset-bg: linear-gradient(165deg, rgba(24, 29, 36, 0.78), rgba(13, 17, 24, 0.82));
  --section-detail-bg: rgba(9, 12, 18, 0.5);
  --section-detail-border: rgba(255, 255, 255, 0.18);
  --section-detail-marker: #ffffff;
}

.section.section--light,
.section.section-invert {
  --section-bg-1: rgba(245, 240, 231, 0.97);
  --section-bg-2: rgba(232, 226, 215, 0.98);
  --section-glow-a: rgba(255, 255, 255, 0.56);
  --section-glow-b: rgba(194, 163, 108, 0.12);
  --section-top-line: rgba(26, 32, 41, 0.14);
  --section-bottom-line: rgba(26, 32, 41, 0.08);
  --section-text: #1d2530;
  --section-muted: #4d5967;
  --section-copy: #42505f;
  --section-link: #1f2734;
  --section-card-line: rgba(23, 31, 42, 0.14);
  --section-card-bg-1: rgba(255, 255, 255, 0.88);
  --section-card-bg-2: rgba(244, 240, 232, 0.94);
  --section-card-hover-1: rgba(255, 255, 255, 0.98);
  --section-card-hover-2: rgba(238, 232, 223, 0.98);
  --section-card-glow: rgba(214, 173, 104, 0.16);
  --section-eyebrow-text: #6f4f16;
  --section-eyebrow-bg: rgba(23, 31, 42, 0.07);
  --section-table-line: rgba(23, 31, 42, 0.14);
  --section-input-bg: rgba(255, 255, 255, 0.92);
  --section-input-text: #1b2531;
  --section-input-border: rgba(23, 31, 42, 0.2);
  --section-fieldset-bg: linear-gradient(165deg, rgba(252, 250, 246, 0.94), rgba(238, 232, 222, 0.95));
  --section-detail-bg: rgba(255, 255, 255, 0.78);
  --section-detail-border: rgba(23, 31, 42, 0.16);
  --section-detail-marker: #223040;
}
.section.section--light::after,
.section.section-invert::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 26%, rgba(0, 0, 0, 0.08));
}
.section.section--light .btn-ghost,
.section.section-invert .btn-ghost {
  color: var(--section-text);
  border-color: var(--section-input-border);
  background: rgba(23, 31, 42, 0.05);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
}

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

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

.service-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--section-card-line);
  border-radius: 0.5rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  padding: 1.1rem;
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.4s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(140deg, rgba(255, 241, 202, 0.24) 0%, rgba(233, 196, 124, 0.22) 36%, rgba(175, 120, 28, 0.18) 72%, rgba(140, 95, 28, 0.14) 100%);
  transition: opacity 0.38s ease;
}
.service-card.is-active,
.service-card:focus-visible {
  border-color: rgba(242, 213, 154, 0.74);
  background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
  box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
}
.service-card.is-active::before,
.service-card:focus-visible::before {
  opacity: 1;
}
.service-card.is-active p:not(.service-id),
.service-card:focus-visible p:not(.service-id) {
  color: rgba(243, 233, 210, 0.94);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(242, 213, 154, 0.74);
    background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
    box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
  }
  .service-card:hover::before {
    opacity: 1;
  }
  .service-card:hover p:not(.service-id) {
    color: rgba(243, 233, 210, 0.94);
  }
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  transition: color 0.32s ease;
}
.service-card p {
  margin: 0;
  color: var(--section-muted);
  transition: color 0.32s ease;
}

.service-id {
  margin: 0 0 0.35rem;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.timeline-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
  align-items: start;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.34);
}
.timeline li {
  margin: 0 0 1rem;
  padding-left: 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
}
.timeline span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #171717;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.timeline h3 {
  margin-bottom: 0.28rem;
  font-size: 1.06rem;
}
.timeline p {
  margin: 0;
  color: var(--section-muted);
}

.partner-logo-swiper {
  margin-top: 0.15rem;
  padding: 0.2rem 0 0.4rem;
}
.partner-logo-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}
.partner-logo-swiper.is-swiper-ready .swiper-wrapper {
  display: flex;
  gap: 0;
  transition-timing-function: linear;
}
.partner-logo-swiper .swiper-slide {
  height: auto;
}

.partner-logo-tile {
  min-height: 78px;
  border: 1px solid var(--section-card-line);
  border-radius: 0.44rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.75rem 0.8rem;
  color: rgba(226, 234, 243, 0.86);
  filter: grayscale(0.28);
}
.partner-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.34rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(247, 231, 193, 0.94);
}
.partner-logo-name {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-growth-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin: 0 0 1rem;
}
.review-growth-kpi {
  border: 1px solid var(--section-card-line);
  border-radius: 0.45rem;
  padding: 0.75rem 0.82rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
}
.review-growth-value {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: clamp(1.55rem, 3.1vw, 2.2rem);
}
.review-growth-label {
  margin: 0.3rem 0 0;
  color: var(--section-copy);
  font-size: 0.84rem;
  line-height: 1.4;
}

.testimonial-swiper {
  padding-bottom: 0.3rem;
}
.testimonial-swiper .swiper-wrapper {
  display: grid;
  gap: 0.8rem;
}
.testimonial-swiper.is-swiper-ready .swiper-wrapper {
  display: flex;
  gap: 0;
}
.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  border: 1px solid var(--section-card-line);
  border-radius: 0.52rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  padding: 1.05rem;
  min-height: 100%;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.76rem;
}
.testimonial-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(23, 31, 42, 0.14);
  background: rgba(255, 255, 255, 0.82);
  object-fit: cover;
  flex: 0 0 auto;
}
.testimonial-person h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}
.testimonial-role {
  margin: 0.12rem 0 0;
  color: var(--section-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.testimonial-rating {
  margin: 0.75rem 0 0;
  letter-spacing: 0.14em;
  color: #9d6f2b;
  font-size: 0.85rem;
  font-weight: 700;
}
.testimonial-quote {
  margin: 0.48rem 0 0;
  color: var(--section-copy);
  font-size: 1.01rem;
  line-height: 1.55;
}

.testimonial-controls {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.58rem;
}

.testimonial-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--section-input-border);
  background: var(--section-input-bg);
  color: var(--section-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  border-color: rgba(197, 138, 42, 0.62);
  background: rgba(197, 138, 42, 0.12);
}

.testimonial-pagination {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 39, 52, 0.28);
  opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #ad7825;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.2rem;
}

.showcase-copy p {
  color: var(--section-muted);
  margin: 0;
  max-width: 55ch;
}

.compare-card {
  border: 1px solid var(--section-card-line);
  border-radius: 0.5rem;
  padding: 1rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
}
.compare-card label {
  margin-top: 0.75rem;
  display: inline-block;
  font-size: 0.86rem;
  color: var(--section-muted);
}
.compare-card input[type=range] {
  width: 100%;
  margin-top: 0.55rem;
  accent-color: #1b80ff;
  cursor: ew-resize;
}

.compare-stage {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0.425rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050b14;
  --compare-position: 50%;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare-image-before {
  filter: saturate(1.05) contrast(1.03);
}

.compare-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}
.compare-overlay .compare-image {
  filter: saturate(1.08) contrast(1.06);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position, 50%);
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(27, 128, 255, 0.9), rgba(255, 255, 255, 0.7));
  box-shadow: 0 0 14px rgba(27, 128, 255, 0.45);
  z-index: 3;
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(7, 11, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}
.compare-handle::before, .compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.14rem;
  height: 0.8rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}
.compare-handle::before {
  left: 0.8rem;
}
.compare-handle::after {
  right: 0.8rem;
}

.compare-label {
  position: absolute;
  top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.24rem 0.52rem;
  border-radius: 999px;
  background: rgba(7, 11, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.compare-before {
  left: 0.7rem;
}

.compare-after {
  right: 0.7rem;
}

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

.package-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--section-card-line);
  border-radius: 0.5rem;
  padding: 1.15rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  display: flex;
  flex-direction: column;
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.4s ease;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(140deg, rgba(255, 241, 202, 0.24) 0%, rgba(233, 196, 124, 0.22) 36%, rgba(175, 120, 28, 0.18) 72%, rgba(140, 95, 28, 0.14) 100%);
  transition: opacity 0.38s ease;
}
.package-card.featured {
  border-color: rgba(255, 192, 106, 0.7);
  background: linear-gradient(160deg, rgba(255, 192, 106, 0.12), rgba(255, 255, 255, 0.03));
}
.package-card.is-active,
.package-card:focus-visible {
  border-color: rgba(242, 213, 154, 0.74);
  background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
  box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
}
.package-card.is-active::before,
.package-card:focus-visible::before {
  opacity: 1;
}
.package-card.is-active h3,
.package-card:focus-visible h3 {
  color: #f8f0dd;
}
.package-card.is-active p:not(.package-name),
.package-card:focus-visible p:not(.package-name),
.package-card.is-active li,
.package-card:focus-visible li {
  color: rgba(243, 233, 210, 0.94);
}
@media (hover: hover) and (pointer: fine) {
  .package-card:hover {
    border-color: rgba(242, 213, 154, 0.74);
    background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
    box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
  }
  .package-card:hover::before {
    opacity: 1;
  }
  .package-card:hover h3 {
    color: #f8f0dd;
  }
  .package-card:hover p:not(.package-name),
  .package-card:hover li {
    color: rgba(243, 233, 210, 0.94);
  }
}
.package-card h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.9rem;
  transition: color 0.32s ease;
}
.package-card ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}
.package-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--section-muted);
  transition: color 0.32s ease;
}
.package-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}
.package-card .btn {
  margin-top: auto;
}

.package-name {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}

.faq-intro {
  margin-bottom: 1rem;
}

.faq-toolbar {
  margin-bottom: 1rem;
  display: grid;
  gap: 0.8rem;
}

.faq-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.faq-category-btn {
  border: 1px solid var(--section-card-line);
  border-radius: 999px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  color: var(--section-copy);
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-category-btn:hover, .faq-category-btn:focus-visible {
  border-color: rgba(242, 213, 154, 0.55);
  color: var(--section-text);
}
.faq-category-btn.is-active {
  border-color: rgba(242, 213, 154, 0.75);
  color: #11161f;
  background: linear-gradient(142deg, rgba(255, 241, 202, 0.95), rgba(233, 196, 124, 0.9));
}

.faq-search-shell {
  display: grid;
  gap: 0.35rem;
  max-width: 460px;
}
.faq-search-shell span {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--section-muted);
}

.faq-search-input {
  width: 100%;
  border: 1px solid var(--section-input-border);
  border-radius: 0.4rem;
  background: var(--section-input-bg);
  color: var(--section-input-text);
  min-height: 46px;
  padding: 0.6rem 0.75rem;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}
.faq-list details {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--section-card-line);
  border-radius: 0.4rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  padding: 0.85rem 1rem;
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.4s ease;
}
.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(140deg, rgba(255, 241, 202, 0.24) 0%, rgba(233, 196, 124, 0.22) 36%, rgba(175, 120, 28, 0.18) 72%, rgba(140, 95, 28, 0.14) 100%);
  transition: opacity 0.38s ease;
}
.faq-list details[open], .faq-list details.is-active, .faq-list details:focus-within {
  border-color: rgba(242, 213, 154, 0.74);
  background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
  box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
}
.faq-list details[open]::before, .faq-list details.is-active::before, .faq-list details:focus-within::before {
  opacity: 1;
}
.faq-list details[open] summary,
.faq-list details.is-active summary,
.faq-list details:focus-within summary {
  color: #f8f0dd;
}
.faq-list details[open] p,
.faq-list details.is-active p,
.faq-list details:focus-within p {
  color: rgba(243, 233, 210, 0.94);
}
@media (hover: hover) and (pointer: fine) {
  .faq-list details:hover {
    border-color: rgba(242, 213, 154, 0.74);
    background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
    box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
  }
  .faq-list details:hover::before {
    opacity: 1;
  }
  .faq-list details:hover summary {
    color: #f8f0dd;
  }
  .faq-list details:hover p {
    color: rgba(243, 233, 210, 0.94);
  }
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 1.4rem;
  transition: color 0.3s ease;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0.06rem;
  color: var(--accent-2);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(90deg);
}
.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--section-muted);
  transition: color 0.3s ease;
}

.faq-item-top {
  border-color: var(--section-card-line) !important;
}

.faq-empty {
  margin: 0.85rem 0 0;
  color: var(--section-copy);
}
.faq-empty a {
  color: var(--section-link);
  font-weight: 700;
}

.faq-more-row {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

.faq-more-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(242, 213, 154, 0.56);
  background: linear-gradient(142deg, rgba(197, 138, 42, 0.2), rgba(242, 213, 154, 0.14));
  color: #f4e5c3;
  font-weight: 700;
  padding: 0.55rem 1rem;
  cursor: pointer;
}
.faq-more-btn:hover, .faq-more-btn:focus-visible {
  border-color: rgba(242, 213, 154, 0.82);
  background: linear-gradient(142deg, rgba(197, 138, 42, 0.32), rgba(242, 213, 154, 0.2));
}

.faq-followup {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--section-copy);
}
.faq-followup a {
  color: var(--section-link);
  font-weight: 700;
}

.cta-section {
  border-top: 0;
}

.cta-grid {
  border: 1px solid var(--section-card-line);
  border-radius: 0.6rem;
  background: linear-gradient(165deg, var(--section-card-hover-1), var(--section-card-hover-2));
  padding: 1.2rem;
  display: grid;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}
.cta-grid h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
}
.cta-grid p {
  margin: 0;
  color: var(--section-muted);
}

.contact-inline {
  margin-top: 0.8rem !important;
}
.contact-inline a {
  color: var(--section-link);
  font-weight: 700;
}

.cta-form-stack {
  display: grid;
  gap: 0.95rem;
  width: min(100%, 720px);
  justify-self: end;
}

.lead-wizard {
  border: 1px solid var(--section-card-line);
  border-radius: 0.54rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.56), rgba(245, 240, 231, 0.74));
  padding: 0.9rem;
  display: grid;
  gap: 0.88rem;
}

.wizard-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.15rem 0.2rem 0;
}

.wizard-steps::before {
  content: "";
  position: absolute;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  top: 1.26rem;
  border-top: 2px dashed rgba(186, 165, 132, 0.7);
  pointer-events: none;
}

.wizard-step {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--section-copy);
  min-height: 70px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.36rem;
  cursor: pointer;
  padding: 0;
}

.wizard-step.is-active {
  color: #3f2913;
}

.wizard-step.is-done {
  color: #385024;
}

.wizard-step-index {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(178, 152, 114, 0.85);
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(96, 77, 48, 0.12);
}

.wizard-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wizard-step.is-active .wizard-step-index {
  border-color: rgba(183, 127, 35, 0.86);
  background: linear-gradient(145deg, rgba(242, 213, 154, 0.9), rgba(233, 196, 124, 0.96));
  color: #3f2913;
}

.wizard-step.is-done .wizard-step-index {
  border-color: rgba(109, 149, 97, 0.86);
  background: linear-gradient(145deg, rgba(220, 243, 210, 0.96), rgba(185, 221, 174, 0.95));
  color: #2f5a2a;
}

.wizard-panel {
  border: 1px solid rgba(194, 178, 156, 0.55);
  border-radius: 0.44rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.52), rgba(247, 243, 234, 0.88));
  padding: 0.86rem;
  display: grid;
  gap: 0.72rem;
}

.wizard-panel[hidden] {
  display: none !important;
}

.wizard-panel label,
.wizard-panel legend {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--section-text);
}

.wizard-panel select,
.wizard-panel input[type=text],
.wizard-panel input[type=email],
.wizard-panel input[type=tel] {
  width: 100%;
  border: 1px solid var(--section-input-border);
  border-radius: 0.31rem;
  background: var(--section-input-bg);
  color: var(--section-input-text);
  min-height: 46px;
  padding: 0.65rem 0.8rem;
}

.wizard-panel fieldset {
  border: 1px solid var(--section-input-border);
  border-radius: 0.375rem;
  background: var(--section-fieldset-bg);
  padding: 0.7rem 0.8rem;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.wizard-panel fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--section-muted);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.wizard-actions--split {
  justify-content: space-between;
}

.wizard-quick-hint {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #6b5533;
}

.btn.btn-ghost {
  border: 1px solid rgba(184, 162, 128, 0.75);
  background: linear-gradient(142deg, rgba(255, 255, 255, 0.8), rgba(243, 234, 216, 0.75));
  color: #4f3920;
}

.btn.btn-ghost:hover,
.btn.btn-ghost:focus-visible {
  border-color: rgba(184, 137, 56, 0.82);
  background: linear-gradient(142deg, rgba(255, 255, 255, 0.94), rgba(247, 237, 218, 0.9));
}

.wizard-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a5a2d;
}

.estimate {
  margin: 0;
  color: var(--section-copy);
  min-height: 1.5em;
}

.estimate--card {
  border: 1px solid rgba(191, 138, 52, 0.32);
  border-radius: 0.4rem;
  background: rgba(255, 250, 240, 0.92);
  padding: 0.75rem 0.78rem;
  font-size: 1.02rem;
  line-height: 1.45;
}

.wizard-summary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.wizard-summary li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px dashed rgba(188, 170, 144, 0.44);
  padding-bottom: 0.32rem;
}

.wizard-summary li span {
  color: var(--section-muted);
  font-size: 0.86rem;
}

.wizard-summary li strong {
  color: var(--section-text);
  font-size: 0.92rem;
}

.lead-customer-type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.lead-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid var(--section-input-border);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--section-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.lead-radio input[type=radio] {
  margin: 0;
}

.lead-form-head h3 {
  margin: 0;
  font-size: 1.14rem;
}

.lead-form-head p {
  margin-top: 0.22rem;
  color: var(--section-copy);
  font-size: 0.92rem;
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.lead-field {
  display: grid;
  gap: 0.32rem;
}

.lead-field-company {
  grid-column: 1 / -1;
}

.lead-field-company.is-required label::after {
  content: " *";
  color: #8a1f1f;
}

.lead-field label,
.lead-consent {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--section-text);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
  font-weight: 500;
}

.lead-consent input[type=checkbox] {
  margin-top: 0.18rem;
}

.lead-consent a {
  color: var(--section-link);
  font-weight: 700;
}

.lead-errors {
  margin: 0;
  border: 1px solid rgba(151, 42, 42, 0.28);
  border-radius: 0.35rem;
  background: rgba(183, 57, 57, 0.1);
  color: #7f2020;
  padding: 0.58rem 0.65rem;
  font-size: 0.9rem;
}

.lead-errors p {
  margin: 0 0 0.25rem;
  color: inherit;
  font-size: 0.88rem;
}

.lead-errors ul {
  margin: 0;
  padding-left: 1rem;
}

.lead-errors li {
  margin: 0.14rem 0;
}

.field-error {
  margin: 0;
  color: #9e1e1e;
  font-size: 0.82rem;
}

.lead-submit-status {
  margin: 0;
  font-size: 0.86rem;
  color: var(--section-copy);
}

.lead-submit-status.is-loading {
  color: #6c5120;
}

.lead-submit-status.is-success {
  color: #1d6f43;
}

.lead-submit-status.is-error {
  color: #8a1f1f;
}

.lead-wizard.is-submitting #leadSubmitButton {
  opacity: 0.72;
  cursor: wait;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.section-intro {
  margin: -0.3rem 0 1.15rem;
  max-width: 74ch;
  color: var(--section-copy);
  font-size: 1.02rem;
}

.catalog-grid,
.matrix-grid,
.quality-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.catalog-card,
.matrix-card {
  border: 1px solid var(--section-card-line);
  border-radius: 0.5rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  padding: 1rem;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}
.catalog-card:hover,
.catalog-card:focus-within,
.matrix-card:hover,
.matrix-card:focus-within {
  border-color: rgba(242, 213, 154, 0.82);
  background: linear-gradient(165deg, rgba(242, 213, 154, 0.12), var(--section-card-bg-1) 34%, var(--section-card-bg-2));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(242, 213, 154, 0.18), 0 0 26px rgba(242, 213, 154, 0.2);
  transform: translateY(-2px);
}
.catalog-card h3,
.matrix-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  transition: color 0.24s ease;
}
.catalog-card p,
.matrix-card p {
  margin: 0;
  color: var(--section-muted);
}
.catalog-card:hover h3,
.catalog-card:focus-within h3,
.matrix-card:hover h3,
.matrix-card:focus-within h3 {
  color: var(--section-text);
}

.matrix-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.55rem;
}

.matrix-card th,
.matrix-card td {
  text-align: left;
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid var(--section-table-line);
  font-size: 0.94rem;
}

.matrix-card th {
  color: var(--section-text);
  font-weight: 700;
}

.matrix-card td {
  color: var(--section-copy);
}

.matrix-note {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--section-copy);
}

.detail-toggle {
  margin-top: 0.62rem;
  border: 1px solid var(--section-detail-border);
  border-radius: 0.38rem;
  padding: 0.5rem 0.62rem;
  background: var(--section-detail-bg);
}
.detail-toggle summary {
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  list-style: none;
}
.section.section--light .detail-toggle summary,
.section.section-invert .detail-toggle summary {
  color: var(--section-link);
}
.detail-toggle summary::-webkit-details-marker {
  display: none;
}
.detail-toggle summary::before {
  content: "+ ";
  color: var(--section-detail-marker);
}
.detail-toggle[open] summary::before {
  content: "- ";
}
.detail-toggle ul,
.detail-toggle table {
  margin-top: 0.5rem;
}

.branch-blog-heading p {
  margin: 0.8rem 0 0;
  color: var(--section-copy);
  max-width: 70ch;
}

.branch-tabs-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.branch-tab-list {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding-right: 0.8rem;
  border-right: 1px solid var(--section-table-line);
}

.branch-tab-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 0;
  opacity: 0;
  border-radius: 0.42rem;
  border: 1px solid rgba(246, 218, 153, 0.58);
  background: linear-gradient(160deg, rgba(246, 218, 153, 0.18), rgba(150, 104, 32, 0.09));
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.42s ease, height 0.42s ease, opacity 0.3s ease;
  pointer-events: none;
  will-change: transform, width, height, opacity;
}
.branch-tab-glow.is-visible {
  opacity: 1;
}

.branch-tab {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  display: grid;
  gap: 0.22rem;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 0.42rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  color: var(--section-text);
  padding: 0.75rem 0.75rem 0.75rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.4s ease;
}
.branch-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(140deg, rgba(255, 241, 202, 0.24) 0%, rgba(233, 196, 124, 0.22) 36%, rgba(175, 120, 28, 0.18) 72%, rgba(140, 95, 28, 0.14) 100%);
  transition: opacity 0.38s ease;
}
.branch-tab:hover, .branch-tab:focus-visible, .branch-tab.is-active {
  border-color: rgba(242, 213, 154, 0.74);
  background: linear-gradient(165deg, rgba(39, 33, 22, 0.94), rgba(22, 19, 14, 0.96));
  box-shadow: 0 14px 30px rgba(170, 115, 24, 0.24), inset 0 1px 0 rgba(255, 249, 236, 0.22);
}
.branch-tab:hover::before, .branch-tab:focus-visible::before, .branch-tab.is-active::before {
  opacity: 1;
}
.branch-tab:hover .branch-tab-subtitle,
.branch-tab:focus-visible .branch-tab-subtitle,
.branch-tab.is-active .branch-tab-subtitle {
  color: rgba(243, 233, 210, 0.9);
}

.branch-tab-index {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-2);
}

.branch-tab-title {
  font-weight: 700;
  font-size: 1rem;
}

.branch-tab-subtitle {
  font-size: 0.85rem;
  color: var(--section-muted);
  transition: color 0.32s ease;
}

.branch-panel {
  border: 1px solid var(--section-card-line);
  border-radius: 0.5rem;
  background: linear-gradient(165deg, var(--section-card-bg-1), var(--section-card-bg-2));
  padding: 1rem;
  min-height: 100%;
}

.branch-panel-kicker {
  margin: 0 0 0.45rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.branch-panel h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.38rem, 2.4vw, 2.15rem);
}

.branch-panel p {
  margin: 0 0 0.6rem;
  color: var(--section-copy);
}

.branch-panel-points {
  list-style: none;
  margin: 0.7rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.branch-panel-points li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--section-copy);
}
.branch-panel-points li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.branch-panel-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.52rem 0.92rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(242, 213, 154, 0.56);
  color: #f4e5c3;
  background: linear-gradient(142deg, rgba(197, 138, 42, 0.2), rgba(242, 213, 154, 0.14));
  font-weight: 700;
}

.service-grid,
.package-grid,
.faq-list {
  position: relative;
  align-items: stretch;
}

.service-hover-indicator,
.package-hover-indicator,
.faq-hover-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 0;
  opacity: 0;
  border-radius: 0.45rem;
  border: 1px solid rgba(246, 218, 153, 0.58);
  background: linear-gradient(160deg, rgba(246, 218, 153, 0.18), rgba(150, 104, 32, 0.09));
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.42s ease, height 0.42s ease, opacity 0.3s ease;
  pointer-events: none;
  will-change: transform, width, height, opacity;
}
.service-hover-indicator.is-visible,
.package-hover-indicator.is-visible,
.faq-hover-indicator.is-visible {
  opacity: 1;
}

.service-hover-indicator.is-gsap {
  transition: none;
  will-change: transform, width, height, opacity;
}

.site-footer {
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
  padding: clamp(2.2rem, 5vw, 3.2rem) 0 1rem;
  background: radial-gradient(circle at 10% 4%, rgba(186, 131, 39, 0.18), transparent 32%), radial-gradient(circle at 90% 20%, rgba(247, 222, 164, 0.12), transparent 30%), repeating-linear-gradient(132deg, rgba(255, 255, 255, 0.012) 0 2px, rgba(255, 255, 255, 0) 2px 20px), rgba(13, 15, 19, 0.96);
}

.footer-layout {
  display: grid;
  gap: 1.05rem;
}

.footer-intro {
  max-width: 74ch;
}
.footer-intro h2 {
  margin: 0.2rem 0 0.6rem;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}
.footer-intro p {
  margin: 0;
  color: var(--muted);
}

.footer-location-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
}

.location-switcher {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.72rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.location-hover-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 0;
  opacity: 0;
  border-radius: 0.41rem;
  border: 1px solid rgba(191, 202, 216, 0.28);
  background: linear-gradient(145deg, rgba(148, 161, 178, 0.22), rgba(208, 219, 232, 0.15));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(226, 234, 244, 0.08);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.42s ease, height 0.42s ease, opacity 0.3s ease;
  pointer-events: none;
  will-change: transform, width, height, opacity;
}
.location-hover-indicator.is-visible {
  opacity: 1;
}

.location-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  text-align: left;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 0.56rem;
  background: linear-gradient(165deg, rgba(31, 35, 42, 0.9), rgba(16, 19, 23, 0.92));
  padding: clamp(1.04rem, 2vw, 1.3rem);
  display: grid;
  align-content: start;
  gap: 0.8rem;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.4s ease;
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(140deg, rgba(229, 236, 245, 0.2) 0%, rgba(174, 186, 202, 0.18) 36%, rgba(121, 134, 151, 0.16) 72%, rgba(84, 96, 112, 0.14) 100%);
  transition: opacity 0.38s ease;
}
.location-card.is-active {
  border-color: rgba(191, 202, 216, 0.72);
  background: linear-gradient(165deg, rgba(33, 39, 49, 0.95), rgba(18, 22, 28, 0.96));
  box-shadow: 0 14px 30px rgba(72, 90, 112, 0.3), inset 0 1px 0 rgba(236, 243, 250, 0.18);
}
.location-card.is-active::before {
  opacity: 1;
}
.location-card:focus-visible {
  border-color: rgba(191, 202, 216, 0.72);
  background: linear-gradient(165deg, rgba(33, 39, 49, 0.95), rgba(18, 22, 28, 0.96));
  box-shadow: 0 14px 30px rgba(72, 90, 112, 0.3), inset 0 1px 0 rgba(236, 243, 250, 0.18);
}
.location-card:focus-visible::before {
  opacity: 1;
}
.location-card.is-active h3,
.location-card:focus-visible h3 {
  color: #edf2f8;
}
.location-card.is-active p,
.location-card:focus-visible p,
.location-card.is-active .location-contact dd,
.location-card:focus-visible .location-contact dd {
  color: rgba(223, 232, 242, 0.94);
}
@media (hover: hover) and (pointer: fine) {
  .location-card:hover {
    border-color: rgba(191, 202, 216, 0.72);
    background: linear-gradient(165deg, rgba(33, 39, 49, 0.95), rgba(18, 22, 28, 0.96));
    box-shadow: 0 14px 30px rgba(72, 90, 112, 0.3), inset 0 1px 0 rgba(236, 243, 250, 0.18);
  }
  .location-card:hover::before {
    opacity: 1;
  }
  .location-card:hover h3 {
    color: #edf2f8;
  }
  .location-card:hover p,
  .location-card:hover .location-contact dd {
    color: rgba(223, 232, 242, 0.94);
  }
}
.location-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.1vw, 1.85rem);
  transition: color 0.32s ease;
}
.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
  transition: color 0.32s ease;
}

.location-address {
  max-width: 32ch;
  margin-bottom: 0.08rem;
}

.location-contact {
  margin: 0;
  display: grid;
  gap: 0.44rem;
}

.location-contact div {
  display: grid;
  gap: 0.28rem;
}

.location-contact dt {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b8c1d0;
}

.location-contact dt i {
  font-size: 0.76rem;
}

.location-contact dd {
  margin: 0;
  color: #e2e9f5;
  font-size: 0.89rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.location-contact dd a {
  color: inherit;
  text-decoration: none;
}
.location-contact dd a:hover,
.location-contact dd a:focus-visible {
  text-decoration: underline;
}

.location-contact .location-contact-email,
.location-contact .location-contact-hours {
  margin-top: 0.16rem;
}

.footer-map-shell {
  display: grid;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.55rem;
  background: linear-gradient(165deg, rgba(31, 35, 42, 0.9), rgba(16, 19, 23, 0.92));
}

.location-map {
  width: 100%;
  min-height: clamp(340px, 38vw, 560px);
  aspect-ratio: 16/10;
  border: 0;
  border-radius: 0.39rem;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.34s ease, filter 0.34s ease, opacity 0.3s ease;
}
.location-map.is-switching {
  opacity: 0.78;
  transform: scale(1.015);
  filter: saturate(1.12) contrast(1.07) brightness(1.04);
}

.location-map-status {
  margin: 0;
  color: #c3cad6;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-details-flat {
  margin-top: clamp(1.1rem, 3vw, 2rem);
  padding: clamp(1.4rem, 4vw, 2.8rem) 0 clamp(1.2rem, 3.2vw, 2.3rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3.8vw, 3.8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-detail-column {
  display: grid;
  align-content: start;
  gap: 0.68rem;
  min-width: 0;
}
.footer-detail-column h3 {
  margin: 0 0 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
}
.footer-detail-column p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.16vw, 1.28rem);
  line-height: 1.45;
}
.footer-detail-column a {
  color: #ffffff;
  text-decoration: none;
}
.footer-detail-column a:hover, .footer-detail-column a:focus-visible {
  text-decoration: underline;
}

.footer-inline-links {
  margin-top: 0.25rem !important;
  display: grid;
  gap: 0.25rem;
}
.footer-inline-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
}
.footer-inline-links a i {
  font-size: 0.84em;
  color: #d4b778;
  transform: translateY(-1px);
}

.social-share.social--transparent {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.6vw, 1.35rem);
}
.social-share.social--transparent a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-share.social--transparent a:hover, .social-share.social--transparent a:focus-visible {
  color: var(--accent-2);
  transform: translateY(-1px);
}

.footer-detail-column-cta {
  justify-items: end;
  text-align: right;
  gap: 0.8rem;
}
.footer-detail-column-cta .social-lead {
  max-width: 28ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.45;
}
.footer-detail-column-cta .social-share.social--transparent {
  --social-size: clamp(2.75rem, 2.9vw, 3.1rem);
  --social-gap: clamp(0.58rem, 0.95vw, 0.78rem);
  width: calc(var(--social-size) * 4 + var(--social-gap) * 3);
  margin-top: 0.3rem;
  justify-content: flex-end;
  gap: var(--social-gap);
}
.footer-detail-column-cta .social-share.social--transparent a {
  width: var(--social-size);
  height: var(--social-size);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.62rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.24);
  font-size: clamp(1.4rem, 1.55vw, 1.65rem);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.footer-detail-column-cta .social-share.social--transparent a:hover, .footer-detail-column-cta .social-share.social--transparent a:focus-visible {
  border-color: rgba(242, 213, 154, 0.8);
  background: linear-gradient(160deg, rgba(242, 213, 154, 0.2), rgba(255, 255, 255, 0.05));
  color: var(--accent-2);
  transform: translateY(-2px);
}
.footer-detail-column-cta .social-share.social--transparent a[aria-label=WhatsApp] {
  border-color: rgba(37, 211, 102, 0.82);
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.38), rgba(17, 112, 56, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(8, 48, 23, 0.38);
  color: #ffffff;
}
.footer-detail-column-cta .social-share.social--transparent a[aria-label=WhatsApp]:hover, .footer-detail-column-cta .social-share.social--transparent a[aria-label=WhatsApp]:focus-visible {
  border-color: rgba(83, 236, 139, 0.95);
  background: linear-gradient(160deg, rgba(52, 229, 115, 0.55), rgba(24, 126, 63, 0.88));
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: clamp(0.8rem, 2.4vw, 1.7rem);
  padding-top: clamp(0.9rem, 2.2vw, 1.45rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-bottom-meta {
  margin: 0;
  color: var(--muted);
  font-size: calc(clamp(0.68rem, 0.82vw, 0.78rem) + 1pt);
  line-height: 1.45;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.34rem 0.8rem;
}
.footer-bottom-copy {
  min-width: min(100%, 20rem);
}
.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  color: var(--muted);
  font-size: calc(clamp(0.68rem, 0.82vw, 0.78rem) + 1pt);
}
.footer-bottom-links a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
}
.footer-bottom-links a:hover, .footer-bottom-links a:focus-visible {
  text-decoration: underline;
}
.footer-bottom-separator {
  opacity: 0.62;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
}
.footer-legal-links a {
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 1.95vw, 2rem);
  letter-spacing: 0.04em;
}
.footer-legal-links a:hover, .footer-legal-links a:focus-visible {
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-grid,
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-growth-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline-shell,
  .showcase-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-form-stack {
    justify-self: stretch;
    width: 100%;
  }
  .footer-location-grid {
    grid-template-columns: 1fr;
  }
  .footer-details-flat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 2rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .branch-tabs-shell {
    grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  }
  .hero-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.4rem;
    background: rgba(8, 12, 17, 0.98);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .hero-overlay-content {
    padding-top: clamp(6.3rem, 14vh, 8.4rem);
  }
  .hero-copy-centered h1 {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
  }
  .branch-tabs-shell {
    grid-template-columns: 1fr;
  }
  .branch-tab-list {
    border-right: 0;
  }
  .branch-panel {
    min-height: auto;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(1180px, 100% - 1.4rem);
  }
  .service-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .review-growth-strip {
    grid-template-columns: 1fr;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .partner-logo-swiper .swiper-wrapper {
    grid-template-columns: 1fr;
  }
  .partner-logo-tile {
    min-height: 70px;
  }
  .testimonial-person {
    align-items: flex-start;
  }
  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }
  .testimonial-card {
    padding: 0.92rem;
  }
  .faq-toolbar {
    gap: 0.72rem;
  }
  .faq-category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }
  .faq-category-btn {
    white-space: nowrap;
  }
  .faq-search-shell {
    max-width: none;
  }
  .section-intro {
    margin-top: -0.7rem;
  }
  .matrix-card {
    overflow-x: auto;
  }
  .matrix-card table {
    min-width: 420px;
  }
  .lead-fields {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-rating {
    flex-direction: column;
    gap: 0.2rem;
  }
  .hero-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .branch-tab {
    padding: 0.72rem 0.72rem 0.72rem 0;
  }
  .branch-panel {
    padding: 1rem;
  }
  .location-switcher {
    grid-template-columns: 1fr;
  }
  .service-hover-indicator,
  .faq-hover-indicator,
  .package-hover-indicator,
  .location-hover-indicator {
    display: none;
  }
  .location-map {
    min-height: 240px;
    aspect-ratio: 16/11;
  }
  .footer-details-flat {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-detail-column-cta {
    justify-items: start;
    text-align: left;
  }
  .footer-detail-column-cta .social-lead {
    max-width: none;
  }
  .footer-detail-column-cta .social-share.social--transparent {
    width: min(100%, 18rem);
    justify-content: flex-start;
  }
  .footer-legal-links {
    gap: 0.25rem 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .brand-gilded .brand-logo-sheen,
  .brand-gilded .brand-g-zap {
    display: none;
  }
}
