* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fb;
  color: #1a202c;
  line-height: 1.7;
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2b6cb0;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-logo span {
  color: #1a202c;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  padding: 0.5rem 1.1rem;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}

.nav-links a:hover {
  background: #edf2f7;
  color: #2b6cb0;
}

.nav-links a.active {
  background: #ebf4ff;
  color: #2b6cb0;
}

.nav-links .btn-nav {
  background: #2b6cb0;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 7px;
}

.nav-links .btn-nav:hover {
  background: #2c5282 !important;
  color: #fff !important;
}

/* HERO */
.hero {
  background: linear-gradient(145deg, #ebf4ff 0%, #f8f9fb 100%);
  padding: 6rem 3rem 5rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ebf4ff;
  color: #2b6cb0;
  border: 1px solid #bee3f8;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: #2b6cb0;
}

.hero p {
  font-size: 1.15rem;
  color: #718096;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

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

.btn-primary {
  background: #2b6cb0;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(43,108,176,0.25);
}

.btn-primary:hover {
  background: #2c5282;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(43,108,176,0.35);
}

.btn-outline {
  background: #fff;
  color: #2b6cb0;
  border: 1.5px solid #bee3f8;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.18s, background 0.18s;
}

.btn-outline:hover {
  border-color: #2b6cb0;
  background: #ebf4ff;
}

/* MAIN */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* SECTION HEADING */
.s-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.s-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-heading p {
  color: #718096;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* FEATURE CARDS */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #ebf4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: #718096;
}

/* STATS STRIP */
.stats {
  background: #2b6cb0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 5rem;
}

.stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.stat p {
  font-size: 0.88rem;
  color: #bee3f8;
  margin-top: 0.2rem;
}

/* TESTIMONIAL / HIGHLIGHT BLOCK */
.highlight {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #ebf4ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.highlight-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.highlight-body p {
  color: #718096;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

/* HOW IT WORKS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}

.step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #2b6cb0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-body h4 {
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.2rem;
}

.step-body p {
  font-size: 0.92rem;
  color: #718096;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2b6cb0, #4299e1);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: #bee3f8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-white {
  background: #fff;
  color: #2b6cb0;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.18s, transform 0.15s;
  display: inline-block;
}

.btn-white:hover {
  background: #ebf4ff;
  transform: translateY(-1px);
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  nav { padding: 0 1.25rem; }
  main { padding: 3rem 1.25rem; }
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.info-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #ebf4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item-body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.1rem;
}

.info-item-body span {
  font-size: 0.88rem;
  color: #718096;
}

/* FORM */
.form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.form-card .form-sub {
  font-size: 0.88rem;
  color: #a0aec0;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.93rem;
  color: #1a202c;
  font-family: inherit;
  background: #f8f9fb;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4299e1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(66,153,225,0.15);
}

.form-group textarea {
  min-height: 120px;
}

.required {
  color: #e53e3e;
  margin-left: 2px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.82rem;
  color: #a0aec0;
}

.btn-submit {
  background: #2b6cb0;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  font-family: inherit;
}

.btn-submit:hover {
  background: #2c5282;
  transform: translateY(-1px);
}

/* FAQ */
.faq {
  margin-top: 4rem;
}

.faq h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.25rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: #718096;
}

/* FOOTER */
footer {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-size: 0.88rem;
  color: #a0aec0;
}

.footer-left strong {
  color: #2b6cb0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: #2b6cb0;
}
