/* Base + navbar. Visual rules copied from paktsi layout/base. */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: var(--line-height-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

body a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
}

.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 30px;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-skip);
  background: var(--color-surface-dark);
  color: var(--color-white);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: var(--font-size-caption);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 10px;
  z-index: 1000001;
}

/* Header (paktsi/css/layout.css) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgb(from var(--color-white) r g b / 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgb(from var(--color-surface-dark) r g b / 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo { display: block; cursor: default; }
.logo img { height: 43px; width: auto; }
.logo .logo-white { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--font-size-meta);
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-heading);
  transition: color var(--transition-base);
  line-height: 23px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.nav-links a:hover { color: var(--color-primary-strong); }

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.nav-links a:hover::before { transform: scaleX(1); }

.nav-links a.btn-nav-contact::before,
.nav-links a.nav-phone::before { display: none; }

.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-caption);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid var(--color-surface-dark);
  background: var(--color-surface-dark);
  color: var(--color-white);
  padding: 12px 22px;
  line-height: 1;
  min-height: 40px;
  touch-action: manipulation;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.nav-links a.btn-nav-contact {
  color: var(--color-white);
}

.nav-links a.btn-nav-contact:hover {
  background: var(--color-primary-strong);
  border-color: var(--color-primary-strong);
  color: var(--color-white);
}

.nav-phone {
  white-space: nowrap;
  letter-spacing: 0.8px;
  font-variant-numeric: tabular-nums;
}

.nav-links a.nav-phone { color: var(--color-body); }
.nav-links a.nav-phone:hover { color: var(--color-heading); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: var(--z-hamburger);
  border: none;
  background: none;
  padding: 0;
  touch-action: manipulation;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--color-surface-dark);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

main { min-height: 100vh; }

.gradient-text {
  display: inline-block;
  color: var(--color-primary);
  background: var(--color-gradient);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--shine {
  background-image: linear-gradient(90deg, #A0D6F4 0%, #9387FF 35%, #ffffff 50%, #9387FF 65%, #A0D6F4 100%);
  background-size: 220% auto;
  animation: gradient-shimmer 3.6s ease-in-out infinite;
}

@keyframes gradient-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

.label-overline {
  font-family: var(--font-heading);
  font-size: var(--font-size-meta);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary-strong);
}

.btn-cta-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--font-size-cta);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-primary-strong);
  min-height: 44px;
  touch-action: manipulation;
  transition: gap var(--transition-base), color var(--transition-base);
}

.btn-cta-purple::after { content: "\2192"; }
.btn-cta-purple:hover { gap: 14px; color: var(--color-heading); }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 30px;
  position: relative;
  overflow-x: clip;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  perspective: 800px;
  transform-style: preserve-3d;
}

.hero-orb {
  position: absolute;
  will-change: transform;
  opacity: 0;
  transform-style: preserve-3d;
  border-radius: 47% 53% 50% 50% / 53% 47% 52% 48%;
}

.hero-orb.is-entering {
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 40%, rgb(from var(--color-secondary) r g b / 0.4) 0%, rgb(from var(--color-secondary) r g b / 0.15) 40%, transparent 70%);
  top: -25%;
  right: -20%;
  filter: blur(50px);
}

.hero-orb--2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 60% 50%, rgb(from var(--color-primary) r g b / 0.35) 0%, rgb(from var(--color-primary) r g b / 0.12) 40%, transparent 70%);
  bottom: -20%;
  left: -15%;
  filter: blur(45px);
}

.hero-orb--2 { border-radius: 52% 48% 45% 55% / 48% 52% 50% 50%; }
.hero-orb--3 { border-radius: 50% 50% 55% 45% / 45% 55% 48% 52%; }
.hero-orb--4 { border-radius: 48% 52% 50% 50% / 55% 45% 50% 50%; }
.hero-orb--5 { border-radius: 50% 50% 48% 52% / 50% 50% 55% 45%; }

.hero-orb--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 50% 50%, rgb(from var(--color-primary-soft) r g b / 0.3) 0%, rgb(from var(--color-secondary) r g b / 0.12) 50%, transparent 70%);
  top: 15%;
  left: 20%;
  filter: blur(60px);
}

.hero-orb--4 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 40%, rgb(from var(--color-primary-softer) r g b / 0.35) 0%, rgb(from var(--color-secondary) r g b / 0.15) 50%, transparent 70%);
  top: 5%;
  left: 5%;
  filter: blur(40px);
}

.hero-orb--5 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 60% 60%, rgb(from var(--color-primary-bold) r g b / 0.3) 0%, rgb(from var(--color-primary-bold) r g b / 0.1) 40%, transparent 70%);
  bottom: 0;
  right: 0;
  filter: blur(38px);
}

.hero-heading-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: min(100%, 12em);
  text-align: left;
  margin-top: 18vh;
  font-size: var(--font-size-h1);
}

.hero h1 {
  font-size: inherit;
  font-weight: 700;
  line-height: var(--line-height-h1);
  color: var(--color-heading);
  margin: 0;
}

.hero-heading-text {
  display: block;
  text-wrap: balance;
}

.hero-rotator {
  display: inline-grid;
  vertical-align: baseline;
  justify-items: start;
}

.hero-rotator__sizer {
  grid-area: 1 / 1;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.hero-rotator__word {
  grid-area: 1 / 1;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.22em);
  pointer-events: none;
}

.hero-rotator__word.is-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-rotator__word.is-out {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-0.18em);
  transition:
    opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tag {
  margin: 0 0 16px;
}

.hero .page-hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--color-body);
  line-height: var(--line-height-body);
  margin-top: 20px;
  margin-bottom: 0;
  max-width: 22em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  margin-top: 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-meta);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--color-surface-dark);
  padding: 14px 28px;
  min-height: 48px;
  color: var(--color-heading);
  touch-action: manipulation;
  transition: background var(--transition-base), color var(--transition-base);
}

.hero-cta:hover {
  background: var(--color-surface-dark);
  color: var(--color-white);
}

.hero-phone {
  font-family: var(--font-heading);
  font-size: var(--font-size-cta);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-heading);
}

.hero-phone:hover { color: var(--color-primary); }

.hero-micro {
  margin-top: 16px;
  margin-bottom: 8vh;
  font-size: var(--font-size-caption);
  color: var(--color-text-muted);
}

.hero-banner {
  width: 95%;
  max-width: 1440px;
  margin: 30px auto 0;
  transform-origin: center center;
  animation: hero-banner-grow linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes hero-banner-grow {
  from { transform: scale(0.86); }
  to { transform: scale(1.05); }
}

.divider {
  width: var(--divider-width);
  height: var(--divider-height);
  background: var(--color-gradient);
  border-radius: 2px;
  margin: 25px 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.divider.visible,
.visible .divider { transform: scaleX(1); }

.about-section { padding: var(--space-section-md) 0; }

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  color: var(--color-heading);
}

.about-content p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-body);
  margin-bottom: 5px;
}

.about-image { overflow: hidden; }

.about-image img {
  width: 100%;
  animation: intro-img-scale linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

@keyframes intro-img-scale {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

@keyframes parallax-up {
  from { transform: translateY(30px); }
  to { transform: translateY(-30px); }
}

.parallax-scroll {
  animation: parallax-up linear both;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}

.results-section { padding: var(--space-section-lg) 0; }

.dm-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.dm-counter-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-gradient);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 12px;
}

.dm-counter-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-body-sm);
  font-weight: 600;
  color: var(--color-body);
}

.section-heading {
  text-align: center;
  padding: 56px 30px 36px;
}

.section-heading h2 {
  font-size: var(--font-size-h2-section);
  line-height: var(--line-height-h2-section);
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-heading);
  text-wrap: balance;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: var(--divider-width);
  height: var(--divider-height);
  background: var(--color-gradient);
  margin: 25px auto 0;
  border-radius: 2px;
}

.btn-cta-purple,
.btn-nav-contact,
.btn-submit {
  transition-property: color, background, gap, border-color, scale;
}

.btn-cta-purple:active,
.btn-nav-contact:active,
.btn-submit:active {
  scale: 0.96;
}

.display-contents { display: contents; }

.partners-section {
  --partners-line-width: min(540px, 66%);
  --partners-line-height: 1px;
  --partners-line-opacity: 0.64;
  --partners-line-highlight-height: 10px;
  --partners-line-highlight-blur: 10px;
  --partners-line-highlight-opacity: 0.26;
  --partners-line-sweep-duration: 11.5s;
  background: var(--color-surface-dark);
  padding: var(--space-section-md) 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.partners-section::before {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--partners-line-width);
  height: var(--partners-line-height);
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 22%, var(--color-primary) 50%, var(--color-secondary) 78%, transparent 100%);
  opacity: var(--partners-line-opacity);
}

.partners-section::after {
  bottom: -5px;
  left: calc(50% - var(--partners-line-width) / 2);
  width: calc(var(--partners-line-width) * 0.18);
  height: var(--partners-line-highlight-height);
  background: linear-gradient(90deg, transparent 0%, rgb(from var(--color-white) r g b / 0.82) 50%, transparent 100%);
  filter: blur(var(--partners-line-highlight-blur));
  opacity: 0;
  animation: partners-line-sweep var(--partners-line-sweep-duration) cubic-bezier(0.45, 0.06, 0.18, 0.98) infinite;
}

@keyframes partners-line-sweep {
  0%, 18% { opacity: 0; transform: translateX(-150%); }
  30% { opacity: var(--partners-line-highlight-opacity); }
  70% { opacity: var(--partners-line-highlight-opacity); }
  82%, 100% { opacity: 0; transform: translateX(605%); }
}

.partners-section h2 {
  color: var(--color-white);
  font-size: var(--font-size-h2-section);
  line-height: var(--line-height-h2-section);
  max-width: 700px;
  margin: 0 auto 40px;
  text-wrap: balance;
}

.partners-section h2::after {
  content: "";
  display: block;
  width: var(--divider-width);
  height: var(--divider-height);
  background: var(--color-gradient);
  margin: 25px auto 0;
  border-radius: 2px;
}

.partners-slider {
  overflow: hidden;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 40px;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: partners-slide 45s linear infinite;
  width: max-content;
}

@keyframes partners-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-slider:hover .partners-track,
.partners-slider:focus-within .partners-track {
  animation-play-state: paused;
}

.partners-track picture { flex-shrink: 0; display: block; }

.partners-track img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.partners-track img:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .hero-banner { animation: none; }
}

@media (max-width: 768px) {
  .hero-orb--1 { width: 350px; height: 350px; filter: blur(70px); top: -15%; right: -25%; }
  .hero-orb--2 { width: 300px; height: 300px; filter: blur(60px); bottom: -10%; left: -20%; }
  .hero-orb--3 { width: 250px; height: 250px; filter: blur(80px); }
  .hero-orb--4,
  .hero-orb--5 { display: none; }
  .hero { padding: 0 20px; }
  .hero-heading-block { margin-top: 16vh; }
  .hero .page-hero-subtitle { margin-top: 16px; }
  .hero-micro { margin-bottom: 48px; }
  .about-section .container { grid-template-columns: 1fr; gap: 32px; }
  .dm-counters { grid-template-columns: 1fr; gap: 24px; }
  .offer-plans { grid-template-columns: 1fr; }
  .offer-plan { padding: 36px 0; }
  .offer-plan + .offer-plan { border-left: 0; border-top: 1px solid var(--color-gray-400); }
  .offer-plan .hero-cta { width: 100%; }
  .section-heading { padding: 40px 20px 28px; }
  .section-heading h2 { font-size: var(--font-size-h2-mobile); line-height: var(--line-height-h2-mobile); }
  .references-section { --rail-inset: 20px; }
}

/* 1280: long CTA + phone + 4 anchors. Tighten gap so the row still fits above the hamburger breakpoint. */
@media (max-width: 1280px) {
  .nav-links { gap: 18px; }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    z-index: var(--z-nav);
    overflow-y: auto;
    padding: var(--space-section-sm) 40px 40px;
    overscroll-behavior: contain;
  }

  .nav-links.active { display: flex; }

  .nav-links > a {
    padding: 18px 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    color: var(--color-heading);
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    letter-spacing: 1.2px;
    width: 100%;
    border-bottom: 0;
  }

  .nav-links a::before { display: none; }

  .nav-links .nav-phone {
    color: var(--color-body);
    font-size: var(--font-size-cta);
  }

  .nav-links .btn-nav-contact {
    border: 1px solid var(--color-surface-dark);
    background: var(--color-surface-dark);
    color: var(--color-white);
    text-align: center;
    justify-content: center;
    margin-top: 28px;
    padding: 16px 22px;
    min-height: 48px;
    width: 100%;
  }

  .hamburger {
    display: flex;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .container { padding: 0 25px; }
}

