:root {
  --navy: #081c42;
  --navy-2: #123370;
  --blue: #2f5bff;
  --blue-2: #4d7bff;
  --accent: #12a454;
  --accent-2: #34d399;
  --gold: #d4af37;
  --gold-2: #f3d878;
  --teal: #0ea968;
  --text-muted: #6b7280;
  --light-bg: #f6f8fc;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1c2340;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; }

.text-accent { color: var(--gold); }

/* ===== Navbar ===== */
#mainNav {
  background: rgba(8, 28, 66, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  padding: 18px 0;
}
#mainNav.scrolled {
  background: rgba(8, 28, 66, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(8, 28, 66, 0.15);
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-2);
  flex-shrink: 0;
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 0.5rem 0.9rem !important;
}
.nav-link:hover { color: #fff !important; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(18, 164, 84, 0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 164, 84, 0.45);
  color: #fff;
}
.btn-outline-light {
  border-radius: 10px;
  font-weight: 600;
  border-width: 2px;
}
.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  border-radius: 10px;
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: radial-gradient(120% 120% at 20% 0%, var(--navy-2) 0%, var(--navy) 55%, #060b1f 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,123,255,0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 20px 0 18px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
}
.hero-stats h3 {
  font-size: 1.8rem;
  margin-bottom: 2px;
  color: #fff;
}
.hero-stats p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(18,164,84,0.35), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-card-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  z-index: 1;
  border: 4px solid rgba(255,255,255,0.08);
}
.hero-card-float img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 {
  width: 220px;
  height: 320px;
  object-position: top;
  left: 8%;
  top: 8%;
  animation: floatY 5s ease-in-out infinite;
}
.hero-card-2 {
  width: 220px;
  height: 320px;
  right: 6%;
  bottom: 4%;
  animation: floatY 6s ease-in-out infinite 0.6s;
}
.hero-card-1 img, .hero-card-2 img { height: 320px; object-fit: cover; object-position: top; }

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #eef0f6;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-2);
}
.trust-strip i { color: var(--accent); margin-right: 8px; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }
.section-head { max-width: 640px; margin: 0 auto 50px; }
.section-head p { color: var(--text-muted); }
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

