:root {
  --saffron: #f7931a;
  --saffron-2: #ff8c00;
  --green: #00a651;
  --green-2: #0b8f3a;
  --navy: #0f172a;
  --navy-2: #111827;
  --ink: #162033;
  --muted: #667085;
  --line: #e7ecf4;
  --soft: #f6f8fb;
  --white: #ffffff;
  --cyan: #0ea5e9;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  box-shadow: 0 0 18px rgba(247, 147, 26, 0.45);
  pointer-events: none;
}

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

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

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

:where(h1, h2, h3, p, a, span, strong, small, li, button, label) {
  overflow-wrap: break-word;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  filter: drop-shadow(0 8px 14px rgba(247, 147, 26, 0.28));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.brand strong {
  display: block;
  color: var(--white);
  font: 700 18px/1.05 "Poppins", Arial, sans-serif;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 9px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(0, 166, 81, 0.2);
}

.header-cta,
.contact-actions .btn-primary {
  position: relative;
  isolation: isolate;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  font: 700 13px/1 "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  box-shadow: 0 10px 22px rgba(247, 147, 26, 0.32);
}

.header-cta::after,
.contact-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.42), rgba(0, 166, 81, 0.26));
  opacity: 0;
  animation: shadowPulse 2.4s ease-out infinite;
}

.header-cta:hover::after,
.contact-actions .btn-primary:hover::after {
  animation-duration: 1.5s;
}

@keyframes shadowPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.94);
    box-shadow: 0 0 0 0 rgba(247, 147, 26, 0.42), 0 0 0 0 rgba(0, 166, 81, 0.24);
  }
  70% {
    opacity: 0;
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(247, 147, 26, 0), 0 0 0 22px rgba(0, 166, 81, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(247, 147, 26, 0), 0 0 0 22px rgba(0, 166, 81, 0);
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 100vh;
  padding: 152px 0 94px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.16) 0%, transparent 28%),
    linear-gradient(225deg, rgba(0, 166, 81, 0.15) 0%, transparent 32%),
    linear-gradient(180deg, #0f172a 0%, #111827 58%, #142032 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font: 700 13px/1.25 "Poppins", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 52px);
}

.section-dark h2 {
  color: var(--white);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font: 700 20px/1.2 "Poppins", Arial, sans-serif;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-wordmark {
  width: min(280px, 76vw);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: 700 15px/1 "Poppins", Arial, sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.54;
  filter: grayscale(0.35);
  box-shadow: none;
}

.btn:disabled:hover,
.btn[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  box-shadow: 0 16px 34px rgba(247, 147, 26, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(247, 147, 26, 0.45);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(0, 166, 81, 0.68);
  background: rgba(0, 166, 81, 0.16);
}

.btn-outline {
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.14);
  background: var(--white);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-trust span,
.industry-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-scene {
  position: relative;
  min-height: 530px;
}

.dashboard-device {
  position: relative;
  z-index: 2;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 4px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.device-topbar span:nth-child(1) {
  background: var(--saffron);
}

.device-topbar span:nth-child(2) {
  background: #ffd166;
}

.device-topbar span:nth-child(3) {
  background: var(--green);
}

.device-topbar strong {
  margin-left: auto;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 450px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
}

.dash-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  padding-top: 22px;
  background: #111827;
}

.dash-sidebar span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-sidebar .active {
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.dash-main {
  padding: 22px;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--navy);
}

.dash-head small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.dash-head strong {
  display: block;
  font: 800 22px/1.15 "Montserrat", Arial, sans-serif;
}

.live-pill {
  align-self: start;
  padding: 7px 10px;
  border-radius: 8px;
  color: #036b35;
  background: rgba(0, 166, 81, 0.12);
  font-size: 12px;
  font-weight: 800;
}

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

.metric-grid article {
  min-height: 108px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.metric-grid small,
.floating-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 6px 0;
  color: var(--navy);
  font: 800 25px/1 "Montserrat", Arial, sans-serif;
}

.up {
  color: var(--saffron);
  font-size: 12px;
  font-weight: 800;
}

.up.green {
  color: var(--green-2);
}

.chart-panel {
  position: relative;
  min-height: 175px;
  margin-top: 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(0, 166, 81, 0.08)),
    var(--white);
}

.chart-line {
  position: absolute;
  inset: 34px 22px 60px;
  border-bottom: 4px solid rgba(247, 147, 26, 0.8);
  border-radius: 100% 0 0 0;
  transform: skewY(-10deg);
}

.chart-bars {
  position: absolute;
  inset: auto 28px 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 92px;
}

.chart-bars span {
  width: 12%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(0, 166, 81, 0.2));
}

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

.pipeline span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 8px;
  color: var(--navy);
  background: #eef4fb;
  font-size: 12px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 184px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin: 4px 0;
  font: 800 24px/1.05 "Montserrat", Arial, sans-serif;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.card-leads {
  left: -28px;
  bottom: 74px;
}

.card-automation {
  right: -18px;
  top: 86px;
  animation-delay: -2s;
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: center;
}

.section-copy p,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.growth-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.growth-panel {
  padding: 24px;
}

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