@media (max-width: 768px) {
  body { font-size: var(--font-size-body-mobile); }
  .btn-nav-contact { padding: 14px 22px; }
  .partners-section { padding: var(--space-section-xs) 0; }
  .partners-section h2 { font-size: var(--font-size-h2-mobile); line-height: var(--line-height-h2-mobile); }
  .partners-track { gap: 40px; }
  .partners-track img { height: 65px; }
  .partners-slider { padding: 0 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .references-section { --rail-inset: 20px; }

}

@media (prefers-reduced-motion: reduce) {
  .header,
  .nav-links a,
  .nav-links a::before,
  .btn-nav-contact,
  .btn-cta-purple,
  .hamburger span,
  .skip-link,
  .faq-item summary,
  .faq-item summary::after,
  .faq-item::details-content {
    transition: none;
  }

  .hero-orb {
    opacity: 1 !important;
    transform: none !important;
    animation: none;
    filter: blur(60px);
  }
  .hero-banner { animation: none; }
  .gradient-text--shine { animation: none; background-size: 100% auto; }
  .hero-rotator__word {
    filter: none;
    transform: none;
    transition: none;
  }
  .offer-check path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .about-image img,
  .parallax-scroll { animation: none; }
  .fade-in,
  .fade-in-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ref-slide:hover img,
  .ref-slide:focus-within img { transform: none; }

  .partners-section::after {
    animation: none;
    opacity: 0;
  }

  .partners-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    row-gap: 24px;
  }

  .partners-track [aria-hidden="true"] { display: none; }
}

