.site-navbar {
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.site-navbar .logo,
.site-footer .logo {
  height: 58px;
  max-width: 178px;
  object-fit: contain;
  transition: var(--transition);
  width: auto;
}

.navbar-brand:hover .logo {
  transform: translateY(-1px) scale(1.02);
}

.navbar-brand {
  align-items: center;
  display: inline-flex;
  min-height: 68px;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  margin: 0 12px;
}

.services-nav-item {
  align-items: center;
  display: flex;
  position: relative;
}

.services-nav-link {
  position: relative;
  z-index: 2;
  margin-right: 0;
  padding-right: 2px;
}

.services-dropdown-toggle {
  background: transparent;
  border: 0;
  border-radius: 50%;
  height: 24px;
  margin: 0 8px 0 -6px;
  padding: 0;
  width: 24px;
}

.services-dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0.12em;
}

.services-dropdown-toggle:hover,
.services-dropdown-toggle.show {
  background: var(--primary-light);
  color: var(--primary);
}

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

.dropdown-menu {
  border-radius: var(--radius-2);
  min-width: 220px;
}

.services-dropdown-menu {
  left: 0;
  margin-top: 10px;
  top: 100%;
}

@media (min-width: 992px) {
  .services-nav-item:hover > .dropdown-menu,
  .services-nav-item:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-item {
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-custom {
  align-items: center;
  border-radius: var(--radius-1);
  display: inline-flex;
  font-weight: 600;
  gap: var(--space-1);
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.badge-custom {
  align-items: center;
  background: var(--primary-light);
  border-radius: 999px;
  color: var(--primary);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: var(--space-1);
  letter-spacing: 0;
  margin-bottom: var(--space-3);
  padding: 10px 18px;
  text-transform: uppercase;
}

.wave-text {
  animation: waveShimmer 2.6s ease-in-out infinite;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), #22c55e, var(--primary));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.wave-text::after {
  animation: waveLine 2.6s ease-in-out infinite;
  background: radial-gradient(50% 100% at 50% 100%, rgba(37, 99, 235, 0.28), transparent 68%);
  bottom: -4px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  width: 100%;
}

.section-heading {
  margin: 0 auto var(--space-6);
  max-width: 760px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  color: var(--text);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}

.section-heading-compact {
  margin-bottom: var(--space-4);
  max-width: 680px;
}

.section-heading-compact h2 {
  margin-bottom: 6px;
}

.eyebrow {
  color: var(--primary);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.card-custom {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-3);
  height: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: var(--transition);
}

.card-custom.in-view,
body:not(.js-ready) .card-custom {
  opacity: 1;
  transform: translateY(0);
}

.card-custom:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.card-service,
.card-step {
  padding: 30px;
}

.card-custom h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

.card-custom p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.business-solutions {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #ffffff 100%);
}

.trusted-brands {
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  text-align: center;
}

.trusted-brands p {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.trusted-brand-list {
  align-items: center;
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(6, 1fr);
}

.tools-slider {
  margin-inline: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.tools-slider::before,
.tools-slider::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 2;
}

.tools-slider::before {
  background: linear-gradient(90deg, var(--surface), rgba(255, 255, 255, 0));
  left: 0;
}

.tools-slider::after {
  background: linear-gradient(270deg, var(--surface), rgba(255, 255, 255, 0));
  right: 0;
}

.tools-slider-track {
  animation: toolsMarquee 24s linear infinite;
  display: flex;
  gap: var(--space-2);
  width: max-content;
}

.tools-slider:hover .tools-slider-track {
  animation-play-state: paused;
}

.trusted-brand-item {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  color: var(--text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 7px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  white-space: nowrap;
}

.trusted-brand-item i {
  color: var(--primary);
  font-size: 18px;
}

.trusted-brand-item span {
  color: var(--text-muted);
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.business-solutions .section-heading h2 {
  font-size: 40px;
}

.business-solutions .section-heading p {
  font-size: 16px;
  line-height: 1.6;
}

.business-solutions .card-service {
  border-radius: 14px;
  padding: var(--space-3);
}

.business-solutions .card-service h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.business-solutions .card-service p {
  font-size: 13px;
  line-height: 1.6;
}

.business-solutions .card-service .link-more {
  font-size: 13px;
  margin-top: var(--space-2);
}

.business-solutions .icon-box {
  border-radius: 10px;
  font-size: 18px;
  height: 42px;
  margin-bottom: var(--space-2);
  width: 42px;
}

.icon-box,
.step-number {
  align-items: center;
  background: var(--primary-light);
  border-radius: var(--radius-2);
  color: var(--primary);
  display: flex;
  font-size: 24px;
  height: 60px;
  justify-content: center;
  margin-bottom: var(--space-3);
  width: 60px;
}

.icon-box-small {
  border-radius: 14px;
  font-size: 18px;
  height: 48px;
  margin-bottom: 0;
  min-width: 48px;
  width: 48px;
}

.step-number {
  font-size: 18px;
  font-weight: 700;
}

.process-panel {
  background: #eef5ff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  margin-top: var(--space-5);
  padding: var(--space-4);
}

.process-panel .section-heading {
  margin-bottom: var(--space-3);
}

.process-panel .section-heading h2 {
  font-size: 40px;
}

.process-panel .card-step {
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  padding: var(--space-2);
}

.process-panel .card-step:hover {
  box-shadow: none;
  transform: none;
}

.process-panel .card-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.process-panel .card-step p {
  font-size: 13px;
  line-height: 1.55;
}

.process-panel .step-number {
  background: var(--white);
  border: 1px solid #bfdbfe;
  border-radius: 50%;
  font-size: 14px;
  height: 42px;
  margin-bottom: var(--space-2);
  width: 42px;
}

.results-strip {
  align-items: center;
  display: flex;
  gap: var(--space-3);
  justify-content: space-between;
  margin-top: var(--space-4);
}

.results-strip h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.results-strip p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}

.card-blog {
  display: flex;
  flex-direction: column;
  height: 390px;
  overflow: hidden;
}

.card-blog img {
  aspect-ratio: 16 / 10;
  flex: 0 0 170px;
  height: 170px;
  object-fit: cover;
  transition: 0.55s ease;
  width: 100%;
}

.card-blog:hover img {
  transform: scale(1.05);
}

.card-body-custom {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: var(--space-3);
}

.card-blog .card-body-custom h3 {
  display: -webkit-box;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.card-blog .link-more {
  margin-top: auto;
}

.blog-page .card-blog {
  height: 430px;
}

.blog-page .card-blog img {
  flex-basis: 170px;
  height: 170px;
}

.blog-page .card-blog .card-body-custom {
  gap: 0;
  padding: 22px 24px 24px;
}

.blog-page .card-blog .card-body-custom h3 {
  font-size: 18px;
  line-height: 1.32;
  margin-bottom: 10px;
  min-height: 48px;
}

.blog-page .card-blog .card-body-custom p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
}

.blog-page .card-blog .blog-meta {
  flex: 0 0 auto;
  gap: 14px;
  margin-bottom: 0;
  min-height: 24px;
}

.blog-page .card-blog .blog-meta span {
  font-size: 13px;
  white-space: nowrap;
}

.link-more {
  align-items: center;
  color: var(--primary);
  display: inline-flex;
  font-weight: 600;
  gap: 4px;
  margin-top: var(--space-3);
}

.link-more i {
  font-size: 18px;
}

.article-reader {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.09), rgba(34, 197, 94, 0.08)),
    var(--surface);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-3);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 0 var(--space-5);
  overflow: hidden;
  padding: var(--space-3);
  position: relative;
}

.article-reader::before {
  background: linear-gradient(180deg, var(--primary), #22c55e);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}

.article-reader .reader-play {
  align-items: center;
  appearance: none;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 30px;
  height: 68px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
  width: 68px;
}

.article-reader .reader-play i {
  line-height: 1;
  transform: translateX(1px);
}

.article-reader .reader-play:hover,
.article-reader.is-playing .reader-play {
  background: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
  transform: translateY(-2px);
}

.article-reader .reader-meta {
  min-width: 0;
}

.article-reader .reader-meta strong {
  align-items: center;
  color: var(--primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.article-reader .reader-meta strong i {
  font-size: 17px;
}

.article-reader .reader-meta > span {
  color: var(--text);
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-reader .reader-progress-track {
  background: #dbeafe;
  border-radius: 999px;
  height: 8px;
  margin: 14px 0 9px;
  overflow: hidden;
  width: 100%;
}

.article-reader .reader-progress-track span {
  background: linear-gradient(90deg, var(--primary), #22c55e);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 0.3s ease;
  width: 0;
}

.article-reader .reader-time {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
}

.article-reader .reader-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.article-reader .reader-actions button {
  align-items: center;
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 1;
  min-width: 42px;
  padding: 0 13px;
  transition: var(--transition);
}

.article-reader .reader-actions button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.article-reader.reader-unavailable {
  background: #f8fafc;
  border-color: var(--border);
}

.article-reader.reader-unavailable .reader-play,
.article-reader.reader-unavailable .reader-actions {
  display: none;
}

.reading-highlight {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.1));
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

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

.case-study-list {
  display: grid;
  gap: var(--space-3);
  margin: 0 auto;
  max-width: 920px;
}

.case-study-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 220px 1fr auto;
  height: 178px;
  min-height: 170px;
  padding: 14px;
  transition: var(--transition);
}

.case-study-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.case-study-card img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.case-study-content {
  min-width: 0;
}

.case-study-content h3 {
  display: -webkit-box;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-study-content p {
  color: var(--text-muted);
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  max-height: 30px;
  overflow: hidden;
}

.case-study-tags span {
  background: var(--primary-light);
  border-radius: 999px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
}

.case-study-link {
  margin-top: 0;
  white-space: nowrap;
}

.project-cta-section{
  background: var(--primary);
}

.project-cta {
  align-items: center;
  border-radius: 8px;
  color: var(--white);
 text-align: center;
}

.project-cta h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;

}

.project-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.project-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content:center;
}

/* .project-cta .btn-custom {
  border-radius: 6px;
  font-size: 12px;
  min-height: 38px;
  padding: 9px 16px;
} */

.site-footer {
  background: var(--footer);
  color: var(--border-dark);
  padding: var(--space-7) 0 30px;
}

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

.site-footer-brand {
  max-width: 430px;
}

.site-footer .logo {
  height: 58px;
  margin-bottom: var(--space-2);
  max-width: 178px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.site-footer p {
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 340px;
}

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

.site-footer li {
  line-height: 1.55;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.site-footer a {
  color: var(--border-dark);
  display: inline-flex;
  line-height: 1.45;
  min-height: 28px;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
}

@keyframes toolsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  50% {
    background-position: 100% 50%;
  }
}

@keyframes waveLine {
  0%,
  100% {
    transform: translateY(0) scaleX(0.92);
  }

  50% {
    transform: translateY(2px) scaleX(1);
  }
}