.workflow-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  color: var(--navy);
  background: #f1f5f9;
  font-size: 13px;
  font-weight: 800;
}

.workflow-row span:nth-child(1),
.workflow-row span:nth-child(4) {
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.growth-graph {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 230px;
  margin: 26px 0;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(14, 165, 233, 0.08)),
    var(--soft);
}

.growth-graph span {
  flex: 1;
  min-width: 40px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--saffron), var(--green));
  box-shadow: 0 16px 24px rgba(0, 166, 81, 0.16);
}

.growth-graph span:nth-child(1) {
  height: 32%;
}

.growth-graph span:nth-child(2) {
  height: 54%;
}

.growth-graph span:nth-child(3) {
  height: 72%;
}

.growth-graph span:nth-child(4) {
  height: 92%;
}

.growth-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.growth-note strong {
  color: var(--navy);
  font: 800 20px/1.25 "Poppins", Arial, sans-serif;
}

.growth-note small {
  color: var(--muted);
  font-size: 14px;
}

.services,
.packages,
.why,
.contact {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-grid,
.industry-grid,
.systems-grid {
  display: grid;
  gap: 18px;
}

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

.card-carousel {
  display: grid;
  gap: 22px;
}

.card-window {
  overflow: hidden;
  border-radius: 8px;
}

.card-track {
  display: flex;
  transition: transform 780ms cubic-bezier(0.22, 0.72, 0.18, 1);
  will-change: transform;
}

.card-slide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-width: 100%;
}

.card-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.card-carousel-controls button,
.card-dots button {
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  font: 800 13px/1 "Poppins", Arial, sans-serif;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.card-carousel-controls > button {
  min-width: 82px;
  min-height: 42px;
  color: var(--white);
  background: var(--navy);
}

.card-carousel-controls > button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.card-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.card-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(15, 23, 42, 0.2);
}

.card-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

.service-card,
.project-card,
.industry-card,
.testimonial-card,
.system-card,
.choose-list {
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(231, 236, 244, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.service-card:hover,
.project-card:hover,
.industry-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 81, 0.26);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.service-card:hover {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.16), rgba(0, 166, 81, 0.09)),
    #fffaf2;
}

.service-card:hover h3 {
  color: #9a4d00;
}

.service-card:hover p {
  color: #334155;
}

.service-card p,
.project-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.packages {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.06), rgba(0, 166, 81, 0.06)),
    var(--white);
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 81, 0.3);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.featured-package {
  border-color: rgba(247, 147, 26, 0.34);
  background:
    linear-gradient(180deg, rgba(247, 147, 26, 0.08), rgba(0, 166, 81, 0.05)),
    var(--white);
}

.package-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.package-head span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  font: 900 12px/1 "Poppins", Arial, sans-serif;
}

.package-head strong {
  color: var(--navy);
  font: 800 20px/1.2 "Poppins", Arial, sans-serif;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.package-rate {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.package-rate small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.package-rate strong {
  display: block;
  margin-top: 4px;
  color: var(--saffron);
  font: 800 26px/1.15 "Montserrat", Arial, sans-serif;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font: 800 13px/1 "Poppins", Arial, sans-serif;
  transition: background 180ms ease, transform 180ms ease;
}

.package-card a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.18), rgba(0, 166, 81, 0.16));
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background: var(--saffron);
}

.website-icon::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--green);
  background: transparent;
}

.website-icon::after {
  width: 18px;
  height: 3px;
  bottom: 12px;
}

.mobile-icon::before {
  width: 16px;
  height: 26px;
  border: 2px solid var(--green);
  background: transparent;
}

.mobile-icon::after {
  width: 5px;
  height: 5px;
  bottom: 12px;
}

.crm-icon::before,
.erp-icon::before,
.seo-icon::before,
.social-icon::before,
.brand-icon::before,
.ai-icon::before,
.video-icon::before,
.consulting-icon::before,
.workforce-icon::before {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.crm-icon::after {
  width: 18px;
  height: 3px;
  top: 16px;
  background: var(--white);
}

.erp-icon::after {
  width: 8px;
  height: 28px;
  background: var(--white);
  transform: rotate(90deg);
}

.seo-icon::after {
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  background: transparent;
}

.social-icon::after {
  width: 18px;
  height: 10px;
  background: var(--white);
  clip-path: polygon(0 40%, 70% 0, 100% 18%, 28% 100%);
}

.brand-icon::after {
  width: 18px;
  height: 18px;
  background: var(--white);
  transform: rotate(45deg);
}

.ai-icon::after {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  background: transparent;
}

.video-icon::after {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--white);
  background: transparent;
  border-radius: 2px;
}

.consulting-icon::after {
  width: 18px;
  height: 4px;
  background: var(--white);
  box-shadow: 0 -7px 0 var(--white), 0 7px 0 var(--white);
}

.workforce-icon::before {
  border-radius: 50%;
  box-shadow: -12px 8px 0 -4px var(--green), 12px 8px 0 -4px var(--saffron);
}

.workforce-icon::after {
  width: 30px;
  height: 10px;
  bottom: 11px;
  border-radius: 999px 999px 4px 4px;
  background: var(--white);
}

.workforce-solutions {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.07), rgba(0, 166, 81, 0.07)),
    var(--white);
}

