:root {
  --navy: #0f1b2e;
  --deep: #061a33;
  --blue: #2d7ff9;
  --blue-dark: #075ed8;
  --muted: #5e6b80;
  --line: #e6ecf5;
  --surface: #ffffff;
  --soft: #f7f8fa;
  --green: #16a35a;
  --red: #ef3232;
  --shadow: 0 20px 60px rgba(15, 27, 46, .10);
  --shadow-soft: 0 12px 32px rgba(15, 27, 46, .075);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 52%, #fff 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(45, 127, 249, .35);
  outline-offset: 3px;
}

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

.section {
  padding: 54px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 236, 245, .74);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 27, 46, .06);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 218px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 56px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
}

.site-nav a {
  padding: 10px 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #1d7dff 0%, #075ed8 100%);
  box-shadow: 0 14px 24px rgba(45, 127, 249, .25);
}

.button-outline {
  color: #0d63e8;
  background: #fff;
  border: 2px solid #2d7ff9;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding-top: 64px;
  padding-bottom: 34px;
}

.hero-bg {
  position: absolute;
  inset: 0 0 -40px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 38%, rgba(255, 255, 255, .66) 62%, rgba(255, 255, 255, .26) 100%),
    url("assets/mountains-hero.png") right bottom / 72% auto no-repeat;
  opacity: .96;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 500px) 1fr;
  align-items: center;
  gap: 34px;
}

.hero-copy {
  padding: 20px 0 52px;
}

.hero-copy h1 {
  margin: 0 0 26px;
  max-width: 520px;
  color: var(--navy);
  font-size: clamp(38px, 3.55vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-copy p {
  max-width: 550px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 760;
}

.text-link span {
  color: var(--blue);
}

.hero-visual {
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: -74px;
}

.hero-devices {
  width: min(780px, 64vw);
  max-width: none;
  filter: drop-shadow(0 24px 28px rgba(15, 27, 46, .16));
}

.benefits {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.benefit {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit svg,
.service-card svg,
.process-step svg {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit svg {
  width: 27px;
  height: 27px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.centered {
  text-align: center;
}

.fit-section {
  padding-top: 30px;
}

.fit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fit-card,
.service-card,
.faq-list details {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 27, 46, .055);
}

.fit-card {
  padding: 28px 30px 26px;
}

.fit-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fit-title h3 {
  margin: 0;
  font-size: 22px;
}

.status-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 34px;
}

.status-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yes-card .status-icon {
  color: var(--green);
  border: 2px solid var(--green);
}

.no-card .status-icon {
  color: var(--red);
  border: 2px solid var(--red);
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
  color: var(--navy);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .48em;
}

.yes-card .check-list li::before {
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
  transform-origin: center;
}

.no-card .check-list li::before {
  width: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: center;
}

.no-card .check-list li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: .48em;
  width: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.services-section {
  padding-top: 16px;
}

.services-layout {
  display: block;
}

.services-intro {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.service-grid {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.service-card svg {
  width: 38px;
  height: 38px;
}

.service-card h3 {
  margin: 0;
  max-width: 150px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.process-section {
  padding-top: 20px;
}

.process-layout {
  display: block;
}

.process-intro {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  position: relative;
  max-width: 1000px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 11%;
  right: 11%;
  border-top: 2px dashed #2d7ff9;
  opacity: .75;
}

.process-step {
  position: relative;
  z-index: 1;
  background: transparent;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(45, 127, 249, .24);
}

.process-step svg {
  width: 42px;
  height: 42px;
  background: #fff;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  padding-top: 24px;
  padding-bottom: 28px;
}

.faq-list {
  max-width: 870px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 500;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.form-section {
  padding-top: 22px;
  padding-bottom: 18px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 46px;
  align-items: center;
  min-height: 292px;
  padding: 32px 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .83) 45%, rgba(255, 255, 255, .9) 100%),
    url("assets/mountains-form.png") left bottom / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.12;
}

.contact-copy h2 span {
  display: block;
  color: var(--blue);
}

.contact-copy > p {
  max-width: 370px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 17px;
}

.contact-note {
  margin-top: 18px !important;
  color: var(--muted) !important;
  font-size: 15px !important;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  color: var(--navy);
  background: rgba(255, 255, 255, .86);
  border: 1px solid #dce5f0;
  border-radius: 7px;
  padding: 11px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9aa7b9;
  font-weight: 400;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 127, 249, .12);
  outline: 0;
}

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

.form-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.form-bottom small {
  color: var(--muted);
}

.form-bottom .button {
  min-width: 214px;
  min-height: 56px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

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

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

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--blue);
  font-weight: 500;
}

.privacy-note a:hover {
  color: var(--blue-dark);
}

.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 48%, #fff 100%);
}

.legal-hero {
  padding-top: 56px;
  padding-bottom: 72px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 52px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.legal-content {
  color: var(--navy);
}

.legal-content h1 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 500;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-content li {
  margin: 7px 0;
  padding-left: 2px;
}

.legal-lead {
  max-width: 720px;
  font-size: 18px !important;
}

.legal-date {
  display: inline-flex;
  margin: 8px 0 8px !important;
  padding: 8px 12px;
  color: var(--navy) !important;
  background: #f2f6fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px !important;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #061a33;
  padding: 50px 0 24px;
}

.site-footer::before {
  display: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.site-footer .footer-logo {
  display: inline-block;
  margin: 0 0 16px;
  color: #fff;
}

.footer-logo img {
  width: 206px;
  height: auto;
}

.footer-brand p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.site-footer h2 {
  margin: 2px 0 14px;
  color: rgba(255, 255, 255, .96);
  font-size: 15px;
  letter-spacing: 0;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.local-card {
  min-height: 116px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(230, 236, 245, .18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.local-card svg {
  width: 100%;
  height: 42px;
  margin-top: 4px;
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 2;
}

.local-card p {
  margin-top: 0;
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.footer-bottom a {
  display: inline;
  color: #8fc0ff;
  font-weight: 400;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .site-nav {
    gap: 26px;
  }

  .hero-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .hero-visual {
    margin-right: -36px;
  }

  .hero-devices {
    width: min(640px, 58vw);
  }

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

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

  .process-steps {
    gap: 20px;
  }
}

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

  .header-inner {
    min-height: 76px;
    grid-template-columns: 190px auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .78) 100%),
      url("assets/mountains-hero.png") center bottom / auto 75% no-repeat;
  }

  .hero-grid,
  .fit-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .hero-visual {
    min-height: auto;
    margin: 0;
    justify-content: center;
  }

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

  .benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
    padding: 10px;
  }

  .benefit {
    justify-content: flex-start;
    border-right: 0;
  }

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

  .process-steps::before {
    display: none;
  }

  .contact-card {
    gap: 28px;
    padding: 28px 24px;
  }

  .legal-hero {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .legal-card {
    padding: 34px 28px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 174px;
  }

  .section {
    padding: 38px 0;
  }

  .hero-actions,
  .form-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .benefits,
  .service-grid,
  .process-steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    border-radius: 12px;
  }

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

  .benefit:last-child {
    border-bottom: 0;
  }

  .fit-card {
    padding: 23px 20px;
  }

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

  .contact-card {
    padding: 24px 18px;
  }

  .privacy-note {
    font-size: 11px;
  }

  .legal-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .legal-content h1 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .legal-content h2 {
    font-size: 19px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}
