:root {
  --primary: #0d6efd;
  --dark: #0f172a;
  --muted: #64748b;
  --light-bg: #f8fafc;
  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --soft-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gudea', sans-serif;
  color: var(--dark);
  background: #ffffff;
}

.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
}

.logo_style {
  width: 91px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.page-hero-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-badge,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-title,
.page-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.2;
  font-weight: 800;
  margin-top: 22px;
  margin-bottom: 18px;
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.highlight-text {
  color: var(--primary);
}

.hero-description,
.page-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
}

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

.btn-custom-primary {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.22);
}

.btn-custom-light {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #ffffff;
  color: var(--dark);
}

.hero-card,
.service-sidebar,
.contact-card,
.content-card,
.service-card,
.feature-card,
.metric-box,
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
}

.hero-card,
.service-sidebar,
.contact-card,
.content-card {
  padding: 28px;
}

.metric-box {
  padding: 18px;
  height: 100%;
  background: var(--light-bg);
}

.metric-number {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.metric-label {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.section-padding {
  padding: 90px 0;
}

.section-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-title,
.page-title,
.section-title:not(.text-white) {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 52%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.8;
}

.service-card,
.feature-card,
.testimonial-card,
.content-card,
.service-sidebar,
.contact-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.content-card:hover,
.service-sidebar:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.service-card .card-body,
.feature-card .card-body,
.testimonial-card .card-body {
  padding: 28px;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.bg-soft {
  background: var(--light-bg);
}

.cta-box {
  border-radius: 32px;
  padding: 48px;
  background: linear-gradient(135deg, #0d6efd 0%, #0b57d0 100%);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(13, 110, 253, 0.28);
}

.cta-box p,
.footer-text {
  line-height: 1.8;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

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

.service-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--dark);
  font-weight: 600;
  background: var(--light-bg);
  margin-bottom: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.service-nav-link:hover,
.service-nav-link.active {
  color: var(--primary);
  border-color: rgba(13, 110, 253, 0.18);
  background: rgba(13, 110, 253, 0.06);
}

.bullet-list {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.bullet-list li {
  margin-bottom: 8px;
}

.breadcrumb-box {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.breadcrumb-link {
  text-decoration: none;
  color: var(--primary);
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(13, 110, 253, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.12);
}

.toast-container {
  z-index: 1090;
}

footer {
  background: #0f172a;
  color: #ffffff;
  padding: 34px 0;
}

.current-link {
  color: var(--primary) !important;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .hero-section,
  .page-hero-section {
    padding-top: 120px;
  }

  .cta-box {
    padding: 34px;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-custom-primary,
  .btn-custom-light {
    width: 100%;
  }
}

.dropdown-menu {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
}

.dropdown-item.active,
.dropdown-item:active {
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
}


.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.pricing-card .card-body {
  padding: 28px;
}

.price-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-note {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}


.portfolio-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.portfolio-card .card-body {
  padding: 28px;
}

.project-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.tech-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 16px;
}


.portfolio-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  margin-bottom: 18px;
  display: block;
}

.portfolio-image-label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -4px;
  margin-bottom: 14px;
}




.hero-vertical-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-static-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  padding-top: 10px;
}

.hero-vertical-viewport {
  position: relative;
  height: 174px;
  overflow: hidden;
  min-width: 260px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 18%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 18%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
}

.hero-vertical-track {
  position: relative;
  transition: transform 0.8s ease;
  will-change: transform;
}

.hero-vertical-item {
  height: 58px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0.35;
  transform: scale(0.94);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-vertical-item.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767.98px) {
  .hero-vertical-wrap {
    align-items: flex-start;
    gap: 8px;
  }

  .hero-static-text {
    font-size: 1.1rem;
    padding-top: 8px;
  }

  .hero-vertical-viewport {
    height: 138px;
    min-width: 200px;
  }

  .hero-vertical-item {
    height: 46px;
    font-size: 1.5rem;
  }
}



.hero-content-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content-column .hero-description {
  margin-left: auto;
  margin-right: auto;
}

.hero-content-column .hero-actions {
  justify-content: center;
}

.hero-vertical-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  width: 100%;
}

.hero-static-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  line-height: 1;
}

.hero-vertical-viewport {
  position: relative;
  height: 174px;
  width: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 18%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 18%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
}

.hero-vertical-track {
  position: relative;
  transition: transform 0.8s ease;
  will-change: transform;
}

.hero-vertical-item {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0.75;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease;
  text-align: center;
}

.hero-vertical-item.is-active {
  opacity: 0.75;
  transform: scale(1);
}

@media (max-width: 991.98px) {
  .hero-vertical-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .hero-static-text {
    font-size: 1.1rem;
    height: 46px;
  }

  .hero-vertical-viewport {
    height: 138px;
    width: 200px;
  }

  .hero-vertical-item {
    height: 46px;
    font-size: 1.5rem;
  }
}



.home-premium-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.16), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(111, 66, 193, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.premium-title {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 760px;
}

.premium-description {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 670px;
  margin-bottom: 24px;
}

.premium-rotating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.premium-prefix {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--dark);
}