.workforce-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  padding: 26px;
}

.workforce-intro strong {
  color: var(--white);
  font: 900 24px/1.25 "Montserrat", Arial, sans-serif;
}

.workforce-intro span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.7;
}

.workforce-grid,
.workforce-split {
  display: grid;
  gap: 18px;
}

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

.workforce-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 18px;
}

.workforce-card,
.workforce-panel {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.workforce-card h3,
.workforce-panel h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font: 900 18px/1.2 "Poppins", Arial, sans-serif;
}

.workforce-card ul,
.workforce-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workforce-card li,
.workforce-checks li {
  position: relative;
  padding-left: 22px;
  color: #475467;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.workforce-card li::before,
.workforce-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.workforce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workforce-tags span {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.09), rgba(0, 166, 81, 0.09));
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 850;
}

.workforce-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.18), rgba(0, 166, 81, 0.18)),
    var(--navy);
  box-shadow: var(--shadow);
  padding: 30px;
}

.workforce-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.workforce-cta p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.crm-erp {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(247, 147, 26, 0.14), transparent 35%),
    linear-gradient(220deg, rgba(0, 166, 81, 0.14), transparent 40%),
    var(--navy);
}

.crm-erp .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.system-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.system-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.system-head strong {
  color: var(--white);
  font: 800 24px/1.2 "Poppins", Arial, sans-serif;
}

.system-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--saffron);
  font-weight: 900;
}

.system-badge.green {
  background: var(--green);
}

.feature-list,
.choose-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.choose-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.feature-list li::before,
.choose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 26px;
}

.center-action {
  text-align: center;
}

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

.industry-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.industry-card:hover {
  background:
    linear-gradient(135deg, rgba(0, 166, 81, 0.14), rgba(247, 147, 26, 0.08)),
    #f4fff8;
  border-color: rgba(0, 166, 81, 0.34);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--green), var(--cyan));
}

.industry-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: 0 12px 26px rgba(0, 166, 81, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.industry-card:hover span {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--green), var(--saffron));
  box-shadow: 0 16px 32px rgba(0, 166, 81, 0.24);
}

.industry-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.industry-card strong {
  display: block;
  color: var(--navy);
  font: 800 17px/1.25 "Poppins", Arial, sans-serif;
}

.industry-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.industry-card strong,
.industry-card p {
  transition: color 180ms ease;
}

.industry-card:hover strong {
  color: #064e2b;
}

.industry-card:hover p {
  color: #243145;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.kpi-grid article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.kpi-grid strong {
  display: block;
  color: var(--saffron);
  font: 800 38px/1 "Montserrat", Arial, sans-serif;
}

.kpi-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.choose-list {
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.choose-list li {
  color: rgba(255, 255, 255, 0.86);
}

.project-carousel {
  display: grid;
  gap: 22px;
}

.project-window {
  overflow: hidden;
  border-radius: 8px;
}

.project-track {
  display: flex;
  transition: transform 780ms cubic-bezier(0.22, 0.72, 0.18, 1);
  will-change: transform;
}

.project-slide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 100%;
}

.project-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.project-carousel-controls button,
.project-dots button {
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  font: 800 13px/1 "Poppins", Arial, sans-serif;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.project-carousel-controls > button {
  min-width: 82px;
  min-height: 42px;
  color: var(--white);
  background: var(--navy);
}

.project-carousel-controls > button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.project-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.project-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(15, 23, 42, 0.2);
}

.project-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.project-card h3,
.project-card p {
  padding: 0 20px;
}

