:root {
  --navy: #0a2540;
  --navy-2: #12385b;
  --ink: #142334;
  --muted: #627084;
  --line: #dce5ee;
  --paper: #f5f7fa;
  --white: #ffffff;
  --teal: #0f8f8c;
  --orange: #f28c28;
  --shadow: 0 22px 70px rgba(10, 37, 64, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(10, 37, 64, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  min-width: max-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 56px;
}

.brand-logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo img:first-child {
  height: 46px;
}

.brand-logo img:last-child {
  height: 31px;
}

.logo-dark {
  display: none;
}

.site-header.is-scrolled .logo-light,
.site-header.is-open .logo-light {
  display: none;
}

.site-header.is-scrolled .logo-dark,
.site-header.is-open .logo-dark {
  display: inline-flex;
}

.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;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 64px) 76px;
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 37, 64, 0.94) 0%, rgba(10, 37, 64, 0.78) 42%, rgba(10, 37, 64, 0.32) 100%),
    linear-gradient(0deg, rgba(10, 37, 64, 0.14), rgba(10, 37, 64, 0.14));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 7.5vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: #0b7673;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 44px;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 37, 64, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-top,
.panel-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-top {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #36d399;
}

.panel-stat {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.panel-stat strong {
  font-size: 1.45rem;
}

.section,
.workflow-band,
.benefits-section,
.dashboard-section,
.contact {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2 {
  color: var(--navy);
}

.choice-grid,
.service-grid,
.industry-grid,
.dashboard-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.choice-grid article,
.service-grid article,
.industry-grid article,
.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.08);
}

.choice-grid article {
  min-height: 260px;
  padding: 28px;
}

.choice-grid span {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 42px;
  border-radius: 8px;
  background: #eaf6f5;
  font-size: 1.55rem;
  line-height: 50px;
  text-align: center;
}

.choice-grid h3,
.service-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.choice-grid p,
.contact-copy p,
.testimonial-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-band,
.dashboard-section {
  color: var(--white);
  background: var(--navy);
}

.workflow-band .section-heading h2,
.dashboard-section .section-heading h2 {
  color: var(--white);
}

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

.process-flow article {
  position: relative;
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.process-flow span {
  display: block;
  margin-bottom: 32px;
  color: var(--orange);
  font-weight: 900;
}

.process-flow strong {
  display: block;
  line-height: 1.32;
}

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

.service-grid article {
  min-height: 260px;
  padding: 28px;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

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

.industry-grid article {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

.benefit-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.08);
}

.benefit-table div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.benefit-table div:nth-child(odd) {
  background: #f8fafc;
}

.benefit-table div:last-child {
  border-bottom: 0;
}

.benefit-table strong {
  color: var(--navy);
}

.benefit-table span {
  color: var(--muted);
}

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

.mini-screen {
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mini-screen h3 {
  margin-bottom: 20px;
  color: var(--navy);
}

.form-lines,
.approval-list {
  display: grid;
  gap: 12px;
}

.form-lines span,
.approval-list span {
  display: block;
  height: 34px;
  border-radius: 8px;
  background: #edf2f7;
}

.approval-list span {
  height: 18px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  height: 120px;
  padding: 14px;
  border-radius: 8px;
  background: #edf2f7;
}

.bar-chart span {
  min-height: 20px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--orange), var(--teal));
}

.invoice-total {
  display: grid;
  min-height: 92px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--teal);
  background: #eaf6f5;
  font-size: 1.4rem;
  font-weight: 900;
}

.mini-screen p {
  margin: 0;
  color: var(--muted);
}

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

.testimonial-grid article {
  padding: 28px;
}

.testimonial-grid p {
  margin-bottom: 24px;
}

.testimonial-grid strong {
  color: var(--navy);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: #eef3f7;
}

.contact h2 {
  margin-bottom: 24px;
  color: var(--navy);
}

.page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-list a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.1);
}

.contact-form label:nth-child(5),
.contact-form label:nth-child(6),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8e5;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 143, 140, 0.18);
  border-color: var(--teal);
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #06192c;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand .brand-logo img:first-child {
  height: 44px;
}

.footer-brand .brand-logo img:last-child {
  height: 30px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .choice-grid,
  .service-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-flow article:nth-child(3)::after {
    display: none;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 900px;
    align-items: start;
    padding-top: 110px;
  }

  .brand-logo {
    gap: 7px;
  }

  .brand-logo img:first-child {
    height: 40px;
  }

  .brand-logo img:last-child {
    height: 26px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.94), rgba(10, 37, 64, 0.76) 58%, rgba(10, 37, 64, 0.38));
  }

  .hero-panel {
    left: 18px;
    right: 18px;
  }

  .choice-grid,
  .service-grid,
  .process-flow,
  .industry-grid,
  .dashboard-grid,
  .testimonial-grid,
  .benefits-section,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-flow article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 28px;
    bottom: -18px;
    width: 2px;
    height: 18px;
  }

  .process-flow article:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 460px) {
  h1 {
    max-width: 10ch;
  }

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

  .choice-grid article,
  .service-grid article,
  .testimonial-grid article {
    padding: 22px;
  }

  .benefit-table div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
 }}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 15px;
    background: #25D366;
    color: white;
    padding: 10px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}
/* Desktop WhatsApp Button */
.whatsapp-float {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 15px;
    }
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
.whatsapp-float {
    bottom: 30px;
    right: 30px;
}