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

:root {
  --blue: #1E6BF1;
  --blue-dark: #1250C4;
  --blue-light: #EEF3FE;
  --navy: #0C1F4A;
  --text: #1A1A2E;
  --muted: #64748B;
  --border: #E2E8F0;
  --bg: #F8FAFF;
  --white: #FFFFFF;
  --green: #059669;
  --green-light: #ECFDF5;
  --radius: 14px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Sora', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: white; border: none;
  padding: 10px 22px; border-radius: 8px; font-family: var(--font);
  font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-dark); }

/* HERO */
.hero {
  padding: 80px 5% 70px;
  background: linear-gradient(160deg, #F0F5FF 0%, #FFFFFF 60%);
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--navy);
  border: 1px solid #BFDBFE;
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before { content: '★'; font-size: 0.75rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--navy);
  max-width: 780px; margin: 0 auto 20px;
}
.hero h1 span { color: var(--blue); }
.hero p {
  font-size: 1.15rem; color: var(--text);
  max-width: 520px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap; margin-bottom: 50px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--blue); }
.stat-item span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
}
.trust-item svg { opacity: 0.7; }

/* SECTION HEADINGS */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* INDUSTRIES */
#claim { padding: 80px 5%; background: var(--bg); }
#claim .header { text-align: center; margin-bottom: 48px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center; cursor: pointer;
  transition: all 0.25s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.industry-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(30,107,241,0.12);
  transform: translateY(-3px);
}
.industry-icon {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.industry-card p { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5; flex: 1; }
.industry-btn {
  background: var(--blue); color: white; border: none;
  width: 100%; padding: 12px; border-radius: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s;
}
.industry-btn:hover { background: var(--blue-dark); }

/* QUIZ MODAL */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,20,50,0.65);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.quiz-overlay.active { display: flex; }
.quiz-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 560px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-header {
  background: var(--navy); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.quiz-header h2 { font-family: var(--font-display); color: white; font-size: 1.1rem; }
.quiz-header span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.quiz-close {
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.quiz-progress-bar { height: 5px; background: #E2E8F0; }
.quiz-progress-fill { height: 100%; background: var(--blue); transition: width 0.4s ease; }
.quiz-body { padding: 36px 28px; }
.quiz-question { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 28px; line-height: 1.4; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.quiz-opt {
  padding: 18px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  background: var(--white); color: var(--text);
  transition: all 0.18s; text-align: center;
}
.quiz-opt:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.quiz-opt.selected { border-color: var(--blue); background: var(--blue); color: white; }
.quiz-back {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-family: var(--font); font-size: 0.85rem; font-weight: 500;
  padding: 8px 0; text-decoration: underline;
}

/* QUIZ RESULT */
.quiz-result { padding: 36px 28px; text-align: center; }
.result-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
}
.result-icon.fail { background: #FEF2F2; }
.quiz-result h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.quiz-result p { color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.result-form { display: grid; gap: 14px; text-align: left; }
.result-form input, .result-form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font); font-size: 0.92rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s;
}
.result-form input:focus, .result-form select:focus { outline: none; border-color: var(--blue); }
.result-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  background: var(--blue); color: white; border: none;
  width: 100%; padding: 15px; border-radius: 10px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background 0.2s;
}
.submit-btn:hover { background: var(--blue-dark); }
.whatsapp-btn-alt {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: white; border: none;
  width: 100%; padding: 13px; border-radius: 10px;
  font-family: var(--font); font-weight: 600; font-size: 0.92rem;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.whatsapp-btn-alt:hover { background: #1DA851; }
.or-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.82rem; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* CLAIM INNER (single industry layout) */
.claim-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; max-width: 900px; margin: 0 auto; align-items: center;
}
.claim-info h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--navy); margin-bottom: 20px;
}
.claim-list { list-style: none; display: grid; gap: 12px; margin-bottom: 24px; }
.claim-list li {
  font-size: 0.92rem; color: var(--text); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.claim-list li::before {
  content: '✓'; color: var(--green); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.claim-info p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.claim-info strong { color: var(--navy); }

/* REFER A FRIEND */
#refer { padding: 80px 5%; background: var(--navy); }
#refer .header { text-align: center; margin-bottom: 48px; }
#refer .section-title { color: white; }
#refer .section-sub { color: rgba(255,255,255,0.65); }
.refer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto 48px;
}
.refer-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
}
.refer-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.refer-card h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.refer-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.refer-cta { text-align: center; }
.refer-amount {
  display: inline-block;
  background: var(--blue); color: white;
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  padding: 12px 32px; border-radius: 16px; margin-bottom: 32px;
}

@media (max-width: 768px) {
  .claim-inner { grid-template-columns: 1fr; }
}

/* HOW IT WORKS */
#how { padding: 80px 5%; }
#how .header { text-align: center; margin-bottom: 60px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; max-width: 1000px; margin: 0 auto;
}
.step-card {
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ABOUT */
#about {
  padding: 80px 5%;
  background: var(--navy);
  color: white;
}
.about-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
#about .section-title { color: white; }
#about .section-sub { color: rgba(255,255,255,0.65); }
.about-body { margin-top: 20px; }
.about-body p { color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 18px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.highlight-item {
  background: rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.highlight-item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--blue); margin-bottom: 4px; }
.highlight-item span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.about-img-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px;
  text-align: center;
}
.family-icon { font-size: 5rem; margin-bottom: 20px; display: block; }
.about-img-block h3 { font-family: var(--font-display); color: white; font-size: 1.2rem; margin-bottom: 10px; }
.about-img-block p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.stars { color: #FBBF24; font-size: 1.2rem; margin-bottom: 8px; display: block; }

/* REVIEWS */
#reviews { padding: 80px 5%; background: var(--bg); }
#reviews .header { text-align: center; margin-bottom: 48px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
}
.review-stars { color: #FBBF24; margin-bottom: 12px; font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--blue);
}
.reviewer-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.reviewer-role { font-size: 0.78rem; color: var(--muted); }

/* CONTACT */
#contact { padding: 80px 5%; }
#contact .header { text-align: center; margin-bottom: 48px; }
.contact-wrapper {
  max-width: 620px; margin: 0 auto;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 44px;
}
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-submit {
  background: var(--blue); color: white; border: none;
  width: 100%; padding: 16px; border-radius: 10px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background 0.2s;
}
.contact-submit:hover { background: var(--blue-dark); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; line-height: 1.5; }

/* FOOTER */
footer {
  background: #060D1F;
  padding: 48px 5% 32px;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 280px; }
.footer-links h4 { color: white; font-size: 0.88rem; font-weight: 600; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 0.78rem;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-tooltip {
  background: var(--navy); color: white;
  padding: 10px 16px; border-radius: 12px;
  font-size: 0.82rem; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s 2s both;
  max-width: 200px; text-align: center; line-height: 1.5;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-btn svg { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .form-row, .result-form-row { grid-template-columns: 1fr; }
  .contact-wrapper { padding: 28px 20px; }
  .trust-bar { gap: 20px; }
  .quiz-options { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .claim-inner { grid-template-columns: 1fr; }

  /* Remove decorative gradient blob on mobile — it washes out text */
  .hero { background: #FFFFFF; }
  .hero::before { display: none; }

  /* Ensure badge stands out against white background */
  .hero-badge {
    background: var(--blue);
    color: #FFFFFF;
    border-color: var(--blue);
  }
}
