:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --text: #0f172a;
  --muted: #475569;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-size: 1.2rem;
  font-weight: 800;
}
.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover { color: var(--blue); }
.hero {
  background: radial-gradient(circle at top right, rgba(37,99,235,0.15), transparent 30%), radial-gradient(circle at left, rgba(15,23,42,0.06), transparent 35%), var(--navy);
  color: var(--white);
  padding: 54px 0 72px;
}
.hero-grid, .split-wrap, .contact-grid, .trust-grid, .cta-flex {
  display: grid;
  gap: 34px;
}
.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.eyebrow, .eyebrow-light, .eyebrow-muted, .mini-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
}
.eyebrow, .mini-badge { background: rgba(255,255,255,0.12); color: var(--white); }
.eyebrow-light { background: #dbeafe; color: #1d4ed8; }
.eyebrow-muted { background: #e2e8f0; color: #334155; }
.hero h1, .section h2, .cta-band h2, .thankyou-card h1 {
  margin: 16px 0 14px;
  line-height: 1.12;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 760px; }
.hero-text, .section-intro p, .cta-band p, .form-panel p, .hero-form-card p { color: rgba(255,255,255,0.82); }
.hero-form-card p, .form-panel p, .section-intro p, .contact-grid p, .trust-card li, .testimonial-card p, .service-card p, .info-card p, .step-card p { color: var(--muted); }
.hero-actions, .extra-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 10px 16px; border-radius: 14px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: #cbd5e1; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1e293b; }
.btn-outline { background: transparent; color: var(--navy); border-color: #cbd5e1; }
.light-border { border-color: rgba(255,255,255,0.24); color: #fff; background: rgba(255,255,255,0.08); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat-card, .hero-form-card, .info-card, .service-card, .trust-card, .testimonial-card, .step-card, .contact-card, .form-panel, .thankyou-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
}
.stat-card strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.stat-card span { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.hero-form-card, .light-panel, .form-panel {
  background: #fff;
  color: var(--text);
  padding: 28px;
}
.hero-form-card h2, .form-panel h3 { margin: 12px 0 8px; }
form { display: grid; gap: 14px; margin-top: 18px; }
input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  font: inherit;
  border: 1px solid #d1d9e6;
  border-radius: 16px;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.small-note { font-size: 0.92rem; margin-top: 12px; }
.section { padding: 72px 0; }
.light { background: var(--soft); }
.section-intro { max-width: 760px; }
.section h2, .cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card, .service-card, .step-card, .contact-card, .testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}
.info-card h3, .service-card h3, .step-card h3 { margin-top: 0; margin-bottom: 10px; }
.service-card .icon { font-size: 1.9rem; margin-bottom: 12px; }
.section-dark {
  background: var(--navy);
  color: #fff;
}
.split-wrap { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.check-list, .bullet-list { padding-left: 20px; }
.check-list li, .bullet-list li { margin-bottom: 12px; }
.check-list li { color: rgba(255,255,255,0.86); }
.trust-grid { grid-template-columns: 1fr 1fr; }
.trust-card {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 28px;
}
.testimonial-stack { display: grid; gap: 18px; }
.step-card span {
  display: inline-block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.cta-band {
  background: var(--navy);
  color: #fff;
}
.cta-flex { grid-template-columns: 1.3fr 0.7fr; align-items: center; }
.cta-actions {
  display: grid;
  gap: 14px;
}
.contact-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.contact-card span {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.contact-card strong { font-size: 1.03rem; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #64748b;
  font-size: 0.95rem;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #22c55e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
  font-weight: 800;
  z-index: 120;
}
.thankyou-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  display: grid;
  place-items: center;
  padding: 24px;
}
.thankyou-wrap { width: min(760px, 100%); }
.thankyou-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  text-align: center;
}
.center { justify-content: center; }

@media (max-width: 980px) {
  .hero-grid,
  .split-wrap,
  .trust-grid,
  .cta-flex,
  .contact-grid,
  .card-grid.three,
  .stat-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 38px; }
  .section { padding: 54px 0; }
  .hero-form-card, .form-panel, .thankyou-card { padding: 22px; }
  .footer-wrap { flex-direction: column; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
}