.premium-rotating-viewport {
  position: relative;
  height: 58px;
  overflow: hidden;
  min-width: 280px;
}

.premium-rotating-track {
  position: relative;
  transition: transform 0.75s ease;
}

.premium-rotating-item {
  display: flex;
  align-items: center;
  height: 58px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.premium-actions {
  margin-bottom: 28px;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
}

.premium-stat-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.premium-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.hero-showcase-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.hero-showcase-top,
.hero-showcase-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hero-showcase-bottom {
  flex-wrap: wrap;
  margin-top: 18px;
}

.showcase-mini-label {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.showcase-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0;
}

.showcase-pill {
  align-self: flex-start;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.showcase-screen {
  margin-top: 20px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: #ffffff;
}

.showcase-screen-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #f3f7fb;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.showcase-screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.65);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 360px;
}

.showcase-sidebar {
  background: #0f172a;
  padding: 20px 16px;
}

.showcase-sidebar-item {
  height: 42px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.showcase-sidebar-item.active {
  background: rgba(13, 110, 253, 0.85);
}

.showcase-main {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.showcase-chart-card,
.showcase-table-card {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.02)),
    #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.showcase-chart-card.large {
  height: 118px;
  margin-bottom: 16px;
}

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

.showcase-grid .showcase-chart-card {
  height: 100px;
}

.showcase-table-card {
  height: 86px;
}

.showcase-point {
  min-width: 140px;
}

.showcase-point strong {
  display: block;
  font-size: 0.95rem;
}

.showcase-point span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.trusted-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  padding: 18px 24px;
  border-radius: 999px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.trusted-strip span {
  color: var(--muted);
  font-weight: 600;
}

.premium-service-card,
.feature-showcase-card,
.process-shell,
.home-cta-panel {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
}

.premium-service-card,
.feature-showcase-card {
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-service-card:hover,
.feature-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.premium-service-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(13, 110, 253, 0.08);
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.service-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.service-link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-link-arrow:hover::after {
  transform: translateX(4px);
}

.impact-list {
  margin-top: 28px;
}

.impact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.impact-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.impact-item p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.impact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-weight: 800;
  margin-top: 2px;
}

.process-shell {
  padding: 28px;
}

.process-shell-header {
  margin-bottom: 18px;
}

.process-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.process-step:first-of-type {
  border-top: 0;
}

.process-step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.home-cta-panel {
  padding: 40px;
  background: linear-gradient(135deg, #0f172a 0%, #0d6efd 100%);
  box-shadow: 0 28px 60px rgba(13, 110, 253, 0.2);
}

@media (max-width: 991.98px) {
  .home-premium-hero {
    padding-top: 128px;
  }

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

  .hero-showcase-bottom {
    gap: 12px;
  }

  .home-cta-panel {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .premium-rotating-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-rotating-viewport {
    min-width: 220px;
    height: 50px;
  }

  .premium-rotating-item {
    height: 50px;
    font-size: 1.6rem;
  }

  .premium-stats-grid {
    grid-template-columns: 1fr;
  }

  .showcase-layout {
    grid-template-columns: 64px 1fr;
  }

  .trusted-strip {
    border-radius: 30px;
  }
}

.homepage-main {
  overflow: hidden;
}

.home-navbar {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 34px rgba(37, 99, 235, 0.06);
}

.home-nav-button {
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.homepage-hero-section {
  position: relative;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(20, 184, 166, 0.12), transparent 20%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 48%, #f9fcff 100%);
}

.homepage-hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  max-width: 760px;
}

.homepage-hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 52%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.92);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: #1e3a8a;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.06);
}


.hero-service-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.hero-service-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 14px 20px 14px 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  color: #0f766e;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-service-list li::before {
  content: '';
  position: absolute;
  left: 22px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.28);
}

