@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:   #1a2e4a;
  --blue:   #2563eb;
  --teal:   #0ea5e9;
  --green:  #10b981;
  --bg:     #f0f7ff;
  --white:  #ffffff;
  --muted:  #64748b;
  --border: #e2eaf4;
  --radius: 12px;
  --responsive--aligndefault-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
	margin-top:0!important;
	margin-bottom:0!important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: var(--border);
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

/* ── BUTTONS ── */

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-green {
  background: var(--green);
}

.btn-primary.btn-green:hover {
  background: #059669;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* ── HERO ── */

.hero {
  background: linear-gradient(160deg, #e8f4fd 0%, #dbeeff 50%, #e0f2fe 100%);
  padding: 80px 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
	flex-direction:row;
	margin-top:0!important;
	margin-bottom:0!important;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-text {
  flex:1;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--teal);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 380px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex-shrink: 0;
  width: 500px;
  height: 500px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  overflow: hidden;
	flex:1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── FEATURE CARDS ── */

.features {
  padding: 60px 48px;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 41, 59, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */

.how-it-works {
  background: var(--bg);
  padding: 80px 48px;
  text-align: center;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.how-it-works .subtitle {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.step:nth-child(1) .step-num {
  background: var(--blue);
}

.step:nth-child(2) .step-num {
  background: var(--teal);
}

.step:nth-child(3) .step-num {
  background: var(--green);
}

.step-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.step-illustration {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  overflow: hidden;
}

.step:nth-child(1) .step-illustration {
  background: #dbeafe;
}

.step:nth-child(2) .step-illustration {
  background: #e0f2fe;
}

.step:nth-child(3) .step-illustration {
  background: #dcfce7;
}

.step-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}

/* ── CTA BANNER ── */

.cta-banner {
  background: linear-gradient(160deg, #e8f4fd 0%, #dbeeff 100%);
  padding: 80px 48px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-banner h2 span {
  color: var(--teal);
}

.cta-banner p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── WAVE DIVIDER ── */

.wave-bottom {
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #cce9f8 100%);
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  nav {
    padding: 14px 24px;
  }

  .hero {
    flex-direction: column;
    padding: 48px 24px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    width: 100%;
    height: 200px;
  }

  .features {
    padding: 48px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    padding: 60px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-banner {
    padding: 60px 24px;
  }
}