* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  line-height: 1.6;
  background: #f8fafc;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #bfdbfe;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 1.5rem 0 2rem;
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: white;
  color: #1e40af;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}

.hero-image img {
  border-radius: 1.5rem;
  object-fit: cover;
  height: 100%;
  min-height: 360px;
}

.stats,
.features,
.process,
.testimonial,
.contact {
  padding: 4rem 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stats article {
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.stats strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-grid article {
  background: #eff6ff;
  border-radius: 1.5rem;
  padding: 2rem;
}

.process-grid h3 {
  margin: 0 0 1rem;
}

.testimonial {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
}

.testimonial h2 {
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}

.contact-form button {
  width: fit-content;
  border: none;
  cursor: pointer;
}

footer {
  padding: 1.5rem 2rem;
  text-align: center;
  color: #475569;
}

@media (max-width: 960px) {
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .cards,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 1.25rem;
  }
}
