:root {
  --bg: #f4f8ff;
  --bg-soft: #eaf1ff;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #111f38;
  --muted: #516481;
  --line: #d4e0f2;
  --primary: #0e796a;
  --primary-2: #16a592;
  --accent: #2a64db;
  --accent-soft: #dce8ff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-lg: 0 24px 54px rgba(20, 53, 111, 0.15);
}

@supports (color: oklch(60% 0.1 230)) {
  :root {
    --bg: oklch(98% 0.01 250);
    --bg-soft: oklch(96% 0.02 252);
    --surface: oklch(100% 0 0);
    --surface-2: oklch(98% 0.01 250);
    --text: oklch(23% 0.04 258);
    --muted: oklch(51% 0.03 251);
    --line: oklch(89% 0.02 251);
    --primary: oklch(52% 0.11 189);
    --primary-2: oklch(60% 0.12 187);
    --accent: oklch(54% 0.16 264);
    --accent-soft: oklch(94% 0.03 258);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0.01em;
  background:
    radial-gradient(1000px 420px at 10% -5%, rgba(42, 100, 219, 0.12), transparent 65%),
    radial-gradient(780px 380px at 100% 0, rgba(22, 165, 146, 0.14), transparent 62%),
    var(--bg);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-wrap {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  padding: 0.55rem 0;
  color: #6e83a5;
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration-thickness: 1px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 39px;
  height: 39px;
}

.main-nav {
  display: inline-flex;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.64rem 0.94rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.87rem;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), #4d87ff);
  box-shadow: 0 12px 20px rgba(42, 100, 219, 0.23);
}

.hero {
  padding: 4.8rem 0 3.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1.15rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  max-width: 17ch;
  text-wrap: balance;
}

h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.52rem, 3.2vw, 2.32rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 72ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 24px rgba(16, 134, 117, 0.24);
}

.btn-secondary {
  color: var(--accent);
  border: 1px solid #c8d9fa;
  background: #fff;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 3.3rem 0;
}

.strip {
  padding-top: 0.9rem;
}

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

.strip article {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.05rem;
  box-shadow: 0 8px 20px rgba(19, 46, 97, 0.08);
}

.strip h2 {
  margin: 0;
  font-size: 1.18rem;
}

.strip p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 86ch;
}

.section-link-row {
  margin-top: 1rem;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--primary);
}

.cards {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.95rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(20, 53, 111, 0.1);
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #a8c3fa;
}

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

.timeline {
  margin-top: 1.18rem;
  display: grid;
  gap: 0.82rem;
}

.step {
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0.8rem 0.5rem 0.95rem;
}

.step p {
  color: var(--muted);
}

.image-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.image-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(20, 53, 111, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(20, 53, 111, 0.16);
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #eef5ff;
}

.image-card figcaption {
  padding: 0.7rem 0.8rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.95rem;
}

.faq-list p {
  color: var(--muted);
}

.section-contact {
  padding-bottom: 3.9rem;
}

.contact-box {
  border: 1px solid #c6dcf7;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f3f8ff);
  padding: 1.4rem;
  box-shadow: 0 18px 34px rgba(20, 53, 111, 0.12);
}

.contact-box p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-weight: 800;
}

.contact-row a {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eff4fe;
  padding: 1.15rem 0 1.6rem;
}

.footer-wrap {
  color: #61779a;
  font-size: 0.92rem;
}

.footer-wrap p + p {
  margin-top: 0.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3.8rem;
  }

  .strip-grid,
  .cards-3,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .header-cta {
    font-size: 0.8rem;
  }

  .section,
  .section-contact {
    padding: 2.35rem 0;
  }
}

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

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