:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #0f4cbd;
  --primary-dark: #0e3b92;
  --border: #e5e7eb;
  --star: #f59e0b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, #dbeafe, #eff6ff 50%, #f8fafc 100%);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 1rem;
}

.eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.trust-strip {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip p {
  margin: 0;
  padding: 0.3rem 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #374151;
  font-weight: 600;
}

.hero-media img {
  width: 100%;
  border-radius: 1.2rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 30px rgba(30, 64, 175, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 0.7rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-small {
  padding: 0.55rem 0.9rem;
}

.btn-secondary {
  background: #e5edff;
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background: #d9e5ff;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #f0f5ff;
}

.section-subtitle {
  color: var(--muted);
  margin-top: -0.4rem;
  margin-bottom: 2rem;
}

.card-grid,
.review-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.card {
  background: var(--surface);
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 0.8rem;
  background: #dbeafe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.review-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dbeafe;
}

.review-content h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.review-content h3 span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.stars {
  margin: 0;
  color: var(--star);
  letter-spacing: 2px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.section-cta {
  background: linear-gradient(100deg, #0f4cbd, #3b82f6);
  color: #fff;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.section-cta .btn {
  background: #fff;
  color: var(--primary-dark);
}

.section-cta .btn:hover {
  background: #eff6ff;
}

.footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 1.2rem 0;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
