:root {
  --bg: #0a0a0a;
  --bg-soft: #1a1a1a;
  --text: #ffffff;
  --muted: #b9c7d6;
  --accent: #00aaff;
  --accent-soft: rgba(0, 170, 255, 0.2);
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, 92vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 16% 20%, rgba(0, 170, 255, 0.15), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(0, 170, 255, 0.1), transparent 35%),
    linear-gradient(180deg, #080808 0%, #0a0a0a 60%, #0f1117 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

#energyCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -4;
  opacity: 0.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  animation: driftGrid 18s linear infinite;
  pointer-events: none;
  z-index: -2;
}

/* Subtelne tlo energii poruszajace sie pod zawartoscia */
.background-energy {
  position: fixed;
  width: 130vmax;
  height: 130vmax;
  top: -45vmax;
  left: -35vmax;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.08) 0%, transparent 55%);
  filter: blur(22px);
  animation: pulseEnergy 10s ease-in-out infinite;
  z-index: -3;
  pointer-events: none;
}

@keyframes driftGrid {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(44px);
  }
}

@keyframes pulseEnergy {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, 20px, 0) scale(1.06);
  }
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section-header {
  margin-bottom: 28px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--muted);
  max-width: 62ch;
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  width: clamp(126px, 24vw, 186px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 170, 255, 0.2));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-open {
  border-color: rgba(0, 170, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.24);
  transform: translateY(-1px);
}

.nav-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(310px, 90vw);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(14px);
  padding: 12px;
  display: grid;
  gap: 2px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.24s ease;
}

.topbar nav {
  position: relative;
  width: 0;
}

.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-menu a {
  display: block;
  padding: 8px 6px;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.28s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.85);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  width: 100%;
}

.nav-menu a.is-active {
  color: #9fdcff;
}

.nav-indicator {
  display: none;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 170, 255, 0.78), rgba(124, 223, 255, 1));
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.78);
  transform: translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.header-cta {
  display: none !important;
}

.btn,
button,
input,
textarea {
  font: inherit;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0092dd, #00aaff);
  box-shadow: 0 0 0 rgba(0, 170, 255, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 170, 255, 0.35), 0 0 40px rgba(0, 170, 255, 0.25);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.25);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(0, 170, 255, 0.14), transparent 34%),
    linear-gradient(104deg, transparent 34%, rgba(0, 170, 255, 0.08) 54%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  gap: 26px;
  padding: 56px 0 70px;
  position: relative;
  isolation: isolate;
}

.hero-beam {
  position: absolute;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  right: -18vw;
  top: -14vh;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(0, 170, 255, 0.22) 50deg, transparent 140deg);
  filter: blur(16px);
  animation: sweepBeam 11s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.hero-content h1 {
  font-size: clamp(2rem, 6.5vw, 4rem);
  line-height: 1.07;
  margin-bottom: 14px;
  text-align: left;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #ffffff 10%, #90ddff 48%, #00aaff 95%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 24px;
  margin-inline: 0;
  text-align: left;
}

.hero-lead {
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.hero-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  text-align: center;
}

.hero-hud {
  position: absolute;
  right: 3%;
  top: 6%;
  width: clamp(170px, 20vw, 280px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: -1;
  animation: hudFloat 8s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 170, 255, 0.22);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.18);
  will-change: transform, opacity;
}

.ring-1 {
  animation: spinRing 14s linear infinite, ringPulse 4.2s ease-in-out infinite;
}

.ring-2 {
  inset: 12%;
  animation: spinRingReverse 9s linear infinite, ringPulse 3.4s ease-in-out infinite 0.25s;
}

.ring-3 {
  inset: 27%;
  animation: spinRing 7s linear infinite, ringPulse 2.8s ease-in-out infinite 0.45s;
}

.dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ad7ff;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.9);
  will-change: transform;
  transform: translate(-50%, -50%);
  animation: orbitDotIrregular 9s linear infinite, dotBlink 3.2s linear infinite, dotPulse 1.8s ease-in-out infinite;
}

.dot-1 {
  --orbit-a: clamp(54px, 4.4vw, 76px);
  --orbit-b: clamp(66px, 5.6vw, 98px);
  --orbit-c: clamp(48px, 3.7vw, 70px);
  --speed: 7.6s;
  --delay-orbit: -0.25s;
  --delay-blink: -0.6s;
  --delay-pulse: 0.05s;
  animation-duration: var(--speed), 3.5s, 1.9s;
  animation-delay: var(--delay-orbit), var(--delay-blink), var(--delay-pulse);
}

