:root {
  --primary: #0b4ea2;
  --primary-dark: #092f63;
  --teal: #0e6f68;
  --amber: #b7791f;
  --gold: #c59a43;
  --ink: #121a2b;
  --muted: #667085;
  --soft: #f6f8fb;
  --surface: #ffffff;
  --line: #d9e2ef;
  --success: #20b35a;
  --shadow: 0 18px 42px rgba(22, 32, 51, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.lang-mr {
  font-family: "Noto Sans Devanagari", "Inter", system-ui, sans-serif;
}

a { text-decoration: none; }

.site-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 239, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-link {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 9px 12px !important;
}

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

.lang-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: #edf2f7;
  border: 1px solid #dce5f1;
  border-radius: 8px;
}

.lang-btn {
  border: 0;
  border-radius: 6px;
  padding: 7px 11px;
  color: var(--muted);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.lang-btn.active {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 32, 51, 0.12);
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  padding: 11px 18px;
}

.btn-lg {
  padding: 13px 22px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: rgba(7, 88, 184, 0.36);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
}

.hero-section {
  min-height: 76vh;
  padding: 106px 0 52px;
  background:
    radial-gradient(circle at 74% 20%, rgba(197, 154, 67, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 66%),
    #ffffff;
}

.eyebrow,
.section-kicker {
  margin-bottom: 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.trust-row > div {
  min-height: 82px;
  padding: 15px 18px;
  background: #ffffff;
  border: 1px solid rgba(197, 154, 67, 0.28);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 32, 51, 0.06);
}

.trust-row strong {
  display: block;
  color: var(--primary);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.1;
}

.trust-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.logo-panel {
  display: grid;
  min-height: 282px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(11, 78, 162, 0.08), rgba(197, 154, 67, 0.11)),
    #ffffff;
  border: 1px solid rgba(197, 154, 67, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(230px, 66%);
  height: auto;
}

.software-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(100% - 36px);
  margin: -32px auto 0;
  padding: 15px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), #101827);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(22, 32, 51, 0.18);
}

.software-strip h2 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.software-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.status-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--success);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.mini-grid span {
  min-height: 42px;
  padding: 9px 8px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 82px 0;
  scroll-margin-top: 92px;
}

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

.section-heading {
  max-width: 720px;
  margin-inline: auto;
}

.section-title {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.feature-card,
.why-card,
.contact-card,
.why-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(22, 32, 51, 0.06);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 154, 67, 0.5);
  box-shadow: 0 18px 38px rgba(22, 32, 51, 0.1);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #fff8e7, #eef5ff);
  border: 1px solid rgba(197, 154, 67, 0.34);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3,
.why-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.feature-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card-premium {
  border-color: rgba(197, 154, 67, 0.42);
  box-shadow: 0 16px 36px rgba(18, 26, 43, 0.08);
}

.why-panel {
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--primary-dark), #111827);
}

.why-panel .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.why-panel .section-title {
  color: #ffffff;
}

.why-panel p:not(.section-kicker) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.why-card {
  height: 100%;
  padding: 26px;
}

.why-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 800;
}

.cta-section {
  padding: 28px 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), #111827 58%, var(--teal));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 88, 184, 0.16);
}

.cta-box .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.contact-card {
  padding: 8px;
}

.contact-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  color: var(--ink);
  font-weight: 800;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--primary);
}

.footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: var(--success);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(32, 179, 90, 0.32);
  font-weight: 800;
}

.floating-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 112px;
  }
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .logo-panel {
    min-height: 260px;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 15.5px;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
  }
  .brand-text strong {
    font-size: 0.9rem;
  }
  .brand-text small {
    font-size: 0.72rem;
  }
  .lang-btn {
    padding: 6px 8px;
    font-size: 0.74rem;
  }
  .hero-section {
    padding: 110px 0 56px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .logo-panel {
    min-height: 245px;
    padding: 26px;
  }
  .software-strip {
    width: calc(100% - 20px);
    align-items: flex-start;
  }
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section {
    padding: 62px 0;
  }
  .feature-card {
    min-height: auto;
  }
  .cta-box {
    padding: 28px;
  }
  .contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }
}
