:root {
  color-scheme: light;
  font-family: 'Segoe UI', 'Yu Gothic', sans-serif;
  background: #f4f7fb;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.7;
  background: #f4f7fb;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand h1 {
  margin: 0;
  font-size: 1.4rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #93c5fd;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 60%, #2563eb 100%);
  color: #ffffff;
}

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

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero-copy p {
  margin: 1.5rem 0;
  max-width: 640px;
  font-size: 1.1rem;
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #ffffff;
  color: #0f172a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-card li {
  margin-bottom: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.hero-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.section {
  padding: 5rem 0;
  background: #f4f7fb;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section p {
  max-width: 760px;
  color: #475569;
}

.stats-grid,
.cards,
.process-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-card,
.card,
.process-step,
.contact-highlight,
.cta-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.card-highlight h4 {
  margin-top: 0;
}

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

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

.process-step {
  position: relative;
  padding-left: 3rem;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
}

.process-step h4 {
  margin: 0 0 0.75rem;
}

.cta-section {
  padding: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
}

.cta-card p {
  margin: 1rem 0 0;
  color: #475569;
}

.contact-grid {
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
}

.contact-info {
  margin: 1.2rem 0 0;
  font-weight: 700;
}

.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  min-height: 100%;
}

.site-footer {
  padding: 1.5rem 0;
  background: #0f172a;
  color: #cbd5e1;
  text-align: center;
}

a {
  color: #2563eb;
}

@media (max-width: 960px) {
  .hero-grid,
  .process-grid,
  .contact-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    width: 100%;
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .hero-copy h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}


