:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #f8fafc;
  accent-color: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 28%),
              radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.09), transparent 24%),
              #f8fafc;
}

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

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

.site-header {
  background: #ffffffcc;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: #2563eb;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.02;
}

.intro {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: #475569;
}

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

.site-nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header span {
  display: block;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 1.15;
  color: #111827;
}

.grid-two,
.grid-three,
.contact-grid {
  display: grid;
  gap: 1.75rem;
}

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

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

.about-section p,
.services-section p,
.contact-section p {
  color: #475569;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding-left: 1.3rem;
  position: relative;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}

.card,
.service-card,
.company-card,
.highlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.stats-card {
  display: grid;
  gap: 1rem;
}

.stat-item {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.stat-item:first-child {
  border-top: none;
  padding-top: 0;
}

.stat-item strong {
  display: block;
  font-size: 1.15rem;
  color: #111827;
}

.stat-item span {
  color: #64748b;
}

.grid-three .service-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.grid-three .service-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
}

.service-card h3,
.company-card h3,
.contact-section h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: #111827;
}

.highlight-card {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.highlight-card h2 {
  margin: 0 0 1rem;
}

.highlight-card p {
  margin: 0;
  color: #475569;
}

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

.contact-grid {
  grid-template-columns: 1.25fr 0.9fr;
}

.company-card p,
.contact-section p {
  margin: 0 0 1rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.site-footer p {
  margin: 0;
  color: #64748b;
  text-align: center;
}

@media (max-width: 900px) {
  .grid-two,
  .grid-three,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-nav {
    gap: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .header-content {
    padding: 1.25rem 0;
  }

  .site-header,
  .site-footer {
    padding: 0 1rem;
  }
}