.dot-2 {
  --orbit-a: clamp(34px, 2.8vw, 52px);
  --orbit-b: clamp(58px, 4.7vw, 86px);
  --orbit-c: clamp(30px, 2.3vw, 44px);
  --speed: 5.3s;
  --delay-orbit: -1.1s;
  --delay-blink: -2.1s;
  --delay-pulse: 0.25s;
  animation-duration: var(--speed), 2.2s, 1.3s;
  animation-delay: var(--delay-orbit), var(--delay-blink), var(--delay-pulse);
}

.dot-3 {
  --orbit-a: clamp(20px, 1.9vw, 34px);
  --orbit-b: clamp(50px, 4.2vw, 80px);
  --orbit-c: clamp(36px, 2.9vw, 62px);
  --speed: 4.2s;
  --delay-orbit: -0.7s;
  --delay-blink: -1.4s;
  --delay-pulse: 0.4s;
  animation-duration: var(--speed), 4.1s, 1.5s;
  animation-delay: var(--delay-orbit), var(--delay-blink), var(--delay-pulse);
}

.hero-card h3 {
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card li {
  width: min(100%, 430px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  text-align: left;
}

.hero-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 240px;
  height: 240px;
  right: -40px;
  top: 10%;
  background: rgba(0, 170, 255, 0.24);
}

.orb-b {
  width: 170px;
  height: 170px;
  left: -30px;
  bottom: 8%;
  background: rgba(0, 170, 255, 0.2);
}

.grid-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 170, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: rgba(0, 170, 255, 0.5);
  box-shadow: 0 8px 28px rgba(0, 170, 255, 0.12);
  transform: translateY(-4px);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card::after {
  content: "";
  position: absolute;
  left: -20%;
  top: -120%;
  width: 140%;
  height: 240%;
  background: linear-gradient(110deg, transparent 44%, rgba(0, 170, 255, 0.32) 50%, transparent 56%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 0 18px 36px rgba(0, 170, 255, 0.2), inset 0 0 0 1px rgba(0, 170, 255, 0.35);
}

.service-card:hover::after {
  opacity: 1;
  animation: scanShine 1.5s ease;
}

.icon-chip {
  width: 44px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 12px;
  margin-inline: auto;
  background: rgba(0, 170, 255, 0.15);
  border: 1px solid rgba(0, 170, 255, 0.35);
  color: var(--accent);
}

.icon-chip svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  text-align: center;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  width: 100%;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.timeline-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(160deg, rgba(0, 170, 255, 0.35), rgba(0, 170, 255, 0.1));
  border: 1px solid rgba(0, 170, 255, 0.5);
}

.timeline-content h3 {
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 340px));
  justify-content: center;
  gap: 14px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: min(100%, 340px);
  background: #111;
}

.realization-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.project-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.42s ease, transform 0.24s ease;
  transform: scale(1);
}

.project-slides img.is-active {
  opacity: 1;
  z-index: 1;
}

.project-slides:hover .slide-image.is-active,
.realization-card.is-zoomed .slide-image.is-active {
  transform: scale(2);
}

.realization-card {
  cursor: pointer;
}

.project-overlay {
  position: relative;
  inset: auto;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.26));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 14px 14px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-overlay h3 {
  margin-bottom: 0;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(234, 243, 251, 0.88);
}

.project-card:hover .project-slides img:not(.is-active) {
  transform: scale(1.02);
}

@media (max-width: 739px) {
  .hero-card {
    display: none;
  }

  .contact-card--modern {
    padding: 16px;
  }

  .contact-table th,
  .contact-table td {
    padding: 10px 10px;
    font-size: 0.9rem;
  }

  .contact-table__section th {
    font-size: 0.72rem;
  }

  .partner-slider {
    padding-inline: 14px;
  }

  .partner-item {
    width: min(72vw, 196px);
    flex-basis: min(72vw, 196px);
  }

  .project-slides {
    aspect-ratio: 16 / 9;
  }

  .project-gallery-modal__panel {
    width: min(96vw, 96vw);
    max-height: 92vh;
  }

  .project-gallery-modal__header {
    padding: 14px 14px 10px;
  }

  .project-gallery-modal__content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .project-gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .project-gallery-modal__nav--prev {
    left: 12px;
  }

  .project-gallery-modal__nav--next {
    right: 12px;
  }

  .project-gallery-modal__stage img {
    max-height: 48vh;
  }

  .project-gallery-modal__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 14px 14px;
  }
}