/* ===== Feature Cards ===== */
.feature-card {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(20, 30, 70, 0.1);
}
.feature-card h5 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.94rem; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
}
.bg-1 { background: linear-gradient(135deg, #2f5bff, #4d7bff); }
.bg-2 { background: linear-gradient(135deg, #c9971f, #f0cf6b); }
.bg-3 { background: linear-gradient(135deg, #0d9d5a, #34d399); }
.bg-4 { background: linear-gradient(135deg, #9b5de5, #c084fc); }
.bg-5 { background: linear-gradient(135deg, #f15bb5, #ff8fc7); }
.bg-6 { background: linear-gradient(135deg, #00b4d8, #48cae4); }

/* ===== ID Card Showcase ===== */
.check-list { list-style: none; padding: 0; margin: 0 0 20px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #333c56;
  font-weight: 500;
}
.check-list li i { color: var(--teal); font-size: 1.1rem; }

.showcase-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: flex-end;
}
.showcase-img {
  border-radius: 14px;
  width: 48%;
  max-width: 260px;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border: 6px solid #fff;
}

/* ===== Steps ===== */
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  border: 1px solid #eef0f6;
  position: relative;
}
.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue);
  margin-bottom: 10px;
}
.step-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* ===== Roles ===== */
.role-card {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: var(--radius);
  padding: 28px 10px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.role-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(20,30,70,0.08); }
.role-card i { font-size: 1.9rem; color: var(--blue); margin-bottom: 12px; display: block; }
.role-card h6 { margin: 0; font-size: 0.9rem; }

/* ===== Pricing ===== */
.price-card {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(18,164,84,0.18);
}
.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-2);
  margin: 14px 0 20px;
}
.price span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 0;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px;
}
.contact-form .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.55); }
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  box-shadow: none;
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  background: #060b1f;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 20px;
}
.footer h6 { color: #fff; margin-bottom: 16px; font-weight: 700; }
.footer p { font-size: 0.9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.social-links a:hover { background: var(--accent); }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(18,164,84,0.4);
  z-index: 999;
  cursor: pointer;
}
.back-to-top.show { display: flex; }

/* ===== Inner / Legal pages ===== */
.page-hero {
  background: radial-gradient(120% 120% at 20% 0%, var(--navy-2) 0%, var(--navy) 55%, #060b1f 100%);
  color: #fff;
  padding: 150px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); margin: 0; }
.page-hero .breadcrumb-nav a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb-nav a:hover { color: var(--accent); }
.page-hero .breadcrumb-nav { font-size: 0.85rem; }

.legal-content {
  padding: 70px 0 90px;
}
.legal-content .updated-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy-2);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  color: var(--navy-2);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li {
  color: #4a5170;
  font-size: 0.98rem;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; }
.legal-content strong { color: #1c2340; }
.legal-toc {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: sticky;
  top: 100px;
}
.legal-toc h6 { font-weight: 700; margin-bottom: 14px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 10px; }
.legal-toc a {
  color: #4a5170;
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
}
.legal-toc a:hover { color: var(--accent); }

/* ===== Delete Account / OTP ===== */
.otp-wrap { padding: 150px 0 90px; min-height: 100vh; }
.otp-card {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(20,30,70,0.08);
}
.otp-card .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 18px;
}
.otp-card h3 { text-align: center; font-size: 1.35rem; margin-bottom: 8px; }
.otp-card .sub-text { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }
.otp-step { display: none; }
.otp-step.active { display: block; }
.form-label { font-weight: 600; font-size: 0.88rem; color: #1c2340; }
.mobile-input-group {
  display: flex;
  gap: 10px;
}
.mobile-input-group .country-code {
  width: 72px;
  text-align: center;
  background: var(--light-bg);
  border: 1px solid #e2e5ef;
  border-radius: 10px;
  font-weight: 600;
}
.form-control-lg-custom {
  border: 1px solid #e2e5ef;
  border-radius: 10px;
  padding: 12px 14px;
}
.form-control-lg-custom:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,91,255,0.12);
}
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 4px 0 6px;
}
.otp-inputs input {
  width: 48px;
  height: 54px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 1px solid #e2e5ef;
  border-radius: 10px;
  color: var(--navy-2);
}
.otp-inputs input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,91,255,0.12);
  outline: none;
}
.otp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 14px 0 22px;
}
.otp-meta .resend-link {
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.otp-meta .resend-link.disabled {
  color: #b3b8c8;
  pointer-events: none;
}
.otp-error {
  color: #e34b4b;
  font-size: 0.85rem;
  margin-top: -14px;
  margin-bottom: 16px;
  display: none;
}
.otp-error.show { display: block; }
.demo-otp-hint {
  background: #fff7ed;
  border: 1px dashed #ffcb94;
  color: #9a5b1f;
  font-size: 0.82rem;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  text-align: center;
}
.success-state { text-align: center; }
.success-state .icon-circle {
  background: linear-gradient(135deg, var(--teal), var(--accent-2));
}
.warning-box {
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  color: #9a2b2b;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.warning-box ul { margin: 8px 0 0; padding-left: 20px; }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .hero { padding: 130px 0 70px; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 340px; margin-top: 30px; }
  .hero-card-1, .hero-card-2 { width: 170px; }
  .hero-card-1 img, .hero-card-2 img { height: 250px; }
  #mainNav { background: rgba(8,28,66,0.96); padding: 12px 0; }
  .navbar-collapse {
    background: rgba(8,28,66,0.98);
    margin-top: 14px;
    padding: 16px;
    border-radius: 12px;
  }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 60px 0; }
  .hero-visual { height: 300px; }
  .hero-card-1 { left: 4%; top: 0; }
  .hero-card-2 { right: 4%; bottom: 0; }
  .hero-card-1, .hero-card-2 { width: 150px; }
  .hero-card-1 img, .hero-card-2 img { height: 210px; }
  .showcase-img { height: 300px; }
  .cta-section h2 { font-size: 1.6rem; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: 1.7rem; }
  .legal-toc { position: static; margin-bottom: 30px; }
  .otp-wrap { padding: 120px 0 60px; }
  .otp-card { padding: 28px 20px; }
  .otp-inputs input { width: 42px; height: 48px; font-size: 1.1rem; }
}

@media (max-width: 575.98px) {
  .hero-stats h3 { font-size: 1.4rem; }
  .hero-stats p { font-size: 0.72rem; }
  .badge-pill { font-size: 0.75rem; }
  .hero-visual { flex-direction: column; height: auto; gap: 16px; padding: 20px 0; }
  .hero-card-float { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: 200px !important; margin: 0 auto; }
  .hero-glow { display: none; }
  .showcase-grid { flex-direction: column; align-items: center; }
  .showcase-img { width: 100%; max-width: 280px; }
}
