:root {
  --navy: #1A202C;
  --ink: #0F172A;
  --blue: #0066FF;
  --blue-dark: #0052cc;
  --cyan: #12B5CB;
  --white: #FFFFFF;
  --soft: #F8F9FA;
  --line: #E6EAF0;
  --muted: #667085;
  --green: #16A34A;
  --shadow: 0 18px 45px rgba(26, 32, 44, 0.1);
  --shadow-lg: 0 28px 70px rgba(26, 32, 44, 0.14);
}

* {
  letter-spacing: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 42%, #FFFFFF 100%);
  text-rendering: optimizeLegibility;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

a {
  text-decoration: none;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 640ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.18);
}

.btn:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.btn i,
.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue-dark);
  --bs-btn-hover-border-color: var(--blue-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--blue);
  --bs-btn-border-color: rgba(0, 102, 255, 0.3);
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
}

.site-navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 234, 240, 0.8);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-navbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--blue));
  background-size: 260% 100%;
  animation: gradientDrift 12s ease infinite;
}

.site-navbar.is-scrolled {
  box-shadow: 0 12px 30px rgba(26, 32, 44, 0.08);
}

.navbar-brand,
.nav-link {
  color: var(--navy);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.site-logo {
  display: block;
  width: 190px;
  height: auto;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: rgba(26, 32, 44, 0.74);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.2rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue);
  transition: transform 220ms ease;
}

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

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

.services-dropdown {
  width: min(92vw, 420px);
  max-height: 74vh;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.services-dropdown .dropdown-item {
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  white-space: normal;
}

.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
  color: var(--blue);
  background: #EAF1FF;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  margin-right: 8px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-section,
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 150px 0 90px;
  background:
    linear-gradient(115deg, rgba(0, 102, 255, 0.12) 0%, rgba(18, 181, 203, 0.07) 28%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 52%, #F8F9FA 100%);
  background-size: 150% 150%, 100% 100%;
  animation: gradientDrift 18s ease infinite;
  overflow: hidden;
}

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(230, 234, 240, 0.82);
  background:
    linear-gradient(122deg, rgba(0, 102, 255, 0.14) 0%, rgba(18, 181, 203, 0.09) 24%, rgba(255, 255, 255, 0) 54%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 58%, #F8F9FA 100%);
  background-size: 155% 155%, 100% 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(26, 32, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 32, 44, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -32% 18%;
  z-index: -1;
  height: 56%;
  transform: rotate(-6deg);
  background:
    linear-gradient(90deg, rgba(0, 102, 255, 0), rgba(0, 102, 255, 0.12), rgba(22, 163, 74, 0.1), rgba(0, 102, 255, 0));
  filter: blur(1px);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  max-width: 850px;
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  line-height: 1.04;
  font-weight: 900;
}

.hero-section h1 strong,
.page-hero h1 strong,
.section-title strong,
.final-cta strong {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientDrift 10s ease infinite;
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.04;
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.22rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.28rem;
}

.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.hero-cta-note i {
  color: var(--green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust i {
  color: var(--blue);
}

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

.hero-proof-grid div {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(230, 234, 240, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(26, 32, 44, 0.07);
}

.hero-proof-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), transparent 54%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-proof-grid div:hover::before {
  opacity: 1;
}

.hero-proof-grid strong,
.hero-proof-grid span {
  position: relative;
  display: block;
}

.hero-proof-grid strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.hero-proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  transform: perspective(1100px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.22), rgba(22, 163, 74, 0.14));
}

.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 72%) var(--spot-y, 18%), rgba(0, 102, 255, 0.14), transparent 30%);
  opacity: 0.8;
}

.hero-dashboard:hover {
  box-shadow: 0 34px 84px rgba(0, 102, 255, 0.16), 0 20px 48px rgba(26, 32, 44, 0.12);
}

.dashboard-top,
.workflow-panel,
.hero-result-strip,
.integration-flow,
.conversion-snapshot {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-top span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-top h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.2;
  font-weight: 900;
}

.dashboard-top strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.pipeline-card,
.metric-card,
.workflow-panel,
.hero-result-strip,
.integration-flow,
.cta-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pipeline-card {
  padding: 22px;
  margin-bottom: 18px;
}

.progress {
  height: 9px;
  background: #EAF1FF;
}

.progress-bar {
  background: var(--blue);
}

.metric-card {
  padding: 20px;
}

.metric-card span,
.pipeline-card span {
  color: var(--muted);
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.8rem;
}

.workflow-panel {
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(26, 32, 44, 0.08);
}

.workflow-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms ease;
}

