:root {
  --ink: #071115;
  --muted: #68747a;
  --paper: #f4f6f7;
  --soft: #e7eef3;
  --ocean: #004761;
  --ocean-dark: #003c54;
  --line: rgba(7, 17, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
}

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

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

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

.hero {
  min-height: 760px;
  background:
    linear-gradient(180deg, rgba(0, 40, 58, 0.18), rgba(0, 40, 58, 0.4)),
    url("https://images.unsplash.com/photo-1605281317010-fe5ffe798166?auto=format&fit=crop&w=2400&q=85") center / cover;
  color: white;
  position: relative;
  overflow: hidden;
}

.nav {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.nav-links,
.hero-actions,
.socials,
.circle-actions,
.avatar-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 30%, currentColor 0 29%, transparent 30%),
    radial-gradient(circle at 70% 30%, currentColor 0 29%, transparent 30%),
    radial-gradient(circle at 30% 70%, currentColor 0 29%, transparent 30%),
    radial-gradient(circle at 70% 70%, currentColor 0 29%, transparent 30%);
  color: currentColor;
  display: inline-block;
}

.nav-links {
  gap: 34px;
  font-size: 14px;
}

.nav-cta,
.button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hero-copy {
  position: absolute;
  left: max(48px, calc((100vw - 1180px) / 2));
  top: 420px;
  width: min(390px, calc(100% - 64px));
}

.hero-copy p {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.button.primary {
  background: white;
  color: var(--ink);
}

.button.ghost {
  color: white;
}

.hero-tag {
  position: absolute;
  right: max(48px, calc((100vw - 1180px) / 2));
  top: 525px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(0, 44, 62, 0.36);
  backdrop-filter: blur(8px);
}

.hero h1 {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  margin: 0;
  width: 105vw;
  font-size: clamp(72px, 11vw, 188px);
  line-height: 0.85;
  text-align: center;
  letter-spacing: -0.06em;
  font-weight: 900;
  white-space: nowrap;
}

.about {
  padding: 110px 0 130px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 64px;
}

.section-label {
  font-weight: 700;
}

.about-main > p {
  max-width: 760px;
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.32;
  color: #6a6f72;
}

.about-main > p::first-line {
  color: var(--ink);
}

.stat-bars {
  margin-top: 86px;
  display: flex;
  align-items: end;
  gap: 48px;
}

.bar-card {
  width: 210px;
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ocean);
  color: white;
  min-height: 260px;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 7px);
}

.bar-card strong {
  font-size: 56px;
  letter-spacing: -0.04em;
}

.bar-card.light {
  min-height: 210px;
  background: #dfe4e7;
  color: var(--ink);
}

.bar-card.short {
  min-height: 160px;
}

.services {
  background: var(--ocean-dark);
  color: white;
}

.services .inner {
  padding: 118px 0;
}

.services h2,
.network h2,
.trust h2,
.contact-form h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 72px);
  letter-spacing: -0.04em;
}

.services p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.service-card h3 {
  margin: 0 0 12px;
}

.service-card.featured {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.service-card.featured img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.service-card.featured div {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0, 32, 48, 0.92));
}

.priority {
  padding: 130px 0;
}