.project-card p {
  padding-bottom: 22px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 20px 12px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(0, 166, 81, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.project-preview {
  position: relative;
  height: 166px;
  margin-bottom: 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(15, 23, 42, 0.08) 49% 51%, transparent 52%),
    radial-gradient(circle at 18% 20%, rgba(247, 147, 26, 0.28), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(0, 166, 81, 0.22), transparent 26%),
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    #f8fafc;
  background-size: auto, auto, auto, 18px 18px, 18px 18px, auto;
}

.project-preview::before,
.project-preview::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.project-preview::before {
  inset: 24px 32px 56px;
  background: linear-gradient(90deg, var(--saffron), var(--green), var(--cyan));
  border: 3px solid rgba(15, 23, 42, 0.78);
  box-shadow:
    8px 8px 0 rgba(15, 23, 42, 0.08),
    inset 0 -30px 0 rgba(255, 255, 255, 0.72),
    inset 18px 0 0 rgba(255, 255, 255, 0.42);
  transform: rotate(-2deg);
}

.project-preview::after {
  left: 42px;
  right: 42px;
  bottom: 30px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  box-shadow:
    -8px -22px 0 rgba(247, 147, 26, 0.78),
    28px -22px 0 rgba(0, 166, 81, 0.74),
    68px -22px 0 rgba(14, 165, 233, 0.72),
    0 18px 0 rgba(15, 23, 42, 0.12),
    42px 18px 0 rgba(15, 23, 42, 0.1),
    84px 18px 0 rgba(15, 23, 42, 0.08);
  transform: rotate(1.5deg);
}

.erp-preview::before {
  background: linear-gradient(90deg, var(--green), #67e8f9, var(--saffron));
}

.healthcare-preview::before {
  background: linear-gradient(90deg, #0ea5e9, var(--green), #f8fafc);
}

.seo-preview::before {
  background: linear-gradient(90deg, var(--saffron), #ef4444, var(--green));
}

.app-preview::before,
.mobile-marketing-preview::before {
  background: linear-gradient(90deg, #0ea5e9, var(--green), var(--saffron));
}

.ecommerce-preview::before,
.retail-preview::before {
  background: linear-gradient(90deg, var(--saffron), #f97316, var(--green));
}

.brand-preview::before,
.professional-preview::before {
  background: linear-gradient(90deg, #111827, var(--saffron), #94a3b8);
}

.marketing-preview::before,
.ads-preview::before {
  background: linear-gradient(90deg, #ef4444, var(--saffron), #0ea5e9);
}

.social-case-preview::before,
.video-case-preview::before {
  background: linear-gradient(90deg, #8b5cf6, #0ea5e9, var(--green));
}

.automation-preview::before,
.saas-preview::before {
  background: linear-gradient(90deg, var(--green), #22d3ee, var(--saffron));
}

.consulting-preview::before,
.finance-preview::before {
  background: linear-gradient(90deg, var(--navy), #64748b, var(--saffron));
}

.realestate-preview::before,
.hospitality-preview::before {
  background: linear-gradient(90deg, var(--saffron), #facc15, var(--green));
}

.edtech-preview::before,
.government-preview::before {
  background: linear-gradient(90deg, #2563eb, #38bdf8, var(--green));
}

.automobile-preview::before,
.fitness-preview::before {
  background: linear-gradient(90deg, #ef4444, var(--navy), var(--saffron));
}

.testimonials {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), rgba(14, 165, 233, 0.08)),
    var(--white);
}

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

.testimonial-carousel .card-slide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.testimonial-card:hover {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.88)),
    var(--navy);
  border-color: rgba(247, 147, 26, 0.38);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  color: var(--saffron);
}

.rating i {
  display: block;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 4px 8px rgba(247, 147, 26, 0.26));
}

.testimonial-card p {
  color: #344054;
  font-size: 17px;
}

.testimonial-card strong {
  display: block;
  color: var(--navy);
  font: 800 16px/1.25 "Poppins", Arial, sans-serif;
}

.testimonial-card small {
  color: var(--muted);
  font-weight: 700;
}

.testimonial-card p,
.testimonial-card strong,
.testimonial-card small {
  transition: color 180ms ease;
}

.testimonial-card:hover p,
.testimonial-card:hover strong {
  color: var(--white);
}

.testimonial-card:hover small {
  color: rgba(255, 255, 255, 0.72);
}

.enquiry {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.96), rgba(0, 166, 81, 0.88)),
    var(--saffron);
}

.enquiry h2,
.enquiry .eyebrow {
  color: var(--white);
}

.enquiry p {
  color: rgba(255, 255, 255, 0.86);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.76);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(16px);
}

.google-form-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  height: clamp(410px, 50vh, 460px);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.18)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 147, 26, 0.68), rgba(0, 166, 81, 0.64)) border-box;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.24),
    0 0 36px rgba(247, 147, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--green), var(--white), var(--saffron));
  background-size: 220% 100%;
  animation: formGlowRun 4.2s linear infinite;
  z-index: 2;
}

.google-form-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -18%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(247, 147, 26, 0.2) 36%, transparent 68%);
  opacity: 0.7;
  pointer-events: none;
  animation: formSoftPulse 4.8s ease-in-out infinite;
}

.google-form-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 34px 82px rgba(15, 23, 42, 0.3),
    0 0 48px rgba(0, 166, 81, 0.24),
    0 0 34px rgba(247, 147, 26, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.google-form-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 14px 16px 13px;
  border-radius: 6px 6px 0 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.82)),
    var(--navy);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

.google-form-header span {
  color: var(--saffron);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.google-form-header strong {
  font: 800 17px/1.15 "Poppins", Arial, sans-serif;
}

.google-form-header small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.google-form-card iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 6px;
  background: var(--white);
}

.workforce-form-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), rgba(0, 166, 81, 0.08)),
    #f8fafc;
}

.workforce-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: 34px;
  align-items: start;
}

.workforce-form-aside {
  position: sticky;
  top: 118px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.9)),
    var(--navy);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.workforce-form-aside h2,
.workforce-form-aside .eyebrow {
  color: var(--white);
}

.workforce-form-aside p {
  color: rgba(255, 255, 255, 0.74);
}

.workforce-form-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.workforce-form-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.workforce-form-card {
  height: clamp(680px, calc(100vh - 150px), 920px);
  min-height: 680px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.1)) padding-box,
    linear-gradient(135deg, rgba(247, 147, 26, 0.92), rgba(255, 255, 255, 0.78), rgba(0, 166, 81, 0.82)) border-box;
}

@keyframes formGlowRun {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 220% 0;
  }
}

