:root {
  --ink: #071522;
  --muted: #536678;
  --bg: #f8fbfc;
  --soft: #e8f3f6;
  --panel: #ffffff;
  --line: #d8e3e7;
  --accent: #17677c;
  --accent-dark: #0d3f52;
  --accent-2: #85c7d4;
  --button: #17677c;
  --button-text: #ffffff;
  --shadow: 0 24px 70px rgba(7, 21, 34, .14);
  --font-body: "Segoe UI", "Inter", "Aptos", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", "Inter", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 15px clamp(20px, 5vw, 74px);
  background: rgba(248, 251, 252, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 258px;
  max-width: 48vw;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 720;
}

.section-pad {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 74px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  min-height: min(880px, calc(100vh - 76px));
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(135deg, rgba(23, 103, 124, .08) 0 25%, transparent 25% 100%),
    radial-gradient(circle at 86% 22%, rgba(133, 199, 212, .42), transparent 28%),
    var(--bg);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.1vw, 74px);
  line-height: 1.03;
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 740;
}

.lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 780;
}

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

.button-secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, .58);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
}

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

.hero-points span {
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 720;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4.7 / 3.6;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  max-width: 286px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  border-left: 5px solid var(--accent-2);
  box-shadow: 0 18px 45px rgba(7, 21, 34, .16);
}

.hero-card span,
.testimonial-grid span,
.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.hero-card strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  line-height: 1.28;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 46px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.narrow {
  max-width: 960px;
}

.intro,
.process,
.testimonials {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 245px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid span,
.timeline span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
}

.service-grid p,
.feature-copy p,
.package-card p,
.testimonial-grid p,
.timeline p {
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  background: var(--soft);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 5 / 3.7;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1220px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 34px 32px 10px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.packages {
  background: linear-gradient(180deg, var(--bg) 0%, var(--soft) 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.package-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--accent) 20%);
  box-shadow: 0 18px 45px rgba(7, 21, 34, .08);
}

.package-card.featured {
  transform: translateY(-18px);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-card div {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.package-card strong {
  color: var(--accent);
  font-size: 25px;
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-grid article {
  min-height: 280px;
  padding: 34px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonial-grid strong {
  display: block;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 74px);
  color: var(--ink);
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.site-footer address {
  color: var(--muted);
  font-style: normal;
}

.contact-lines {
  font-weight: 760;
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    align-items: flex-start;
  }

  .brand img {
    max-width: min(360px, 92vw);
  }

  .hero,
  .feature,
  .service-grid,
  .timeline,
  .package-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  html {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body,
  main,
  section,
  footer {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  h1 {
    max-width: 320px;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: normal;
  }

  h2 {
    max-width: 320px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero,
  .section-pad {
    padding: 58px 18px;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-copy,
  .hero-media,
  .section-heading,
  .feature-copy {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .lead {
    max-width: 320px;
    font-size: 17px;
  }

  .section-heading p:not(.eyebrow),
  .feature-copy p,
  .service-grid p,
  .timeline p,
  .package-card p,
  .testimonial-grid p,
  .check-list li,
  .hero-card strong {
    max-width: min(310px, calc(100vw - 80px));
    overflow-wrap: break-word;
  }

  .service-grid,
  .timeline,
  .package-grid,
  .testimonial-grid,
  .feature-image,
  .hero-media img,
  .feature-image img,
  .service-grid article,
  .timeline article,
  .package-card,
  .testimonial-grid article {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .service-grid article,
  .timeline article,
  .package-card div,
  .testimonial-grid article {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points span {
    width: 100%;
  }

  .hero-card {
    position: static;
    width: 100%;
    max-width: calc(100vw - 36px);
    margin-top: 14px;
  }
}
