:root {
  --ink: #14213d;
  --ink-soft: #5b6478;
  --mint: #00c2a8;
  --mint-deep: #009e88;
  --coral: #ff6b2c;
  --line: #e6e9ef;
  --bg: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 33, 61, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), #4cc9f0);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 194, 168, 0.28);
}

.brand strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--mint-deep);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  margin: 0.75rem 0 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--coral);
}

.pill,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.12);
  color: #d9480f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead,
.section-lead {
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--coral), #ff884d);
  color: white;
  box-shadow: 0 12px 24px rgba(255, 107, 44, 0.25);
}

.btn--ghost {
  background: white;
  border: 1px solid var(--line);
}

.hero__card,
.about__panel,
.card,
.contact__box {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 1.5rem;
}

.hero__card h2,
.about__panel h3 {
  margin-top: 0;
  font-family: 'Outfit', sans-serif;
}

.hero__card ul,
.card ul,
.about__panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.stats {
  padding-bottom: 1rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stats article {
  background: white;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--mint-deep);
}

.stats span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.services,
.about,
.contact {
  padding: 3rem 0;
}

.services h2,
.about h2,
.contact h2 {
  margin: 0.4rem 0 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.card {
  padding: 1.4rem;
}

.card--featured {
  border: 1px solid rgba(0, 194, 168, 0.25);
  background: linear-gradient(180deg, rgba(0, 194, 168, 0.06), white 40%);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 194, 168, 0.12);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.card p {
  color: var(--ink-soft);
}

.card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--mint-deep);
}

.about__grid {
  display: grid;
  gap: 1.25rem;
}

.about__panel {
  padding: 1.5rem;
}

.contact__box {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
}

.contact__links {
  display: grid;
  gap: 0.75rem;
}

.contact__links a {
  color: var(--mint-deep);
  font-weight: 700;
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer__inner {
  display: grid;
  gap: 0.5rem;
}

.footer__note {
  margin: 0;
  max-width: 70ch;
}

@media (min-width: 720px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid,
  .contact__box {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
}