.homepage-hero-description {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5f6f86;
}

.home-hero-actions {
  margin-bottom: 34px;
}

.rotating-inline-shell {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-left: 6px;
}

.rotating-inline-shell-stacked {
  display: flex;
  width: 100%;
  margin-left: 0;
  margin-top: 14px;
  justify-content: center;
}

.rotating-inline-prefix {
  color: #1e3a8a;
  white-space: nowrap;
}

.rotating-inline-viewport {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 1.22em;
  overflow: hidden;
  min-width: min(100%, 420px);
}

.rotating-inline-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.75s ease;
}

.rotating-inline-item {
  height: 1.22em;
  display: flex;
  align-items: center;
  color: #0f766e;
  white-space: nowrap;
}

.hero-trust-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.hero-trust-mini-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.hero-trust-mini-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.hero-trust-mini-card span {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-visual-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
}

.hero-visual-header,
.hero-visual-footer,
.hero-visual-topbar,
.hero-visual-body,
.hero-visual-grid,
.capability-board-top,
.capability-grid,
.logo-strip,
.mini-contact-actions {
  display: flex;
}

.hero-visual-header,
.hero-visual-footer,
.capability-board-top {
  justify-content: space-between;
  gap: 14px;
}

.hero-visual-label,
.showcase-mini-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.76rem;
}

.hero-visual-title {
  font-size: 1.45rem;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 800;
}

.hero-visual-pill,
.capability-pill,
.deep-dive-tag,
.project-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-visual-pill {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.hero-visual-screen {
  margin-top: 22px;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border-radius: 28px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  padding: 18px;
}

.hero-visual-topbar {
  gap: 8px;
  margin-bottom: 16px;
}

.hero-visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.hero-visual-body {
  gap: 16px;
}

.hero-visual-sidebar {
  width: 66px;
  background: #f8fbff;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-visual-nav {
  height: 42px;
  border-radius: 14px;
  background: #dbeafe;
  margin-bottom: 10px;
}

.hero-visual-nav.active {
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.hero-visual-content {
  flex: 1;
}

.hero-visual-card,
.hero-visual-table {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
}

.hero-visual-card {
  min-height: 96px;
}

.hero-visual-card-large {
  min-height: 150px;
  margin-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(219, 234, 254, 0.9), rgba(255, 255, 255, 0.95)),
    linear-gradient(90deg, rgba(20, 184, 166, 0.1), rgba(37, 99, 235, 0.1));
}

.hero-visual-grid {
  gap: 14px;
  margin-bottom: 14px;
}

.hero-visual-grid .hero-visual-card {
  flex: 1;
}

.hero-visual-table {
  min-height: 94px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 246, 255, 0.85));
}

.hero-visual-footer {
  flex-wrap: wrap;
  row-gap: 16px;
}

.hero-visual-point {
  min-width: 120px;
}

.hero-visual-point strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-visual-point span {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.7;
}

.trust-metrics-section {
  padding-top: 48px;
}