.workflow-step:hover {
  transform: translateX(4px);
  background: #F5F8FF;
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--blue);
  background: #EAF1FF;
  font-size: 1.1rem;
}

.workflow-step span,
.workflow-step strong {
  display: block;
}

.workflow-step span {
  color: var(--navy);
  font-weight: 900;
}

.workflow-step strong {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.workflow-step em {
  color: rgba(26, 32, 44, 0.28);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.hero-result-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  background: var(--line);
  box-shadow: 0 14px 34px rgba(26, 32, 44, 0.08);
}

.hero-result-strip div {
  padding: 16px;
  background: var(--white);
}

.hero-result-strip span,
.hero-result-strip strong {
  display: block;
}

.hero-result-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-result-strip strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.integration-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(26, 32, 44, 0.08);
}

.integration-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #D8E5FF;
  border-radius: 999px;
  color: var(--blue);
  background: #F5F8FF;
  font-size: 0.84rem;
  font-weight: 900;
}

.conversion-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.conversion-snapshot div {
  padding: 14px;
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #FFFFFF, #F6FAFF);
}

.conversion-snapshot span,
.conversion-snapshot strong,
.conversion-snapshot small {
  display: block;
}

.conversion-snapshot span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.conversion-snapshot strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 900;
}

.conversion-snapshot small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.light-section,
.services-preview,
.faq-section {
  background: var(--soft);
}

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

.section-heading h2,
.section-title,
.home-services-band h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p,
.lead {
  color: var(--muted);
}

.pain-card,
.service-card,
.integration-card,
.why-card,
.process-card,
.blog-card {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(26, 32, 44, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.pain-card::before,
.service-card::before,
.integration-card::before,
.why-card::before,
.process-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(0, 102, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(18, 181, 203, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.pain-card > *,
.service-card > *,
.integration-card > *,
.why-card > *,
.process-card > *,
.blog-card > * {
  position: relative;
}

.pain-card:hover,
.service-card:hover,
.integration-card:hover,
.why-card:hover,
.process-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, 0.26);
  box-shadow: var(--shadow);
}

.pain-card:hover::before,
.service-card:hover::before,
.integration-card:hover::before,
.why-card:hover::before,
.process-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

.pain-card i,
.service-card i,
.integration-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--blue);
  background: #EAF1FF;
  font-size: 1.35rem;
}

.pain-card i {
  color: #B42318;
  background: #FEF3F2;
}

.pain-card h3,
.service-card h3,
.service-card h2,
.integration-card h3,
.why-card h3,
.process-card h3,
.blog-card h3,
.blog-card h2 {
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 900;
}

.service-card p,
.integration-card p,
.why-card p,
.process-card p,
.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card::after,
.blog-card::after {
  content: "\F138";
  position: absolute;
  right: 22px;
  bottom: 20px;
  transform: translateX(-4px);
  color: var(--blue);
  font-family: "bootstrap-icons";
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover::after,
.blog-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div,
.stack-list div,
.check-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(26, 32, 44, 0.05);
}

.feature-list i,
.stack-list i,
.check-pill i {
  color: var(--green);
}

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

.integration-section .section-title,
.integration-section .lead,
.integration-section p {
  color: var(--white);
}

.integration-section p {
  opacity: 0.82;
}

.integration-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.integration-card p {
  color: rgba(255, 255, 255, 0.74);
}

.home-services-band {
  padding: 52px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.3), transparent 38%),
    linear-gradient(135deg, var(--ink), #1D2D44 58%, #123A3F);
  background-size: 160% 160%, 100% 100%;
  box-shadow: var(--shadow-lg);
  animation: gradientDrift 18s ease infinite;
}

.home-services-band p {
  color: rgba(255, 255, 255, 0.78);
}

.check-pill {
  color: var(--navy);
}

.seo-intent-section {
  background: var(--soft);
}

.seo-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-box h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 900;
}

.seo-box ul {
  display: grid;
  gap: 12px;
  padding-left: 1.1rem;
  margin: 0;
}

.seo-box li {
  color: #3B4351;
  font-weight: 700;
}

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

.process-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 26px rgba(26, 32, 44, 0.04);
}

.accordion-button {
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #EAF1FF;
  box-shadow: none;
}

.blog-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.blog-card h2,
.blog-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(18, 181, 203, 0.26), transparent 38%),
    linear-gradient(135deg, var(--blue), var(--blue-dark) 58%, #123E8F);
  background-size: 160% 160%, 100% 100%;
  animation: gradientDrift 16s ease infinite;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65), transparent);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta p {
  max-width: 720px;
  margin: 16px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.cta-panel,
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.cta-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), transparent 44%);
  opacity: 0.85;
  pointer-events: none;
}