@keyframes formSoftPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(38px, 18px, 0) scale(1.08);
  }
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.lead-form select option {
  color: var(--navy);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(247, 147, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.18);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-box {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.file-upload-box:hover {
  border-color: rgba(247, 147, 26, 0.9);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.file-upload-box svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--saffron);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.file-upload-box strong {
  display: block;
  color: var(--white);
  font: 800 15px/1.2 "Poppins", Arial, sans-serif;
}

.file-upload-box small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.file-status {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.file-status.error {
  color: #fecaca;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 20px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  gap: 52px;
  align-items: center;
}

.contact-card {
  padding: 26px;
}

.legal-nav {
  justify-self: center;
}

.legal-hero {
  padding: 156px 0 82px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.18), transparent 36%),
    linear-gradient(225deg, rgba(0, 166, 81, 0.16), transparent 38%),
    var(--navy);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
  font: 700 13px/1.25 "Poppins", Arial, sans-serif;
  text-transform: uppercase;
}

.page-flow a {
  color: var(--saffron);
}

.page-flow a:hover {
  color: var(--white);
}

.page-flow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-flow span::before {
  content: "/";
  color: rgba(255, 255, 255, 0.38);
}

.legal-content {
  background: var(--soft);
}

.legal-card {
  max-width: 920px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 26px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
}

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

.sitemap-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.06), rgba(0, 166, 81, 0.06)),
    var(--white);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.sitemap-card h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font: 800 21px/1.2 "Poppins", Arial, sans-serif;
}

.sitemap-card a {
  position: relative;
  display: block;
  padding: 8px 0 8px 20px;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.sitemap-card a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.sitemap-card a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 30px;
}

.career-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.career-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font: 800 17px/1.25 "Poppins", Arial, sans-serif;
}

.career-grid span {
  color: var(--muted);
  font-size: 14px;
}

.payment-hero {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.2), transparent 34%),
    linear-gradient(225deg, rgba(0, 166, 81, 0.18), transparent 38%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.payment-section {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.06), rgba(0, 166, 81, 0.06)),
    var(--soft);
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.payment-form,
.payment-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.payment-form-head {
  grid-column: 1 / -1;
}

.payment-form-head h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.payment-form-head p:not(.eyebrow) {
  color: var(--muted);
}

.payment-form label,
.payment-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.payment-form input,
.payment-form select,
.payment-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  padding: 0 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.phone-input {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-input select,
.phone-input input {
  min-width: 0;
}

.payment-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.payment-label {
  display: block;
}

.required-star {
  color: #dc2626;
  font-weight: 900;
}

.service-dropdown {
  position: relative;
}

.service-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), rgba(0, 166, 81, 0.07)),
    var(--white);
  padding: 0 14px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-dropdown-toggle span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-dropdown-toggle b {
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  padding: 7px 11px;
  font-size: 11px;
  text-transform: uppercase;
}

.service-dropdown-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 10px;
}

.service-dropdown-panel[hidden],
.payment-service-breakdown[hidden] {
  display: none;
}

.service-dropdown-panel label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.service-dropdown-panel label:hover,
.service-dropdown-panel label:has(input:checked) {
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.12), rgba(0, 166, 81, 0.12));
}

.service-dropdown-panel input {
  min-height: auto;
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.service-dropdown-panel span {
  min-width: 0;
}

.service-dropdown-panel strong {
  color: var(--saffron);
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
}

.payment-amount-control {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.payment-amount-control:focus-within {
  border-color: rgba(247, 147, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.16);
}

.payment-currency-prefix {
  display: grid;
  place-items: center;
  align-self: stretch;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  font: 900 18px/1 "Montserrat", Arial, sans-serif;
}

.payment-amount-control input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
}

.payment-amount-control input:focus {
  box-shadow: none;
}

.selected-services-scroll {
  display: grid;
  gap: 8px;
  max-height: 138px;
  overflow-y: auto;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.03);
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.selected-service-row,
.payment-service-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 7px;
  background: var(--white);
  padding: 9px 10px;
}

.selected-service-row span,
.payment-service-breakdown span {
  color: var(--navy);
}

.selected-service-row strong,
.payment-service-breakdown strong {
  color: var(--green);
  white-space: nowrap;
}

.payment-service-breakdown {
  display: grid;
  gap: 8px;
  max-height: 210px;
  overflow-y: auto;
  margin: 14px 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.03);
  padding: 10px;
}

.payment-form input:focus,
.payment-form select:focus,
.payment-form textarea:focus {
  border-color: rgba(247, 147, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.16);
}

.payment-form select:disabled {
  color: #98a2b3;
  cursor: not-allowed;
  background: #f2f4f7;
}

.payment-form .full {
  grid-column: 1 / -1;
}

.payment-file-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-file-box {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  padding: 15px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 8px;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), rgba(0, 166, 81, 0.08)),
    var(--white);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.payment-file-box:hover {
  border-color: rgba(247, 147, 26, 0.85);
  transform: translateY(-1px);
}

.payment-file-box svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--saffron);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-file-box strong {
  display: block;
  color: var(--navy);
  font: 800 15px/1.2 "Poppins", Arial, sans-serif;
}

