:root {
  --ink: #101828;
  --text: #475467;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f8fafc;
  --navy: #0b1f33;
  --navy-2: #12304d;
  --teal: #0f9f91;
  --teal-dark: #0b756d;
  --green: #16a34a;
  --shadow: 0 22px 55px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font: 16px/1.65 "Inter", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover,
a:focus {
  text-decoration: none;
}

.shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled,
.site-header.is-open {
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

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

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--teal-dark);
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--navy);
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
}

.hero {
  position: relative;
  min-height: max(720px, calc(100vh - 78px));
  min-height: max(720px, calc(100svh - 78px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 72px;
  color: #fff;
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 30, 0.88) 0%, rgba(8, 28, 46, 0.76) 48%, rgba(8, 28, 46, 0.34) 100%),
    linear-gradient(180deg, rgba(15, 159, 145, 0.12), rgba(11, 31, 51, 0.44));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.45fr);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.hero-info strong {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 66px);
}

.hero-card {
  max-width: 820px;
}

.hero-card > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 16px 32px rgba(15, 159, 145, 0.22);
}

.button.primary:hover,
.button.primary:focus {
  background: #095f59;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.hero-points i {
  color: var(--green);
}

.hero-info {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 26px;
  background: rgba(7, 24, 40, 0.64);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.hero-info span {
  display: block;
  color: #86efac;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-info strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 26px;
}

.hero-info a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 22px;
  border-radius: 8px;
  padding: 0 16px;
  color: #071713;
  background: #86efac;
  font-weight: 800;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.trust-grid div {
  padding: 24px 28px;
}

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

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  --section-pad-y: 96px;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.section-anchor {
  position: absolute;
  top: var(--section-pad-y);
  left: 0;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
  scroll-margin-top: 96px;
}

.services,
.advantages {
  background: #fff;
}

.services,
.process {
  --section-pad-y: 76px;
}

.services .section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.services .section-head p {
  max-width: 780px;
  font-size: 16px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.compact {
  max-width: 620px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 159, 145, 0.36);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.1);
}

.service-card > i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 20px;
}

.service-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.process {
  color: #fff;
  background: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.process h2 {
  color: #fff;
}

.process-copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  color: #86efac;
  font-weight: 800;
}

.steps h3 {
  margin: 10px 0 6px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.advantages {
  --section-pad-y: 76px;
  background: var(--soft);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.advantages .section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.advantages .section-head p {
  max-width: 760px;
  font-size: 16px;
}

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

.advantages-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.advantages-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.advantages-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.advantages-grid p {
  margin: 0;
  color: var(--muted);
}

.advantages-grid ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.advantages-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.advantages-grid li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.contact {
  --section-pad-y: 72px;
  color: #fff;
  background:
    linear-gradient(180deg, var(--navy) 0%, #0d253d 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact .eyebrow {
  color: var(--teal-dark);
}

.contact h2 {
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 18px;
  margin-top: 18px;
}

.contact-data,
.contact-map {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.contact-data {
  padding: 18px;
}

.contact-data h3 {
  margin: 6px 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.contact-data ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-data li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.contact-data i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--navy);
  background: #67e8d8;
  flex: 0 0 auto;
}

.contact-data a {
  color: #fff;
}

.contact-data p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.contact-map {
  position: relative;
  overflow: hidden;
}

.contact-map:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(11, 31, 51, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 210px;
  border: 0;
}

.contact-map a {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.16);
}

.contact-panel p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.contact-box {
  display: grid;
  max-width: 460px;
  width: 100%;
  justify-self: end;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 14px;
  background: rgba(8, 24, 40, 0.54);
}

.form-field {
  display: grid;
  gap: 5px;
}

.form-field-full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 72px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(103, 232, 216, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(103, 232, 216, 0.14);
}

.contact-form button {
  min-height: 42px;
  margin-top: 0;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: #67e8d8;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form button:hover,
.contact-form button:focus {
  background: #99f6e4;
  transform: translateY(-1px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.86;
  transform: none;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(11, 31, 51, 0.24);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: button-spin 0.75s linear infinite;
}

.contact-form.is-loading .button-loader {
  display: inline-block;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  color: #99f6e4;
}

.form-status.is-error {
  color: #fecaca;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  flex-wrap: wrap;
}

.float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  font-size: 29px;
  text-align: center;
}

.float:hover,
.float:focus {
  color: #fff;
  background: #1fbd5b;
}

.my-float {
  margin-top: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

.js .reveal-delay-1 {
  transition-delay: 0.07s;
}

.js .reveal-delay-2 {
  transition-delay: 0.14s;
}

.js .reveal-delay-3 {
  transition-delay: 0.21s;
}

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

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

@media (max-width: 1080px) {
  .hero-layout,
  .process-grid,
  .contact-panel,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-box {
    justify-self: stretch;
    max-width: none;
  }

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

  .advantages-grid div {
    min-height: 0;
  }

  .hero-info {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1160px);
  }

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

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(16, 24, 40, 0.1);
  }

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

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

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 56px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section h2,
  .hero-card > p,
  .section-head p,
  .process-copy p,
  .contact-panel p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    --section-pad-y: 72px;
    min-height: 100vh;
    min-height: 100svh;
  }

  .services,
  .process {
    --section-pad-y: 64px;
  }

  .advantages {
    --section-pad-y: 64px;
    min-height: auto;
  }

  .advantages .section-head {
    margin-bottom: 24px;
  }

  .advantages-grid {
    gap: 12px;
  }

  .advantages-grid div {
    padding: 18px;
  }

  .section-anchor {
    scroll-margin-top: 82px;
  }

  .contact {
    --section-pad-y: 64px;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 16px;
    margin-top: 16px;
  }

  .contact-data {
    padding: 20px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 260px;
  }

}
