@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #0d3f9a;
  --brand-dark: #0a2c77;
  --brand-gradient: linear-gradient(180deg, #0f4db3 0%, #0c2f7a 100%);
  --accent: #f6b817;
  --text: #0c0d17;
  --muted: #475569;
  --card: #ffffff;
  --bg: #f4f7fb;
  --stroke: #e5e7eb;
  --soft: #eef2ff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--brand);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-links { display: flex; gap: 22px; font-weight: 600; }
.nav-links a { opacity: 0.9; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--accent);
  color: #111;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero {
  background: var(--brand-gradient);
  color: #fff;
  padding: 70px 20px 40px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero h1 { font-size: clamp(36px, 5vw, 54px); margin: 0 0 12px; }
.hero p.lead { color: rgba(255,255,255,0.9); font-size: 18px; margin: 0 0 18px; }
.trust {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center; color: #f8fafc;
  font-weight: 600; margin: 18px 0;
}
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
}
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  display: grid;
  gap: 10px;
}
.form-card input, .form-card select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  font-size: 15px;
}
.form-card button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}
.hero-footer {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  color: #e2e8f0;
  font-size: 14px;
  flex-wrap: wrap;
}

.strip {
  background: var(--bg);
  padding: 28px 20px;
  border-bottom: 1px solid #e2e8f0;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.logos { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.logo-pill {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 120px;
}
.logo-pill img { height: 24px; display: block; }

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}
.section p.section-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 auto;
  max-width: 640px;
}

.cards {
  margin-top: 30px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0 0 12px; color: var(--muted); }
.check { color: var(--brand); font-weight: 700; margin-right: 8px; }
.card-visual {
  margin-top: 12px;
  border-radius: 14px;
  /* background: linear-gradient(180deg, #0f4db3, #131742); removed placeholder */
  height: 300px; /* Increased height for images */
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 0; /* Remove padding so image fills card */
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.cta h3 { margin: 0 0 8px; font-size: 24px; }
.cta p { margin: 0 0 14px; color: var(--muted); }
.cta button {
  background: var(--accent);
  color: #111;
  border: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
}

.footer {
  padding: 40px 20px 50px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
}