.payment-file-box small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payment-file-status {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payment-amount-note {
  color: #0b8f3a;
  font-size: 12px;
  font-weight: 800;
}

.payment-file-status.error {
  color: #b42318;
}

.payment-summary {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.summary-card,
.gateway-card,
.gateway-code {
  border-radius: 8px;
}

.summary-card {
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.22), rgba(0, 166, 81, 0.18)),
    var(--navy);
}

.summary-card h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 30px;
}

.summary-card p {
  color: rgba(255, 255, 255, 0.72);
}

.invoice-breakdown {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.invoice-breakdown div,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.invoice-breakdown span,
.summary-total span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.invoice-breakdown strong {
  color: var(--white);
  font: 800 18px/1 "Montserrat", Arial, sans-serif;
}

.summary-total {
  margin-bottom: 16px;
  align-items: flex-start;
}

.summary-total strong {
  color: var(--saffron);
  text-align: right;
  font: 800 40px/1 "Montserrat", Arial, sans-serif;
}

.gateway-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.gateway-card h3 {
  margin-bottom: 16px;
}

.gateway-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gateway-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.gateway-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.gateway-code {
  padding: 18px;
  color: var(--white);
  background: #111827;
}

.gateway-code span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.gateway-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gateway-provider {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gateway-provider:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 147, 26, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.gateway-provider strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--white);
  font: 900 17px/1 "Poppins", Arial, sans-serif;
}

.gateway-provider strong::before {
  content: none;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 7px;
  background: var(--saffron);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.gateway-provider img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.gateway-provider small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.gateway-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gateway-modes b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.gateway-modes b:nth-child(-n + 3) {
  border-color: rgba(247, 147, 26, 0.32);
  color: var(--white);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.34), rgba(0, 166, 81, 0.24));
  box-shadow: 0 8px 18px rgba(247, 147, 26, 0.12);
}

.gateway-provider.razorpay strong::before {
  background:
    linear-gradient(135deg, transparent 0 34%, #0b72e7 35% 48%, transparent 49%),
    #0b1f46;
}

.gateway-provider.cashfree strong::before {
  background:
    linear-gradient(135deg, #00c783 0 50%, #1f7aff 51%),
    #ffffff;
}

.gateway-provider.paypal strong::before {
  background:
    linear-gradient(135deg, #003087 0 50%, #009cde 51%),
    #ffffff;
}

.gateway-provider.phonepe strong::before {
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 18%, transparent 20%),
    #5f259f;
}

.gateway-provider.paytm {
  border-color: rgba(0, 186, 242, 0.22);
}

.invoice-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.06), rgba(0, 166, 81, 0.06)),
    #eef2f7;
}

.invoice-shell {
  width: min(100% - 32px, 1060px);
  margin: 0 auto;
  padding: 32px 0;
}

.invoice-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.invoice-checkout-status {
  min-height: 22px;
  margin: -8px 0 16px;
  color: #475467;
  text-align: right;
  font-size: 13px;
  font-weight: 800;
}

.invoice-document {
  padding: 42px;
  border-radius: 8px;
  color: #1f2937;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.invoice-header,
.invoice-parties,
.invoice-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.invoice-header {
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--navy);
}

.invoice-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.invoice-brand img {
  border-radius: 8px;
  background: rgba(247, 147, 26, 0.1);
}

.invoice-brand strong {
  display: block;
  color: var(--navy);
  font: 900 22px/1.2 "Montserrat", Arial, sans-serif;
}

.invoice-brand span,
.invoice-meta span,
.invoice-table small,
.invoice-project-note p,
.invoice-terms p {
  color: #667085;
}

.invoice-meta {
  justify-self: end;
  min-width: 260px;
  text-align: right;
}

.invoice-meta h1 {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 42px;
}

.invoice-meta p,
.invoice-totals p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 7px 0;
}

.invoice-parties {
  margin: 28px 0;
}

.invoice-parties div,
.invoice-attachments {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.invoice-parties h2,
.invoice-attachments h2,
.invoice-project-note h2,
.invoice-bank-details h2,
.invoice-terms h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font: 900 16px/1.2 "Poppins", Arial, sans-serif;
}

.invoice-parties p,
.invoice-attachments p {
  margin: 7px 0;
  color: #475467;
}

.invoice-email-note {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.invoice-table-wrap {
  overflow-x: auto;
  margin-bottom: 26px;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-table th {
  padding: 14px;
  color: var(--white);
  background: var(--navy);
  text-align: left;
  font-size: 13px;
}

.invoice-table td {
  padding: 16px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.invoice-table td strong,
.invoice-table td span,
.invoice-table td small {
  display: block;
}

.invoice-table td strong {
  color: var(--navy);
  margin-bottom: 6px;
}

[data-invoice-service] {
  white-space: pre-line;
}

[data-invoice-hsn],
[data-invoice-base] {
  white-space: pre-line;
}

.amount-cell {
  text-align: right;
}

.invoice-totals {
  justify-self: end;
  width: min(100%, 340px);
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(0, 166, 81, 0.16)),
    var(--navy);
}

.invoice-grand-total {
  padding-top: 14px;
  margin-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.invoice-grand-total strong {
  color: var(--saffron);
}

.invoice-payment-highlight,
.invoice-project-note,
.invoice-bank-details {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.invoice-payment-highlight {
  border-color: rgba(247, 147, 26, 0.28);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.11), rgba(0, 166, 81, 0.1)),
    #ffffff;
}

.invoice-payment-highlight[hidden] {
  display: none;
}

.invoice-payment-highlight h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font: 900 17px/1.2 "Poppins", Arial, sans-serif;
}

.invoice-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.invoice-highlight-grid p {
  display: grid;
  gap: 6px;
  margin: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  padding: 14px;
}

.invoice-highlight-grid p[hidden] {
  display: none;
}

.invoice-highlight-grid span {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.invoice-highlight-grid strong {
  color: var(--navy);
  font-size: 16px;
}

.invoice-project-note p {
  margin: 0;
  font-weight: 700;
}

.invoice-bank-details[hidden] {
  display: none;
}

.invoice-bank-details div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.invoice-bank-details p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #475467;
}

.invoice-bank-details span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-bank-details strong {
  color: var(--navy);
  font-weight: 900;
}

.invoice-terms {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.contact-card div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(17, 24, 39, 0.9)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px);
  font-weight: 900;
}