.cta-panel > *,
.contact-form > * {
  position: relative;
}

.contact-form .form-control {
  border-color: #DCE6F3;
  border-radius: 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form .form-control:focus {
  border-color: rgba(0, 102, 255, 0.58);
  box-shadow: 0 0 0 0.22rem rgba(0, 102, 255, 0.1);
  transform: translateY(-1px);
}

.project-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.project-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #D8E5FF;
  border-radius: 999px;
  color: var(--blue);
  background: #F5F8FF;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.project-chip:hover,
.project-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 255, 0.36);
  background: #EAF1FF;
}

.contact-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.contact-stat-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #F8FAFF;
}

.contact-stat-grid span,
.contact-stat-grid strong {
  display: block;
}

.contact-stat-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-stat-grid strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 900;
}

.services-filter {
  position: relative;
  max-width: 720px;
  margin: -24px auto 34px;
}

.services-filter i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  z-index: 2;
}

.services-filter .form-control {
  min-height: 58px;
  padding-left: 48px;
  border: 1px solid #D8E5FF;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(26, 32, 44, 0.08);
}

.service-card[hidden] {
  display: none !important;
}

.content-wrap {
  max-width: 840px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.content-wrap p {
  margin-bottom: 1.4rem;
  color: #3B4351;
}

.blog-hero {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero-inner {
  max-width: 980px;
}

.blog-hero h1 {
  max-width: 920px;
  font-size: clamp(1.35rem, 5vw, 2.8rem);
  line-height: 1.03;
  font-weight: 900;
}

.blog-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.24rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(26, 32, 44, 0.04);
}

.blog-meta i {
  color: var(--blue);
}

.blog-article-section {
  background: var(--white);
}

.article-card {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-intro {
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(0, 102, 255, 0.14);
  border-radius: 12px;
  background: #F4F8FF;
}

.article-intro p {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
}

.article-content {
  max-width: none;
  font-size: 1.12rem;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.18;
  font-weight: 900;
}

.article-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.article-content h3 {
  font-size: 1.45rem;
}

.article-content p,
.article-content li {
  color: #3B4351;
}

.article-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 1.6rem;
  padding-left: 1.2rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  color: var(--navy);
  background: var(--soft);
  font-size: 1.2rem;
  font-weight: 800;
}

.blog-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(26, 32, 44, 0.07);
}

.sidebar-card h2,
.sidebar-card h3 {
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 900;
}

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

.hire-card {
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

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

.hire-card p {
  color: rgba(255, 255, 255, 0.74);
}

.sidebar-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.sidebar-links a::after {
  content: "\F138";
  color: var(--blue);
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
}

.sidebar-links a:hover {
  color: var(--blue);
  border-color: rgba(0, 102, 255, 0.24);
  background: #EAF1FF;
}

.footer-section {
  padding: 70px 0 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.16), transparent 42%),
    var(--navy);
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
}

.footer-title {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 900;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
}

.fade-up,
.service-card,
.blog-card,
.why-card,
.process-card,
.integration-card {
  opacity: 0;
  transform: translateY(18px);
}

.fade-up.is-visible,
.service-card.is-visible,
.blog-card.is-visible,
.why-card.is-visible,
.process-card.is-visible,
.integration-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.conversion-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(calc(100% - 28px), 880px);
  padding: 12px;
  border: 1px solid rgba(216, 229, 255, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
  transform: translate(-50%, calc(100% + 28px));
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.conversion-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.conversion-bar strong,
.conversion-bar span {
  display: block;
}

.conversion-bar strong {
  color: var(--navy);
  line-height: 1.18;
  font-weight: 900;
}

.conversion-bar span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.conversion-bar-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  margin-left: auto;
}

@keyframes gradientDrift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .home-services-band {
    padding: 34px;
  }

  .blog-sidebar {
    position: static;
  }

  .conversion-snapshot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-section,
  .page-hero,
  .blog-hero {
    padding: 116px 0 70px;
  }

  .hero-section h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-dashboard {
    padding: 20px;
  }

  .dashboard-top,
  .hero-result-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    display: grid;
  }

  .dashboard-top strong {
    justify-self: start;
  }

  .workflow-step {
    grid-template-columns: 38px 1fr;
  }

  .workflow-step em {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

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

  .home-services-band {
    padding: 26px;
    border-radius: 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-logo {
    width: 170px;
  }

  .contact-stat-grid {
    grid-template-columns: 1fr;
  }

  .conversion-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-bar-actions {
    width: 100%;
    margin-left: 0;
  }

  .conversion-bar-actions .btn {
    flex: 1;
  }
}

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