.section-title {
  font-size: var(--font-size-h2-section);
  line-height: var(--line-height-h2-section);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  text-wrap: balance;
}

.section-title::after {
  content: "";
  display: block;
  width: var(--divider-width);
  height: var(--divider-height);
  background: var(--color-gradient);
  margin: 25px auto 0;
  border-radius: 2px;
}

.section-title--light { color: var(--color-white); }

.offer-section { padding: var(--space-section-md) 0 var(--space-section-lg); }

.testimonials-section,
.cta-form-section {
  padding: var(--space-section-md) 0;
}

.offer-intro {
  text-align: center;
  max-width: 36rem;
  margin: -16px auto 48px;
  color: var(--color-body);
}

.offer-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--color-gray-400);
}

.offer-plan {
  padding: 48px 40px 40px;
}

.offer-plan + .offer-plan {
  border-left: 1px solid var(--color-gray-400);
}

.offer-price {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 6px;
  font-variant-numeric: tabular-nums;
  background: var(--color-gradient);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-time {
  font-family: var(--font-heading);
  font-size: var(--font-size-caption);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.offer-plan-lead {
  color: var(--color-body);
  margin-bottom: 8px;
}

.offer-in {
  list-style: none;
  margin: 24px 0 20px;
  padding: 0;
}

.offer-in li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-gray-300);
  font-size: var(--font-size-body-sm);
  line-height: 1.4;
}