.map-embed {
  display: block;
  height: 220px;
  background: var(--soft);
}

.site-footer {
  padding: 48px 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 28px;
  align-items: center;
}

.footer-grid > p {
  justify-self: end;
  margin: 0;
}

.footer-services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-services div {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), rgba(0, 166, 81, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.footer-services h3 {
  margin-bottom: 16px;
  color: var(--white);
  font: 800 16px/1.25 "Poppins", Arial, sans-serif;
}

.footer-services a {
  position: relative;
  display: block;
  padding: 7px 0 7px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-services a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
}

.footer-services a:hover {
  color: var(--saffron);
  transform: translateX(3px);
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--saffron);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.16);
  clip-path: inset(0 -100vmax);
}

.footer-bottom p {
  justify-self: auto;
  margin: 0;
}

.visitor-counter {
  position: relative;
  display: grid;
  min-width: 190px;
  padding: 10px 16px 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.18), rgba(0, 166, 81, 0.16)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), 0 0 28px rgba(0, 166, 81, 0.12);
}

.visitor-counter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-16deg);
  animation: visitorSweep 4.5s ease-in-out infinite;
}

.visitor-counter .counter-kicker {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.visitor-counter strong {
  color: var(--saffron);
  font: 900 22px/1.1 "Montserrat", "Poppins", Arial, sans-serif;
  text-shadow: 0 0 18px rgba(247, 147, 26, 0.24);
}

.visitor-counter small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
}

@keyframes visitorSweep {
  0%,
  42% {
    transform: translateX(0) skewX(-16deg);
  }
  72%,
  100% {
    transform: translateX(360%) skewX(-16deg);
  }
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  transform: translateX(-50%);
  display: none;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron), var(--green));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.26);
  font: 800 13px/1 "Poppins", Arial, sans-serif;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 46;
  display: grid;
  gap: 9px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.floating-actions a:first-child {
  background: var(--green);
  animation: waGlowFlicker 3.6s ease-in-out infinite;
}

.floating-actions a:nth-child(2) {
  background: var(--saffron);
}

