:root {
  --primary: #1f4ed8;
  --primary-dark: #173aa0;
  --primary-soft: #e9f1ff;
  --text: #102033;
  --muted: #667085;
  --bg: #ffffff;
  --soft-bg: #f4f7fb;
  --soft-bg-alt: #f8fbff;
  --border: #e6eaf0;
  --success: #079455;
  --shadow-lg: 0 30px 70px rgba(16, 32, 51, 0.12);
  --shadow-md: 0 14px 35px rgba(16, 32, 51, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand img {
  max-height: 56px;
  width: auto;
}

.navbar-toggler {
  border: 1px solid rgba(16, 32, 51, 0.12);
  padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 78, 216, 0.16);
}

.nav-link {
  font-weight: 600;
  color: #344054;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.btn-primary-custom,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary-custom {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 78, 216, 0.18);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-custom {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  background: var(--primary);
  color: #fff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 84px;
  background:
    radial-gradient(circle at top right, rgba(31, 78, 216, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-scene .layer {
  position: absolute;
}

.hero-orb {
  width: 340px;
  height: 340px;
  right: -70px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 78, 216, 0.14) 0%, rgba(31, 78, 216, 0.02) 70%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.floating-doc {
  width: 160px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(8px);
}

.floating-doc strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.floating-doc span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.doc-one {
  top: 120px;
  right: 14%;
}

.doc-two {
  bottom: 90px;
  right: 38%;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero-text {
  font-size: 20px;
  color: var(--muted);
  max-width: 680px;
}

.trust-note,
.section-text,
.card-text-custom,
.section-lead {
  color: var(--muted);
}

.hero-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 78, 216, 0.1);
  color: #344054;
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(31, 78, 216, 0.22), rgba(255, 255, 255, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.upload-box {
  border: 2px dashed #b8c7ee;
  border-radius: 20px;
  padding: 24px;
  background: var(--soft-bg-alt);
}

.small-label {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.data-box {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.section-padding {
  padding: 86px 0;
}

.soft-bg {
  background: var(--soft-bg);
}

.feature-card,
.step-card,
.product-card,
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.feature-card,
.step-card,
.product-card,
.info-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.step-card:hover,
.product-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.09);
}

.step-number,
.tag-badge {
  display: inline-block;
  background: #eaf0ff;
  color: var(--primary);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.tag-badge {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.coming-soon {
  background: #f3f6fb;
  color: #475467;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eef4ff 0%, #e7efff 100%);
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.why-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.demo-box {
  background:
    radial-gradient(circle at top right, rgba(76, 133, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #102033 0%, #153152 100%);
  color: #fff;
  border-radius: 30px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.demo-box p,
.contact-note {
  color: #cfd8e6;
}

.contact-form {
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.form-control {
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid #ccd5e1;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(31, 78, 216, 0.16);
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  color: #344054;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  color: var(--muted);
  background: #fff;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}

.footer a:hover,
.footer a:focus {
  color: var(--primary);
}

.policy-hero {
  padding: 96px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(31, 78, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.policy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.policy-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 84px 0 64px;
  }

  .navbar-brand img {
    max-height: 48px;
  }

  .doc-one,
  .doc-two {
    display: none;
  }

  .demo-box {
    padding: 36px;
  }
}

@media (max-width: 767px) {
  .hero-card {
    margin-top: 12px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .policy-hero {
    padding-top: 84px;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-card,
  .step-card,
  .product-card,
  .info-card,
  .btn-primary-custom,
  .btn-outline-custom {
    transition: none;
  }
}