.offer-in li:last-child { border-bottom: 0; }

.offer-check {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.offer-check path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.offer-in.is-drawn li:nth-child(1) .offer-check path { animation: offer-check-draw 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.04s forwards; }
.offer-in.is-drawn li:nth-child(2) .offer-check path { animation: offer-check-draw 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards; }
.offer-in.is-drawn li:nth-child(3) .offer-check path { animation: offer-check-draw 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.offer-in.is-drawn li:nth-child(4) .offer-check path { animation: offer-check-draw 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards; }

@keyframes offer-check-draw {
  to { stroke-dashoffset: 0; }
}

.offer-out {
  color: var(--color-text-muted);
  font-size: var(--font-size-caption);
  margin-bottom: 8px;
}

.offer-plan .hero-cta { margin-top: 20px; }

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--font-size-cta);
  font-weight: 600;
  color: var(--color-white);
  min-height: 44px;
  margin-top: 20px;
  transition: gap var(--transition-base), opacity var(--transition-base);
}

.btn-cta-white::after { content: "\2192"; }
.btn-cta-white:hover { gap: 14px; opacity: 0.75; }

.offer-lead {
  font-size: var(--font-size-body-sm);
  line-height: var(--line-height-body);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.benefit-card h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--color-body);
}

.references-section {
  --rail-inset: max(30px, calc((100vw - 800px) / 2));
  padding-top: 0;
  padding-bottom: var(--space-section-md);
}

