:root {
  --bg: #050b13;
  --bg-soft: #081320;
  --surface: #0c1826;
  --surface-strong: #101f30;
  --line: rgba(153, 200, 235, 0.14);
  --line-bright: rgba(41, 168, 255, 0.38);
  --text: #f5f9fc;
  --text-soft: #a8b7c5;
  --blue: #29a8ff;
  --blue-bright: #6fc9ff;
  --blue-dark: #087bc5;
  --green: #58e6a9;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: #06101b;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 19, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(41, 168, 255, 0.18), rgba(41, 168, 255, 0.04));
  box-shadow: inset 0 0 18px rgba(41, 168, 255, 0.08);
}

.brand-mark svg {
  width: 23px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.main-nav > a:not(.button) {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #138fe2);
  box-shadow: 0 12px 32px rgba(41, 168, 255, 0.2);
  color: #02111c;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 38px rgba(41, 168, 255, 0.32);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(111, 201, 255, 0.55);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button-ghost {
  border-color: var(--line-bright);
  background: rgba(41, 168, 255, 0.06);
  box-shadow: none;
  color: var(--text);
}

.button-wide {
  width: 100%;
  border: 0;
}

.button:disabled {
  box-shadow: none;
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 94px 0 106px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  letter-spacing: -0.065em;
}

h1 span {
  display: block;
  color: var(--blue);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 3.5rem);
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-soft);
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #c9d4de;
  font-size: 0.88rem;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-panel {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(41, 168, 255, 0.12), transparent 36%),
    rgba(8, 19, 32, 0.9);
  box-shadow: var(--shadow), inset 0 0 80px rgba(41, 168, 255, 0.04);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  overflow: hidden;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle at center, rgba(41, 168, 255, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.22;
  pointer-events: none;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #8195a8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.panel-dots {
  display: flex;
  gap: 6px;
}

.panel-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #294258;
}

.panel-dots i:first-child {
  background: var(--blue);
}

.diagnostic-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 48px 34px;
}

.scan-ring {
  position: relative;
  display: grid;
  place-items: center;
}

.scan-ring svg {
  width: 100%;
  max-width: 190px;
  transform: rotate(-90deg);
}

.scan-ring circle {
  fill: none;
  stroke-width: 4;
}

.ring-track {
  stroke: #14283a;
}

.ring-value {
  stroke: var(--blue);
  stroke-dasharray: 302;
  stroke-dashoffset: 54;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(41, 168, 255, 0.75));
}

.scan-ring > span {
  position: absolute;
  display: grid;
  color: #8295a7;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  place-items: center;
  text-transform: uppercase;
}

.scan-ring strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.7rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 11, 19, 0.52);
  color: #9caebd;
  font-size: 0.73rem;
}

.status-list b {
  color: var(--green);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.panel-message {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 22px;
  padding: 13px 15px;
  border: 1px solid rgba(88, 230, 169, 0.18);
  border-radius: 10px;
  background: rgba(88, 230, 169, 0.05);
  color: #b7c6d2;
  font-size: 0.78rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(88, 230, 169, 0.09);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow-one {
  top: 5%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: var(--blue);
}

.hero-glow-two {
  bottom: 0;
  left: 20%;
  width: 280px;
  height: 280px;
  background: #1056e8;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(8, 19, 32, 0.75);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid span {
  padding: 20px 12px;
  color: #71879a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
}

.trust-grid span + span {
  border-left: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 48, 0.85), rgba(8, 19, 32, 0.78));
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  border-color: var(--line-bright);
  background: linear-gradient(145deg, rgba(20, 42, 64, 0.9), rgba(8, 19, 32, 0.8));
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  background: rgba(41, 168, 255, 0.08);
}

.icon-box svg {
  width: 24px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
}

.process-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(41, 168, 255, 0.09), transparent 32%),
    var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 34px 34px 10px;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step > span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 41px;
  left: 76px;
  width: calc(100% - 95px);
  height: 1px;
  content: "";
  background: linear-gradient(to right, var(--line-bright), transparent);
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.about-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.02rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--blue-bright);
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 19, 32, 0.52);
  overflow: hidden;
}

.benefit-card {
  min-height: 220px;
  padding: 28px;
}

.benefit-card:nth-child(even) {
  border-left: 1px solid var(--line);
}

.benefit-card:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.benefit-card strong {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.benefit-card p {
  margin: 0;
  font-size: 0.88rem;
}

.faq-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 650px;
  margin: -8px 0 24px;
  padding-right: 44px;
  font-size: 0.94rem;
}

.quote-section {
  background:
    radial-gradient(circle at 10% 50%, rgba(41, 168, 255, 0.11), transparent 32%),
    var(--bg);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 118px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-list > * {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.contact-list a:hover {
  border-color: var(--line);
  background: rgba(41, 168, 255, 0.04);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: rgba(41, 168, 255, 0.07);
}

.contact-icon svg {
  width: 20px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-list small,
.contact-list b {
  display: block;
}

.contact-list small {
  color: #7f93a5;
  font-size: 0.73rem;
  line-height: 1.3;
}

.contact-list b {
  max-width: 300px;
  margin-top: 2px;
  color: #dbe5ed;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.quote-form {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line-bright);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(16, 31, 48, 0.92), rgba(8, 19, 32, 0.9));
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #d7e2ea;
  font-size: 0.84rem;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(153, 200, 235, 0.2);
  border-radius: 9px;
  outline: 0;
  background: rgba(4, 10, 17, 0.72);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 11px 13px;
}

textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #637689;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 168, 255, 0.1);
}

select {
  color-scheme: dark;
}

.form-note {
  margin: 13px 0 0;
  font-size: 0.76rem;
  text-align: center;
}

.form-note.success {
  color: var(--green);
}

.form-note.error {
  color: #ff8d96;
}

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

.site-footer {
  padding: 66px 0 26px;
  border-top: 1px solid var(--line);
  background: #03070c;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-top p {
  max-width: 430px;
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 14px 38px;
  color: #a5b5c3;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #607486;
  font-size: 0.75rem;
}

.footer-bottom a:hover {
  color: var(--blue-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel {
    width: min(100%, 620px);
    transform: none;
  }

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

  .about-copy,
  .faq-grid > div:first-child {
    max-width: 650px;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 11, 19, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 16px;
  }

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

  .trust-grid span:nth-child(4),
  .trust-grid span:nth-child(5) {
    display: none;
  }

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

  .process-step {
    padding: 26px 10px 30px;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-step > span {
    margin-bottom: 25px;
  }

  .process-step::after {
    display: none;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .brand {
    max-width: calc(100% - 64px);
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    min-height: 0;
    padding: 68px 0 76px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .diagnostic-visual {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .scan-ring svg {
    max-width: 170px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid,
  .benefit-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }

  .icon-box {
    margin-bottom: 36px;
  }

  .benefit-card:nth-child(even) {
    border-left: 0;
  }

  .benefit-card:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .benefit-card {
    min-height: 190px;
  }

  .quote-form {
    padding: 22px 18px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    gap: 10px;
  }
}

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