:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #173042;
  --muted: #547089;
  --line: rgba(23, 48, 66, 0.12);
  --accent: #1b6f6a;
  --accent-dark: #124f4c;
  --accent-soft: #e0f1ec;
  --shadow: 0 24px 60px rgba(23, 48, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(27, 111, 106, 0.15), transparent 30%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
}

.hero,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.brand {
  width: 174px;
  height: auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.info-panel,
.card,
.cta,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.eyebrow,
.section-label,
.card-tag {
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

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

h3 {
  font-size: 1.6rem;
}

.lead,
.hero-copy p,
.hero-card p,
.section p,
.card p,
.footer p,
.info-panel p {
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
}

.button-block {
  width: 100%;
}

.highlights,
.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--surface-strong), var(--accent-soft));
}

.hero-card h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-card p {
  margin: 18px 0;
}

.section {
  margin-top: 26px;
  padding: 38px;
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
}

.info-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
}

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

.card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
}

.card p {
  margin-bottom: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #173042, #205b61);
  color: #fff;
}

.cta .section-label,
.cta p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 26px;
  padding: 28px 32px;
  border-radius: 28px;
  background: #0d2433;
  color: #eff6fb;
}

.brand-footer {
  width: 132px;
  margin-bottom: 16px;
}

.legal p,
.footer p {
  margin: 0 0 10px;
}

@media (max-width: 920px) {
  .hero-content,
  .grid-two,
  .cards,
  .footer,
  .cta {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .section,
  .footer {
    padding: 24px;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 20px, 1120px);
  }

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