:root {
  --navy: #0a1628;
  --blue: #1b3a5c;
  --blue-soft: #254b74;
  --green: #7ac943;
  --green-dark: #6ab838;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 13px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(27, 58, 92, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(122, 201, 67, 0.24);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero,
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #0f2744 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 201, 67, 0.14), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(122, 201, 67, 0.12), transparent 28%);
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 100px 0 120px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(122, 201, 67, 0.16);
  color: var(--green);
  border: 1px solid rgba(122, 201, 67, 0.28);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.08;
}

.accent {
  color: var(--green);
}

.hero p,
.page-hero p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 1.8rem;
}

.stat span {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card,
.logo-card {
  background: linear-gradient(180deg, rgba(122, 201, 67, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

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

section {
  padding: 88px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-title .eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.section-title p {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.04rem;
}

.section-dark .section-title p {
  color: var(--gray-300);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

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

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(122, 201, 67, 0.12);
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.learn-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature {
  display: flex;
  gap: 18px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.feature p {
  margin: 0;
  color: var(--gray-500);
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
}

.testimonial .quote {
  color: rgba(122, 201, 67, 0.55);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial p {
  color: var(--gray-300);
  margin: 0 0 18px;
}

.stars {
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial strong {
  display: block;
  font-size: 1rem;
}

.testimonial span {
  color: var(--green);
  font-size: 0.92rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 34px;
  padding: 54px 40px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(10, 22, 40, 0.18);
}

.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-box p {
  color: var(--gray-300);
  max-width: 720px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.story-grid,
.contact-grid,
.service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.content-block h2,
.content-block h3 {
  margin-top: 0;
}

.content-block p {
  color: var(--gray-500);
  font-size: 1.04rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.mini-card h3 {
  margin: 0 0 8px;
}

.mini-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.96rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-100);
  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;
  padding: 0 36px 42px;
  position: relative;
}

.timeline-item.left {
  margin-right: auto;
  text-align: right;
}

.timeline-item.right {
  margin-left: auto;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--white);
}

.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

.timeline-year {
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 800;
}

.services-stack {
  display: grid;
  gap: 76px;
}

.service-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-copy {
  order: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.contact-card,
.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-list li,
.hours-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-list li:last-child,
.hours-list li:last-child {
  border-bottom: 0;
}

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

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card .field-full {
  grid-column: 1 / -1;
}

.highlight-box {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.highlight-box h3 {
  margin-top: 0;
}

.highlight-box ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--gray-300);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer p,
.site-footer li {
  color: var(--gray-300);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .service-row,
  .footer-grid,
  .card-grid,
  .feature-list,
  .testimonials,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    left: 18px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 0 0 36px 54px;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 10px;
    right: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links {
    justify-content: center;
  }

  .hero,
  .page-hero,
  section,
  .site-footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .service-row,
  .footer-grid,
  .card-grid,
  .feature-list,
  .testimonials,
  .values-grid,
  .mission-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .logo-card,
  .cta-box,
  .contact-card,
  .form-card {
    padding: 24px;
  }

  .service-row.reverse .service-image,
  .service-row.reverse .service-copy {
    order: initial;
  }
}