.ref-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--rail-inset);
  scroll-padding-inline-start: var(--rail-inset);
  padding: 8px 0 16px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ref-rail::-webkit-scrollbar { display: none; height: 0; }

.ref-scroll {
  height: 8px;
  margin-inline: var(--rail-inset);
  border-radius: 999px;
  background: rgb(from var(--color-primary) r g b / 0.2);
  cursor: pointer;
}

.ref-scroll__thumb {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: var(--color-primary);
}

.ref-rail__gutter {
  flex: 0 0 var(--rail-inset);
  width: var(--rail-inset);
  pointer-events: none;
}

.ref-rail__gutter--end {
  flex-basis: max(var(--rail-inset), calc(100vw - min(86vw, 920px) - var(--rail-inset)));
  width: max(var(--rail-inset), calc(100vw - min(86vw, 920px) - var(--rail-inset)));
}

.ref-rail:focus-visible {
  outline: var(--focus-ring);
  outline-offset: -4px;
}

.ref-slide {
  position: relative;
  flex: 0 0 min(86vw, 920px);
  aspect-ratio: 16 / 10;
  min-height: 420px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--color-surface-dark);
}

.ref-slide picture,
.ref-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ref-slide img {
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.ref-slide:hover img,
.ref-slide:focus-within img {
  transform: scale(1.06);
}

.ref-slide__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 72px 32px 28px;
  background: linear-gradient(to top, rgb(from var(--color-surface-dark) r g b / 0.94) 0%, rgb(from var(--color-surface-dark) r g b / 0.62) 58%, transparent 100%);
  color: var(--color-white);
}

.ref-slide__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ref-slide h3 {
  color: var(--color-white);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.ref-slide__title a {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgb(from var(--color-white) r g b / 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 24px;
}

.ref-slide__title a:hover { color: var(--color-white); }

.ref-slide dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
  margin: 0;
}

.ref-slide dt {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: var(--color-gradient);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ref-slide dd {
  margin: 6px 0 0;
  font-size: var(--font-size-caption);
  font-weight: 600;
  line-height: 1.3;
  color: rgb(from var(--color-white) r g b / 0.82);
}

@media (max-width: 900px) {
  .ref-rail {
    gap: 12px;
  }

  .ref-rail__gutter--end {
    flex-basis: max(var(--rail-inset), calc(48px - var(--rail-inset)));
    width: max(var(--rail-inset), calc(48px - var(--rail-inset)));
  }

  .ref-slide {
    flex-basis: calc(100vw - 48px);
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }

  .ref-slide__copy { padding: 64px 18px 20px; }

  .ref-slide__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }

  .ref-slide h3 { font-size: clamp(24px, 7vw, 32px); }

  .ref-slide dt { font-size: clamp(18px, 5vw, 24px); }

  .ref-slide dd { font-size: 12px; }
}

@media (max-width: 480px) {
  .references-section { --rail-inset: 20px; }

  .ref-slide {
    flex-basis: calc(100vw - 32px);
    min-height: 520px;
  }

  .ref-slide dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ref-slide dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(from var(--color-white) r g b / 0.16);
  }

  .ref-slide dl > div:last-child { border-bottom: 0; padding-bottom: 0; }

  .ref-slide dd { margin: 0; text-align: right; }
}