.pricing {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.pricing h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-grid article {
  padding: 28px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.pricing-grid h3 {
  margin: 0 0 12px;
}

.price {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--ocean);
  color: white;
  padding: 8px 13px;
  font-size: 14px;
}

.pricing-grid p,
.business-line {
  color: var(--muted);
}

.price-chart {
  grid-column: 1 / -1;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 55, 78, 0.08);
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row.head {
  min-height: 52px;
  background: var(--ocean);
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.price-row strong {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.price-row em {
  font-style: normal;
  color: #15803d;
  font-weight: 700;
}

.pricing-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: white;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 22px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.priority-copy {
  max-width: 720px;
  margin: 0 0 90px auto;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.28;
  color: #666;
}

.priority-copy::first-line {
  color: var(--ink);
}

.priority-grid {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: end;
  gap: 80px;
}

.priority-grid img {
  height: 360px;
  width: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist h3 {
  margin: 0 0 8px;
}

.checklist span {
  color: var(--muted);
}

.big-stat strong {
  display: block;
  font-size: 76px;
  letter-spacing: -0.06em;
}

.network {
  background: #dfe9ef;
  padding: 96px 0;
}

.network-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 120px;
}

.network-head h2 {
  font-size: clamp(34px, 4.2vw, 62px);
}

.network-head p {
  color: #526168;
  line-height: 1.55;
}

.map {
  height: 420px;
  margin: 52px auto 44px;
  max-width: 930px;
  position: relative;
  background-image: radial-gradient(circle, rgba(0, 75, 95, 0.55) 1.5px, transparent 2px);
  background-size: 11px 11px;
  clip-path: polygon(2% 38%, 12% 28%, 28% 26%, 42% 14%, 60% 24%, 73% 20%, 90% 34%, 96% 58%, 82% 78%, 58% 80%, 43% 72%, 24% 82%, 10% 68%);
  opacity: 0.74;
}

.map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(0, 55, 70, 0.38);
  stroke-width: 2;
}

.pin {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  z-index: 2;
}

.p1 { left: 23%; top: 43%; }
.p2 { left: 43%; top: 55%; }
.p3 { right: 28%; top: 38%; }
.p4 { right: 14%; bottom: 22%; }

.network-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.network-links a {
  height: 72px;
  padding: 0 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust {
  padding: 120px 0;
}

.trust-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.trust h2 {
  font-size: clamp(56px, 8vw, 108px);
}

.circle-actions {
  gap: 10px;
}

.circle-actions button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
}

.circle-actions button:last-child {
  background: var(--ink);
  color: white;
}

blockquote {
  max-width: 720px;
  margin: 90px auto 50px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
}

.person {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.person img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.person span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.person em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
}

.logo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 14px;
  overflow: hidden;
  padding: 0 0 110px;
}

.logo-strip span {
  height: 64px;
  background: #eef2f4;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0c2632;
  border-radius: 4px;
}

.contact {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  background: #eaf0f3;
  border-radius: 8px;
}

.contact-card {
  padding: 42px;
  display: grid;
  gap: 22px;
}

.avatar-row span,
.avatar-row strong {
  width: 52px;
  height: 52px;
  margin-left: -10px;
  border-radius: 50%;
  border: 3px solid #eaf0f3;
  background: #b9cbd4;
  display: grid;
  place-items: center;
}

.avatar-row span:first-child {
  margin-left: 0;
  background: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=120&q=80") center / cover;
}

.avatar-row span:nth-child(2) {
  background: url("https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?auto=format&fit=crop&w=120&q=80") center / cover;
}

.avatar-row span:nth-child(3) {
  background: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=120&q=80") center / cover;
}

.avatar-row span:nth-child(4) {
  background: url("https://images.unsplash.com/photo-1527980965255-d3b416303d12?auto=format&fit=crop&w=120&q=80") center / cover;
}

.avatar-row strong {
  background: var(--ocean);
  color: white;
}

.contact-card h3 {
  margin: 0;
  font-size: 26px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.contact-form {
  padding: 52px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-form label {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 17, 21, 0.24);
  background: transparent;
  padding: 14px 4px;
  font: inherit;
  outline: none;
}

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

.contact-form button {
  width: 100%;
  height: 58px;
  margin-top: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ocean);
  color: white;
  font-weight: 700;
}

.contact-form > p {
  text-align: center;
}

.contact-form a {
  text-decoration: underline;
  font-weight: 700;
}

.site-footer {
  background:
    linear-gradient(rgba(0, 62, 86, 0.9), rgba(0, 62, 86, 0.94)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=2200&q=80") center bottom / cover;
  color: white;
  padding: 88px max(48px, calc((100vw - 1180px) / 2)) 22px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 220px;
  gap: 70px;
}

.footer-grid p {
  max-width: 460px;
  font-size: 30px;
  line-height: 1.38;
}

.footer-url {
  display: inline-block;
  margin: 28px 0 26px;
  font-size: 36px;
  font-weight: 800;
  text-decoration: underline;
}

.legal-block {
  margin: 0 0 34px;
  display: grid;
  gap: 8px;
  max-width: 520px;
  color: rgba(255,255,255,0.74);
}

.legal-block strong {
  color: white;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-grid a:not(.footer-url) {
  display: block;
  color: rgba(255,255,255,0.7);
  margin: 22px 0;
}

.socials {
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer-brand {
  margin-top: 90px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: clamp(72px, 11vw, 190px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.footer-brand .brand-mark {
  width: 128px;
  height: 128px;
  border-radius: 32px;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-tag {
    display: none;
  }

  .about,
  .priority-grid,
  .network-head,
  .contact,
  .pricing,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .network-links {
    grid-template-columns: 1fr 1fr;
  }

  .priority-copy {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .section,
  .nav {
    width: min(100% - 32px, 1180px);
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    bottom: 18px;
    font-size: 54px;
    white-space: normal;
  }

  .hero-copy {
    left: 16px;
    top: 300px;
  }

  .about,
  .priority,
  .trust {
    padding: 76px 0;
  }

  .stat-bars,
  .service-grid,
  .network-links,
  .form-row,
  .price-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .price-row {
    gap: 6px;
    padding: 18px;
  }

  .bar-card {
    width: 100%;
  }

  .services .inner,
  .network {
    padding: 76px 0;
  }

  .contact-form,
  .contact-card {
    padding: 26px;
  }

  .footer-url {
    font-size: 28px;
  }

  .footer-brand .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
}