.metric-panel,
.home-service-card,
.industry-card,
.engagement-card,
.case-study-card,
.home-testimonial-card,
.capability-board,
.homepage-cta-box,
.deep-dive-card,
.timeline-shell,
.mini-contact-panel {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.metric-panel,
.home-service-card,
.industry-card,
.engagement-card,
.homepage-cta-box,
.deep-dive-card,
.timeline-shell,
.capability-board,
.mini-contact-panel {
  border-radius: 28px;
}

.metric-panel,
.home-service-card,
.industry-card,
.engagement-card,
.deep-dive-card,
.case-study-body,
.capability-board,
.timeline-shell,
.mini-contact-panel {
  padding: 28px;
}

.metric-panel {
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.metric-icon-shell,
.home-service-icon,
.industry-mark,
.engagement-mark,
.timeline-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.metric-icon-shell,
.home-service-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.metric-panel-number {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
  margin: 18px 0 12px;
}

.metric-panel h3,
.home-service-card h3,
.industry-card h3,
.engagement-card h3,
.case-study-body h3,
.mini-contact-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.metric-panel p,
.home-service-card p,
.industry-card p,
.engagement-card p,
.case-study-body p,
.home-testimonial-card p,
.mini-contact-panel p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

.home-service-card,
.industry-card,
.engagement-card,
.case-study-card,
.home-testimonial-card,
.deep-dive-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-service-card:hover,
.industry-card:hover,
.engagement-card:hover,
.case-study-card:hover,
.home-testimonial-card:hover,
.deep-dive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
}

.section-surface {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
}

.deep-dive-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.deep-dive-scroll::-webkit-scrollbar {
  height: 8px;
}

.deep-dive-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.deep-dive-card {
  min-height: 230px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.deep-dive-tag {
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 0.82rem;
}

.deep-dive-card h3 {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.deep-dive-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

.home-impact-list .impact-item {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.home-impact-list .impact-icon {
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.capability-board {
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.capability-pill {
  padding: 10px 14px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.84rem;
}

.capability-grid {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.capability-box {
  width: calc(50% - 8px);
  min-height: 134px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.1);
  padding: 20px;
}

.capability-box strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.capability-box span {
  color: #64748b;
  line-height: 1.8;
}

.industry-mark,
.engagement-mark {
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  margin-bottom: 18px;
}

.technology-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.technology-chip {
  padding: 14px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 700;
}

.technology-chip-large {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.12));
}

.case-study-card {
  border-radius: 28px;
  overflow: hidden;
}

.case-study-body {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.case-study-body p {
  margin-bottom: 12px;
}

.project-badge {
  padding: 8px 14px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.logo-strip {
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.logo-strip span {
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 1);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: #475569;
  font-weight: 700;
}

.home-testimonial-card {
  border-radius: 28px;
}

.featured-engagement-card {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
  border-color: rgba(20, 184, 166, 0.2);
}

.timeline-shell {
  position: relative;
}

.timeline-shell::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 56px;
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(20, 184, 166, 0.22));
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
}

.timeline-step-last {
  padding-bottom: 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

.timeline-step h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 8px;
}

.timeline-step p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

.homepage-cta-box {
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #2563eb 0%, #0f766e 100%);
  color: #ffffff;
  box-shadow: 0 26px 64px rgba(37, 99, 235, 0.24);
}

.homepage-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.homepage-cta-box p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 0;
}

.cta-label-light {
  color: rgba(255, 255, 255, 0.72);
}

.mini-contact-panel {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.mini-contact-panel h3,
.mini-contact-panel p {
  color: #ffffff;
}

.mini-contact-panel p {
  opacity: 0.88;
}

.mini-contact-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.homepage-footer {
  padding: 80px 0 28px;
  background: #eef5fb;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.homepage-footer h5,
.homepage-footer h6 {
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-home-text {
  color: #64748b;
  line-height: 1.9;
  max-width: 340px;
}

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

.footer-link-list li + li {
  margin-top: 10px;
}

.footer-link-list a,
.homepage-footer-bottom p {
  color: #64748b;
  text-decoration: none;
}

.footer-link-list a:hover {
  color: #2563eb;
}

.homepage-footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.current-link {
  color: #2563eb !important;
}

@media (max-width: 1199px) {
  .hero-trust-mini-grid {
    grid-template-columns: 1fr;
  }

  .capability-box {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .homepage-hero-section {
    padding-top: 128px;
  }

  .rotating-inline-shell {
    display: flex;
    margin-left: 0;
    margin-top: 10px;
  }

  .rotating-inline-shell-stacked {
    justify-content: center;
  }

  .rotating-inline-viewport {
    min-width: 100%;
  }

  .hero-visual-footer {
    gap: 12px;
  }

  .homepage-cta-box {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 76px 0;
  }

  .homepage-hero-title {
    font-size: 2.6rem;
  }

  .hero-visual-shell,
  .metric-panel,
  .home-service-card,
  .industry-card,
  .engagement-card,
  .deep-dive-card,
  .timeline-shell,
  .capability-board,
  .mini-contact-panel,
  .case-study-body,
  .homepage-cta-box {
    padding: 22px;
  }

  .hero-visual-sidebar {
    width: 54px;
  }

  .timeline-shell::before {
    left: 47px;
  }
}

@media (max-width: 575px) {
  .homepage-hero-section {
    padding-top: 116px;
  }

  .rotating-inline-shell-stacked {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .rotating-inline-viewport {
    min-width: 100%;
    justify-content: center;
  }

  .rotating-inline-item {
    justify-content: center;
    width: 100%;
  }

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

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

  .hero-visual-header,
  .hero-visual-footer,
  .capability-board-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual-body {
    flex-direction: column;
  }

  .deep-dive-scroll {
    grid-auto-columns: minmax(86vw, 1fr);
  }
}


.homepage-hero-content-simple {
  max-width: 980px;
}

.hero-trust-mini-grid-centered {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .homepage-hero-section {
    padding-top: 170px;
    padding-bottom: 110px;
  }
}


.homepage-hero-section {
  position: relative;
  padding: 156px 0 92px;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(20, 184, 166, 0.12), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 52%, #f8fbff 100%);
}

.homepage-hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 251, 255, 0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  padding: 38px;
}

.homepage-hero-copy {
  max-width: 690px;
}

.homepage-hero-label {
  margin-bottom: 18px;
}

.homepage-hero-title {
  max-width: 680px;
  margin-bottom: 18px;
}

.homepage-hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 52%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.92);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: #1e3a8a;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.06);
}


.homepage-hero-description {
  max-width: 620px;
  margin-bottom: 30px;
}

.home-hero-actions {
  margin-bottom: 26px;
}


.hero-services-panel {
  max-width: 430px;
  margin-left: auto;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.hero-services-kicker {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-services-right-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-services-right-list li {
  position: relative;
  padding: 14px 18px 14px 54px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.96);
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.06);
}

.hero-services-right-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-service-pills span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-side-showcase {
  display: grid;
  gap: 18px;
}

.hero-side-card {
  border-radius: 28px;
  padding: 28px;
}

.hero-side-card-primary {
  background: linear-gradient(145deg, #eff6ff 0%, #ecfeff 100%);
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
}

.hero-side-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-side-card-primary h3 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-side-card-primary p {
  margin-bottom: 0;
  color: #5f6f86;
  line-height: 1.8;
}

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

.hero-side-mini-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.hero-side-mini-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 7px;
}

.hero-side-mini-card span {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .homepage-hero-panel {
    padding: 26px;
  }

  .hero-services-panel {
    max-width: 100%;
    margin-left: 0;
  }

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

@media (max-width: 767px) {
  .homepage-hero-section {
    padding: 128px 0 74px;
  }

  .homepage-hero-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .homepage-hero-title {
    font-size: 2.45rem;
  }

  .hero-services-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-services-right-list li {
    padding: 13px 16px 13px 50px;
  }

  .hero-side-card,
  .hero-side-mini-card {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .hero-side-mini-grid {
    grid-template-columns: 1fr;
  }


  .hero-service-pills {
    gap: 10px;
  }
}


.service-page-shell {
  padding: 90px 0;
}

.service-sticky-sidebar {
  position: sticky;
  top: 108px;
}

.service-highlight-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-highlight-chip,
.stack-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-section-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  padding: 30px;
  height: 100%;
}

.service-section-card h3,
.service-section-card h4 {
  font-weight: 800;
}

.service-grid-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 26px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-grid-card:hover,
.related-project-card:hover,
.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.service-grid-card p,
.service-section-card p,
.process-card p,
.faq-card p,
.related-project-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  margin-top: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.9) 50%, rgba(13, 110, 253, 0.1) 100%);
  transform: translateX(-50%);
}

.process-item {
  position: relative;
  width: 50%;
  padding: 10px 34px 10px 0;
  margin-bottom: 12px;
}

.process-item.right {
  margin-left: 50%;
  padding: 10px 0 10px 34px;
}

.process-item::before {
  content: '';
  position: absolute;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary);
  box-shadow: 0 0 0 8px rgba(13, 110, 253, 0.08);
  z-index: 1;
}

.process-item.left::before {
  right: -8px;
}

.process-item.right::before {
  left: -8px;
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 24px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.stack-pill-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.related-project-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-project-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.related-project-body {
  padding: 24px;
}

.related-project-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.related-project-link {
  display: inline-flex;
  margin-top: 16px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-mini-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

@media (max-width: 991.98px) {
  .service-sticky-sidebar {
    position: static;
  }

  .process-timeline::before {
    left: 22px;
    transform: none;
  }

  .process-item,
  .process-item.right {
    width: 100%;
    margin-left: 0;
    padding: 10px 0 10px 54px;
  }

  .process-item.left::before,
  .process-item.right::before {
    left: 14px;
    right: auto;
  }
}

@media (max-width: 575.98px) {
  .service-highlight-chip,
  .stack-pill {
    width: 100%;
    justify-content: center;
  }

  .service-section-card,
  .service-grid-card,
  .process-card,
  .faq-card {
    padding: 22px;
  }
}


.home-navbar .container {
  display: flex;
  align-items: center;
}

.home-navbar .navbar-collapse {
  flex-grow: 1;
}

.home-nav-cta-wrapper {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .home-navbar .navbar-nav {
    margin-left: auto;
  }

  .home-nav-cta-wrapper {
    order: 3;
    margin-left: 1rem;
    margin-right: 0;
  }
}

@media (max-width: 991.98px) {
  .home-navbar .container {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .home-navbar .navbar-brand {
    margin-right: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .home-nav-cta-wrapper {
    order: 2;
    margin-left: auto !important;
    margin-right: 0.35rem !important;
    flex: 0 0 auto;
  }

  .home-nav-button {
    padding: 0.68rem 0.95rem;
    font-size: 0.85rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home-navbar .navbar-toggler {
    margin-left: 0;
    order: 3;
    flex: 0 0 auto;
  }

  .home-navbar .navbar-collapse {
    order: 4;
    width: 100%;
    flex-basis: 100%;
  }

  .home-navbar .navbar-nav {
    padding-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .home-navbar .navbar-brand {
    font-size: 1rem;
  }

  .home-nav-button {
    padding: 0.62rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .home-nav-button {
    padding: 0.62rem 0.88rem;
    font-size: 0.82rem;
  }
}


@media (max-width: 991.98px) {
  .home-navbar .navbar-collapse {
    overflow: visible;
  }

  .home-navbar .navbar-nav {
    gap: 0;
  }

  .home-navbar .nav-item.dropdown {
    width: 100%;
  }

  .home-navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .home-navbar .dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin-top: 0.35rem !important;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0 0.4rem 1rem;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent;
  }

  .home-navbar .dropdown-menu:not(.show) {
    display: none;
  }

  .home-navbar .dropdown-menu.show {
    display: block;
  }

  .home-navbar .dropdown-item {
    padding: 0.7rem 0;
    white-space: normal;
  }
}


.about-hero-section {
  padding-bottom: 110px;
}

.about-article-hero {
  padding-bottom: 90px;
}

.about-article-shell {
  max-width: 1120px;
}

.about-article-header {
  max-width: 860px;
  margin: 0 auto 34px;
}

.about-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.about-article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.about-article-title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.about-article-intro {
  max-width: 780px;
}

.about-article-card {
  position: relative;
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}



.about-article-content p {
  font-size: 1.06rem;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-article-lead {
  font-size: 1.2rem !important;
  line-height: 1.9 !important;
  color: var(--dark) !important;
  font-weight: 600;
}

.about-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-article-note {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.about-article-note h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-article-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-article-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-article-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.about-article-actions {
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .about-article-card {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .about-article-meta {
    justify-content: center;
  }

  .about-article-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-article-content p {
    font-size: 1rem;
  }

  .about-article-lead {
    font-size: 1.08rem !important;
  }
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-hero-card {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

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

.about-mini-card {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.about-mini-card-wide {
  grid-column: 1 / -1;
}

.about-mini-kicker {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.about-mini-card h3,
.about-process-item h3,
.about-value-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-mini-card p,
.about-process-item p,
.about-value-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-story-card {
  padding: 32px;
}

.about-process-list {
  display: grid;
  gap: 18px;
}

.about-process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.about-process-step {
  min-width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.about-values-panel {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--card-shadow);
}

.about-value-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--light-bg);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.about-metric-box {
  padding: 28px 20px;
}

@media (max-width: 991.98px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-mini-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 575.98px) {
  .about-hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .about-process-item {
    padding: 20px;
  }

  .about-values-panel,
  .about-story-card,
  .about-mini-card {
    padding: 22px;
  }
}


/* Global font override for complete site consistency */
html,
body,
button,
input,
select,
textarea,
.navbar,
.dropdown-menu,
.btn,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
label,
div {
  font-family: 'Gudea', sans-serif !important;
}

.hero-title,
.page-title,
.section-title,
.homepage-hero-title,
.homepage-hero-title-line,
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize !important;
}

.homepage-footer h5,
.homepage-footer h6 {
    color: #3aa0ff !important;
}