/*
 * Site stylesheet — unused legacy rules removed (merged style + style2 cleanup).
 */

@import url('https://fonts.googleapis.com/css2?family=Pragati+Narrow:wght@400;700&display=swap');

:root {
  --site-container-width: 1280px;
  --site-gutter: 20px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --color-ink: #171717;
  --color-muted: #4d4d4d;
  --color-navy: #00003f;
  --color-brand-start: #2a4dfb;
  --color-brand-end: #7a5ff8;
  --color-brand-deep: #0026e3;
  --color-surface: #f9fafc;
  --color-border-soft: #e7e9ee;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: clamp(1.125rem, 2.5vw, 1.5rem);
  --text-xl: clamp(1.25rem, 3vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 4vw, 2.25rem);
  --text-hero: clamp(2.25rem, 8vw, 3.75rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --section-pad-y: clamp(3rem, 6vw, 5rem);
  --card-pad: clamp(1rem, 2.5vw, 1.5rem);
  --radius-pill: 999px;
  --touch-min: 44px;
  --control-size: 32px;
  --control-size-touch: 44px;
}

/* ===== SITE HERO BACKGROUND START ===== */
.site-hero-bg {
  background-color: var(--color-navy);
  height: min(100%, 920px);
  inset-inline: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 0;
}

.site-hero-bg__image {
  height: 100%;
  left: 50%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: max(100%, 1920px);
}

.site-hero-bg__pattern {
  height: 100%;
  inset: 0;
  mix-blend-mode: soft-light;
  object-fit: cover;
  object-position: top center;
  opacity: 0.2;
  position: absolute;
  width: 100%;
}
/* ===== SITE HERO BACKGROUND END ===== */

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

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

img,
video,
canvas {
  max-width: 100%;
}

.u-touch-target {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
}

.u-btn-cta {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: var(--space-2);
  padding-inline: 1.25rem;
}

/* All primary/secondary marketing CTAs show pointer */
.u-btn-cta,
a.u-btn-cta,
button.u-btn-cta,
.consultation-cta,
.consultation-secondary-link,
.industries-support__copy a,
.faq-section__cta,
.faq-section__intro > a,
.articles-insights__more,
.offerings-expert-link,
.digital-marketing-services__more a,
.portfolio-showcase__footer a,
.collab-section__link,
.contact-form-panel__submit,
.smart-together-cta a,
main a.rounded-full.bg-gradient-to-r,
main button.rounded-full.bg-gradient-to-r {
  cursor: pointer;
}

.site-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: calc(var(--site-container-width) + (var(--site-gutter) * 2));
  padding-inline: var(--site-gutter);
  width: 100%;
}

.site-main .site-container {
  max-width: var(--site-container-width);
  padding-inline: 0;
}

.site-main,
.site-main > .full-bleed {
  display: grid;
  grid-template-columns: [full-start] minmax(var(--site-gutter), 1fr)
  [content-start] minmax(0, var(--site-container-width))
  [content-end] minmax(var(--site-gutter), 1fr)
  [full-end];
  min-width: 0;
}

.site-main > * {
  grid-column: content;
  min-width: 0;
}

.site-main > .full-bleed {
  grid-column: full;
}

.site-main > .full-bleed > .section-inner {
  grid-column: content;
  min-width: 0;
  width: 100%;
}

.site-main > .full-bleed--edge > :not(.section-inner) {
  grid-column: full;
  min-width: 0;
}

.site-main .swiper {
  min-width: 0;
}

.pragati-narrow-regular {
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about-stats {
  background: #fff;
  border: 1px solid rgb(31 38 68 / 3%);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgb(35 38 91 / 10%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  overflow: hidden;
  padding: 16px 10px;
}

.about-stat {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 0 18px;
  position: relative;
}

.about-stat + .about-stat {
  position: relative;
  border-left: none;
}

.about-stat + .about-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
  180deg,
  #FFFFFF 0%,
  #DAE0FE 25%,
  #DAE0FE 50%,
  #FFFFFF 100%
  );
}

.about-stat__content {
  min-width: 0;
}

