:root {
  color-scheme: light;
  --ink: #13201f;
  --muted: #60706d;
  --surface: #ffffff;
  --surface-soft: #f5f8f6;
  --surface-tint: #eef7f3;
  --line: #dbe5e1;
  --navy: #10213b;
  --teal: #087b73;
  --green: #2f8f5b;
  --gold: #b98b2d;
  --shadow: 0 18px 50px rgba(19, 32, 31, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 20px);
  padding: 88px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(16, 33, 59, 0.08);
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  border-radius: 999px;
  padding: 9px 12px;
  color: #43524f;
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--teal);
  background: var(--surface-tint);
}

.nav-cta {
  color: #fff;
  background: var(--teal);
}

.nav-cta:hover,
.nav-cta.is-active {
  color: #fff;
  background: #06645e;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 132px 0 56px;
  overflow: hidden;
  background: #f8fbfa;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.98) 0%, rgba(248, 251, 250, 0.9) 43%, rgba(248, 251, 250, 0.44) 100%),
    radial-gradient(circle at 82% 18%, rgba(8, 123, 115, 0.16), transparent 34%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.06;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.2vw, 5.35rem);
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: #3e504c;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(8, 123, 115, 0.22);
}

.button-primary:hover {
  background: #06645e;
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-metrics strong {
  color: var(--navy);
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 6px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
}

.split-layout,
.solution-grid,
.compliance-grid,
.software-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.trust-section,
.software-section {
  background: var(--surface);
}

.trust-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.problem-card,
.service-card,
.timeline-item,
.contact-form,
.dashboard-mockup {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 32, 31, 0.06);
}

.info-card,
.problem-card,
.service-card {
  padding: 24px;
}

.info-card h3,
.problem-card h3,
.service-card h3,
.timeline-item h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.info-card p,
.problem-card p,
.service-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.card-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--teal);
  background: var(--surface-tint);
  font-weight: 900;
  font-size: 0.85rem;
}

.problem-section,
.business-section {
  background: var(--surface-soft);
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-section,
.compliance-section {
  color: #fff;
  background: linear-gradient(135deg, #10213b 0%, #123d44 100%);
}

.solution-section h2,
.solution-section .eyebrow,
.compliance-section h2,
.compliance-section .eyebrow {
  color: #fff;
}

.solution-section p,
.compliance-section p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: #8ce0d2;
  font-weight: 800;
}

.ecosystem {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.ecosystem-core {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  font-size: 1.4rem;
}

.ecosystem span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 123, 115, 0.42);
  box-shadow: var(--shadow);
}
.emi-section {
  background: #fff;
}

.emi-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 40px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 32, 31, 0.06);
}

.emi-controls {
  display: grid;
  gap: 30px;
}

.emi-field {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  color: var(--navy);
  font-weight: 750;
}

.emi-field output {
  min-width: 112px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #00a87d;
  background: #e8f8f2;
  text-align: right;
  font-weight: 900;
}

.emi-field input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) var(--range-progress, 0%), #e8eaed var(--range-progress, 0%));
  outline: none;
}

.emi-field input[type="range"]::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 3px 12px rgba(19, 32, 31, 0.14);
  cursor: pointer;
}

.emi-field input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 3px 12px rgba(19, 32, 31, 0.14);
  cursor: pointer;
}

.emi-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
}

.emi-summary strong {
  color: var(--navy);
  font-weight: 750;
  text-align: right;
}

.emi-chart-panel {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.emi-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.emi-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.emi-legend i {
  width: 20px;
  height: 8px;
  border-radius: 999px;
}

.legend-principal {
  background: #e9ecff;
}

.legend-interest {
  background: #5364f4;
}

.emi-donut {
  position: relative;
  width: min(220px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#5364f4 0deg var(--interest-angle), #e9ecff var(--interest-angle) 360deg);
}

.emi-donut::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: #fff;
}

.checklist,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checklist span,
.feature-list span {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 14px 14px 38px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.feature-list span {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--ink);
}

.checklist span::before,
.feature-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ce0d2;
}

.feature-list span::before {
  background: var(--green);
}

.software-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.dashboard-mockup {
  padding: 16px;
  background: #f9fbfa;
}

.mockup-top {
  display: flex;
  gap: 7px;
  padding: 6px 4px 16px;
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4d2ce;
}

.mockup-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.mockup-panel small,
.mockup-panel strong {
  display: block;
}

.mockup-panel small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.mockup-panel strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 1.1rem;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 170px;
  margin-top: 20px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.bar-chart span {
  flex: 1;
  min-height: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.revenue-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.revenue-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 24px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.contact-section {
  background: var(--surface-soft);
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 123, 115, 0.16);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0d1b2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 24px;
}

.site-footer strong {
  color: #fff;
  font-size: 1.1rem;
}


.footer-logo {
  height: 52px;
  width: auto;
  padding: 6px;
  border-radius: var(--radius);
  background: #fff;
}
.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal-delay-5 {
  transition-delay: 400ms;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .solution-grid,
  .compliance-grid,
  .software-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .services-grid,
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emi-calculator {
    grid-template-columns: 1fr;
  }

  .revenue-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .nav-shell {
    width: min(100% - 28px, 1160px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 96px);
    padding: 12px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-cta {
    border-radius: var(--radius);
    padding: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist,
  .feature-list,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    margin-left: 22px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .services-grid,
  .three-grid,
  .revenue-strip,
  .mockup-row,
  .emi-summary {
    grid-template-columns: 1fr;
  }

  .emi-calculator {
    padding: 24px 18px;
  }

  .emi-field {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .emi-field output,
  .emi-summary strong {
    text-align: left;
  }

  .hero-metrics {
    display: grid;
  }

  .hero-metrics span {
    width: 100%;
  }

  .info-card,
  .problem-card,
  .service-card,
  .timeline-item,
  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}