.cta-band {
  border: 1px solid rgba(0, 170, 255, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(0, 170, 255, 0.16), rgba(255, 255, 255, 0.04));
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.2), 0 12px 40px rgba(0, 170, 255, 0.15);
}

.cta-band h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 auto 18px;
}

.contact-wrap {
  display: grid;
  gap: 18px;
  text-align: left;
}

.contact-card,
.form-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.contact-card--modern {
  background: linear-gradient(160deg, rgba(7, 15, 26, 0.94), rgba(8, 14, 24, 0.9));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 170, 255, 0.12);
}

.contact-card__header {
  margin-bottom: 14px;
}

.contact-card__header h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text);
}

.contact-card__header p {
  margin: 0;
  color: #c4d6e7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.contact-list li {
  color: var(--muted);
  text-align: left;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.contact-table th,
.contact-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  color: #d6e4f1;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
}

.contact-table th {
  color: #eef6ff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-table a {
  color: #f5fbff;
  text-decoration: none;
}

.contact-table a:hover,
.contact-table a:focus-visible {
  color: #9ad9ff;
}

.contact-table__section th {
  background: rgba(0, 170, 255, 0.11);
  color: #eaf6ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
}

.contact-table tbody tr:last-child td {
  border-bottom: none;
}

.quote-shell {
  padding: clamp(18px, 2.4vw, 28px);
  position: relative;
  overflow: hidden;
}

.quote-shell::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.34), rgba(0, 170, 255, 0));
  pointer-events: none;
}

.quote-form {
  position: relative;
  z-index: 1;
}

.quote-progress {
  margin-bottom: 20px;
}

.quote-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: #c7d8e8;
  margin-bottom: 10px;
}

.quote-progress-track {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.quote-progress-fill {
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00aaff, #57d4ff);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.55);
  transition: width 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-steps {
  position: relative;
  min-height: 430px;
}

.quote-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-step.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote-step h3 {
  margin-bottom: 16px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  letter-spacing: 0.01em;
}

.step-lead {
  color: #bfd4e6;
  margin-bottom: 10px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  color: #e8f4ff;
  text-align: left;
  font-weight: 500;
  padding: 14px 16px;
  cursor: pointer;
  min-height: 62px;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease, background 0.26s ease;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: rgba(0, 170, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.22);
  transform: translateY(-2px);
}

.choice-card.is-selected {
  border-color: rgba(0, 170, 255, 0.95);
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.22), rgba(0, 170, 255, 0.08));
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.28), 0 12px 24px rgba(0, 170, 255, 0.15);
}

.quote-field-grid {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-size: 0.88rem;
  color: #dce8f4;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 170, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.22);
}

input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.checkbox-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.checkbox-group legend {
  padding: 0 8px;
  color: #cfe4f5;
  font-size: 0.86rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #d8e7f5;
  margin-bottom: 6px;
}

.checkbox-group input[type="checkbox"] {
  width: 17px;
  height: 17px;
}

.dynamic-service-fields {
  min-height: 240px;
}

.dynamic-panel {
  display: none;
  animation: fadeStep 0.24s ease;
}

.dynamic-panel.is-visible {
  display: block;
}

.quote-error {
  min-height: 1.3em;
  color: #ff8f8f;
  font-size: 0.9rem;
  margin: 8px 0 2px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.quote-actions .btn {
  min-width: 130px;
}

.quote-actions .btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

.quote-response-time {
  margin-top: 10px;
  color: #b9ccdc;
  font-size: 0.86rem;
}

.form-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  max-width: min(420px, calc(100vw - 32px));
  border-radius: 14px;
  border: 1px solid rgba(88, 214, 141, 0.55);
  background: linear-gradient(135deg, rgba(20, 84, 52, 0.96), rgba(16, 64, 40, 0.96));
  color: #eafff1;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(88, 214, 141, 0.35);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-toast.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-toast.is-error {
  border-color: rgba(255, 132, 132, 0.55);
  background: linear-gradient(135deg, rgba(101, 35, 35, 0.95), rgba(74, 22, 22, 0.95));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 132, 132, 0.35);
}