.process-section {
  padding: var(--space-section-md) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-num {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-primary-strong);
  margin-bottom: 12px;
}

.process-grid h3 {
  color: var(--color-heading);
  font-size: var(--font-size-cta);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-grid p {
  color: var(--color-body);
  font-size: var(--font-size-body-sm);
}

.testimonials-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.testimonial-card--alt { flex-direction: row-reverse; }

.testimonial-card picture {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--color-white);
  border-radius: 4px;
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
}

.testimonial-card blockquote {
  font-size: var(--font-size-body-sm);
  line-height: var(--line-height-body-loose);
  color: var(--color-body);
  margin: 0 0 16px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
}

.testimonial-company {
  display: inline-block;
  font-size: var(--font-size-meta);
  color: var(--color-primary-strong);
  margin-top: 3px;
  min-height: 24px;
}

a.testimonial-company {
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.testimonial-company:hover {
  color: var(--color-heading);
}

.faq-section {
  padding: var(--space-section-md) 0;
  background: var(--color-gray-100);
}

.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 8px;
  border-radius: 4px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.5;
  min-height: 44px;
  transition: color var(--transition-base);
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: none; }

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor 0 0) 50% 50% / 14px 2px no-repeat,
    linear-gradient(currentColor 0 0) 50% 50% / 2px 14px no-repeat;
  transform: rotate(0deg);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] summary { color: var(--color-primary-strong); }

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--color-primary-strong); }

.faq-item::details-content {
  block-size: 0;
  overflow: clip;
  opacity: 0;
  transition:
    block-size 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    content-visibility 0.35s allow-discrete;
}

.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq-item p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-loose);
  color: var(--color-body);
  padding: 0 25px 20px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition-base);
}
.faq-question:hover { color: var(--color-primary); }
.faq-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-chevron-left,
.faq-chevron-right {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-base);
}
.faq-chevron-right { opacity: 0.4; }
.faq-item.active .faq-chevron-left,
.faq-item.active .faq-chevron-right { transform: rotate(90deg); }
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.faq-item.active .faq-answer { height: auto; }
.faq-answer p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-loose);
  color: var(--color-body);
  padding: 0 25px 15px 53px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
    font-size: var(--font-size-cta);
  }
  .faq-answer p { padding: 0 20px 18px 48px; }
}
@media (max-width: 480px) {
  .faq-question {
    padding: 16px 16px;
    font-size: var(--font-size-caption);
  }
  .faq-answer p { padding: 0 16px 16px 16px; }
}

.cta-lead {
  text-align: center;
  max-width: 40rem;
  margin: -10px auto 16px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.cta-phone {
  text-align: center;
  margin: 0 auto 40px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-phone a { color: var(--color-heading); }
.cta-phone a:hover { color: var(--color-primary); }

.contact-form { max-width: var(--max-width-narrow); margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: var(--font-size-caption);
  margin-bottom: 8px;
}

.required { color: var(--color-form-error); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-body);
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-body);
  background: transparent;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--color-primary);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group-full { margin-bottom: 30px; }

.form-consent { margin-bottom: 32px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: var(--font-size-caption);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--color-body);
  border-radius: 3px;
  margin-top: 1px;
  position: relative;
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--color-surface-dark);
  border-color: var(--color-surface-dark);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-text a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-error {
  margin-top: 8px;
  font-size: var(--font-size-caption);
  color: var(--color-form-error);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
  border-bottom-color: var(--color-form-error);
}

.form-status {
  text-align: center;
  min-height: 1.5em;
  margin-bottom: 16px;
  color: var(--color-form-error);
}

.form-submit { text-align: center; }

