:root {
  --navy: #031326;
  --navy-2: #061b34;
  --navy-3: #0a2a4b;
  --green: #16c970;
  --green-2: #50f29a;
  --ink: #0b1830;
  --muted: #5c687a;
  --line: rgba(11, 24, 48, 0.1);
  --white: #ffffff;
  --soft: #f5f8fb;
  --glass: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 70px rgba(3, 19, 38, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  line-height: 1.6;
}

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

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

.site-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.section-pad {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-dark {
  color: var(--white);
  background: radial-gradient(circle at 75% 20%, rgba(22, 201, 112, 0.22), transparent 30%), linear-gradient(135deg, #031326 0%, #061b34 58%, #031326 100%);
}

.top-bar {
  background: #041021;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.top-bar__inner,
.top-bar__group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__inner {
  justify-content: space-between;
  min-height: 42px;
}

.top-bar i {
  color: var(--green-2);
  margin-right: 8px;
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0fa85a);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  min-height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(3, 19, 38, 0.07);
  backdrop-filter: blur(18px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .main-nav {
  min-height: 68px;
  box-shadow: 0 14px 40px rgba(3, 19, 38, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark::first-letter {
  color: var(--green);
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.05;
}

.brand-text span {
  color: #52606d;
}

.navbar-nav {
  gap: clamp(8px, 2vw, 30px);
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 18px 4px;
}

.nav-link::after {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 8px;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn i {
  margin-left: 10px;
}

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

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--green), #0fb463);
  box-shadow: 0 14px 30px rgba(22, 201, 112, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 18px 40px rgba(22, 201, 112, 0.36);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  color: var(--navy);
  background: var(--white);
}

.nav-btn {
  min-width: 178px;
  padding: 14px 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 172px;
  min-height: 720px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(80, 242, 154, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 242, 154, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-bottom: 54px;
}

.section-badge,
.eyebrow,
.section-heading span,
.about-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-badge {
  padding: 9px 18px;
  border: 1px solid rgba(80, 242, 154, 0.35);
  border-radius: 999px;
  background: rgba(22, 201, 112, 0.08);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(40px, 5vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.trust-strip i {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: var(--navy);
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.dashboard-card {
  position: absolute;
  top: 30px;
  right: 58px;
  width: min(86%, 570px);
  min-height: 430px;
  padding: 22px;
  border-radius: 18px;
  transform: rotateY(-9deg) rotateX(4deg);
}

.dashboard-top,
.dashboard-metrics,
.progress-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.dashboard-metrics > div,
.progress-widget {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 16, 33, 0.5);
  border-radius: 12px;
  padding: 18px;
}

.dashboard-metrics > div {
  flex: 1;
  min-height: 142px;
}

.dashboard-metrics small,
.progress-widget span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.dashboard-metrics strong {
  display: block;
  color: var(--green-2);
  font-size: 38px;
  line-height: 1;
  margin: 16px 0 6px;
}

.dashboard-metrics em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 12px;
}

.chart-widget svg {
  width: 100%;
  height: 86px;
}

.chart-widget path {
  fill: none;
  stroke: var(--green-2);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(80, 242, 154, 0.75));
}

.progress-widget {
  margin-top: 18px;
}

.progress {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-bar {
  background: linear-gradient(90deg, var(--green-2), var(--green));
}

.shield-3d {
  position: absolute;
  left: 56px;
  bottom: 72px;
  width: 170px;
  height: 210px;
  clip-path: polygon(50% 0, 92% 16%, 86% 68%, 50% 100%, 14% 68%, 8% 16%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(80, 242, 154, 0.72) 45%, rgba(3, 19, 38, 0.98));
  box-shadow: 0 26px 60px rgba(80, 242, 154, 0.28);
  padding: 12px;
}

.shield-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--green-2);
  font-size: 68px;
  clip-path: inherit;
  background: linear-gradient(145deg, #0b243d, #031326);
}

.orbit-ring {
  position: absolute;
  left: 18px;
  right: 28px;
  bottom: 22px;
  height: 118px;
  border: 2px solid rgba(80, 242, 154, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(80, 242, 154, 0.32);
  transform: rotateX(68deg);
}

.compliance-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 188px;
  padding: 18px;
  border-radius: 12px;
  color: var(--white);
  font-size: 13px;
}

.compliance-float i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-2);
  background: rgba(80, 242, 154, 0.14);
  border-radius: 8px;
  font-size: 22px;
}

.card-one {
  top: 84px;
  right: 0;
}

.card-two {
  top: 236px;
  right: -14px;
}

.card-three {
  right: 20px;
  bottom: 76px;
}

.floating {
  animation: floating 5s ease-in-out infinite;
}

.floating-slow {
  animation: floating 7s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0) rotateY(-9deg) rotateX(4deg);
  }
  50% {
    transform: translateY(-14px) rotateY(-6deg) rotateX(4deg);
  }
}

.shield-3d.floating {
  animation-name: shieldFloat;
}

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

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2,
.founder h2,
.cta-panel h2,
.contact-section h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  font-weight: 800;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) auto;
  align-items: end;
  gap: 30px;
}

.split-heading p {
  margin: 0;
  color: var(--muted);
}

.link-arrow {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.service-card {
  height: 100%;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(3, 19, 38, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 201, 112, 0.35);
  box-shadow: var(--shadow);
}

.service-card > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--green);
  background: rgba(22, 201, 112, 0.12);
  border-radius: var(--radius);
  font-size: 28px;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  min-height: 92px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.about-section {
  overflow: hidden;
  background: var(--soft);
}

.about-copy {
  padding: clamp(48px, 7vw, 90px) clamp(22px, 5vw, 64px) clamp(48px, 7vw, 90px) 0;
}

.about-copy p {
  max-width: 760px;
  color: var(--muted);
}

.about-image-wrap {
  min-height: 440px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stats-row div {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.stats-row strong {
  display: block;
  color: var(--green);
  font-size: 30px;
}

.stats-row small {
  color: var(--muted);
  font-weight: 600;
}

.founder {
  position: relative;
}

.founder-profile {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 14px;
  margin-top: 18px;
}

.founder-photo {
  width: 185px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid rgba(80, 242, 154, 0.75);
  border-radius: 14px;
  box-shadow: 0 0 34px rgba(80, 242, 154, 0.18);
}

.founder p,
.founder li {
  color: rgba(255, 255, 255, 0.78);
}

.role {
  color: var(--green) !important;
  font-weight: 700;
}

.founder ul,
.credentials ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder li,
.credentials li {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.founder li i,
.credentials i {
  color: var(--green-2);
  margin-top: 4px;
}

.credentials {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.credentials h3 {
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.process-line::before {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(22, 201, 112, 0.18);
  border-radius: 50%;
  box-shadow: 0 20px 46px rgba(3, 19, 38, 0.12);
  font-size: 30px;
}

.process-step b {
  color: var(--green);
  font-size: 15px;
}

.process-step h3 {
  margin: 4px 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.process-step p {
  color: var(--muted);
  font-size: 13px;
}

.industries {
  background: linear-gradient(180deg, #f8fbfd, #ffffff);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.industry-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(3, 19, 38, 0.05);
}

.industry-grid i {
  color: var(--green);
  font-size: 24px;
}

.cta-band {
  background: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 72px);
  color: var(--white);
  border-radius: 14px;
  background: radial-gradient(circle at 72% 35%, rgba(80, 242, 154, 0.25), transparent 28%), linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  background: #f7fafc;
}

.contact-card,
.contact-form {
  height: 100%;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(3, 19, 38, 0.06);
}

.contact-list li {
  display: flex;
  gap: 14px;
  margin: 20px 0;
  font-weight: 600;
}

.contact-list i {
  color: var(--green);
  margin-top: 4px;
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 22px;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(22, 201, 112, 0.08) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(-45deg, rgba(3, 19, 38, 0.06) 25%, transparent 25%) 0 0 / 42px 42px,
    #eef3f1;
}

.map-box i {
  color: #ef4444;
  font-size: 54px;
  filter: drop-shadow(0 10px 18px rgba(239, 68, 68, 0.26));
}

.form-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid rgba(11, 24, 48, 0.14);
  border-radius: 4px;
  font-size: 14px;
}

textarea.form-control {
  min-height: 112px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(22, 201, 112, 0.12);
}

.captcha-field {
  display: grid;
  grid-template-columns: auto minmax(110px, 1fr);
  gap: 10px;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(22, 201, 112, 0.25);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(22, 201, 112, 0.08);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-error {
  color: #c0262d;
}

.form-status.is-success {
  color: var(--green);
}

.contact-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.contact-form .btn[type="submit"] {
  min-height: 48px;
}

.footer {
  padding: 54px 0 34px;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  margin-bottom: 8px;
}

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-list i {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 4px;
  color: var(--green-2);
}

.footer-contact-list a,
.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer a:hover {
  color: var(--green-2);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer .brand-mark {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.footer-legal {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 1199.98px) {
  .split-heading {
    grid-template-columns: 1fr 1fr;
  }

  .split-heading .link-arrow {
    grid-column: 1 / -1;
  }

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

  .process-line::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 92px;
  }

  .top-bar {
    display: none;
  }

  .main-nav {
    min-height: 74px;
  }

  .navbar-collapse {
    padding: 18px 0 22px;
  }

  .nav-link {
    padding: 12px 0;
  }

  .nav-link::after {
    left: 0;
    right: auto;
    width: 40px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .dashboard-card {
    right: 20px;
  }

  .card-two {
    right: 6px;
  }

  .about-copy {
    padding-right: 0;
  }

  .founder-profile {
    grid-template-columns: 160px 1fr;
  }

  .founder-photo {
    width: 160px;
  }

  .credentials {
    padding-left: 0;
    border-left: 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

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

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 590px;
  }

  .dashboard-card {
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .dashboard-metrics {
    flex-direction: column;
  }

  .dashboard-metrics > div {
    width: 100%;
    min-height: auto;
  }

  .shield-3d {
    left: 22px;
    bottom: 118px;
    width: 132px;
    height: 164px;
  }

  .compliance-float {
    min-width: 166px;
    padding: 14px;
  }

  .card-one {
    top: 324px;
    right: 0;
  }

  .card-two {
    top: 420px;
    right: 0;
  }

  .card-three {
    right: 0;
    bottom: 4px;
  }

  .split-heading,
  .process-line,
  .industry-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 479.98px) {
  .site-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .dashboard-card {
    padding: 16px;
  }

  .progress-widget {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress {
    width: 100%;
  }

  .service-card {
    padding: 28px 22px;
  }

  .cta-panel {
    border-radius: 10px;
  }

  .captcha-field {
    grid-template-columns: 1fr;
  }
}