.form-toast__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  background: rgba(165, 255, 198, 0.2);
  border: 1px solid rgba(165, 255, 198, 0.55);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-toast.is-error .form-toast__icon {
  background: rgba(255, 186, 186, 0.16);
  border-color: rgba(255, 186, 186, 0.5);
}

.form-toast__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
}

.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.project-gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(12px);
}

.project-gallery-modal__panel {
  position: relative;
  width: min(1120px, 94vw);
  max-height: min(90vh, 900px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(10, 17, 28, 0.98), rgba(8, 13, 24, 0.96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 170, 255, 0.16);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-modal.is-open .project-gallery-modal__panel {
  transform: translateY(0) scale(1);
}

.project-gallery-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-gallery-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7ecfff;
}

.project-gallery-modal__header h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.project-gallery-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.project-gallery-modal__close:hover,
.project-gallery-modal__close:focus-visible,
.project-gallery-modal__nav:hover,
.project-gallery-modal__nav:focus-visible,
.project-gallery-thumb:hover,
.project-gallery-thumb:focus-visible {
  border-color: rgba(0, 170, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.24);
}

.project-gallery-modal__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.project-gallery-modal__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.project-gallery-modal__stage {
  min-width: 0;
  touch-action: pan-y;
  user-select: none;
}

.project-gallery-modal__stage img {
  width: 100%;
  max-height: min(62vh, 680px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.project-gallery-modal__caption {
  margin: 12px 0 0;
  color: #c8d8e7;
  line-height: 1.55;
}

.project-gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.project-gallery-thumb {
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.project-gallery-thumb.is-active {
  border-color: rgba(0, 170, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.22);
}

.project-gallery-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.project-gallery-thumb span {
  display: block;
  padding: 8px;
  font-size: 0.76rem;
  color: #d9e7f3;
  text-align: left;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.references {
  display: grid;
  gap: 14px;
}

.reference-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.reference-item {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  justify-items: center;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.reference-item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
  transform: translateY(-2px);
}

.ref-logo {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  overflow: hidden;
}

.ref-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.ref-logo-text {
  color: #233142;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ref-name {
  font-size: 0.93rem;
  line-height: 1.35;
}

.partner-carousel {
  position: relative;
}

.partner-slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  scroll-snap-type: none;
  cursor: grab;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.partner-slider::-webkit-scrollbar {
  display: none;
}

.partner-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-right: 2px;
}

.partner-group {
  display: flex;
  gap: 12px;
}

.partner-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.partner-slider.is-paused {
  cursor: default;
}

.partner-slider.is-dragging .partner-item {
  pointer-events: none;
}

.partner-item {
  width: 176px;
  flex: 0 0 176px;
  text-decoration: none;
  color: #dce8f4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  display: grid;
  gap: 8px;
  align-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.partner-item:hover,
.partner-item:focus-visible {
  border-color: rgba(0, 170, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.22);
  transform: translateY(-2px);
}

.partner-logo-wrap {
  width: 100%;
  height: 92px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: visible;
}

.partner-logo-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.partner-item.is-square-logo .partner-logo-wrap img {
  max-width: 74%;
  max-height: 74%;
  padding: 4px;
}

.partner-item span {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.25;
  min-height: 2.05em;
  display: grid;
  place-items: center;
}

.partner-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.84);
  color: #ffffff;
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.partner-nav svg {
  width: 20px;
  height: 20px;
}

.partner-nav:hover,
.partner-nav:focus-visible {
  border-color: rgba(0, 170, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.24), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.partner-nav:disabled {
  opacity: 0.42;
  cursor: default;
  box-shadow: none;
}

.partner-nav--prev {
  left: 10px;
}

.partner-nav--next {
  right: 10px;
}

.modal-open {
  overflow: hidden;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.pdf-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 20, 0.62);
  backdrop-filter: blur(10px);
}

.pdf-modal__panel {
  position: relative;
  width: min(1080px, 92vw);
  height: min(82vh, 860px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, rgba(12, 20, 34, 0.9), rgba(8, 13, 24, 0.88));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 170, 255, 0.22);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdf-modal.is-open .pdf-modal__panel {
  transform: translateY(0) scale(1);
}

.pdf-modal__header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pdf-modal__header h3 {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.pdf-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pdf-modal__close:hover,
.pdf-modal__close:focus-visible {
  border-color: rgba(0, 170, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.24);
  transform: scale(1.03);
}

.pdf-modal__content {
  width: 100%;
  height: calc(100% - 56px);
  background: rgba(8, 10, 16, 0.45);
}

.pdf-modal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0a0a0a;
}

.pdf-modal__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  padding: 14px;
  background: rgba(0, 0, 0, 0.45);
}

.pdf-modal__doc {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 170, 255, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(8, 14, 24, 0.95), rgba(10, 16, 28, 0.98));
}

.pdf-doc-card {
  width: min(100%, 620px);
}

.pdf-doc-card__sheet {
  position: relative;
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
  color: #182636;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.pdf-doc-card__sheet::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #00aaff, #8be2ff);
}

.pdf-doc-card__brand {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  border: 1px solid rgba(24, 38, 54, 0.12);
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(23, 40, 61, 0.08);
}

.pdf-doc-card__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: none;
}

.pdf-doc-card__brand span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pdf-doc-card__kicker {
  color: #4e86aa;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pdf-doc-card__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.pdf-doc-card__description {
  color: #436079;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pdf-doc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdf-modal__panel.view-pdf #pdfModalFrame {
  display: block;
}

.pdf-modal__panel.view-pdf #pdfModalImage {
  display: none;
}