.btn-submit {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-size-cta);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: var(--color-surface-dark);
  border: none;
  padding: 18px 50px;
  min-height: 44px;
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--transition-base);
}

.btn-submit:hover { background: var(--color-primary-strong); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.contact-turnstile { margin: 0 0 16px; }
.contact-turnstile:has(.cf-turnstile:empty) { margin: 0; }

.footer {
  background: var(--color-surface-dark);
  color: var(--color-white);
  padding: 140px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand { text-align: center; }
.footer-brand address { font-style: normal; }
.footer-brand .logo-footer { height: 36px; width: auto; max-width: none; margin: 0 auto 15px; }
.footer-brand .company-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 5px;
}
.footer-brand .address {
  display: block;
  font-size: var(--font-size-cta);
  font-style: normal;
  color: var(--color-white);
  line-height: 22px;
  margin-bottom: 15px;
  transition: opacity var(--transition-base);
}
.footer-brand .address:hover { opacity: 0.7; }
.footer-brand .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  border: 1px solid rgb(from var(--color-white) r g b / 0.3);
  border-radius: 30px;
  padding: 12px 25px;
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: 600;
  color: var(--color-white);
  transition: border-color var(--transition-base);
  margin-bottom: 20px;
}
.footer-brand .phone-btn:hover { border-color: var(--color-white); }
.footer-brand .phone-btn svg { width: 18px; height: 18px; fill: var(--color-white); }
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand .gp-badge { display: inline-flex; line-height: 0; }
.footer-brand .gp-badge img { height: 100px; width: auto; max-width: none; }
.footer-brand .sbc-badge { height: 70px; width: auto; max-width: none; margin: 0; }

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--color-white);
  line-height: 24px;
}
.footer-col a {
  display: block;
  font-size: var(--font-size-body-sm);
  font-weight: 500;
  color: var(--color-white);
  padding: 5px 0;
  line-height: 26px;
  transition: color var(--transition-base);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-col .email-link { color: var(--color-primary); font-weight: 600; margin-top: 15px; }
.footer-col .email-link:hover { color: var(--color-secondary); }
.footer-social { display: flex; gap: 20px; margin-top: 20px; }
.footer-col .footer-social a {
  padding: 12px;
  margin: -12px;
  min-height: 0;
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.footer-col .footer-social a:hover { color: var(--color-primary); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.footer .footer-bottom {
  text-align: center;
  margin-top: 80px;
  padding-top: var(--space-section-sm);
  padding-bottom: 50px;
  font-size: var(--font-size-cta);
  font-weight: 500;
  color: var(--color-white);
}

.sticky-cta {
  display: none;
}

@media (max-width: 1024px) {
  .offer-plans { grid-template-columns: 1fr; }
  .offer-plan { padding: 40px 8px; }
  .offer-plan + .offer-plan { border-left: 0; border-top: 1px solid var(--color-gray-400); }
  .benefits-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: var(--space-section-sm) 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .ref-slide { flex-basis: min(90vw, 920px); }
  .ref-slide__copy { padding: 56px 22px 22px; }
  .ref-slide dl { gap: 12px; }
  .ref-slide__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .process-grid,
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 10px; }
  .footer-col a { padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
  .footer .footer-bottom { margin-top: 30px; padding: 30px 20px 25px; }
  .testimonial-card,
  .testimonial-card--alt { flex-direction: column; padding: 30px 25px; }
  .section-title { font-size: var(--font-size-h2-mobile); line-height: var(--line-height-h2-mobile); }
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky-cta);
    background: var(--color-surface-dark);
    color: var(--color-white);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
    align-items: center;
    transform: translateY(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-base), visibility var(--transition-base);
  }
  .sticky-cta.is-visible {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .sticky-cta__btn,
  .sticky-cta__phone {
    font-family: var(--font-heading);
    font-size: var(--font-size-caption);
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }
  .sticky-cta__btn {
    flex: 1;
    background: var(--color-primary-strong);
    color: var(--color-white);
  }
  .sticky-cta__phone { border: 1px solid rgb(from var(--color-white) r g b / 0.3); }
  .sticky-cta__dismiss {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
  }

  body { padding-bottom: 72px; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 24px;
}

.thanks h1 { font-size: var(--font-size-h2); }

.contact-form { position: relative; }

#piskotki-gdpr .piskotki-gdpr-btn svg {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
}

#piskotki-gdpr .piskotki-gdpr-icon {
  pointer-events: none;
  cursor: default;
}

#piskotki-gdpr .piskotki-gdpr-btn-sec { opacity: 0.85 !important; }

.legal-page .header,
.thanks-page .header {
  background: rgb(from var(--color-white) r g b / 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-hero {
  padding: 200px 0 var(--space-section-sm);
  text-align: center;
}
.legal-hero h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
  margin-bottom: 15px;
}
.legal-hero p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-body);
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  padding: var(--space-section-xs) 0 var(--space-section-lg);
}
.legal-content:not(.legal-content--intro) {
  background: var(--color-gray-100);
}
.legal-content .container { max-width: 800px; }

