:root {
  --bg: #f4f1e8;
  --bg-soft: #fffaf0;
  --paper: #fffdf8;
  --text: #20211f;
  --muted: #5b625c;
  --accent: #005f73;
  --accent-2: #ca6702;
  --line: #d9d6cd;
  --shadow: 0 14px 45px rgba(22, 26, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 12% 12%, #fef8ec 0%, var(--bg) 45%),
    linear-gradient(160deg, #f5eee2 0%, #eef4ef 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
}

.bg-shape-a {
  width: 380px;
  height: 380px;
  background: #0a9396;
  top: -120px;
  right: -140px;
}

.bg-shape-b {
  width: 320px;
  height: 320px;
  background: #ee9b00;
  bottom: -120px;
  left: -110px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(9px);
  background: color-mix(in srgb, var(--bg-soft) 72%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0a9396);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.78rem 1.12rem;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: #0a9396;
}

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

.btn-ghost:hover {
  background: var(--paper);
}

.btn-sm {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.hero {
  padding: 7.5rem 0 4.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.1;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  max-width: 16ch;
}

.hero-copy {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 1.3rem;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.stats {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stats li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
}

.number {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.label {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4.6rem 0;
}

.section-head {
  margin-bottom: 1.7rem;
}

.section h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  max-width: 22ch;
}

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

.card {
  background: color-mix(in srgb, #fff 80%, transparent);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

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

.highlight {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  background: linear-gradient(
      120deg,
      color-mix(in srgb, #fff 60%, transparent),
      color-mix(in srgb, #fef0cd 40%, transparent)
    ),
    var(--paper);
}

.highlight p {
  max-width: 65ch;
  color: var(--muted);
}

.cert-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.5rem 0.85rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: color-mix(in srgb, #fff 78%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-box h2 {
  max-width: 18ch;
}

.contact-box p {
  color: var(--muted);
  max-width: 62ch;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 280px;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.4rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-actions {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 740px) {
  .site-nav a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 6.2rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .grid.cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
