:root {
  --teal: #078aa7;
  --teal-dark: #03667b;
  --yellow: #ffc800;
  --navy: #071d35;
  --ink: #172033;
  --muted: #617084;
  --line: #d9e3ea;
  --surface: #ffffff;
  --soft: #eef8fb;
  --shadow: 0 18px 45px rgba(7, 29, 53, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: inset 0 0 0 3px #fff;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(620px, calc(100svh - 90px));
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  z-index: -2;
}

.hero-image {
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 39%, rgba(255, 255, 255, 0.18) 70%),
    linear-gradient(0deg, rgba(7, 29, 53, 0.46), rgba(7, 29, 53, 0.04));
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 72px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.06;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 8vw, 6.9rem);
  font-weight: 1000;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #263449;
  font-size: 1.2rem;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(255, 200, 0, 0.28);
}

.button.secondary {
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
}

.button.dark {
  background: var(--navy);
  color: #ffffff;
  box-shadow: none;
}

.button.light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.band {
  background: var(--soft);
}

.intro {
  padding: 42px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 88px 0;
}

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

.section-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.benefits > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 30px;
}

.service-card.featured {
  border-color: rgba(255, 200, 0, 0.8);
  box-shadow: 0 18px 45px rgba(255, 200, 0, 0.18);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 1000;
}

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

ul {
  margin: 20px 0 0;
  padding-left: 1.2rem;
}

li {
  margin: 8px 0;
}

li::marker {
  color: var(--teal);
}

.pricing {
  padding: 82px 0;
}

.price-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--ink);
  font-weight: 750;
}

.price-row strong {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefits > div {
  padding: 24px;
}

.benefits p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(7, 138, 167, 0.96), rgba(3, 102, 123, 0.98)),
    var(--teal);
  color: #ffffff;
}

.cta .section-kicker,
.cta h2,
.cta p {
  color: #ffffff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: center;
}

.cta p {
  max-width: 640px;
}

.qr-box {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.qr-box img {
  width: 220px;
  height: 220px;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.legal-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
}

.legal-list dt {
  color: var(--muted);
  font-weight: 850;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.legal-list a {
  color: var(--teal-dark);
  font-weight: 850;
}

.legal-list.simple {
  margin-bottom: 56px;
}

.legal-page {
  padding: 78px 0 96px;
}

.legal-page h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.legal-page h2 {
  margin-top: 44px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-page p {
  max-width: 860px;
  color: var(--muted);
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 850;
}

.site-footer {
  padding: 20px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.footer-grid.compact {
  justify-content: flex-start;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: min(690px, calc(100svh - 138px));
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.12) 80%),
      linear-gradient(0deg, rgba(7, 29, 53, 0.4), rgba(7, 29, 53, 0.02));
  }

  .hero-content {
    padding: 250px 0 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .intro-grid,
  .service-grid,
  .benefits,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  .cta-grid {
    gap: 30px;
  }

  .qr-box {
    justify-self: start;
  }

}

@media (max-width: 520px) {
  .wrap,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: min(680px, calc(100svh - 128px));
  }

  .hero-content {
    padding-top: 185px;
  }

  .button {
    width: 100%;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