.legal-content--intro { padding-bottom: var(--space-section-xs); }
.legal-content--intro p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-body);
  max-width: 800px;
  margin: 0 auto 15px;
}
.legal-content--intro p:last-child { margin-bottom: 0; }

.legal-content .faq-answer ul {
  list-style: none;
  padding: 0 25px 0 53px;
  margin: 0 0 15px;
}
.legal-content .faq-answer ul li {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-loose);
  color: var(--color-body);
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-content .faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.legal-content .faq-answer a {
  color: var(--color-primary);
  text-decoration: underline;
}
.legal-content .faq-answer a:hover { text-decoration: none; }

.legal-content .faq-answer .cookie-table {
  margin: 20px 25px 20px 53px;
  width: calc(100% - 78px);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: var(--font-size-cta);
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid var(--color-gray-300);
  color: var(--color-body);
  line-height: 1.5;
}
.cookie-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  font-size: var(--font-size-caption);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--color-gray-100);
}
.cookie-table td:first-child {
  font-family: monospace;
  font-size: var(--font-size-caption);
  white-space: nowrap;
}

.legal-content .faq-answer .piskotki-gdpr-form-container {
  padding: 0 25px 12px 53px;
}
.legal-content .faq-answer .piskotki-gdpr-form-container + p {
  padding-top: 0;
}

.legal-closing {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-300);
}
.legal-closing h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  color: var(--color-heading);
  margin-bottom: 20px;
}
.legal-closing p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body-loose);
  color: var(--color-body);
  margin-bottom: 15px;
}
.legal-date {
  margin-top: 50px;
  font-size: var(--font-size-cta);
  color: var(--color-gray-500);
  font-style: italic;
}

@media (max-width: 1024px) {
  .legal-hero { padding: var(--space-section-xs) 0 var(--space-section-xs); }
  .legal-content { padding: 50px 0 var(--space-section-sm); }
}
@media (max-width: 768px) {
  .legal-hero { padding: var(--space-section-xl) 0 var(--space-section-xs); }
  .legal-closing h2 {
    font-size: var(--font-size-h2-mobile);
    line-height: var(--line-height-h2-mobile);
  }
  .legal-content .faq-answer p,
  .legal-content .faq-answer ul,
  .legal-content .faq-answer .piskotki-gdpr-form-container {
    padding-left: 25px;
  }
  .legal-content .faq-answer .cookie-table {
    margin-left: 25px;
    margin-right: 15px;
    width: calc(100% - 40px);
  }
  .legal-content { padding: 40px 0 var(--space-section-sm); }
  .cookie-table {
    display: block;
    overflow-x: auto;
    font-size: var(--font-size-meta);
  }
  .cookie-table td:first-child { white-space: normal; }
  .cookie-table th,
  .cookie-table td { padding: 8px 10px; }
}

@media print {
  .legal-content .faq-answer { height: auto !important; overflow: visible !important; }
  .legal-content .faq-chevron-left,
  .legal-content .faq-chevron-right { display: none; }
}

body.no-scroll #piskotki-gdpr {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

