:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --text: #1f2430;
  --muted: #5f6675;
  --border: #d9dfeb;
  --dark: #23242b;
  --primary: #27d3d0;
  --secondary: #7b3ff2;
  --accent: #eef4ff;
  --shadow: 0 16px 40px rgba(25, 30, 55, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(35, 36, 43, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

.site-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--primary);
}

.menu-toggle,
.hamburger {
  display: none;
}

.hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(39, 211, 208, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(123, 63, 242, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7f8fc);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.hero h1,
.section-heading h2,
.statement-card h2,
.cta-box h2,
.site-footer h2,
.site-footer h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.hero-copy,
.section-intro {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 12px 26px rgba(90, 83, 204, 0.25);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stats div,
.hero-card,
.card,
.statement-card,
.value-card,
.service-card,
.highlight-box,
.cta-box {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid rgba(39, 211, 208, 0.12);
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

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

.hero-card {
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(123, 63, 242, 0.1);
}

.hero-card img {
  width: min(100%, 270px);
  margin: 0 auto 1.5rem;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.section {
  padding: 4.7rem 0;
}

.section-alt {
  background: #f1f4fb;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.about-grid,
.mission-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.highlight-box {
  padding: 1.8rem;
  border-top: 5px solid var(--primary);
}

.highlight-box h3 {
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.highlight-box ul {
  padding-left: 1.15rem;
}

.highlight-box li + li {
  margin-top: 0.75rem;
}

.benefits-grid,
.values-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.card,
.value-card,
.service-card,
.statement-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
}

.card h3,
.value-card h3,
.service-card h3 {
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
}

.card p,
.value-card p,
.service-card p,
.statement-card p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.statement-card {
  min-height: 100%;
}

.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.12), rgba(39, 211, 208, 0.18));
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.09), rgba(39, 211, 208, 0.12));
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 4rem 0 1.2rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 1rem;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: var(--primary);
}

.social-links {
  list-style: none;
}

.social-links li + li,
.site-footer p + p {
  margin-top: 0.75rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .mission-grid,
  .footer-grid,
  .benefits-grid,
  .values-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 99px;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 4%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-toggle:checked ~ .site-nav {
    max-height: 320px;
    padding-bottom: 1rem;
  }

  .hero,
  .section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid,
  .about-grid,
  .mission-grid,
  .footer-grid,
  .benefits-grid,
  .values-grid,
  .services-grid,
  .hero-stats,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .hero {
    padding-top: 4.3rem;
  }

  .hero-card,
  .card,
  .statement-card,
  .value-card,
  .service-card,
  .highlight-box,
  .cta-box {
    border-radius: 16px;
  }
}