.pdf-modal__panel.view-image #pdfModalFrame {
  display: none;
}

.pdf-modal__panel.view-image #pdfModalImage {
  display: block;
}

.pdf-modal__panel.view-doc #pdfModalFrame,
.pdf-modal__panel.view-doc #pdfModalImage {
  display: none;
}

.pdf-modal__panel.view-doc #pdfModalDoc {
  display: flex;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 0 34px;
  color: #9eb0c2;
}

.footer-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f0f7ff;
}

.footer-tagline {
  margin-top: 8px;
  color: #c3d3e3;
}

.footer-copy {
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-meta {
  margin-top: 6px;
  font-size: 0.9rem;
}

.footer-meta a {
  color: #d5ebff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 170, 255, 0.4);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(0, 170, 255, 0.9);
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

@keyframes sweepBeam {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinRingReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes orbitDotIrregular {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-a, 56px)) translateY(0) scale(1);
  }
  18% {
    transform: translate(-50%, -50%) rotate(78deg) translateX(var(--orbit-b, 72px)) translateY(4px) scale(1.08);
  }
  31% {
    transform: translate(-50%, -50%) rotate(141deg) translateX(var(--orbit-c, 42px)) translateY(-3px) scale(0.92);
  }
  52% {
    transform: translate(-50%, -50%) rotate(218deg) translateX(var(--orbit-b, 72px)) translateY(2px) scale(1.02);
  }
  77% {
    transform: translate(-50%, -50%) rotate(304deg) translateX(var(--orbit-a, 56px)) translateY(-5px) scale(0.95);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-c, 42px)) translateY(0) scale(1);
  }
}

@keyframes dotBlink {
  0%,
  12% {
    opacity: 0;
  }
  19% {
    opacity: 0.95;
  }
  34% {
    opacity: 0.3;
  }
  45% {
    opacity: 1;
  }
  63% {
    opacity: 0.12;
  }
  74% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 24px rgba(0, 170, 255, 1);
  }
}

@keyframes hudFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes scanShine {
  0% {
    transform: translateX(-52%);
  }
  100% {
    transform: translateX(40%);
  }
}

@media (min-width: 740px) {
  .menu-toggle {
    display: none;
  }

  .topbar nav {
    width: auto;
  }

  .nav-menu {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    border-radius: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    display: inline;
    padding: 0;
  }

  .nav-indicator {
    display: block;
  }

  .partner-slider {
    padding-inline: 58px;
  }

  .partner-nav {
    display: inline-flex;
  }

  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-actions {
    justify-content: flex-end;
  }

  .quote-step {
    transform: translateX(34px);
  }
}

@media (min-width: 980px) {
  .header-cta {
    display: inline-flex !important;
  }

  .section {
    padding: 92px 0;
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
