:root {
  --dark: #071a1c;
  --deep: #0b5f59;
  --teal: #0f766e;
  --mint: #5eead4;
  --soft: #e9f7f5;
  --page: #f5f7f8;
  --border: #d7dee2;
  --muted: #64748b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--dark);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px clamp(22px, 6vw, 90px);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  color: var(--dark);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.header-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.header-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.header-links .header-primary {
  padding: 0 17px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
}

.hero {
  padding:
    clamp(82px, 11vw, 150px)
    clamp(24px, 7vw, 110px);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(94, 234, 212, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(15, 118, 110, 0.42),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      var(--dark) 0%,
      var(--deep) 58%,
      var(--dark) 100%
    );
  color: var(--white);
}

.hero-inner,
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.99;
  letter-spacing: -0.062em;
}

.hero-lead {
  max-width: 880px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.72;
}

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

.primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

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

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section {
  padding:
    clamp(72px, 9vw, 120px)
    clamp(24px, 7vw, 110px);
}

.section-white {
  background: var(--white);
}

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

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

.section-heading {
  max-width: 900px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.76;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.card {
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 28, 0.07);
}

.card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.bullet-list {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.bullet-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 26px;
  padding: 24px 8px 24px 35px;
  border-bottom: 1px solid var(--border);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.bullet-list strong {
  color: var(--dark);
}

.bullet-list span {
  color: var(--muted);
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.location-card {
  padding: 26px;
  border-left: 5px solid var(--teal);
  border-radius: 16px;
  background: var(--white);
}

.location-card h3 {
  margin: 0;
}

.location-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.example {
  margin-top: 46px;
  padding: clamp(28px, 5vw, 52px);
  border-left: 6px solid var(--teal);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 26, 28, 0.08);
}

.example h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.example blockquote {
  margin: 24px 0;
  padding: 22px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
  color: var(--dark);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.55;
}

.example p {
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  padding:
    clamp(76px, 10vw, 130px)
    clamp(24px, 7vw, 110px);
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.final-cta p {
  max-width: 760px;
  margin: 24px auto 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.07rem;
  line-height: 1.72;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  padding: 28px;
  border-top: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .card-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .bullet-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  .header-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