@keyframes waGlowFlicker {
  0%,
  100% {
    background: #00a651;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2), 0 0 0 rgba(0, 166, 81, 0);
    filter: saturate(1);
  }
  28% {
    background: #0b8f3a;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22), 0 0 18px rgba(0, 166, 81, 0.34);
    filter: saturate(1.08);
  }
  32% {
    background: #18c86a;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24), 0 0 30px rgba(0, 166, 81, 0.48);
    filter: saturate(1.2);
  }
  36%,
  62% {
    background: #00a651;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2), 0 0 12px rgba(0, 166, 81, 0.2);
    filter: saturate(1.02);
  }
  66% {
    background: #22d978;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.24), 0 0 26px rgba(0, 166, 81, 0.42);
    filter: saturate(1.18);
  }
  70% {
    background: #0b8f3a;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22), 0 0 14px rgba(0, 166, 81, 0.26);
    filter: saturate(1.08);
  }
}

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

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

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

  .hero-grid,
  .split-layout,
  .enquiry-grid,
  .contact-grid,
  .payment-grid,
  .workforce-form-layout,
  .workforce-intro,
  .workforce-split,
  .workforce-cta {
    grid-template-columns: 1fr;
  }

  .payment-summary {
    position: static;
  }

  .workforce-form-aside {
    position: static;
  }

  .dashboard-scene {
    min-height: auto;
  }

  .service-grid,
  .workforce-grid,
  .package-grid,
  .industry-grid,
  .card-slide,
  .project-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 10px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .main-nav.open {
    position: fixed;
    inset: 126px 20px auto;
    display: grid;
    justify-items: stretch;
    max-height: calc(100vh - 146px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.3);
  }

  .main-nav.open a {
    min-height: 46px;
    height: auto;
    justify-content: center;
    padding: 12px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

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

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

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 124px 0 72px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 28px);
    padding: 10px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-cta {
    min-height: 40px;
    font-size: 11px;
  }

  .main-nav.open {
    inset: 120px 14px auto;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .center-action .btn,
  .workforce-cta .btn {
    width: 100%;
  }

  .dashboard-device {
    padding: 9px;
  }

  .dashboard-layout {
    grid-template-columns: 42px 1fr;
    min-height: 410px;
  }

  .dash-main {
    padding: 14px;
  }

  .metric-grid,
  .pipeline,
  .systems-grid,
  .service-grid,
  .workforce-grid,
  .workforce-split,
  .workforce-cta,
  .workforce-form-layout,
  .package-grid,
  .industry-grid,
  .card-slide,
  .project-slide,
  .payment-form,
  .lead-form,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .payment-form .full {
    grid-column: auto;
  }

  .phone-input {
    grid-template-columns: 1fr;
  }

  .service-dropdown-panel {
    max-height: min(360px, 58vh);
  }

  .service-dropdown-panel label {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-dropdown-panel strong {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }

  .selected-service-row,
  .payment-service-breakdown div,
  .invoice-breakdown div,
  .summary-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .selected-service-row strong,
  .payment-service-breakdown strong {
    white-space: normal;
  }

  .gateway-provider-grid {
    grid-template-columns: 1fr;
  }

  .workforce-form-card {
    height: min(680px, 74vh);
    min-height: 560px;
  }

  .invoice-header,
  .invoice-parties,
  .invoice-summary {
    grid-template-columns: 1fr;
  }

  .invoice-bank-details div {
    grid-template-columns: 1fr;
  }

  .invoice-highlight-grid {
    grid-template-columns: 1fr;
  }

  .invoice-toolbar {
    display: grid;
  }

  .invoice-document {
    padding: 24px;
  }

  .invoice-table {
    min-width: 720px;
  }

  .invoice-meta {
    justify-self: stretch;
    text-align: left;
  }

  .testimonial-carousel {
    gap: 16px;
  }

  .testimonial-carousel .card-window {
    overflow: hidden;
  }

  .testimonial-carousel .card-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.62;
  }

  .testimonial-card strong {
    margin-top: auto;
    font-size: 15px;
  }

  .testimonial-card small {
    font-size: 12px;
  }

  .rating {
    gap: 4px;
    margin-bottom: 14px;
  }

  .rating i {
    width: 16px;
    height: 16px;
  }

  .testimonial-carousel .card-carousel-controls {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
  }

  .testimonial-carousel .card-carousel-controls > button {
    min-width: 44px;
    min-height: 40px;
    padding: 0;
    font-size: 0;
  }

  .testimonial-carousel .card-carousel-controls > button[data-card-prev]::before {
    content: "<";
    font-size: 18px;
  }

  .testimonial-carousel .card-carousel-controls > button[data-card-next]::before {
    content: ">";
    font-size: 18px;
  }

  .testimonial-carousel .card-dots {
    max-height: 34px;
    overflow: hidden;
    gap: 6px;
  }

  .testimonial-carousel .card-dots button {
    width: 8px;
    height: 8px;
  }

  .testimonial-carousel .card-dots button.is-active {
    width: 22px;
  }

  .metric-grid article {
    min-height: auto;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    animation: none;
  }

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

  .google-form-card {
    height: min(560px, 72vh);
  }

  .google-form-header {
    padding: 12px;
  }

  .google-form-header strong {
    font-size: 15px;
  }

  .growth-graph {
    height: 190px;
    padding: 16px;
  }

  .contact-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-card {
    padding: 24px;
  }

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

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

  .footer-grid p {
    justify-self: start;
  }

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

  .visitor-counter {
    width: 100%;
    min-width: 0;
  }

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

  .footer-services div {
    min-height: 0;
  }

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

  .sitemap-card {
    min-height: 0;
  }

  .floating-actions {
    right: 12px;
    bottom: 76px;
  }

  .floating-actions a {
    width: 48px;
  }

  .sticky-cta {
    display: block;
    width: calc(100% - 96px);
  }

  .sticky-cta a {
    width: 100%;
    text-align: center;
  }
}

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

  .section-shell {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    width: calc(100% - 20px);
    gap: 8px 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
  }

  .main-nav.open {
    inset: 116px 10px auto;
    max-height: calc(100vh - 132px);
    padding: 10px;
  }

  .main-nav.open a {
    min-height: 42px;
    padding: 10px;
    font-size: 12px;
  }

  .hero,
  .legal-hero {
    padding-top: 138px;
  }

  h1,
  .legal-hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .payment-form,
  .payment-summary,
  .legal-card,
  .sitemap-card,
  .workforce-card,
  .workforce-panel,
  .summary-card,
  .gateway-card,
  .gateway-code {
    padding: 18px;
  }

  .payment-amount-control {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .payment-currency-prefix {
    font-size: 16px;
  }

  .summary-total strong {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-links a {
    justify-content: center;
    text-align: center;
  }

  .floating-actions {
    bottom: 70px;
  }
}

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

@media print {
  body.invoice-page {
    background: #fff;
  }

  .invoice-toolbar {
    display: none !important;
  }

  .invoice-shell {
    width: 100%;
    padding: 0;
  }

  .invoice-document {
    padding: 18mm;
    border-radius: 0;
    box-shadow: none;
  }

  .invoice-table-wrap {
    overflow: visible;
  }
}
