﻿:root {
  --bg: #f7f3eb;
  --bg-alt: #fffdf8;
  --text: #132a44;
  --text-soft: #3f5874;
  --primary: #ff5a2c;
  --primary-dark: #d8431d;
  --secondary: #00a4a8;
  --card: #ffffff;
  --border: #d7e2eb;
  --shadow: 0 18px 50px rgba(19, 42, 68, 0.14);
  --radius: 1.1rem;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #fff1e8 0%, var(--bg) 46%), var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
}

.bg-glow--one {
  top: -120px;
  left: -120px;
  background: #ff7a54;
}

.bg-glow--two {
  right: -120px;
  top: 220px;
  background: #3ad6d9;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 235, 0.86);
  border-bottom: 1px solid rgba(215, 226, 235, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--primary), #ff8d1f);
  box-shadow: 0 8px 20px rgba(255, 90, 44, 0.32);
}

.brand__text {
  font-size: 1.04rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 500;
}

.nav__links a {
  color: var(--text-soft);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.btn {
  background: linear-gradient(120deg, var(--primary), #ff8525);
  color: #fff;
  border: 0;
  border-radius: 0.9rem;
  padding: 0.82rem 1.3rem;
  font-weight: 700;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 90, 44, 0.32);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 90, 44, 0.34);
}

.btn--small {
  padding: 0.6rem 1rem;
  border-radius: 0.7rem;
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 22px rgba(0, 164, 168, 0.2);
}

.hero {
  padding: 4.2rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 13ch;
}

h1 span {
  color: var(--primary);
}

.hero__lead {
  margin: 1.15rem 0 0;
  max-width: 50ch;
  color: var(--text-soft);
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__stats {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero__stats article {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.8rem;
}

.hero__stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.hero__stats span {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.hero__panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  background: linear-gradient(170deg, #153452, #1f4466);
  color: #ecf5ff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.panel-card__tag {
  display: inline-flex;
  margin: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
}

.panel-card h2 {
  margin-top: 0.9rem;
  font-size: 1.55rem;
}

.panel-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #bdd1e6;
}

.panel-card li + li {
  margin-top: 0.45rem;
}

.panel-strip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.panel-strip span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--text-soft);
}

.section {
  padding: 4rem 0;
}

.section__head {
  margin-bottom: 1.6rem;
}

.section__head h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  max-width: 18ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 10px 25px rgba(19, 42, 68, 0.06);
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
}

.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.65) 80%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split p {
  color: var(--text-soft);
}

.checklist {
  display: grid;
  gap: 0.8rem;
}

.checklist p {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.95rem 0.95rem 0.95rem 2.4rem;
  position: relative;
  color: var(--text);
}

.checklist p::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--secondary), #35d4c7);
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.card--soft {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.testimonials .card p {
  color: var(--text);
}

.testimonials .card h3 {
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.cta {
  padding-top: 2.7rem;
}

.cta__wrap {
  background: linear-gradient(130deg, #102f49, #1f4e73 62%, #007f88);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 2rem;
  color: #ebf4ff;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.4rem;
}

.cta__wrap .eyebrow {
  color: #7be7eb;
}

.cta__wrap h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
}

.cta__wrap p {
  color: #b9cee1;
}

.cta__form {
  background: rgba(10, 26, 40, 0.25);
  border: 1px solid rgba(205, 229, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.cta__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #dbe8f6;
}

.cta__form input {
  border: 1px solid #3d6588;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--text);
  padding: 0.7rem 0.8rem;
}

.cta__form input:focus {
  outline: 2px solid #61d9de;
  outline-offset: 1px;
}

.footer {
  padding: 1.8rem 0 2.4rem;
}

.footer__content {
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .split,
  .cta__wrap,
  .grid--three,
  .grid--two {
    grid-template-columns: 1fr;
  }

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

  .nav__toggle {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: #fff;
    z-index: 12;
  }

  .nav__links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.4rem;
    background: rgba(247, 243, 235, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(19, 42, 68, 0.08);
  }

  .nav__links a {
    padding: 0.45rem 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .btn--small {
    text-align: center;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 0.96rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

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

  .cta__wrap {
    padding: 1.2rem;
  }

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