.about-stat__value {
  color: var(--stat-accent);
  display: block;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.about-stat__label {
  color: var(--stat-accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  margin-top: 5px;
}

.about-stat__description {
  color: #171717;
  font-size: 13px;
  line-height: 16px;
  margin-top: 5px;
  max-width: 190px;
  font-weight: 500;
}

.offerings-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 6px;
  position: relative;
}

.offerings-eyebrow::after {
  background: linear-gradient(90deg, #2A4DFB 0%, #7A5FF8 100%);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 18px;
}

.offerings-control {
  align-items: center;
  background: #00003F;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  height: 32px;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  width: 32px;
}

.offerings-control:hover {
  background: #2a4dfb;
  transform: translateY(-1px);
}

.offerings-control.swiper-button-disabled {
  cursor: default;
  opacity: 0.42;
}

.offerings-control:focus-visible,
.offerings-expert-link:focus-visible {
  outline: 2px solid #2a4dfb;
  outline-offset: 3px;
}

.offerings-pagination,
.digital-marketing-pagination,
.articles-insights-pagination {
  align-items: center;
  flex: 1;
  gap: 10px;
  justify-content: flex-start;
}

.offerings-pagination .swiper-pagination-bullet,
.digital-marketing-pagination .swiper-pagination-bullet,
.articles-insights-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1.5px solid #00003f;
  border-radius: 999px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 8px;
}

.offerings-pagination .swiper-pagination-bullet-active,
.digital-marketing-pagination .swiper-pagination-bullet-active,
.articles-insights-pagination .swiper-pagination-bullet-active {
  background: #00003f;
  border-color: #00003f;
}

.smart-together-cta {
  background: radial-gradient(circle at 72% 45%, rgb(36 40 194 / 24%), transparent 30%),
  radial-gradient(circle at 96% 10%, rgb(39 19 156 / 24%), transparent 24%),
  linear-gradient(105deg, #03031f 0%, #05043a 56%, #050250 100%);
  border-bottom: 1px solid rgb(255 255 255 / 82%);
  border-top: 1px solid rgb(255 255 255 / 82%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.smart-together-cta::before {
  background-image: linear-gradient(125deg, transparent 47%, rgb(120 113 255 / 5%) 48% 49%, transparent 50%),
  radial-gradient(circle, rgb(255 255 255 / 7%) 0 1px, transparent 1.5px);
  background-size: 180px 120px, 34px 34px;
  content: "";
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.smart-together-cta__inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(130px, 0.65fr) minmax(310px, 1.55fr) auto 70px;
  min-height: 112px;
  padding-block: 20px;
  position: relative;
  z-index: 1;
}

.smart-together-cta__copy h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.smart-together-cta__copy p {
  color: #B1B9DF;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
  font-weight: 600;
}

.web-services__header {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 215px minmax(0, 1fr);
  margin-bottom: 38px;
}

.web-services__grid {
  background: #e6e9ef;
  border: 1px solid #e6e9ef;
  box-shadow: 0 10px 28px rgb(42 48 76 / 6%);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-service-card {
  --web-service-accent: #315de3;
  background: rgb(255 255 255 / 96%);
  min-height: 200px;
  overflow: hidden;
  padding: 23px 20px 24px;
  position: relative;
}

.web-service-card:nth-child(2) {
  --web-service-accent: #b95824;
}

.web-service-card:nth-child(3) {
  --web-service-accent: #157d91;
}

.web-service-card:nth-child(4) {
  --web-service-accent: #218d88;
}

.web-service-card:nth-child(5) {
  --web-service-accent: #b53e3e;
}

.web-service-card:nth-child(6) {
  --web-service-accent: #ae681c;
}

.web-service-card::before {
  background: var(--web-service-accent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.35s ease;
  width: 0;
  z-index: 0;
}

.web-service-card::after {
  background: radial-gradient(
  circle at top left,
  color-mix(in srgb, var(--web-service-accent) 12%, transparent),
  transparent 68%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.web-service-card > * {
  position: relative;
  z-index: 1;
}

.web-service-card:hover::before,
.web-service-card:focus-within::before {
  width: 100%;
}

.web-service-card:hover::after,
.web-service-card:focus-within::after {
  opacity: 1;
}

.web-service-card__icon {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-flex;
  font-size: 10px;
  height: 38px;
  justify-content: center;
  margin-bottom: 14px;
  width: 38px;
}

.web-service-card__icon--lg {
  border-radius: 4px;
  height: 56px;
  width: 56px;
}

.web-service-card__icon--lg img {
  display: block;
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.web-service-card__icon--blue {
  background: #E8EBFF;
  border-color: #B9C0FF;
}

.web-service-card__icon--orange {
  background: #F9EFED;
  border-color: #ECCFC5;
}

.web-service-card__icon--cyan {
  background: #E8F2F4;
  border-color: #B9D6DF;
}

.web-service-card__icon--mint {
  background: #E8F5F4;
  border-color: #B9DFDD;
}

.web-service-card__icon--rose {
  background: #F9EBEB;
  border-color: #EBBFBF;
}

.web-service-card__icon--amber {
  background: #F8F0E8;
  border-color: #E8CDB8;
}

.web-services__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
}

.web-services__footer a {
  color: #0026E3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.web-services__footer a:hover {
  color: #1639a7;
}

.web-services__footer a:focus-visible {
  outline: 2px solid #315de3;
  outline-offset: 4px;
}

.technology-card::before {
  background: var(--technology-color);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.35s ease;
  width: 0;
  z-index: 1;
}

.technology-card:hover::before {
  width: 100%;
}

.core-values__symbols {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.core-values__inner {
  position: relative;
  z-index: 1;
}

.core-values__header {
  display: grid;
  gap: 34px;
  grid-template-columns: 190px minmax(0, 1fr);
}

.core-values__heading h2 {
  color: #f7f8ff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}

.core-values__heading > p {
  color: #B1B9DF;
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.core-values__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
}

.core-value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.core-value-card__content {
  border-left: 1px dashed #2A4DFB;
  min-height: 126px;
  padding: 8px 8px 12px 18px;
  position: relative;
  margin-left: -10px;
}

.core-value-card__content::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(#fff, #fff) padding-box,
  linear-gradient(90deg, #2A4DFB 0%, #7A5FF8 100%) border-box;
  border: 3px solid transparent;
  box-sizing: border-box;
}

.core-value-card__icon {
  fill: none;
  height: 25px;
  margin-bottom: 9px;
  stroke: #5363e8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  width: 25px;
}

.core-value-card h3 {
  color: #f3f4ff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 5px;
}

.core-value-card p {
  color: #B1B9DF;
  font-size: 14px;
  line-height: 1.42;
  margin: 0;
  max-width: 270px;
}

.core-value-card__image {
  aspect-ratio: 0.84;
  background: #11142b;
  border-radius: 8px;
  box-shadow: 0 18px 35px rgb(0 0 0 / 18%);
  margin-top: auto;
  overflow: hidden;
}

.core-value-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.digitalMarketingSwiper .swiper-slide {
  height: auto;
}

.digital-marketing-control.swiper-button-disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.digital-services-marquee {
  background: #fff;
  overflow: hidden;
  padding: 28px 0;
  width: 100%;
}

.digital-services-marquee:focus-visible {
  outline: 2px solid #242454;
  outline-offset: -3px;
}

.digital-services-marquee__track {
  align-items: center;
  animation: digital-services-marquee 30s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
  flex-shrink: 0;
  min-width: max-content;
}

.digital-services-marquee__group {
  --digital-services-marquee-gap: clamp(20px, 2.75vw, 42px);
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  gap: var(--digital-services-marquee-gap);
  padding-inline: calc(var(--digital-services-marquee-gap) / 2);
  white-space: nowrap;
  width: max-content;
}

.digital-services-marquee__label {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.digital-services-marquee__label--filled {
  color: #11113f;
  font-size: 28px;
}

.digital-services-marquee__label--outlined {
  color: transparent;
  -webkit-text-stroke: 1px #c2c3c8;
  font-size: 28px;
}

.digital-services-marquee__separator {
  display: inline-block;
  flex: 0 0 auto;
  height: clamp(10px, 1vw, 20px);
  position: relative;
  width: clamp(10px, 1vw, 20px);
}

.digital-services-marquee__separator--filled {
  background: #00003F;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.digital-services-marquee__separator--outlined {
  background: #00003F;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.digital-services-marquee__separator--outlined::after {
  background: #fff;
  clip-path: inherit;
  content: "";
  inset: 1.5px;
  position: absolute;
}

.digital-services-marquee:hover .digital-services-marquee__track,
.digital-services-marquee:focus .digital-services-marquee__track,
.digital-services-marquee:focus-within .digital-services-marquee__track {
  animation-play-state: paused;
}

.portfolio-showcase__header {
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
}

.portfolioShowcaseSwiper {
  cursor: grab;
  margin-top: clamp(34px, 4vw, 50px);
  overflow: hidden;
  touch-action: pan-y;
}

.portfolioShowcaseSwiper:active {
  cursor: grabbing;
}

.portfolioShowcaseSwiper .swiper-wrapper {
  align-items: stretch;
}

.portfolioShowcaseSwiper .swiper-slide {
  display: flex;
  height: auto;
}

.portfolio-showcase__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.portfolio-showcase__image {
  aspect-ratio: 1.23 / 1;
  background: #eceef5;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-showcase__image img {
  -webkit-user-drag: none;
  display: block;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 450ms ease;
  user-select: none;
  width: 100%;
}

.portfolio-showcase__card:hover .portfolio-showcase__image img {
  transform: scale(1.025);
}

.portfolio-showcase__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 14px;
}

.portfolio-showcase__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
}

.portfolio-showcase__controls {
  align-items: center;
  display: flex;
}

.portfolio-showcase__controls {
  gap: 7px;
}

.portfolio-showcase__control {
  align-items: center;
  background: #101247;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 8px;
  height: 32px;
  justify-content: center;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
  width: 32px;
}

.portfolio-showcase__control:hover {
  background: #2a4dfb;
  transform: translateY(-1px);
}

.portfolio-showcase__control.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.industries-served__grid {
  display: grid;
  gap: 17px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.industry-card {
  background: #00003F;
  border: 1px solid rgb(110 119 219 / 8%);
  border-radius: 24px;
  box-shadow: 2px 7px 13px 2px #2A4DFB17;
  display: flex;
  flex-direction: column;
  min-height: 181px;
  padding: 32px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  border-color: transparent;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.industry-card:hover {
  border-color: rgb(101 111 255 / 58%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%),
  0 15px 32px rgb(0 0 0 / 22%);
  transform: translateY(-2px);
}

.industry-card__icon {
  color: #5968ee;
  font-size: 21px;
  line-height: 1;
  margin-bottom: 13px;
  width: fit-content;
}

.industry-card__icon img {
  display: block;
  height: 26px;
  object-fit: contain;
  width: 26px;
}

.industry-card--standout .industry-card__top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 13px;
  width: 100%;
}

.industry-card--standout .industry-card__icon {
  margin-bottom: 0;
}

.industry-card--standout .industry-card__icon img {
  height: 28px;
  width: 28px;
}

.industry-card--standout .industry-card__step {
  background: linear-gradient(180deg, #2f69fb 12%, #c56bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.industry-card--standout p {
  padding-bottom: 0;
}

.industry-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 340px;
  margin-bottom: 4px;
}

.industry-card p {
  color: #B1B9DF;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 7px;
  max-width: 360px;
  padding-bottom: 18px;
  font-weight: 500;
}

.industry-card__arrow {
  bottom: 13px;
  color: #a8afe5;
  font-size: 8px;
  line-height: 1;
  position: absolute !important;
  right: 14px;
}

.industries-served__project {
  display: flex;
  justify-content: flex-end;
  margin-top: 29px;
}

.industries-support {
  align-items: center;
  background: linear-gradient(90deg, #2A4DFB 0%, #7A5FF8 100%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 13px;
  box-shadow: 3px 6px 14px -2px #2A4DFB29;
  display: flex;
  justify-content: space-between;
  margin: 39px auto 0;
  max-width: 1180px;
  min-height: 135px;
  overflow: hidden;
  padding: 18px 24px;
  position: relative;
}

.industries-support::before {
  background: linear-gradient(115deg, transparent 44%, rgb(255 255 255 / 7%) 45%, transparent 46%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.industries-support__copy {
  position: relative;
  z-index: 1;
}

.industries-support__copy p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.industries-support__copy a {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 3px 7px 22px -6px #2A4DFB24;
  color: #2A4DFB;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  margin-top: 12px;
  min-height: 29px;
  padding: 7px 16px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.industries-support__copy a i,
.industries-support__copy a svg {
  color: #4258e9;
  flex-shrink: 0;
}

.industries-support__copy a:hover {
  box-shadow: 0 9px 22px rgb(27 25 107 / 30%);
  transform: translateY(-1px);
}

.industries-support__illustration {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.industries-support__illustration img {
  display: block;
  height: auto;
  max-height: 120px;
  width: auto;
}

.industries-served__project a:focus-visible,
.industries-support__copy a:focus-visible {
  outline: 2px solid #cbd2ff;
  outline-offset: 4px;
}

.faq-section {
  background-color: #f7fafc;
  padding: 76px 0 80px;
  background: #f7fafc;
}

.faq-section__inner {
  display: grid;
  gap: clamp(52px, 6vw, 88px);
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.faq-section__intro {
  min-width: 0;
}

.faq-section h2 {
  color: #171717;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 12px 0 0;
  font-size: 24px;
}

.faq-section__description {
  color: #4D4D4D;
  font-size: 14px;
  line-height: 1.65;
  margin: 10px 0  30px 0;
  max-width: 420px;
}

.faq-section__cta,
.faq-section__intro > a {
  align-self: flex-start;
  flex: 0 0 auto;
  width: auto;
}

.faq-section__cta:focus-visible,
.faq-item__summary:focus-visible,
.faq-section__intro > a:focus-visible {
  outline: 3px solid rgb(42 77 251 / 30%);
  outline-offset: 3px;
}

.faq-item__summary:focus-visible {
  outline-offset: -3px;
}

.faq-section__image {
  aspect-ratio: 1.58 / 1;
  border-radius: 5px;
  display: block;
  margin-top: 40px;
  max-width: 450px;
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}

.faq-section--desktop-media .faq-section__image {
  display: none;
}

@media (min-width: 1024px) {
  .faq-section--align .faq-section__inner {
    align-items: stretch;
    gap: clamp(36px, 4vw, 56px);
  }

  .faq-section--align .faq-section__intro {
    display: flex;
    flex-direction: column;
    height: 0;
    min-height: 100%;
    min-width: 0;
  }

  .faq-section--align .faq-section__description {
    margin-bottom: 18px;
  }

  .faq-section--align .faq-section__cta,
  .faq-section--align .faq-section__intro > a {
    align-self: flex-start;
    flex: 0 0 auto;
    margin-top: 0;
    width: auto;
  }

  .faq-section--align .faq-section__image {
    aspect-ratio: auto;
    flex: 1 1 auto;
    height: auto;
    margin-top: 20px;
    max-height: none;
    max-width: 100%;
    min-height: 140px;
    object-fit: cover;
    width: 100%;
  }

  .faq-section--align .faq-list {
    align-self: stretch;
  }

  .faq-section--contact.faq-section--align .faq-section__inner {
    align-items: start;
  }

  .faq-section--contact.faq-section--align .faq-section__intro {
    height: auto;
    min-height: 0;
  }

  .faq-section--contact.faq-section--align .faq-list {
    align-self: start;
  }

  .faq-section--contact .faq-section__image {
    aspect-ratio: 1.9 / 1;
    flex: 0 0 auto;
    min-height: 73px;
    max-width: 450px;
  }

  .faq-section--desktop-media.faq-section--align .faq-section__inner {
    align-items: stretch;
  }

  .faq-section--desktop-media.faq-section--align .faq-section__intro {
    display: flex;
    flex-direction: column;
    height: 0;
    min-height: 100%;
  }

  .faq-section--desktop-media.faq-section--align .faq-list {
    align-self: stretch;
  }

  .faq-section--desktop-media .faq-section__image {
    display: block;
  }

  .faq-section--desktop-media .faq-section__description {
    margin-bottom: 18px;
  }

  .faq-section--desktop-media .faq-section__cta,
  .faq-section--desktop-media .faq-section__intro > a {
    align-self: flex-start;
    flex: 0 0 auto;
    margin-top: 0;
    width: auto;
  }
}

.faq-section--contact {
  background: #fff;
  background-color: #fff;
}

.faq-list {
  align-self: start;
  display: grid;
  gap: 9px;
}

.faq-item {
  background: #fff;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 3px 12px rgb(24 39 75 / 3%);
  color: #171717;
  overflow: hidden;
  transition: box-shadow 180ms ease;
}

.faq-item.is-open {
  background-image: linear-gradient(#2a4dfb 0 0),
  linear-gradient(#2a4dfb 0 0),
  linear-gradient(#2a4dfb 0 0),
  linear-gradient(#2a4dfb 0 0);
  background-position: left top,
  right top,
  left bottom,
  right bottom;
  background-repeat: no-repeat;
  background-size: 3px 3px,
  3px 3px,
  3px 3px,
  3px 3px;
  box-shadow: 0 8px 22px rgb(24 39 75 / 7%);
}

.faq-item__summary {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  gap: 20px;
  justify-content: space-between;
  line-height: 1.45;
  min-height: 51px;
  padding: 14px 18px;
  text-align: left;
  width: 100%;
}

.faq-item__chevron {
  color: #242933;
  flex: 0 0 auto;
  font-size: 9px;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__answer {
  opacity: 1;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.why-choose-item.is-open {
  box-shadow: 0 20px 44px rgba(36, 36, 84, 0.1);
}

.why-choose-item.is-open .why-choose-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.why-choose-item.is-open .why-choose-item__panel {
  opacity: 1;
}

.faq-item__answer p {
  font-size: 13px;
  line-height: 1.55;
  margin: -4px 0 0;
  max-width: 650px;
  padding: 0 44px 16px 18px;
  color: #4D4D4D;
}

.testimonial-card {
  background-image: url("/assets/background/testimonial-card-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-layout {
  min-width: 0;
}

.testimonial-navigation {
  align-items: center;
  display: flex;
  gap: 12px;
}

.testimonial-prev,
.testimonial-next {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: #00003f;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  height: 32px;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 32px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: scale(1.05);
}

.testimonial-pagination {
  display: none;
}

.testimonial-prev__mobile,
.testimonial-next__mobile {
  display: none;
}

.testimonialSwiper {
  height: 580px;
  width: 100%;
}

.testimonialSwiper .swiper-slide {
  height: calc((100% - 24px) / 2);
}

.articlesInsightsSwiper {
  margin-top: 34px;
  overflow: hidden;
}

.articlesInsightsSwiper .swiper-wrapper {
  align-items: stretch;
}

.articlesInsightsSwiper .swiper-slide {
  display: flex;
  height: auto;
}

.articles-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 3px 7px 12px -1px #11182714;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
  padding: 10px;
  margin: 20px 0px;
}

.articles-card:hover {
  box-shadow: 0 10px 24px rgb(27 32 67 / 11%);
  transform: translateY(-2px);
}

.articles-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.articles-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px 11px 12px;
}

.articles-card__meta {
  align-items: center;
  color: #858792;
  display: flex;
  font-size: 7.5px;
  gap: 8px;
  justify-content: space-between;
  line-height: 1.35;
}

.articles-card__byline,
.articles-card__meta time {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  min-width: 0;
  font-size: 14px;
}

.articles-card__meta time {
  flex: 0 0 auto;
}

.articles-card__meta i {
  color: #a0a2ac;
  font-size: 7px;
}

.articles-card h3 {
  color: #171717;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.articles-card__body > p {
  color: #4D4D4D;
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.articles-card__link {
  align-items: center;
  align-self: flex-end;
  color: #2a4dfb;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 8px;
  line-height: 1.2;
  margin-top: auto;
  padding-top: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.articles-card__link:hover {
  color: #0026e3;
}

.articles-card__link svg {
  flex-shrink: 0;
}

.articles-insights__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

.articles-insights-prev {
  flex-shrink: 0;
}

.articles-insights-next {
  flex-shrink: 0;
}

.articles-insights__control {
  align-items: center;
  background: #00003f;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 7px;
  height: 32px;
  justify-content: center;
  padding: 0;
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 32px;
}

.articles-insights__control:hover:not(:disabled) {
  background: #2a4dfb;
  transform: translateY(-1px);
}

.articles-insights__control.swiper-button-disabled,
.articles-insights__control.swiper-button-lock,
.articles-insights__control:disabled {
  background: #00003f;
  color: #fff;
  cursor: pointer;
  display: inline-flex !important;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.articles-insights__more {
  color: #00003F;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline;
}

.articles-insights__more:hover {
  color: #2a4dfb;
}

.articles-insights__control:focus-visible,
.articles-insights__more:focus-visible,
.articles-card__link:focus-visible {
  outline: 2px solid #2a4dfb;
  outline-offset: 3px;
}

.consultation-section,
.partnership-section {
  background-color: #f9fbfc;
  background-image: radial-gradient(circle at 5% 82%, rgb(99 102 241 / 2.5%) 0 24px, transparent 25px),
  radial-gradient(circle at 26% 98%, rgb(99 102 241 / 2%) 0 18px, transparent 19px),
  linear-gradient(125deg, transparent 48%, rgb(84 105 255 / 2.2%) 49%, transparent 50%);
  background-size: auto, auto, 180px 140px;
}

.consultation-section {
  padding: 54px 0 42px;
}

.consultation-copy h2 {
  color: #fff;
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.06;
}

.consultation-copy p {
  color: #EEE8FB;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 14px;
  max-width: 400px;
}

.consultation-cta {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 3px 7px 22px -6px #2A4DFB24;
  color: #171717;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  margin-top: 22px;
  min-height: 34px;
  padding: 8px 16px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.consultation-cta:hover {
  box-shadow: 0 9px 22px rgb(0 0 0 / 24%);
  transform: translateY(-2px);
}

.consultation-cta:focus-visible {
  outline: 3px solid #a9c4ff;
  outline-offset: 4px;
}

.consultation-secondary-link {
  margin-top: 22px;
}

.consultation-people {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: end;
  width: 500px;
  z-index: 1;
}

.consultation-people__column {
  display: grid;
  gap: 12px;
}

.consultation-people__column--left {
  transform: translateY(20px);
}

.consultation-people__column--right {
  transform: translateY(26px);
}

.partnership-section {
  overflow: hidden;
  padding: 20px 0 72px;
  position: relative;
}

.partnership-inner {
  position: relative;
  z-index: 1;
}

.partnership-marquee {
  margin-inline: auto;
  max-width: var(--site-container-width);
  overflow: hidden;
  width: 100%;
}

.partnership-marquee:focus-visible {
  outline: 2px solid #2a4dfb;
  outline-offset: -3px;
}

.partnership-marquee__track {
  animation: partnership-marquee 28s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.partnership-marquee__group {
  --partnership-gap: clamp(10px, 1.5vw, 16px);
  align-items: stretch;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  gap: var(--partnership-gap);
  padding-inline: calc(var(--partnership-gap) / 2);
  width: max-content;
}

.partnership-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #EFF1F6;
  border-radius: 3px;
  box-shadow: 3px 6px 14px -5px #00003F0D;
  display: flex;
  height: 94px;
  justify-content: center;
  padding: 14px 28px;
  flex: 0 0 auto;
  min-width: 180px;
  width: clamp(160px, 18vw, 220px);
}

.partnership-tile img {
  display: block;
  max-height: 38px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.partnership-marquee:hover .partnership-marquee__track,
.partnership-marquee:focus .partnership-marquee__track,
.partnership-marquee:focus-within .partnership-marquee__track {
  animation-play-state: paused;
}

.consultation-card {
  align-items: center;
  border-radius: 40px;
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  padding: 90px 50px;
}

.consultation-person {
  border-radius: 12px;
  height: 140px;
  margin: 0;
  overflow: hidden;
}

.consultation-person img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.footer-moving-line {
  animation: footer-line-move 2.5s linear infinite;
  background: linear-gradient(90deg, #2a4dfb, #5256fa, #111, #2a4dfb);
  background-size: 300% 100%;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 9999;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: -150%;
  border-radius: inherit;
  background: conic-gradient(
  from 0deg,
  #2E69FB,
  #4D8BFF,
  #D178FE,
  #A855F7,
  #2E69FB
  );
  animation: rotateBorder 6s linear infinite;
  z-index: -2;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(24px - 1px);
  background: #00003F;
  z-index: -1;
}

.site-topbar__text {
  display: inline;
  line-height: 1.35;
  overflow: visible;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 640px) {
  .site-topbar__text {
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: unset;
    white-space: nowrap;
  }
}

.site-topbar__dismiss {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 28px;
  min-width: 28px;
}

@media (min-width: 640px) {
  .site-topbar__dismiss {
    min-height: 30px;
    min-width: 30px;
  }
}

/* ===== SITE HEADER NAV ACTIVE START ===== */
.site-header__nav-link.is-active {
  color: #8EB6FF;
  font-weight: 600;
}

.mobile-nav__link.is-active,
.mobile-nav__accordion.is-active {
  color: #8EB6FF;
}

.mobile-nav__sublink.is-active {
  color: #8EB6FF;
  font-weight: 600;
}

.mobile-nav__sublink:hover,
.mobile-nav__link:hover,
.mobile-nav__accordion:hover {
  color: #8EB6FF;
}
/* ===== SITE HEADER NAV ACTIVE END ===== */

/* ===== THE SUAVE STAR PEARL START ===== */
[data-the-suave-emblem] {
  --the-suave-emblem-size: min(100%, 720px);
  --tsp-star-mask: none;
  --tsp-pearl-mask: none;
  display: block;
  width: var(--the-suave-emblem-size);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  contain: layout paint;
  isolation: isolate;
  line-height: 0;
  background: transparent;
}

[data-the-suave-emblem] .the-suave-star-pearl__stage {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

[data-the-suave-emblem] .the-suave-star-pearl__star,
[data-the-suave-emblem] .the-suave-star-pearl__star-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
}

[data-the-suave-emblem] .the-suave-star-pearl__star {
  z-index: 1;
  filter: drop-shadow(0 0 1.4rem rgba(221, 229, 246, 0.22));
}

[data-the-suave-emblem] .the-suave-star-pearl__star img,
[data-the-suave-emblem] .the-suave-star-pearl__pearl img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

[data-the-suave-emblem] .the-suave-star-pearl__star-sweep {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      transparent 29%,
      rgba(255, 255, 255, 0.08) 39%,
      rgba(255, 255, 255, 0.94) 49%,
      rgba(213, 226, 255, 0.22) 57%,
      transparent 68%
    );
  background-size: 260% 100%;
  -webkit-mask: var(--tsp-star-mask) center / contain no-repeat;
  mask: var(--tsp-star-mask) center / contain no-repeat;
  mix-blend-mode: screen;
}

[data-the-suave-emblem] .the-suave-star-pearl__glint {
  position: absolute;
  z-index: 5;
  width: 7.5%;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  transform-origin: center;
  pointer-events: none;
  filter: drop-shadow(0 0 0.55rem rgba(240, 246, 255, 0.92));
}

[data-the-suave-emblem] .the-suave-star-pearl__glint::before,
[data-the-suave-emblem] .the-suave-star-pearl__glint::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  background: linear-gradient(transparent, #fff 48%, #fff 52%, transparent);
}

[data-the-suave-emblem] .the-suave-star-pearl__glint::after {
  transform: rotate(90deg) scaleY(0.58);
}

[data-the-suave-emblem] .the-suave-star-pearl__glint--1 { top: 7%; left: 50%; }
[data-the-suave-emblem] .the-suave-star-pearl__glint--2 { top: 35%; left: 91%; }
[data-the-suave-emblem] .the-suave-star-pearl__glint--3 { top: 88%; left: 74%; }
[data-the-suave-emblem] .the-suave-star-pearl__glint--4 { top: 88%; left: 26%; }
[data-the-suave-emblem] .the-suave-star-pearl__glint--5 { top: 35%; left: 9%; }

[data-the-suave-emblem] .the-suave-star-pearl__pearl {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 36.96%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  transform-origin: center;
  filter: drop-shadow(0 0.6rem 1rem rgba(8, 12, 23, 0.38));
}

[data-the-suave-emblem] .the-suave-star-pearl__pearl-highlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      transparent 22%,
      rgba(255, 255, 255, 0.08) 36%,
      rgba(255, 255, 255, 0.94) 48%,
      rgba(224, 233, 255, 0.18) 58%,
      transparent 72%
    );
  background-size: 250% 100%;
  -webkit-mask: var(--tsp-pearl-mask) center / contain no-repeat;
  mask: var(--tsp-pearl-mask) center / contain no-repeat;
  mix-blend-mode: screen;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__star-sweep {
  animation: tsp-star-sweep 5.8s ease-in-out infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__pearl {
  animation: tsp-pearl-breathe 3.6s ease-in-out infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__pearl-highlight {
  animation: tsp-pearl-highlight 4.4s ease-in-out infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__glint--1 {
  animation: tsp-glint 2.4s ease-in-out 0.1s infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__glint--2 {
  animation: tsp-glint 2.8s ease-in-out 0.7s infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__glint--3 {
  animation: tsp-glint 3.1s ease-in-out 1.2s infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__glint--4 {
  animation: tsp-glint 3.5s ease-in-out 1.8s infinite;
}

[data-the-suave-emblem][data-tsp-ready]
  .the-suave-star-pearl__glint--5 {
  animation: tsp-glint 3.8s ease-in-out 2.3s infinite;
}

[data-the-suave-emblem][data-tsp-paused]
  .the-suave-star-pearl__star-sweep,
[data-the-suave-emblem][data-tsp-paused]
  .the-suave-star-pearl__pearl,
[data-the-suave-emblem][data-tsp-paused]
  .the-suave-star-pearl__pearl-highlight,
[data-the-suave-emblem][data-tsp-paused]
  .the-suave-star-pearl__glint {
  animation-play-state: paused !important;
}

@keyframes tsp-star-sweep {
  0%, 10% {
    opacity: 0;
    background-position: 165% 0;
  }
  22% {
    opacity: 0.88;
  }
  58% {
    opacity: 0.24;
    background-position: -65% 0;
  }
  70%, 100% {
    opacity: 0;
    background-position: -65% 0;
  }
}

@keyframes tsp-pearl-breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter:
      brightness(0.94)
      drop-shadow(0 0.6rem 1rem rgba(8, 12, 23, 0.38));
  }
  48% {
    transform: translate(-50%, -50%) scale(1.03);
    filter:
      brightness(1.12)
      drop-shadow(0 0.7rem 1.25rem rgba(238, 244, 255, 0.38));
  }
}

@keyframes tsp-pearl-highlight {
  0%, 12% {
    opacity: 0;
    background-position: 160% 0;
  }
  32% {
    opacity: 0.72;
  }
  62% {
    opacity: 0.18;
    background-position: -60% 0;
  }
  76%, 100% {
    opacity: 0;
    background-position: -60% 0;
  }
}

@keyframes tsp-glint {
  0%, 62%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
  }
  76% {
    opacity: 0.98;
    transform: translate(-50%, -50%) scale(1) rotate(18deg);
  }
  88% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(0.62) rotate(32deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-the-suave-emblem] .the-suave-star-pearl__star-sweep,
  [data-the-suave-emblem] .the-suave-star-pearl__pearl,
  [data-the-suave-emblem] .the-suave-star-pearl__pearl-highlight,
  [data-the-suave-emblem] .the-suave-star-pearl__glint {
    animation: none !important;
  }

  [data-the-suave-emblem] .the-suave-star-pearl__star-sweep,
  [data-the-suave-emblem] .the-suave-star-pearl__pearl-highlight,
  [data-the-suave-emblem] .the-suave-star-pearl__glint {
    opacity: 0 !important;
  }

  [data-the-suave-emblem] .the-suave-star-pearl__pearl {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0.6rem 1rem rgba(8, 12, 23, 0.38));
  }
}
/* ===== THE SUAVE STAR PEARL END ===== */

/* ===== SITE HEADER LOGO EMBLEM START ===== */
.site-header > .site-container {
  position: relative;
  z-index: 70; /* above .mobile-nav so star + open/close stay clickable */
}

.site-header__logo-emblem[data-the-suave-emblem] {
  --the-suave-emblem-size: 3rem; /* ~56px */
  flex-shrink: 0;
  display: block;
}

@media (min-width: 640px) {
  .site-header__logo-emblem[data-the-suave-emblem] {
    --the-suave-emblem-size: 3rem; /* ~72px */
  }
}

.site-header__logo-emblem[data-the-suave-emblem] .the-suave-star-pearl__star {
  filter: drop-shadow(0 0 0.35rem rgba(221, 229, 246, 0.35));
}
/* ===== SITE HEADER LOGO EMBLEM END ===== */

body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav {
  inset: 0;
  position: fixed;
  z-index: 60;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__backdrop {
  background: rgb(0 0 32 / 55%);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.28s ease;
}

.mobile-nav__panel {
  background: linear-gradient(180deg, #05053a 0%, #00003f 55%, #02022a 100%);
  bottom: 0;
  box-shadow: -16px 0 40px rgb(0 0 0 / 28%);
  display: flex;
  flex-direction: column;
  max-width: min(100%, 400px);
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  width: min(100vw - 48px, 400px);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__scroll {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5.5rem var(--site-gutter) 1.75rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav__link,
.mobile-nav__accordion,
.mobile-nav__sublink {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: space-between;
  min-height: var(--touch-min);
  padding: 0.65rem 0.25rem;
  text-align: left;
  width: 100%;
}

.mobile-nav__accordion {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mobile-nav__accordion i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.mobile-nav__accordion.is-open i {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  border-left: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  flex-direction: column;
  margin: 0 0 0.35rem 0.5rem;
  padding-left: 0.85rem;
}

.mobile-nav__submenu[hidden] {
  display: none;
}

.mobile-nav__sublink {
  color: #b1b9df;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 42px;
}

.mobile-nav__footer {
  border-top: 1px solid rgb(255 255 255 / 10%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.25rem;
}

.mobile-nav__phone {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  min-height: var(--touch-min);
}

.mobile-nav__cta {
  align-items: center;
  background: linear-gradient(90deg, var(--color-brand-start), var(--color-brand-deep));
  border-radius: var(--radius-pill);
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.75rem 1.25rem;
  width: fit-content;
}

.site-footer__social-link {
  color: #fff;
  align-items: center;
  display: inline-flex;
  font-size: 1.125rem;
  justify-content: center;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  transition: opacity 0.2s ease;
}

.site-footer__column a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  box-sizing: border-box;
  color: #fff;
  overflow-x: clip;
  position: relative;
  width: 100%;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer__cta {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.5rem;
}

.site-footer__social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-footer__social-link:hover {
  opacity: 0.8;
}

.site-footer__main {
  display: grid;
  gap: 2rem;
  padding-block: 1.25rem;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__contact {
  color: #b1b9df;
  display: grid;
  font-size: 0.8125rem;
  font-weight: 500;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact a,
.site-footer__contact span {
  color: inherit;
  display: inline-block;
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding-block: 0;
}

.site-footer__contact a {
  min-height: 0;
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__columns {
  display: grid;
  gap: 1.75rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__legal {
  align-items: flex-start;
  color: #b1b9df;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.75rem;
  padding-block: 1rem;
}

.site-footer__legal p {
  margin: 0;
}

.serviceCapabilitiesSwiper .swiper-slide {
  height: auto;
}

.serviceCapabilitiesSwiper .web-service-card {
  border: 1px solid #e6e9ef;
  box-shadow: 0 10px 28px rgb(42 48 76 / 6%);
  height: 100%;
  min-height: 240px;
}

.serviceCapabilitiesSwiper .swiper-slide:nth-child(2) .web-service-card {
  --web-service-accent: #b95824;
}

.serviceCapabilitiesSwiper .swiper-slide:nth-child(3) .web-service-card {
  --web-service-accent: #157d91;
}

.serviceCapabilitiesSwiper .swiper-slide:nth-child(4) .web-service-card {
  --web-service-accent: #218d88;
}

.serviceCapabilitiesSwiper .swiper-slide:nth-child(5) .web-service-card {
  --web-service-accent: #b53e3e;
}

.serviceCapabilitiesSwiper .swiper-slide:nth-child(6) .web-service-card {
  --web-service-accent: #ae681c;
}

.core-values-section {
  position: relative;
  z-index: 1;
}

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

.core-values__grid--2 .core-value-card__image {
  aspect-ratio: 2 / 1;
}

.core-values__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.core-values__slider {
  margin-top: 54px;
}

.core-values__grid.coreValuesSwiper {
  margin-top: 0;
  overflow: visible;
}

.coreValuesSwiper > .swiper-wrapper {
  display: contents;
}

.coreValuesSwiper .swiper-slide {
  height: auto;
  min-width: 0;
}

.core-values__controls {
  align-items: center;
  display: none;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.core-values-prev,
.core-values-next {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: #00003f;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  height: 32px;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 32px;
}

.core-values-prev:hover,
.core-values-next:hover {
  transform: scale(1.05);
}

.core-values-prev.swiper-button-disabled,
.core-values-next.swiper-button-disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.core-values-pagination {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}

.core-values-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #fff;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  width: 8px;
}

.core-values-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.service-body--webdev .service-body__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  min-height: inherit;
  padding-inline: var(--site-gutter, 20px);
  width: 100%;
}

.service-body--webdev .service-body__content {
  box-sizing: border-box;
  max-width: 640px;
  padding-block: 40px;
  padding-inline: clamp(16px, 3vw, 48px);
  width: min(100%, 50%);
}

.portfolio-hero-showcase .servicePortfolioSwiper {
  cursor: grab;
  touch-action: pan-y;
  width: 100%;
  user-select: none;
}

.portfolio-hero-showcase .servicePortfolioSwiper:active {
  cursor: grabbing;
}

.portfolio-hero-showcase .servicePortfolioSwiper .swiper-wrapper {
  align-items: stretch;
}

.portfolio-hero-showcase.service-portfolio-showcase .servicePortfolioSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.portfolio-hero-showcase .servicePortfolioSwiper .swiper-slide {
  display: flex;
  min-width: 0;
}

.portfolio-hero-showcase .portfolio-showcase__image {
  aspect-ratio: 1.23 / 1;
  box-shadow: 0 12px 30px rgb(36 36 84 / 8%);
}

.portfolio-hero-showcase .portfolio-showcase__image img {
  -webkit-user-drag: none;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}

.portfolio-hero-rail {
  position: relative;
}

.portfolio-hero-pagination {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.portfolio-hero-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1.5px solid #00003f;
  border-radius: 999px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 8px;
}

.portfolio-hero-pagination .swiper-pagination-bullet-active {
  background: #00003f;
  border-color: #00003f;
}

.consultation-card--solo .consultation-copy h2,
.consultation-card--solo .consultation-copy p {
  color: #171717;
}

.consultation-card--hide-bg-below-desktop {
  background-image: var(--consultation-bg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 1279px) {
  .consultation-card--hide-bg-below-desktop {
    background-image: none;
    background-color: #eef1f8;
  }

  .consultation-card--hide-bg-below-desktop .consultation-copy,
  .consultation-card--hide-bg-below-desktop .consultation-copy p {
    max-width: none;
  }

  .consultation-card--hide-bg-below-desktop .consultation-copy {
    width: 100%;
  }

  .consultation-card--hide-bg-below-desktop .consultation-copy h2,
  .consultation-card--hide-bg-below-desktop .consultation-copy p {
    color: #171717;
  }

  .consultation-card--hide-bg-below-desktop .consultation-copy > p:first-child {
    color: #4d4d4d;
  }

  .consultation-card--hide-bg-below-desktop .consultation-secondary-link {
    border-color: rgb(23 23 23 / 70%);
    color: #171717;
  }

  .consultation-card--hide-bg-below-desktop .consultation-cta {
    background: linear-gradient(90deg, #2a4dfb, #0026e3);
    color: #fff;
  }
}

.industry-card > * {
  position: relative;
  z-index: 2;
}

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

.digital-services-marquee__icon {
  display: inline-flex;
  align-items: center;
  height: 52px;
  flex-shrink: 0;
}

.digital-services-marquee__icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.about-tech-marquee {
  width: 100%;
}

.about-tech-marquee:focus-visible {
  outline: 2px solid #2A4DFB;
  outline-offset: 4px;
}

.about-tech-marquee__track {
  align-items: stretch;
  animation: aboutTechMarquee 40s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.about-tech-marquee:hover .about-tech-marquee__track,
.about-tech-marquee:focus .about-tech-marquee__track,
.about-tech-marquee:focus-within .about-tech-marquee__track {
  animation-play-state: paused;
}

.about-tech-marquee__group {
  --about-tech-gap: 12px;
  align-items: stretch;
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  gap: var(--about-tech-gap);
  padding-block: 8px;
  padding-inline: calc(var(--about-tech-gap) / 2);
  width: max-content;
}

.about-tech-card {
  align-items: center;
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 5px;
  box-shadow: 3px 6px 14px -5px #00003F0D;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-height: 64px;
  padding: 10px 12px;
  width: 100px;
}

.about-tech-card__icon {
  display: block;
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.about-tech-card__label {
  color: #171717;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  .about-tech-marquee__group {
    --about-tech-gap: 16px;
    padding-block: 10px;
  }

  .about-tech-card {
    gap: 10px;
    min-height: 70px;
    padding: 12px 16px;
    width: 120px;
  }

  .about-tech-card__icon {
    height: 24px;
    width: 24px;
  }

  .about-tech-card__label {
    font-size: 12px;
  }
}

.blog-grid .articles-card {
  height: 100%;
  margin: 0;
}

.blog-grid .articles-card__footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.blog-grid .articles-card__footer .articles-card__category {
  color: #2a4dfb;
  flex: 1 1 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 55%;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-grid .articles-card__footer .articles-card__category:hover {
  color: #0026e3;
}

.blog-grid .articles-card__footer .articles-card__link {
  align-self: center;
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 0;
}

.blogSidebarSwiper .swiper-slide {
  height: auto;
}

.blog-sidebar-card .articles-card__image {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f5fb;
}

.blog-sidebar-card .articles-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.blog-sidebar-card .articles-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-sidebar-slider__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #c5c9d8;
  opacity: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.blog-sidebar-slider__pagination .swiper-pagination-bullet-active {
  background: #2a4dfb;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .single-blog-nav__btn,
  .blog-widget__list a,
  .blog-top-posts__body a,
  .blog-search button,
  .blog-sidebar-slider__pagination .swiper-pagination-bullet {
    transition: none;
  }
}

.service-banner-logos > .swiper-wrapper {
  display: contents;
}

.service-banner-logos .swiper-slide {
  height: auto;
  min-width: 0;
  overflow: visible;
}

.service-banner-logos.swiper-initialized {
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}

.service-banner-logos.swiper-initialized > .swiper-wrapper {
  display: flex;
}

.service-banner-logos.swiper-initialized .swiper-slide {
  height: auto;
  overflow: hidden;
}

.service-banner-logos.swiper-initialized .service-banner-logo {
  width: 100%;
}

@keyframes service-banner-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@font-face {
  font-display: swap;
  font-family: "PP Mori";
  src: url("/fonts/PPMori-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: "PP Mori";
  src: url("/fonts/PPMori-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-display: swap;
  font-family: "PP Mori";
  src: url("/fonts/PPMori-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-display: swap;
  font-family: "PP Mori";
  src: url("/fonts/PPMori-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-display: swap;
  font-family: "PP Mori";
  src: url("/fonts/PPMori-Extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}

@keyframes digital-services-marquee {
  from {
  transform: translateX(0);
  }

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

@keyframes partnership-marquee {
  from {
  transform: translateX(0);
  }

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

@keyframes footer-line-move {
  from {
  background-position: 0 0;
  }

  to {
  background-position: 100% 0;
  }
}

@keyframes rotateBorder {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}

@keyframes industry-orbit-float {
  0%,
  100% {
  transform: translateY(0);
  }

  50% {
  transform: translateY(-14px);
  }
}

@keyframes industry-orbit-float-alt {
  0%,
  100% {
  transform: translateY(0);
  }

  50% {
  transform: translateY(14px);
  }
}

@keyframes aboutLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes aboutTechLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@keyframes aboutTechMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

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

@media (min-width: 768px) {
  :root {
    --site-gutter: 24px;
  }

  .offerings-pagination,
  .digital-marketing-pagination,
  .articles-insights-pagination {
    display: none !important;
  }

  .site-footer__cta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding-block: 1rem;
  }

  .site-footer__social {
    gap: 0.25rem 2.5rem;
  }

  .site-footer__main {
    gap: 2.5rem;
    padding-block: 2.5rem;
  }

  .site-footer__contact {
    font-size: 0.8125rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .site-footer__columns {
    gap: 2rem 1.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer__legal {
    align-items: center;
    flex-direction: row;
    font-size: 0.8125rem;
    justify-content: space-between;
    padding-block: 1.25rem;
  }

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

@media (min-width: 1024px) {
  :root {
    --site-gutter: 32px;
  }

  .testimonial-layout {
    display: grid;
    gap: 0 60px;
    grid-template-columns: 420px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .testimonial-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .testimonialSwiper {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .testimonial-navigation {
    grid-column: 1;
    grid-row: 2;
    margin-top: 80px;
  }

  .site-footer__main {
    align-items: start;
    gap: 3rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  }

  .site-footer__contact a {
    min-height: 0;
    padding-block: 0;
  }

  .site-footer__social-link {
    min-height: 0;
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .coreValuesSwiper.swiper-initialized {
    display: block;
    overflow: hidden;
  }

  .coreValuesSwiper.swiper-initialized > .swiper-wrapper {
    display: flex;
    row-gap: 0;
  }

  .coreValuesSwiper.swiper-initialized .swiper-slide {
    height: auto;
  }

  .core-values__controls {
    display: grid;
    gap: 16px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    margin-top: 28px;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .u-btn-cta {
    min-height: var(--touch-min);
    padding-block: 0.75rem;
  }

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

  .about-stat {
    padding-block: 12px;
  }

  .about-stat:nth-child(3) {
    border-left: 0;
  }

  .about-stat:nth-child(n + 3) {
    border-top: 1px solid var(--color-border-soft);
  }

  .smart-together-cta__inner {
    gap: 18px 22px;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding-block: 28px;
  }

  .smart-together-cta__eyebrow,
  .smart-together-cta__copy,
  .smart-together-cta__actions {
    grid-column: 1;
  }

  .smart-together-cta__copy {
    max-width: min(100%, 420px);
  }

  .smart-together-cta__copy h2 {
    font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  }

  .smart-together-cta__actions {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .smart-together-cta__phone {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .web-services {
    padding-block: 64px 50px;
  }

  .web-services__header {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

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

  .core-values-section {
    padding: 56px 0 52px;
  }

  .core-values__header {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .core-values__heading {
    max-width: 760px;
  }

  .core-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 44px;
    row-gap: 38px;
  }

  .core-values__slider {
    margin-top: 44px;
  }

  .core-values__grid.coreValuesSwiper {
    margin-top: 0;
  }

  .core-value-card__content {
    min-height: 120px;
  }

  .core-value-card p {
    max-width: 290px;
  }

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

  .industry-card {
    min-height: 0;
    padding: clamp(1.1rem, 2.5vw, 1.5rem);
  }

  .testimonial-layout {
    display: flex;
    flex-direction: column;
  }

  .testimonial-intro {
    order: 1;
  }

  .testimonialSwiper {
    height: 340px;
    margin-top: 48px;
    order: 2;
  }

  .testimonial-navigation {
    display: grid;
    gap: 16px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    margin-top: 40px;
    order: 3;
    width: 100%;
  }

  .testimonial-prev__mobile,
  .testimonial-next__mobile {
    display: inline-block;
  }

  .testimonial-prev__desktop,
  .testimonial-next__desktop {
    display: none;
  }

  .testimonial-pagination {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    min-width: 0;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    width: 8px;
  }

  .testimonial-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }

  .testimonialSwiper .swiper-slide {
    height: 100%;
  }

  .articles-insights {
    padding-block: 50px 44px;
  }

  .articlesInsightsSwiper {
    margin-top: 30px;
  }

  .articles-card h3 {
    font-size: clamp(0.9375rem, 2vw, 1rem);
  }

  .articles-card__body > p {
    font-size: clamp(0.8125rem, 1.8vw, 0.875rem);
  }

  .consultation-card {
    padding: 48px 36px;
  }

  .consultation-people {
    flex-shrink: 0;
    width: min(100%, 290px);
  }

  .consultation-person {
    height: 114px;
  }

  .offerings-control,
  .digital-marketing-control,
  .portfolio-showcase__control,
  .articles-insights__control {
    height: var(--control-size-touch);
    width: var(--control-size-touch);
  }

  .about-stat + .about-stat::before {
    background: var(--color-border-soft);
    bottom: 12px;
    height: auto;
    left: 0;
    top: 12px;
    width: 1px;
  }

  .about-stat:nth-child(even) + .about-stat::before {
    display: none;
  }

  .articles-card__link {
    font-size: var(--text-sm);
  }

  .digital-services-marquee__label--filled,
  .digital-services-marquee__label--outlined {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
  }

  .floating-chat {
    bottom: 16px;
    height: 56px;
    right: 16px;
    width: 56px;
  }

  .web-service-card {
    min-height: 0;
  }

  .core-value-card p,
  .industry-card p,
  .industry-card h3 {
    max-width: none;
  }

  .faq-section__cta,
  .faq-section__intro > a {
    min-height: var(--touch-min);
  }

  .site-header {
    padding-block: 0.65rem;
  }

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

  .offerings-control,
  .digital-marketing-control,
  .portfolio-showcase__control,
  .articles-insights__control,
  .testimonial-prev,
  .testimonial-next {
    height: var(--control-size-touch);
    width: var(--control-size-touch);
  }

  .consultation-cta,
  .industries-support__copy a {
    min-height: var(--touch-min);
    padding-block: 0.7rem;
  }

  .site-footer__main {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .u-btn-cta,
  a.rounded-full.bg-gradient-to-r,
  .consultation-cta,
  .industries-support__copy a {
    font-size: 13px !important;
  }

  .about-stats {
    display: block;
    padding: 8px 18px;
  }

  .about-stat {
    padding: 16px 4px;
  }

  .about-stat + .about-stat {
    border-left: 0;
  }

  .about-stat__description {
    max-width: none;
    font-size: 12px !important;
  }

  .about-stat__icon {
    flex-shrink: 0;
    width: 54px;
  }

  .about-stat__icon-image {
    display: block;
    height: auto;
    width: 54px;
  }

  .offerings-pagination,
  .digital-marketing-pagination,
  .articles-insights-pagination {
    display: flex !important;
  }

  .articles-insights__footer {
    align-items: center;
    column-gap: 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
    row-gap: 1rem;
  }

  .articles-insights-prev {
    grid-column: 1;
    grid-row: 1;
  }

  .articles-insights-pagination {
    flex: none;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }

  .articles-insights-next {
    grid-column: 3;
    grid-row: 1;
  }

  .articles-insights__footer > .articles-insights__more {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .smart-together-cta__inner {
    gap: 18px 22px;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding-block: 28px;
  }

  .smart-together-cta__eyebrow,
  .smart-together-cta__copy,
  .smart-together-cta__actions {
    grid-column: 1;
  }

  .smart-together-cta__copy {
    max-width: 280px;
  }

  .smart-together-cta__copy h2 {
    font-size: 20px;
  }

  .smart-together-cta__copy p {
    font-size: 11px;
  }

  .smart-together-cta__actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .smart-together-cta__phone {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .web-services {
    padding: 52px 0 42px;
  }

  .web-services__header {
    gap: 5px;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }

  .web-services__intro h2 {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
  }

  .web-services__intro p {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .web-services__grid {
    grid-template-columns: 1fr;
  }

  .web-service-card {
    min-height: 0;
    padding: 24px 20px 26px;
  }

  .web-service-card h3 {
    font-size: 13px !important;
  }

  .web-service-card p {
    font-size: 13px !important;
    line-height: 1.5;
  }

  .web-services__footer {
    margin-top: 28px;
  }

  .core-values-section {
    padding: 46px 0 44px;
  }

  .core-values__heading h2 {
    font-size: 20px;
  }

  .core-values__heading > p {
    font-size: 13px !important;
  }

  .core-values__grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .core-values__slider {
    margin-top: 38px;
  }

  .core-values__controls {
    display: none;
  }

  .core-value-card {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }

  .core-value-card__content {
    min-height: 112px;
    border-left: none !important;
  }

  .core-value-card p {
    max-width: 340px;
    font-size: 13px;
  }

  .digital-services-marquee__group {
    --digital-services-marquee-gap: 20px;
  }

  .digital-services-marquee__track {
    animation-duration: 24s;
  }

  .portfolio-showcase__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-5);
    margin-top: 28px;
  }

  .industries-served {
    padding-block: 50px;
  }

  .industries-served__grid {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .industry-card {
    min-height: 0;
    padding: 1.25rem;
    border-radius: 16px;
  }

  .industry-card h3 {
    font-size: 0.9375rem;
  }

  .industry-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 420px;
  }

  .industries-support {
    align-items: flex-start;
    min-height: 150px;
    padding: 22px 20px;
  }

  .industries-support__copy {
    max-width: calc(100% - 64px);
  }

  .industries-support__copy p {
    font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
  }

  .industries-support__illustration {
    margin: 0;
    position: absolute;
    right: 10px;
    top: 60px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .faq-section {
    padding: 10px 0 40px;
  }

  .faq-section h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .faq-section__inner {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .faq-section__image {
    margin-top: 34px;
    max-width: none;
  }

  .faq-item__summary {
    font-size: var(--text-sm);
    min-height: var(--touch-min);
    padding-inline: 16px;
    gap: var(--space-3);
  }

  .faq-item__answer p {
    padding: 0 38px 16px 16px;
    font-size: var(--text-sm);
    max-width: none;
  }

  .testimonial-section {
    padding-block: 16px 32px !important;
  }

  .testimonial-intro {
    margin-bottom: 30px;
  }

  .testimonialSwiper {
    height: 320px;
    margin-top: 0;
    order: 1;
  }

  .testimonial-card {
    border-color: rgb(108 61 160 / 38%) !important;
    border-radius: 8px;
    padding: 22px !important;
  }

  .testimonial-card h3 {
    font-size: 14px;
    line-height: 19px;
  }

  .testimonial-navigation {
    display: grid;
    gap: 16px;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    margin-top: 26px;
    order: 2;
    width: 100%;
  }

  .testimonial-prev,
  .testimonial-next {
    height: 32px;
    width: 32px;
  }

  .testimonial-prev__mobile,
  .testimonial-next__mobile {
    display: inline-block;
  }

  .testimonial-prev__desktop,
  .testimonial-next__desktop {
    display: none;
  }

  .testimonial-pagination {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    min-width: 0;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    width: 8px;
  }

  .testimonial-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }

  .articles-insights {
    padding-block: 44px 38px;
  }

  .articlesInsightsSwiper {
    margin-top: 0px;
  }

  .articles-card__body {
    padding: 12px 13px 14px;
  }

  .articles-card__meta {
    font-size: 0.75rem;
  }

  .articles-card h3 {
    font-size: 0.9375rem;
  }

  .articles-card__body > p {
    font-size: 0.8125rem;
  }

  .articles-card__link {
    font-size: 0.875rem;
  }

  .articles-insights__footer {
    margin-top: 24px;
  }

  .consultation-section {
    padding: 32px 0 30px;
  }

  .consultation-card {
    flex-direction: column;
    gap: 28px;
    height: auto;
    padding: 30px 20px 40px 20px;
    border-radius: 20px;
  }

  .consultation-copy {
    max-width: none;
    width: 100%;
  }

  .consultation-copy h2 {
    font-size: 26px;
  }

  .site-footer__contact a {
    min-height: 1rem !important;
    padding: 0px 0px !important;
  }

  .site-footer__legal {
    gap: 1px !important;
  }

  .core-value-card__content::before {
    display: none !important;
  }

  .core-value-card__image img {
    display: block;
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .core-value-card__image {
    aspect-ratio: auto;
  }

  .core-value-card h3 {
    font-size: 14px;
  }

  .consultation-copy p {
    font-size: 0.875rem;
    max-width: none;
  }

  .consultation-people {
    justify-self: center;
    width: 100%;
  }

  .consultation-people__column--left,
  .consultation-people__column--right {
    transform: translateY(14px);
  }

  .consultation-person {
    height: clamp(102px, 32vw, 124px);
  }

  .partnership-section {
    padding: 18px 0 54px;
  }

  .partnership-tile {
    height: 72px;
    padding-inline: 18px;
    min-width: 140px;
    width: 150px;
  }

  .partnership-tile img {
    max-height: 28px;
  }

  .partnership-marquee__track {
    animation-duration: 22s;
  }

  .portfolio-showcase__card {
    background: white;
    padding: 10px;
    border-radius: 10px;
  }

  .about-stat + .about-stat::before,
  .about-stat:nth-child(odd) + .about-stat::before {
    display: none;
  }

  .about-stat:nth-child(n + 3) {
    border-top: 0;
  }

  .smart-together-cta__phone img {
    max-width: 56px;
  }

  .digital-services-marquee {
    padding: 20px 0 !important;
  }

  .industry-card::after {
    border-radius: calc(16px - 1px);
  }

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

  .site-topbar__copy {
    max-width: calc(100vw - 72px);
  }

  .about-stat__value {
    font-size: 24px !important;
  }

  .floating-chat {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
  }

  .core-values__grid--3 {
    grid-template-columns: 1fr;
  }

  .portfolio-showcase__footer,
  .digital-marketing-services__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-5);
  }

  .site-footer__cta {
    align-items: flex-start;
  }

  .site-footer__social {
    gap: 1.25rem;
  }

  .site-footer__columns {
    gap: 1.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .offerings-card__image img,
  .offerings-control,
  .web-service-card::before,
  .web-service-card::after {
    transition: none;
  }

  .digital-services-marquee__track {
    animation: none;
    transform: none;
  }

  .portfolio-showcase__control,
  .portfolio-showcase__image img {
    transition: none;
  }

  .industry-card,
  .industries-served__project a,
  .industries-support__copy a {
    transition: none;
  }

  .faq-section__cta,
  .faq-item,
  .faq-item__chevron,
  .faq-item__answer {
    transition: none;
  }

  .articles-card,
  .articles-insights__control,
  .articles-insights__more {
    transition: none;
  }

  .articles-card:hover {
    transform: none;
  }

  .partnership-marquee__track {
    animation: none;
    transform: none;
  }

  .about-tech-marquee__track {
    animation: none;
  }

  .footer-moving-line {
    animation: none;
  }

  .industry-card::before {
    animation: none;
  }

  .mobile-nav__backdrop,
  .mobile-nav__panel,
  .mobile-nav__accordion i {
    transition: none;
  }

  .portfolio-hero-showcase.service-portfolio-showcase .servicePortfolioSwiper .swiper-wrapper {
    transition-timing-function: ease !important;
  }
}

@media (max-width: 479px) {
  .smart-together-cta__inner {
    grid-template-columns: 1fr;
  }

  .smart-together-cta__eyebrow,
  .smart-together-cta__copy,
  .smart-together-cta__actions,
  .smart-together-cta__phone {
    grid-column: 1;
  }

  .smart-together-cta__phone {
    grid-row: auto;
    position: absolute;
    right: 20px;
    top: 24px;
  }

  .smart-together-cta__eyebrow {
    padding-right: 58px;
  }

  .smart-together-cta__copy {
    padding-right: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .smart-together-cta__phone img {
    max-width: 64px;
    width: 100%;
  }

  .consultation-people {
    width: min(42%, 300px);
  }

  .mobile-nav__panel {
    width: min(420px, 58vw);
  }

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

@media (min-width: 1280px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  .service-body--webdev .service-body__inner {
    justify-content: flex-start;
    min-height: 0;
  }

  .service-body--webdev .service-body__content {
    max-width: 100%;
    padding-block: 0;
    padding-inline: 0;
    width: 100%;
  }
}

/* ===== ABOUT US START ===== */
.about-value-card {
  --about-value-accent: #ff0047;
}

.about-value-card--1 {
  --about-value-accent: #ff0047;
}

.about-value-card--2 {
  --about-value-accent: #289af6;
}

.about-value-card--3 {
  --about-value-accent: #00ea9d;
}

.about-value-card::before {
  background: var(--about-value-accent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.35s ease;
  width: 0;
  z-index: 1;
}

.about-value-card:hover::before {
 width: 100%;
}

.about-value-card__icon img {
 display: block;
 height: 40px;
 object-fit: contain;
 width: 40px;
}

.about-value-card__title {
 color: #171717;
 font-size: 1.125rem;
 font-weight: 600;
 line-height: 1.3;
 margin: 1rem 1rem 0.75rem 0;
}

.about-value-card__text {
 color: #4d4d4d;
 font-size: 13px;
 line-height: 1.5;
 margin: 0;
}

@media (min-width: 640px) {
 .about-value-card__icon img {
 height: 48px;
 width: 48px;
 }

 .about-value-card__title {
 font-size: 1.25rem;
 margin-bottom: 1.25rem;
 }

 .about-value-card__text {
 font-size: 14px;
 line-height: 1.5;
 }
}

@media (prefers-reduced-motion: reduce) {
 .about-value-card::before {
 transition: none;
 }
}

.about-modules-section {
 background-color: #F7F8FF;
 background-image: url('/assets/background/offerings-section-bg.png');
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}

.about-module-card {
 align-items: center;
 background: #fff;
 border: 1px solid #F6F8FF;
 border-radius: 14px;
 box-shadow: 3px 6px 14px -5px #00003F0D;
 display: flex;
 flex-direction: column;
 gap: 10px;
 justify-content: center;
 min-height: 100px;
 padding: 16px 12px 14px;
 width: 100%;
}

.about-module-card__icon {
 background: linear-gradient(180deg, #2A4DFB 0%, #7A5FF8 100%);
 -webkit-background-clip: text;
 background-clip: text;
 color: transparent;
 display: inline-flex;
 font-size: 24px;
 line-height: 1;
}

.about-module-card__label {
 color: #171717;
 font-size: 13px;
 font-weight: 500;
 line-height: 1.2;
 text-align: center;
}

@media (min-width: 768px) {
 .about-module-card {
 gap: 12px;
 min-height: 94px;
 padding: 22px 16px 18px;
 }

 .about-module-card__icon {
 font-size: 22px;
 }

 .about-module-card__label {
 font-size: 14px;
 }
}

@media (max-width: 767px) {
 .about-page main .u-btn-cta,
 .about-page main a.rounded-full.bg-gradient-to-r,
 .about-page main .consultation-cta {
 box-sizing: border-box;
 height: 34px !important;
 min-height: 34px !important;
 padding-block: 0 !important;
 }
}
/* ===== ABOUT US END ===== */


/* ===== PRODUCT START ===== */
/* ─── Product Page Design System ─── */
/* Font stack matches site layout (index.php / layout/start.php): PP Mori + Roboto Flex */

.product-site {
  scroll-padding-top: 96px;
}

.product-layout {
  --product-font: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--product-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-layout main,
.product-layout .site-main {
  background: #f7f8fc;
}

/* Shared site container: 1280px + responsive gutters, same as index.php */
.product-page .container {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--site-container-width, 1280px) + 2 * var(--site-gutter, 20px));
  margin-inline: auto;
  padding-inline: var(--site-gutter, 20px);
}

/* Product page sits under site header; social rail clears topbar */
.product-page {
  position: relative;
}

.site-main.product-layout-main > .product-page {
  grid-column: full;
}

.product-layout :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span,
  a,
  button,
  input,
  textarea,
  select,
  label,
  li,
  td,
  th,
  div,
  small,
  strong,
  em
) {
  font-family: var(--product-font);
  font-style: normal;
}

.product-layout i[class*="bi"] {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
}

.product-site header.header,
.product-site header.header a,
.product-site header.header button,
.product-site header.header li,
.product-site header.header span,
.product-site header.header p,
.product-layout footer,
.product-layout footer a,
.product-layout footer button,
.product-layout footer p,
.product-layout footer span,
.product-layout footer li,
.product-layout footer h1,
.product-layout footer h2,
.product-layout footer h3,
.product-layout footer h4,
.product-layout footer h5,
.product-layout footer h6,
.product-layout footer input {
  font-family: var(--product-font) !important;
  font-style: normal;
}

.product-site header.header {
  background: #ffffff;
}

.product-site header.header.sticky-active {
  background: #ffffff;
}

.product-page {
  /* Text theme aligned with index.php / :root tokens */
  --product-navy: #00003f;
  --product-accent: #2a4dfb;
  --product-accent-end: #7a5ff8;
  --product-accent-deep: #0026e3;
  --product-accent-light: #eef2ff;
  --product-text: #171717;
  --product-muted: #4d4d4d;
  --product-border: #e5e7eb;
  --product-bg: #f7f8fc;
  --product-dark: #0b0e14;
  --product-radius: 16px;
  --product-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --product-text-gradient: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%);
  --product-title-gradient: linear-gradient(180deg, #2f69fb 12%, #c56bff 100%);
  /* Typography — aligned with site .font-16 / .font-18 / .font-48 / .font-54 */
  --product-fs-hero: clamp(40px, 6vw, 72px);
  --product-lh-hero: 82px;
  --product-fs-section: clamp(28px, 4vw, 48px);
  --product-lh-section: 62px;
  --product-fs-eyebrow: 14px;
  --product-fs-subtitle: 18px;
  --product-lh-subtitle: 28px;
  --product-fs-body: 16px;
  --product-lh-body: 26px;
  --product-fs-body-lg: 18px;
  --product-lh-body-lg: 28px;
  --product-fs-card-title: 20px;
  --product-lh-card-title: 30px;
  --product-fs-label: 14px;
  --product-icon-bg-soft: color-mix(in srgb, var(--product-bg) 88%, var(--product-accent) 12%);
  --product-icon-bg-card: color-mix(in srgb, #ffffff 72%, var(--product-bg) 28%);
  --product-icon-bg-active: color-mix(in srgb, var(--product-bg) 82%, var(--product-accent) 18%);
  --product-icon-bg-dark: transparent;
  position: relative;
  overflow-x: hidden;
  background: var(--product-bg);
  font-size: var(--product-fs-body);
  line-height: var(--product-lh-body);
}

.product-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7%;
  width: 114%;
  height: min(58vh, 640px);
  z-index: 0;
  pointer-events: none;
  background-color: transparent;
  background-image: url("/assets/product/hero-bg-tile.svg");
  background-size: 285px 494px;
  background-repeat: repeat;
  background-position: center top;
  transform: rotate(-5deg);
  transform-origin: center top;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.68) 26%,
    rgba(0, 0, 0, 0.86) 44%,
    rgba(0, 0, 0, 0.48) 58%,
    rgba(0, 0, 0, 0.14) 70%,
    rgba(0, 0, 0, 0) 78%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.68) 26%,
    rgba(0, 0, 0, 0.86) 44%,
    rgba(0, 0, 0, 0.48) 58%,
    rgba(0, 0, 0, 0.14) 70%,
    rgba(0, 0, 0, 0) 78%
  );
}

.product-page::after {
  display: none;
}

.product-page > * {
  position: relative;
  z-index: 1;
}

/* ─── Shared ─── */
.product-eyebrow {
  display: inline-block;
  font-family: "Pragati Narrow", sans-serif;
  font-style: normal;
  font-size: var(--product-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 12px;
  background: var(--product-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-eyebrow--light {
  background: var(--product-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-section {
  padding: 80px 0;
}

.product-section,
.product-partners,
.product-productivity,
.product-cta {
  background: transparent;
}

.product-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.product-section__title {
  font-size: var(--product-fs-section);
  font-weight: 700;
  color: var(--product-text);
  line-height: var(--product-lh-section);
  margin: 0 0 16px;
}

.product-section__title--left {
  text-align: left;
}

.product-section__title--light {
  color: #fff;
}

.product-section__subtitle {
  font-size: var(--product-fs-subtitle);
  color: var(--product-muted);
  line-height: var(--product-lh-subtitle);
  margin: 0;
}

.product-section__cta {
  text-align: center;
  margin-top: 48px;
}

.product-gradient-text {
  background: var(--product-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--product-accent);
  flex-shrink: 0;
}

/* ─── Buttons (aligned with site .sitebtn) ─── */
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 11px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: var(--product-font);
  font-style: normal;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 214px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.product-btn--primary {
  background: var(--product-navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 51, 0.25);
}

.product-btn--primary:hover {
  background: #1a1a4d;
  color: #fff;
}

.product-btn--secondary {
  background: #fff;
  color: var(--product-text);
  border: 1px solid var(--product-border);
}

.product-btn--secondary:hover {
  border-color: #d1d5db;
  color: var(--product-text);
}

.product-btn--gradient {
  background: linear-gradient(90deg, #2563eb 0%, #8b5cf6 100%);
  color: #fff;
  width: 100%;
}

.product-btn--gradient:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(77, 93, 251, 0.35);
}

.product-btn--outline {
  background: #f3f4f6;
  color: var(--product-accent);
  width: 100%;
}

.product-btn--outline:hover {
  background: #e5e7eb;
  color: var(--product-accent);
}

.product-demo-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #e8e8e8 !important;
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  width: auto !important;
}

.product-demo-btn:hover {
  background-color: #dcdcdc !important;
  color: #000 !important;
}

.product-btn--lg {
  padding: 16px 36px;
  font-size: 18px;
}

/* ─── Hero ─── */
.product-hero {
  position: relative;
  padding: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
  overflow: visible;
}

.product-social {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.product-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: var(--product-fs-body);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(13, 27, 42, 0.08);
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-social a:hover {
  color: var(--product-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
}

.product-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  padding-block: 48px;
}

.product-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hero__illustration {
  position: absolute;
  top: 76px;
  left: max(-120px, calc((100vw - 1280px) / 2 - 180px));
  z-index: 2;
  width: clamp(200px, 20vw, 280px);
  pointer-events: none;
  background-color: transparent;
}

.product-hero__illustration img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  background-color: transparent;
  transform-origin: center center;
  animation: product-hero-zoom 4.5s ease-in-out infinite;
}

@keyframes product-hero-zoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero__illustration img {
    animation: none;
  }
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  background: #fff;
  font-size: var(--product-fs-label);
  font-weight: 500;
  font-style: normal;
  color: var(--product-muted);
  margin-bottom: 28px;
  font-family: var(--product-font);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.product-badge i {
  font-size: 10px;
  margin-left: 0;
}

.product-hero__title {
  margin: 0 0 28px;
  line-height: 1.08;
  font-style: normal;
}

.product-hero__title-line {
  display: block;
  font-size: var(--product-fs-hero);
  font-weight: 600;
  font-style: normal;
  color: var(--product-text);
  letter-spacing: -0.03em;
  font-family: var(--product-font);
  line-height: var(--product-lh-hero);
}

.product-hero__title-accent-inline {
  display: inline;
  font-size: inherit;
  font-weight: 800;
  font-style: normal;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: inherit;
  background: var(--product-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-hero__subtitle {
  font-size: var(--product-fs-body-lg);
  color: var(--product-muted);
  line-height: var(--product-lh-body-lg);
  font-weight: 400;
  font-style: normal;
  max-width: 720px;
  margin: 0 auto 36px;
  font-family: var(--product-font);
  letter-spacing: -0.01em;
}

.product-layout .product-page .product-hero__subtitle {
  color: var(--product-muted);
}

.product-hero__subtitle-line {
  display: block;
  font-style: normal;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

@media (min-width: 992px) {
  .product-hero__subtitle-line:first-child {
    white-space: nowrap;
  }
}

.product-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.product-hero__actions .product-btn {
  border-radius: 11px;
  min-width: 214px;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}

.product-hero__actions .product-demo-btn {
  min-width: 214px;
  padding: 15px 30px;
  line-height: 20px;
}

.product-hero__actions .product-btn--primary {
  background: var(--product-navy);
  box-shadow: 0 3px 10px rgba(13, 27, 42, 0.16);
}

.product-hero__actions .product-btn--secondary {
  background: #fff;
  color: var(--product-navy);
  border: 1px solid #e5e7eb;
}

/* ─── Stats ─── */
.product-page section[id] {
  scroll-margin-top: 96px;
}

.product-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: none;
  background: var(--product-bg);
  padding: 0 24px;
  box-sizing: border-box;
}

.product-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  padding: 16px 10px 18px;
  border-right: 1px solid #94a3b8;
}

.product-stat:last-child {
  border-right: none;
}

.product-stat__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0;
  display: block;
}

.product-stat__value {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--product-text);
  line-height: 1;
  margin-bottom: 0;
  font-family: inherit;
  letter-spacing: -0.02em;
}

.product-stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--product-text);
  max-width: none;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.35;
  margin-top: 1px;
}

.product-hero__laptop {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 40px auto 8px;
  padding: 0 12px;
  overflow: visible;
  box-sizing: border-box;
  background-color: var(--product-bg);
}

.product-hero__laptop img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: transparent;
}

/* ─── Partners ─── */
.product-partners {
  padding: 40px 0 20px;
  background: transparent;
  overflow: hidden;
}

.product-partners + .product-section {
  padding-top: 44px;
}

.product-partners__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.product-partners__track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: product-marquee 38s linear infinite;
  will-change: transform;
}

.product-partners__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-partners__logo {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-partners__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@keyframes product-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-partners__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 48px 120px;
    padding: 0 24px;
  }
}

/* ─── Feature Cards ─── */
.product-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-feature-card {
  background: #fff;
  border-radius: var(--product-radius);
  padding: 28px;
  box-shadow: var(--product-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--product-icon-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-feature-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.product-feature-card h3 {
  font-size: var(--product-fs-card-title);
  font-weight: 700;
  color: var(--product-text);
  margin: 0 0 10px;
  line-height: var(--product-lh-card-title);
}

.product-feature-card p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0;
}

/* Why Suave CRM — matches index.php Core Values bg + typography */
.product-features-section,
#features.product-section {
  padding: 64px 0 44px;
  background-color: transparent;
  background-image: url("/assets/background/core-values-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.product-features--why {
  gap: 20px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

#features .product-section__header {
  margin-bottom: 36px;
}

#features + .product-workspace {
  padding-top: 44px;
}

.product-features-section__eyebrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-features-section__eyebrow-bar {
  display: inline-block;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a4dfb 0%, #7a5ff8 100%);
  flex-shrink: 0;
}

#features .product-eyebrow {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  line-height: 100%;
}

#features .product-section__title {
  color: #f7f8ff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}

#features .product-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 126px;
  padding: 8px 8px 12px 18px;
  margin-left: -10px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  border-left: 1px dashed #2a4dfb;
  position: relative;
  transition: transform 0.25s ease;
}

#features .product-feature-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%) border-box;
  border: 3px solid transparent;
  box-sizing: border-box;
}

#features .product-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

#features .product-feature-card__icon {
  width: 25px;
  height: 25px;
  border-radius: 0;
  background: transparent;
  margin-bottom: 9px;
}

#features .product-feature-card__icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

#features .product-feature-card h3 {
  color: #f3f4ff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 5px;
}

#features .product-feature-card p {
  color: #b1b9df;
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 0;
  margin: 0;
  max-width: 270px;
}

/* ─── Workspace ─── */
.product-workspace {
  padding: 88px 0;
  padding-bottom: 44px;
  background-color: transparent;
  background-image: url("/assets/background/portfolio-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.product-workspace__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 48px;
  align-items: center;
  max-width: none;
}

.product-workspace__content {
  max-width: 520px;
}

.product-workspace .product-eyebrow {
  display: block;
  font-size: var(--product-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.product-workspace .product-section__title--left,
.product-workspace__title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.product-workspace__title-line {
  display: inline;
  font-weight: 800;
}

.product-workspace__desc {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0 0 24px;
  max-width: 420px;
}

.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--product-fs-body);
  color: var(--product-text);
}

.product-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--product-accent);
  flex-shrink: 0;
}

.product-workspace .product-bullets {
  gap: 12px;
}

.product-workspace .product-bullets li {
  font-size: var(--product-fs-body);
  line-height: var(--product-lh-body);
  color: var(--product-muted);
}

.product-workspace .product-bullets li::before {
  width: 8px;
  height: 8px;
}

.product-workspace__image {
  min-width: 0;
  width: 100%;
}

.product-workspace__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 42px rgba(15, 23, 42, 0.1);
  object-fit: contain;
  object-position: center center;
}

/* ─── Modules ─── */
#modules.product-section {
  padding-top: 44px;
  padding-bottom: 44px;
  background-color: transparent;
  background-image: url("/assets/background/portfolio-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#modules + #stories.product-section {
  padding-top: 44px;
}

#stories.product-section {
  padding-bottom: 44px;
}

#stories + #pricing.product-section {
  padding-top: 44px;
}

#modules .product-eyebrow {
  font-weight: 800;
}

.product-modules {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-modules__sidebar {
  background: #fff;
  border-radius: var(--product-radius);
  padding: 10px;
  box-shadow: var(--product-shadow);
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: none;
  height: 100%;
}

.product-modules__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  border-radius: 10px;
  font-size: var(--product-fs-body);
  font-weight: 400;
  color: var(--product-muted);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, font-weight 0.15s ease;
  width: 100%;
}

.product-modules__tab .product-modules__tab-label {
  font-family: var(--product-font);
  font-style: normal;
  font-weight: 400;
  color: inherit;
}

.product-modules__tab.is-active .product-modules__tab-label {
  font-weight: 700;
}

.product-modules__tab-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  transition: background 0.2s ease;
}

.product-modules__tab img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-modules__tab.is-active {
  background: var(--product-icon-bg-active);
  color: var(--product-text);
  border-left-color: var(--product-accent);
}

.product-modules__tab.is-active .product-modules__tab-icon {
  background: transparent;
}

#modules .product-modules__tab-icon img,
#modules .product-modules__title-row .product-feature-card__icon img {
  mix-blend-mode: multiply;
}

.product-modules__tab.is-active img {
  opacity: 1;
  transform: scale(1.02);
}

.product-modules__panel {
  background: #fff;
  border-radius: var(--product-radius);
  overflow: hidden;
  box-shadow: var(--product-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-modules__image-wrap {
  position: relative;
}

.product-modules__image-wrap img {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.product-modules__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(238, 242, 255, 0.95);
  border-radius: 100px;
  font-size: var(--product-fs-label);
  font-weight: 500;
  color: var(--product-accent);
}

.product-modules__badge i {
  font-size: var(--product-fs-body);
}

.product-modules__info {
  padding: 16px 20px 18px;
}

.product-modules__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.product-modules__title-row .product-feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
  background: var(--product-icon-bg-card);
}

.product-modules__title-row .product-feature-card__icon img {
  width: 32px;
  height: 32px;
}

.product-modules__title-row h3 {
  font-size: var(--product-fs-card-title);
  font-weight: 700;
  margin: 0;
  color: var(--product-text);
  line-height: var(--product-lh-card-title);
}

.product-modules__info > p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0 0 12px;
}

.product-modules__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-modules__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  font-size: var(--product-fs-body);
  color: var(--product-text);
  font-weight: 500;
}

/* ─── Testimonials ─── */
.product-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-testimonial-card {
  background: #fff;
  border-radius: var(--product-radius);
  padding: 32px;
  box-shadow: var(--product-shadow);
  display: flex;
  flex-direction: column;
}

.product-testimonial-card__quote {
  font-size: 64px;
  line-height: 1;
  color: color-mix(in srgb, var(--product-accent) 35%, #ffffff);
  font-family: var(--product-font);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-testimonial-card p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  flex: 1;
  margin: 0 0 24px;
}

.product-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--product-accent-light);
  color: var(--product-accent);
  font-weight: 700;
  font-size: var(--product-fs-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-testimonial-card__author strong {
  display: block;
  font-size: var(--product-fs-body-lg);
  color: var(--product-text);
}

.product-testimonial-card__author span {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  font-style: normal;
  font-family: inherit;
}

/* ─── Pricing — styled like index.php Industries We Serve ─── */
#pricing.product-section,
.product-pricing-section {
  padding: 80px 0;
  background-color: transparent;
  background-image: url("/assets/background/industries-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.product-pricing-section__header {
  text-align: left;
  max-width: none;
  margin: 0 0 38px;
}

.product-pricing-section__eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.product-pricing-section__eyebrow-bar {
  display: inline-block;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a4dfb 0%, #7a5ff8 100%);
  flex-shrink: 0;
}

#pricing .product-eyebrow {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 100%;
}

#pricing .product-section__title {
  color: #f8f8ff;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  text-align: left;
}

.product-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 0;
  padding: 2px;
  border: none;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
  margin-top: 8px;
}

.product-billing-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 18px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: var(--product-fs-body);
  font-weight: 600;
  font-family: inherit;
  font-style: normal;
  color: var(--product-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.product-billing-toggle button.is-active {
  background: linear-gradient(90deg, #2563eb 0%, #5b6cf7 52%, #8b5cf6 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(77, 93, 251, 0.28);
}

.product-billing-toggle__badge {
  font-size: var(--product-fs-label);
  font-weight: 600;
  font-family: inherit;
  font-style: normal;
  background: rgba(255, 255, 255, 0.24);
  padding: 2px 8px;
  border-radius: 100px;
  line-height: 1.2;
}

.product-billing-toggle button:not(.is-active) .product-billing-toggle__badge {
  background: #eef2ff;
  color: var(--product-accent);
}

.product-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
  align-items: stretch;
  max-width: none;
  width: 100%;
  margin: 0;
}

.product-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #00003f;
  border-radius: 7px;
  padding: 24px 22px 20px;
  box-shadow: 2px 7px 13px 2px #2a4dfb17;
  position: relative;
  border: 1px solid rgb(110 119 219 / 8%);
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-pricing-card:hover {
  border-color: rgb(101 111 255 / 58%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 4%),
    0 15px 32px rgb(0 0 0 / 22%);
  transform: translateY(-2px);
}

.product-pricing-card.is-featured {
  border-color: rgb(101 111 255 / 40%);
  box-shadow: 2px 7px 13px 2px #2a4dfb17;
}

.product-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.product-pricing-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #ffffff;
  line-height: 1.35;
}

.product-pricing-card__desc {
  font-size: 14px;
  color: #b1b9df;
  margin: 0 0 16px;
  min-height: 0;
  line-height: 1.45;
  font-weight: 500;
}

.product-pricing-card__price {
  margin-bottom: 16px;
  min-height: 36px;
  display: flex;
  align-items: flex-end;
}

.product-pricing-card__amount {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.product-pricing-card__period {
  font-size: var(--product-fs-body);
  color: #b1b9df;
}

.product-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-pricing-card .product-btn {
  margin-top: 16px;
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 20px;
}

.product-pricing-card .product-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.product-pricing-card .product-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.product-pricing-card .product-btn--gradient {
  background: linear-gradient(90deg, #2a4dfb 0%, #0026e3 100%);
  color: #fff;
  border: none;
}

.product-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b1b9df;
  line-height: 1.45;
  font-weight: 500;
}

.product-pricing-card__features i {
  color: #5968ee;
  font-size: 14px;
  flex-shrink: 0;
}


/* ─── Productivity ─── */
#modules {
  --product-icon-bg-card: color-mix(in srgb, #ffffff 82%, var(--product-bg) 18%);
  --product-icon-bg-active: color-mix(in srgb, #ffffff 70%, var(--product-bg) 30%);
}

#modules .product-modules__title-row .product-feature-card__icon {
  background: transparent;
}

.product-productivity {
  --product-icon-bg-card: var(--product-icon-bg-dark);
  background-color: transparent;
  background-image: url("/assets/background/web-services-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.product-productivity .container {
  position: relative;
  z-index: 1;
}

.product-productivity__header {
  max-width: none;
  margin-bottom: 36px;
}

.product-productivity .product-eyebrow--light {
  margin-bottom: 14px;
}

.product-productivity .product-section__title--light {
  color: var(--product-text);
  font-size: var(--product-fs-section);
  font-weight: 700;
  line-height: var(--product-lh-section);
  margin-bottom: 18px;
}

.product-productivity__desc {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--product-muted);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

@media (min-width: 992px) {
  .product-productivity__desc {
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .product-productivity__desc {
    white-space: normal;
    font-size: var(--product-fs-body-lg);
    line-height: var(--product-lh-body-lg);
  }
}

.product-productivity__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 64px;
}

.product-productivity__shot {
  display: block;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  background-color: #fff;
}

/* Top-left: 1/3 width */
.product-productivity__shot--config {
  grid-column: 1;
  grid-row: 1;
  height: 268px;
}

/* Top-right: 2/3 width */
.product-productivity__shot--dashboard {
  grid-column: 2 / 4;
  grid-row: 1;
  height: 268px;
}

/* Bottom-left: 2/3 width */
.product-productivity__shot--projects {
  grid-column: 1 / 3;
  grid-row: 2;
  height: 304px;
}

/* Bottom-right: 1/3 width */
.product-productivity__shot--invoice {
  grid-column: 3;
  grid-row: 2;
  height: 304px;
  object-position: top center;
}

.product-dark-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  max-width: 100%;
  margin: 0 auto;
}

.product-dark-feature__icon {
  width: auto;
  height: auto;
  margin-bottom: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-dark-feature__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.product-productivity .product-dark-feature__icon img {
  mix-blend-mode: screen;
  opacity: 0.96;
}

.product-productivity .product-dark-feature__icon img[src$=".svg"] {
  mix-blend-mode: normal;
  opacity: 1;
}

.product-productivity .product-dark-feature__icon img[src*="feature-icon-milestone"] {
  width: 64px;
  height: 64px;
}

.product-dark-feature h3 {
  font-size: var(--product-fs-card-title);
  font-weight: 700;
  color: var(--product-text);
  margin: 0 0 8px;
  line-height: var(--product-lh-card-title);
}

.product-dark-feature p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0;
  max-width: none;
}

/* ─── Principles ─── */
.product-principles {
  background-color: transparent;
  background-image: url("/assets/background/portfolio-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#principles .product-section__header {
  margin-bottom: 44px;
}

#principles .product-eyebrow {
  font-size: var(--product-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

#principles .product-section__title {
  font-size: var(--product-fs-section);
  font-weight: 700;
  line-height: var(--product-lh-section);
  margin: 0;
}

.product-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.product-principles__card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px 28px;
  box-shadow:
    0 6px 28px rgba(15, 23, 42, 0.09),
    0 2px 8px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-principles__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.product-principles__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}

.product-principles__card h3 {
  font-size: var(--product-fs-card-title);
  font-weight: 700;
  color: var(--product-text);
  margin: 0 0 8px;
  line-height: var(--product-lh-card-title);
}

.product-principles__card p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0;
}

#principles .product-section__cta .product-btn {
  padding: 15px 30px;
  font-size: 18px;
  line-height: 20px;
}

#principles .product-section__cta .product-demo-btn {
  padding: 15px 30px;
  line-height: 20px;
}

#principles.product-section {
  padding-bottom: 44px;
}

#principles + .product-section {
  padding-top: 44px;
  background-color: transparent;
  background-image: url("/assets/background/portfolio-section-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#principles + .product-section .product-section__title {
  font-weight: 500;
}

#principles + .product-section .product-section__subtitle {
  font-size: var(--product-fs-body);
  font-weight: 500;
  line-height: var(--product-lh-body);
  color: var(--product-text);
}

#principles .product-section__cta {
  margin-top: 32px;
}

/* ─── Partner Cards ─── */
.product-partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-partner-card {
  display: flex;
  flex-direction: column;
}

.product-partner-card img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-partner-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--product-text);
  margin: 0 0 10px;
}

.product-partner-card p {
  font-size: var(--product-fs-body);
  color: var(--product-muted);
  line-height: var(--product-lh-body);
  margin: 0;
  flex: 1;
}

.product-partner-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--product-fs-body-lg);
  font-weight: 600;
  font-family: inherit;
  font-style: normal;
  color: var(--product-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-partner-card__link:hover {
  color: var(--product-accent-deep);
}

/* ─── Final CTA ─── */
.product-cta {
  padding: 64px 0 80px;
  background: transparent;
}

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

.product-cta__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  padding: 56px 48px;
  background: linear-gradient(90deg, #2563eb 0%, #4f63f7 42%, #7c3aed 100%);
  text-align: center;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.22);
}

.product-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.product-cta__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(60%, 540px);
  pointer-events: none;
  z-index: 1;
}

.product-cta__decor--left {
  left: 0;
}

.product-cta__decor--right {
  right: 0;
}

.product-cta__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: 420px;
  max-height: 420px;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  opacity: 0.72;
  filter: saturate(0.7) brightness(0.92);
  transform: translate(-50%, -50%);
}

.product-cta__decor--left .product-cta__pulse {
  transform: translate(calc(-50% - 184px), -50%);
}

.product-cta__decor--right .product-cta__pulse {
  transform: translate(calc(-50% + 120px), -50%) scaleX(-1);
}

.product-cta__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}

.product-cta__eyebrow {
  display: block;
  font-size: var(--product-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.product-cta__content h2 {
  font-size: var(--product-fs-section);
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  line-height: var(--product-lh-section);
}

.product-cta__content p {
  font-size: var(--product-fs-body-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--product-lh-body-lg);
  margin: 0 0 28px;
}

.product-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 11px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  min-width: 214px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.product-cta__btn:hover {
  transform: translateY(-1px);
}

.product-cta__btn--primary {
  background: #fff;
  color: var(--product-accent);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.product-cta__btn--primary:hover {
  background: #f8fafc;
  color: var(--product-accent-deep);
}

.product-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.product-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ─── Responsive ─── */
@media (min-width: 992px) {
  .product-hero__title-line:nth-child(2) {
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  .product-features,
  .product-testimonials,
  .product-pricing,
  .product-partner-cards,
  .product-principles__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-dark-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
    max-width: 100%;
  }

  .product-hero__illustration {
    width: clamp(170px, 18vw, 240px);
    top: 80px;
    left: -100px;
  }
}

@media (max-width: 991px) {
  .product-hero__illustration {
    display: none;
  }

  .product-social {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    gap: 8px;
  }

  .product-social a {
    width: 34px;
    height: 34px;
    font-size: var(--product-fs-body);
  }

  .product-stats {
    margin-top: 40px;
    padding: 0 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-stat:nth-child(2) {
    border-right: none;
  }

  .product-stat:nth-child(3) {
    border-left: none;
  }

  .product-stat:nth-child(1),
  .product-stat:nth-child(2) {
    border-bottom: 1px solid #94a3b8;
  }

  .product-hero__laptop {
    margin-top: 32px;
    padding: 0 4px;
  }

  .product-stat {
    padding: 14px 8px 16px;
    gap: 4px;
  }

  .product-stat__label {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .product-workspace__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: none;
  }

  .product-workspace__desc {
    max-width: none;
  }

  .product-section__title--left {
    text-align: center;
  }

  .product-workspace__content {
    text-align: center;
    max-width: none;
  }

  .product-modules {
    grid-template-columns: 1fr;
  }

  .product-modules__sidebar {
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .product-modules__tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .product-productivity__shot--config {
    grid-column: 1;
    grid-row: 1;
    height: 220px;
  }

  .product-productivity__shot--dashboard {
    grid-column: 2 / 4;
    grid-row: 1;
    height: 220px;
  }

  .product-productivity__shot--projects {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 260px;
  }

  .product-productivity__shot--invoice {
    grid-column: 3;
    grid-row: 2;
    height: 260px;
  }

  .product-cta__card {
    padding: 44px 24px;
    border-radius: 22px;
  }

  .product-cta__decor {
    width: 225px;
  }

  .product-cta__pulse {
    width: 195px;
    height: 195px;
    max-height: none;
  }

  .product-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .product-cta__btn {
    width: 100%;
    max-width: none;
  }
}

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

  .product-features,
  .product-testimonials,
  .product-pricing,
  .product-partner-cards,
  .product-principles__grid {
    grid-template-columns: 1fr;
  }

  .product-dark-features {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .product-productivity {
    padding: 56px 0 64px;
  }

  .product-productivity__grid {
    grid-template-columns: 1fr;
  }

  .product-productivity__shot--config {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
    min-height: auto;
  }

  .product-productivity__shot--dashboard,
  .product-productivity__shot--projects,
  .product-productivity__shot--invoice {
    grid-column: 1;
    grid-row: auto;
    height: 200px;
  }

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

  .product-stat {
    border-right: none;
    border-bottom: 1px solid #94a3b8;
    padding: 16px 12px;
  }

  .product-stat:last-child {
    border-bottom: none;
  }

  .product-stat__label {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .product-modules__highlights {
    grid-template-columns: 1fr;
  }

  .product-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .product-hero__actions .product-btn {
    width: 100%;
    min-width: 0;
    padding: 15px 28px;
  }

  .product-cta__btn {
    min-width: 0;
    padding: 15px 28px;
  }
}

@media (max-width: 575px) {
  .product-page {
    --product-fs-hero: 42px;
    --product-lh-hero: 52px;
    --product-fs-section: 36px;
    --product-lh-section: 46px;
  }
}

@media (max-width: 480px) {
  .product-page {
    --product-fs-hero: 32px;
    --product-lh-hero: 40px;
    --product-fs-section: 28px;
    --product-lh-section: 36px;
  }

  .product-btn,
  .product-cta__btn {
    padding: 15px 28px;
  }
}

/* ===== PRODUCT END ===== */

/* ===== BLOGS LISTING START ===== */
.blogs-hero__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.6vw, 1.125rem);
  margin-top: clamp(1.25rem, 3.5vw, 2.25rem);
  width: 100%;
}
.blogs-hero__frame {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 20px);
  box-shadow: 0 14px 36px rgba(5, 10, 36, 0.28);
}
.blogs-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs-hero__frame--sm { height: clamp(6.5rem, 22vw, 16rem); }
.blogs-hero__frame--md { height: clamp(9rem, 30vw, 22rem); }
.blogs-hero__frame--lg { height: clamp(11.5rem, 38vw, 28rem); }
.blog-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.blog-grid .articles-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.blog-filters {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 720px;
  width: 100%;
}

.blog-filters__search,
.blog-filters__category {
  display: block;
  flex: 1 1 220px;
  margin: 0;
  max-width: 320px;
  min-width: 0;
  position: relative;
}

@media (min-width: 768px) {
  .blog-filters {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
  }
}

.blog-filters__search svg {
  color: #85868c;
  left: 14px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.blog-filters__search input,
.blog-filters__category select {
  appearance: none;
  background: #f4f6fb;
  border: 1px solid #e7ebf5;
  border-radius: 12px;
  color: #171717;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 48px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.blog-filters__search input {
  padding: 0 14px 0 40px;
}

.blog-filters__category select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2385868c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 0 40px 0 14px;
}

.blog-filters__search input::placeholder {
  color: #9aa0b5;
}

.blog-filters__search input:focus,
.blog-filters__category select:focus {
  border-color: #2a4dfb;
  box-shadow: 0 0 0 3px rgba(42, 77, 251, 0.12);
}

.blog-results {
  min-height: 12rem;
  position: relative;
  transition: opacity 0.2s ease;
}

[data-blog-listing].is-loading .blog-results {
  opacity: 0.55;
  pointer-events: none;
}

.blog-category-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 920px;
}

.blog-category-nav__item {
  align-items: center;
  background: #f4f6fb;
  border: 1px solid #e7ebf5;
  border-radius: 999px;
  color: #4d4d4d;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  line-height: 1;
  padding: 8px 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-category-nav__item:hover,
.blog-category-nav__item.is-active {
  background: linear-gradient(90deg, #2a4dfb, #0026e3);
  border-color: transparent;
  color: #fff;
}

.blog-category-nav__count {
  background: rgba(0, 0, 63, 0.08);
  border-radius: 999px;
  font-size: 11px;
  padding: 3px 7px;
}

.blog-category-nav__item.is-active .blog-category-nav__count,
.blog-category-nav__item:hover .blog-category-nav__count {
  background: rgba(255, 255, 255, 0.2);
}

.articles-card__category {
  color: #2a4dfb;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-decoration: none;
  text-transform: uppercase;
}

.articles-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.articles-card__body h3 a:hover {
  color: #2a4dfb;
}

.blog-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 2.5rem;
}

.blog-pagination__pages {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination__btn,
.blog-pagination__page {
  align-items: center;
  border: 1px solid #e7ebf5;
  border-radius: 10px;
  color: #171717;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-height: 38px;
  min-width: 38px;
  padding: 0 12px;
  text-decoration: none;
}

.blog-pagination__btn.is-disabled {
  color: #9aa0b5;
  pointer-events: none;
}

.blog-pagination__page.is-active,
.blog-pagination__btn:hover,
.blog-pagination__page:hover {
  background: #2a4dfb;
  border-color: #2a4dfb;
  color: #fff;
}

.blog-empty {
  color: #4d4d4d;
  padding: 3rem 1rem;
  text-align: center;
}

.single-blog-main__category a {
  color: inherit;
  text-decoration: none;
}

.single-blog-main__category a:hover {
  text-decoration: underline;
}
/* ===== BLOGS LISTING END ===== */


/* ===== CONTACT FORM PANEL START ===== */
:root {
  --cfp-blue: #2a4dfb;
  --cfp-blue-soft: rgba(42, 77, 251, 0.15);
  --cfp-muted: #9eb0ff;
  --cfp-line: rgba(255, 255, 255, 0.12);
  --cfp-ink: #171717;
}

/* Page-specific styles (moved from css/style.css) */
.site-main > .full-bleed > .section-inner.contact-form-section-inner{
  grid-column: full;
  justify-self: center;
  max-width: 1380px;
  padding-inline: var(--site-gutter);
  width: 100%;
}

.contact-form-panel{
  background-color: #0b1228;
  background-image: url('/assets/background/contact-form-panel-blur-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 28px;
  display: grid;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  padding: 20px;
}

.contact-form-panel__info{
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 24px 28px;
  position: relative;
  z-index: 1;
}

.contact-form-panel__eyebrow{
  align-items: center;
  color: #9eb0ff;
  display: inline-flex;
  font-family: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.contact-form-panel__eyebrow-bar{
  background: linear-gradient(90deg, var(--cfp-blue), #6ea0ff);
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
  height: 2px;
  width: 28px;
}

.contact-form-panel__title{
  font-family: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 18px 0 0;
  max-width: 16ch;
}

.contact-form-panel__title span{
  color: #6ea0ff;
  font-weight: 600;
}

.contact-form-panel__lead{
  color: var(--cfp-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 36ch;
}

.contact-form-panel__meta{
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-form-panel__meta-card{
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cfp-line);
  border-radius: 16px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-form-panel__meta-card:hover{
  background: rgba(42, 77, 251, 0.16);
  border-color: rgba(110, 160, 255, 0.45);
  transform: translateY(-2px);
}

.contact-form-panel__meta-label{
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-panel__meta-value{
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-form-panel__meta-note{
  color: var(--cfp-muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact-form-panel__form-wrap{
  min-width: 0;
  padding: 0 20px 28px;
  position: relative;
  z-index: 1;
}

.contact-form-panel__form{
  background: #ffffff;
  border-radius: 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-width: 0;
  padding: 28px 22px 24px;
  position: relative;
}

.contact-form-panel__form-intro{
  margin-bottom: 22px;
}

.contact-form-panel__form-status{
  align-items: center;
  color: #6b7280;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.contact-form-panel__form-status span{
  animation: contact-form-pulse 1.8s ease-in-out infinite;
  background: #22c55e;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  display: inline-block;
  flex-shrink: 0;
  height: 8px;
  width: 8px;
}

@keyframes contact-form-pulse{
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.contact-form-panel__form-title{
  color: var(--cfp-ink);
  font-family: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 10px 0 0;
}

.contact-form-panel__fields{
  display: grid;
  gap: 16px;
}

.contact-form-panel__row{
  display: grid;
  gap: 16px;
}

.contact-form-panel__fields label{
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-form-panel__label-text{
  color: #374151;
  font-size: 13px;
  font-weight: 600;
}

.contact-form-panel__fields input,
.contact-form-panel__fields select,
.contact-form-panel__fields textarea{
  background: #f7f8fc;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #171717;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.contact-form-panel__fields input,
.contact-form-panel__fields select{
  height: 46px;
  padding: 12px 16px;
}

.contact-form-panel__fields textarea{
  line-height: 1.5;
  min-height: 96px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form-panel__fields select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 16px;
  color: #9ca3af;
  cursor: pointer;
  padding-right: 42px;
}

.contact-form-panel__fields select:not(:invalid){
  color: #171717;
}

.contact-form-panel__fields input::placeholder,
.contact-form-panel__fields textarea::placeholder{
  color: #9ca3af;
}

.contact-form-panel__fields input:hover,
.contact-form-panel__fields select:hover,
.contact-form-panel__fields textarea:hover{
  background: #ffffff;
  border-color: #d8dce8;
}

.contact-form-panel__fields input:focus,
.contact-form-panel__fields select:focus,
.contact-form-panel__fields textarea:focus{
  background: #ffffff;
  border-color: var(--cfp-blue);
  box-shadow: 0 0 0 4px var(--cfp-blue-soft);
}

.contact-form-panel__actions{
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.contact-form-panel__submit{
  align-items: center;
  background: linear-gradient(90deg, #2a4dfb 57.12%, #0026e3 100%);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  height: 34px;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-form-panel__submit:hover{
  box-shadow: 0 10px 28px rgba(42, 77, 251, 0.35);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.contact-form-panel__submit svg{
  transition: transform 0.3s ease;
}

.contact-form-panel__submit:hover svg{
  transform: translateX(4px);
}

.contact-form-panel__actions a{
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: color 0.2s ease;
}

.contact-form-panel__actions a:hover{
  color: var(--cfp-blue);
}

.contact-form-panel__disclaimer{
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
  margin: 2px 0 0;
}

.contact-form-panel__disclaimer a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.contact-form-panel__disclaimer a:hover{
  color: var(--cfp-blue);
}

.contact-form-honeypot{
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-panel__flash{
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form-panel__flash[hidden]{
  display: none !important;
}

.contact-form-panel__errors{
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form-panel__errors ul{
  margin: 0;
  padding-left: 1.1rem;
}

.contact-form-panel__field-error{
  display: block;
  margin-top: 6px;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.35;
}

.contact-form-panel__field-error[hidden]{
  display: none !important;
}

.contact-form-panel__fields input.is-invalid,
.contact-form-panel__fields select.is-invalid,
.contact-form-panel__fields textarea.is-invalid{
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact-form-panel__submit.is-loading,
.contact-form-panel__submit:disabled{
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 1023px) {
.contact-form-panel{
    padding: 14px;
  }

.contact-form-panel__info{
    padding: 28px 18px 24px;
  }

.contact-form-panel__form-wrap{
    padding: 0 10px 20px;
  }

.contact-form-panel__form{
    padding: 24px 18px 20px;
  }

.contact-form-panel__submit.u-btn-cta{
    height: 34px;
    min-height: 34px;
    padding-block: 0;
  }
}

@media (min-width: 640px) {
.contact-form-panel__info{
    padding: 40px 28px 32px;
  }

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

.contact-form-panel__form-wrap{
    padding: 0 16px 32px;
  }

.contact-form-panel__form{
    padding: 32px 28px 28px;
  }

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

.contact-form-panel__actions{
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

.contact-form-panel__submit{
    min-width: 180px;
    width: auto;
  }

.contact-form-panel__actions a{
    text-align: left;
  }
}

@media (min-width: 1024px) {
.contact-form-panel{
    align-items: stretch;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 640px;
    padding: 20px;
  }

.contact-form-panel__submit{
    height: 36px;
    min-height: 36px;
  }

.contact-form-panel__info{
    justify-content: center;
    padding: 48px 40px 48px 56px;
  }

.contact-form-panel__meta{
    grid-template-columns: 1fr;
    max-width: 340px;
  }

.contact-form-panel__form-wrap{
    align-items: center;
    display: flex;
    padding: 40px 48px 40px 20px;
  }

.contact-form-panel__form{
    padding: 36px 36px 32px;
    width: 100%;
  }
}

@media (min-width: 1280px) {
.contact-form-panel{
    min-height: 680px;
  }

.contact-form-panel__info{
    padding: 56px 48px 56px 72px;
  }

.contact-form-panel__form-wrap{
    padding: 48px 64px 48px 24px;
  }

.contact-form-panel__form{
    padding: 40px 40px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
.contact-form-panel__form-status span{
    animation: none;
  }

.contact-form-panel__fields input,
.contact-form-panel__fields select,
.contact-form-panel__fields textarea,
.contact-form-panel__meta-card,
.contact-form-panel__submit,
.contact-form-panel__submit svg,
.contact-form-panel__actions a,
.contact-form-panel__disclaimer a{
    transition: none;
  }
}
/* ===== CONTACT FORM PANEL END ===== */

/* ===== CONTACT REACH SECTION START ===== */
.contact-reach-section{
  background-color: #F5F7FF;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-reach__header{
  margin-bottom: 2rem;
  max-width: 40rem;
}

.contact-reach{
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
}

.contact-reach__eyebrow{
  align-items: center;
  background-image: linear-gradient(to right, #2A4DFB, #7A5FF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 0.5rem;
  line-height: 1;
}

.contact-reach__eyebrow-bar{
  background-image: linear-gradient(to bottom, #2A4DFB, #7A5FF8);
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
  height: 16px;
  width: 2px;
}

.contact-reach__title{
  color: #171717;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1rem;
}

.contact-reach__lead{
  color: #4D4D4D;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-top: 1rem;
  max-width: 28rem;
}

.contact-reach__map{
  background:
    linear-gradient(#E8ECF8, #E8ECF8) padding-box,
    linear-gradient(135deg, #2A4DFB 0%, #7A5FF8 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(31, 34, 88, 0.06);
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.contact-reach__map iframe{
  border: 0;
  display: block;
  height: 320px;
  width: 100%;
}

.contact-reach__details{
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%) padding-box,
    linear-gradient(135deg, #2A4DFB 0%, #7A5FF8 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(31, 34, 88, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-reach__panel-head{
  border-bottom: 1px solid #ECEEF7;
  flex-shrink: 0;
  padding: 1.25rem 1.25rem 1.1rem;
}

.contact-reach__panel-title{
  color: #171717;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-reach__item{
  align-items: flex-start;
  display: grid;
  flex: 1 1 auto;
  gap: 0.875rem;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  padding: 1.15rem 1.25rem;
}

.contact-reach__item + .contact-reach__item{
  border-top: 1px solid #ECEEF7;
}

.contact-reach__item-icon{
  align-items: center;
  background-image: linear-gradient(to bottom right, #EEF1FF, #E7E8FF);
  border-radius: 14px;
  color: #2A4DFB;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1rem;
  height: 2.75rem;
  justify-content: center;
  margin-top: 0.1rem;
  width: 2.75rem;
}

.contact-reach__item-content{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-reach__item-label{
  color: #858899;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-reach__item-title{
  color: #171717;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.contact-reach__item-body{
  color: #4D4D4D;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  gap: 0.5rem;
  line-height: 1.45;
  margin-top: 0.75rem;
}

.contact-reach__office{
  align-items: flex-start;
  background: #F7F8FD;
  border: 1px solid #E8EBF7;
  border-radius: 12px;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 24px minmax(0, 1fr);
  padding: 0.65rem 0.75rem;
  text-align: left;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-reach__office:hover{
  background: #F0F3FF;
  border-color: #D5DCFF;
}

.contact-reach__office.is-active{
  background: #EEF2FF;
  border-color: #C9D3FF;
  box-shadow: 0 0 0 1px rgba(42, 77, 251, 0.08);
}

.contact-reach__flag{
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 3px;
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.15rem;
  overflow: hidden;
}

.contact-reach__flag svg{
  display: block;
}

.contact-reach__office-lines{
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.contact-reach__office-line{
  display: block;
}

.contact-reach__links{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-reach__link{
  color: #303241;
  display: block;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s ease;
  width: fit-content;
}

.contact-reach__link:hover{
  color: #2A4DFB;
}

@media (min-width: 640px){
  .contact-reach__panel-head,
  .contact-reach__item{
    padding-inline: 1.5rem;
  }

  .contact-reach__map,
  .contact-reach__map iframe{
    height: 380px;
    min-height: 380px;
  }
}

@media (min-width: 1024px){
  .contact-reach__header{
    margin-bottom: 2.5rem;
  }

  .contact-reach{
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .contact-reach__title{
    font-size: 2rem;
  }

  .contact-reach__map{
    height: auto;
    min-height: 100%;
  }

  .contact-reach__map iframe{
    height: 100%;
    left: 0;
    min-height: 560px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .contact-reach__details{
    min-height: 560px;
  }

  .contact-reach__item{
    padding-block: 1.25rem;
  }
}
/* ===== CONTACT REACH SECTION END ===== */

/* ===== LEGAL PAGES START ===== */

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #b1b9df;
}

.blog-breadcrumb a {
  color: #b1b9df;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-breadcrumb span[aria-current] {
  color: #fff;
}

.legal-hero__title{
  color: #ffffff;
  font-family: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.legal-hero__lead{
  color: #b1b9df;
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 42ch;
}

.legal-page{
  background: #ffffff;
  border: 1px solid #eceff7;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(31, 34, 88, 0.06);
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.75;
  margin-inline: auto;
  max-width: 920px;
  padding: 28px 22px;
}

.legal-page__section + .legal-page__section{
  border-top: 1px solid #eef0f6;
  margin-top: 28px;
  padding-top: 28px;
}

.legal-page h2{
  color: #171717;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 14px;
  scroll-margin-top: 100px;
}

.legal-page h3{
  color: #1f2430;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0 10px;
}

.legal-page p{
  margin: 0 0 14px;
}

.legal-page ul{
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 1.2rem;
}

.legal-page li{
  padding-left: 2px;
}

.legal-page a{
  color: #2a4dfb;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover{
  color: #0026e3;
}

.legal-page__note{
  background: #f3f5ff;
  border-left: 3px solid #2a4dfb;
  border-radius: 0 12px 12px 0;
  color: #2a2f3a;
  margin-top: 8px;
  padding: 14px 16px;
}

.legal-page__contact{
  list-style: none;
  padding-left: 0;
}

@media (min-width: 640px) {
  .legal-page{
        padding: 40px 44px;
      }
}
/* ===== LEGAL PAGES END ===== */

/* ===== INDUSTRY DETAIL SERVICES START ===== */
  /* Why Us: mobile-friendly background (avoid cover crop on tall stacked cards) */
  .industry-why-section__bg {
    background-color: #F8FAFC;
    background-image: url('/assets/background/about-section-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  @media (min-width: 768px) {
    .industry-why-section__bg {
      background-position: top center;
      background-size: cover;
    }
  }

  /* Industry detail services: no icon backgrounds, larger icons, shared blue hover */
  .industry-detail-services .web-service-card__icon,
  .industry-detail-services .web-service-card__icon--blue,
  .industry-detail-services .web-service-card__icon--orange,
  .industry-detail-services .web-service-card__icon--cyan,
  .industry-detail-services .web-service-card__icon--mint,
  .industry-detail-services .web-service-card__icon--rose,
  .industry-detail-services .web-service-card__icon--amber {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    height: auto;
    margin-bottom: 12px;
    padding: 0;
    width: auto;
  }

  .industry-detail-services .web-service-card__icon img {
    display: block;
    height: 36px;
    object-fit: contain;
    width: 36px;
  }

  .industry-detail-services .web-service-card,
  .industry-detail-services .web-service-card:nth-child(n) {
    --web-service-accent: #315DE3;
  }

  .industry-detail-services .web-service-card::before {
    background: #315DE3;
  }

  .industry-detail-services .web-service-card::after {
    background: #E8EBFF;
    opacity: 0;
  }

  .industry-detail-services .web-service-card:hover,
  .industry-detail-services .web-service-card:focus-within {
    background: #E8EBFF;
  }

  .industry-detail-services .web-service-card:hover::before,
  .industry-detail-services .web-service-card:focus-within::before {
    width: 100%;
  }

  .industry-detail-services .web-service-card:hover::after,
  .industry-detail-services .web-service-card:focus-within::after {
    opacity: 1;
  }

  /* Industry detail: mobile + tablet polish */
  @media (max-width: 1023px) {
    main {
      overflow-x: clip;
    }

    .industry-detail-services .web-service-card {
      min-height: 0;
      padding: 20px 18px 22px;
    }
  }

  @media (max-width: 767px) {
    main .u-btn-cta,
    main a.rounded-full.bg-gradient-to-r,
    main .consultation-cta {
      box-sizing: border-box;
      height: 34px !important;
      min-height: 34px !important;
      padding-block: 0 !important;
      width: fit-content !important;
      max-width: 100%;
    }

    /* Text links (no fill): size to label, not full row */
    main a.border-b,
    main .consultation-secondary-link {
      display: inline-flex;
      width: fit-content !important;
      max-width: 100%;
    }

    .industry-detail-services .web-service-card__icon img {
      height: 32px;
      width: 32px;
    }

    .industry-detail-services .web-service-card {
      padding: 18px 16px 20px;
    }
  }

  @media (min-width: 768px) {
    .industry-detail-services .web-service-card__icon img {
      height: 40px;
      width: 40px;
    }
  }
/* ===== INDUSTRY DETAIL SERVICES END ===== */

/* ===== INDUSTRY DETAIL AGILE START ===== */
.agile-process-tabs {
  margin-bottom: 2.5rem;
  overflow: hidden;
  width: 100%;
}

.agile-process-tabs__list {
  align-items: center;
}

.agile-process-tabs__slide {
  height: auto;
  width: auto;
}

.agile-process-tabs__tab {
  white-space: nowrap;
}

.agile-process-tabs__pagination {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.agile-process-tabs__pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1.5px solid #00003f;
  border-radius: 999px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 8px;
}

.agile-process-tabs__pagination .swiper-pagination-bullet-active {
  background: #00003f;
  border-color: #00003f;
}

@media (min-width: 768px) {
  .agile-process-tabs {
    overflow: visible;
  }

  .agile-process-tabs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    transform: none !important;
  }

  .agile-process-tabs__slide {
    margin: 0 !important;
    width: auto !important;
  }

  .agile-process-tabs__pagination {
    display: none !important;
  }
}
/* ===== INDUSTRY DETAIL AGILE END ===== */

/* ===== SERVICES LISTING START ===== */
.about-stat__value--title {
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.digital-solution-section {
  background-color: #f7f8fc;
  padding: 40px 0;
}

.digital-solution-section__row {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.digital-solution-section__badge {
  align-items: center;
  display: none;
  flex-shrink: 0;
  height: 120px;
  justify-content: center;
  position: relative;
  width: 120px;
}

.digital-solution-section__ring {
  animation: digital-solution-spin 10s linear infinite;
  display: block;
  height: 120px;
  width: 120px;
}

.digital-solution-section__icon {
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}

.digital-solution-section__content {
  align-items: baseline;
  column-gap: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
  "top"
  "agency"
  "copy";
  row-gap: 0;
  width: 100%;
}

.digital-solution-section__title {
  color: #0b1b3f;
  display: contents;
  margin: 0;
  text-transform: uppercase;
}

.digital-solution-section__title-top,
.digital-solution-section__title-agency {
  font-family: "PP Mori", "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.digital-solution-section__title-top {
  font-size: clamp(2rem, 8vw, 3.5rem);
  grid-area: top;
}

.digital-solution-section__title-agency {
  font-size: clamp(2rem, 8vw, 3.5rem);
  grid-area: agency;
  white-space: nowrap;
}

.digital-solution-section__copy {
  align-self: center;
  color: #4d4d4d;
  font-size: 14px;
  grid-area: copy;
  line-height: 24px;
  margin: 16px 0 0;
  max-width: 560px;
  min-width: 0;
}

@keyframes digital-solution-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .digital-solution-section {
    padding: 120px 0 40px;
  }

  .digital-solution-section__row {
    gap: 28px;
    margin-inline: auto;
    max-width: 860px;
  }

  .digital-solution-section__content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
    "top"
    "agency"
    "copy";
    justify-items: center;
    margin-inline: auto;
    row-gap: 0;
    text-align: center;
  }

  .digital-solution-section__title-top,
  .digital-solution-section__title-agency {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    text-align: center;
  }

  .digital-solution-section__copy {
    margin-top: 16px;
    max-width: 780px;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .digital-solution-section {
    padding: 160px 0 40px;
  }

  .digital-solution-section__row {
    gap: 32px;
    margin-inline: auto;
    max-width: 1040px;
    padding-left: 160px;
    position: relative;
  }

  .digital-solution-section__badge {
    bottom: auto;
    display: flex;
    height: 120px;
    left: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    z-index: 1;
  }

  .digital-solution-section__content {
    column-gap: 28px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
    "top top"
    "agency copy";
    justify-content: start;
    justify-items: start;
    margin-inline: 0;
    text-align: left;
    width: 100%;
  }

  .digital-solution-section__title-top,
  .digital-solution-section__title-agency {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    text-align: left;
  }

  .digital-solution-section__copy {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
    max-width: 520px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .digital-solution-section__ring {
    animation: none;
  }
}

@media (min-width: 1280px) {
  .digital-solution-section__row {
    max-width: 1180px;
    padding-left: 180px;
  }

  .digital-solution-section__title-top,
  .digital-solution-section__title-agency {
    font-size: 5.75rem;
  }

  .digital-solution-section__copy {
    max-width: 560px;
  }
}
/* ===== SERVICES LISTING END ===== */

/* ===== SUAVE AGENT CHAT START ===== */
.suave-agent {
  --suave-agent-blue: #2a4dfb;
  --suave-agent-navy: #00003f;
  --suave-agent-panel: #0b1030;
  --suave-agent-muted: #b1b9df;
}

.suave-agent__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.suave-agent__toggle img {
  width: 100%;
  height: 100%;
  display: block;
}

.suave-agent__panel {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #12183f 0%, var(--suave-agent-panel) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 40, 0.45);
  color: #fff;
}

.suave-agent__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(42, 77, 251, 0.35), rgba(125, 88, 255, 0.2));
}

.suave-agent__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.suave-agent__brand-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
}

.suave-agent__brand-text {
  min-width: 0;
}

.suave-agent__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.suave-agent__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #9dffb0;
}

.suave-agent__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: suave-agent-online-pulse 1.8s ease-out infinite;
}

@keyframes suave-agent-online-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.suave-agent__close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.suave-agent__body {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.suave-agent__lead,
.suave-agent__chat {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  padding: 16px;
}

.suave-agent__intro {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--suave-agent-muted);
}

.suave-agent__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.suave-agent__lead input,
.suave-agent__composer textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.suave-agent__lead input {
  margin-bottom: 12px;
}

.suave-agent__lead input::placeholder,
.suave-agent__composer textarea::placeholder {
  color: rgba(177, 185, 223, 0.7);
}

.suave-agent__primary,
.suave-agent__send {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: linear-gradient(90deg, var(--suave-agent-blue), #0026e3);
  color: #fff;
  font-weight: 700;
}

.suave-agent__primary {
  margin-top: 4px;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
}

.suave-agent__primary:disabled,
.suave-agent__send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.suave-agent__error {
  margin: 10px 0 0;
  color: #ffb4b4;
  font-size: 13px;
}

.suave-agent__messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 6px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(133, 152, 248, 0.55) transparent;
}

.suave-agent__messages::-webkit-scrollbar {
  width: 4px;
}

.suave-agent__messages::-webkit-scrollbar-track {
  background: transparent;
}

.suave-agent__messages::-webkit-scrollbar-thumb {
  background: rgba(133, 152, 248, 0.55);
  border-radius: 999px;
}

.suave-agent__messages::-webkit-scrollbar-thumb:hover {
  background: rgba(133, 152, 248, 0.85);
}

.suave-agent__messages::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.suave-agent__bubble {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

.suave-agent__bubble--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: #eef1ff;
  border-bottom-left-radius: 4px;
  white-space: normal;
}

.suave-agent__bubble--assistant p {
  margin: 0 0 0.55em;
}

.suave-agent__bubble--assistant p:last-child {
  margin-bottom: 0;
}

.suave-agent__bubble--assistant ul,
.suave-agent__bubble--assistant ol {
  margin: 0.35em 0 0.55em;
  padding-left: 1.2em;
}

.suave-agent__bubble--assistant a {
  color: #9db4ff;
  text-decoration: underline;
}

.suave-agent__bubble--assistant code {
  font-size: 0.92em;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 0.1em 0.35em;
}

.suave-agent__bubble--assistant pre {
  overflow-x: auto;
  margin: 0.45em 0;
  padding: 0.65em 0.75em;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.suave-agent__bubble--assistant pre code {
  background: transparent;
  padding: 0;
}

.suave-agent__bubble--assistant strong {
  font-weight: 700;
}

.suave-agent__bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--suave-agent-blue), #7158f5);
  color: #fff;
  border-bottom-right-radius: 4px;
  white-space: pre-wrap;
}

.suave-agent__status {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #8598f8;
}

.suave-agent__composer {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.suave-agent__composer textarea {
  resize: none;
  min-height: 44px;
  max-height: calc(12px + 12px + (1.45em * 3));
  line-height: 1.45;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  field-sizing: content;
}

.suave-agent__composer textarea::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.suave-agent__send {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.suave-agent .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1023px) {
  .suave-agent__panel {
    right: 16px;
    bottom: 88px;
  }
}

@media (max-width: 767px) {
  .suave-agent__panel {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(80px + env(safe-area-inset-bottom));
    width: calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
    height: min(70vh, calc(100vh - 120px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .suave-agent__online-dot {
    animation: none;
  }
}
/* ===== SUAVE AGENT CHAT END ===== */

