/* Deferred marketing CSS — page-specific sections; load non-blocking on the homepage. */

/* ===== 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;
}

@media (max-width: 767px) {
  .site-main > .full-bleed.about-modules-section {
  display: none;
  }
 }


.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: var(--site-font);
  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 :root tokens (--text-* / --site-font) */
  --product-fs-hero: clamp(40px, 6vw, 72px);
  --product-lh-hero: 82px;
  --product-fs-display: var(--text-2xl);
  --product-fs-section: clamp(1.75rem, 2.5vw, 2rem);
  --product-lh-section: 1.12;
  --product-fs-eyebrow: 13px;
  --product-fs-subtitle: var(--text-sm);
  --product-lh-subtitle: 1.55;
  --product-fs-body: var(--text-sm);
  --product-lh-body: 1.55;
  --product-fs-body-lg: var(--text-base);
  --product-lh-body-lg: 1.55;
  --product-fs-card-title: var(--text-base);
  --product-lh-card-title: 1.25;
  --product-fs-label: var(--text-sm);
  --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 {
  display: none;
}

.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: 600;
  color: var(--product-text);
  line-height: var(--product-lh-section);
  letter-spacing: -0.025em;
  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: 12px 24px;
  border-radius: 11px;
  font-size: var(--text-sm);
  line-height: 1.25;
  font-weight: 700;
  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: var(--text-sm) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  width: auto !important;
}

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

.product-btn--lg {
  padding: 14px 28px;
  font-size: var(--text-sm);
}

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

.product-hero--outreach {
  --product-hero-card: rgba(12, 20, 48, 0.72);
  --product-hero-card-border: rgba(120, 150, 255, 0.18);
  --product-fs-hero: clamp(36px, 5vw, 96px);
  --product-lh-hero: 1;
  --product-hero-title-gradient: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 33.65%, #efebff 100%);
  --product-hero-title-soft-gradient: linear-gradient(90deg, #dad2fe 0%, #ffffff 100%);
  background: transparent;
}

.product-top-shell {
  position: relative;
  background-color: #050816;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

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

.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: clamp(36px, 5vw, 56px) 16px clamp(24px, 3vw, 36px);
  text-align: center;
}

.product-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(148, 178, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(6px);
}

.product-hero__badge-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.product-hero__headline-wrap {
  position: relative;
  width: min(100%, 1020px);
  margin: 0 auto 28px;
}

.product-hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1;
  font-style: normal;
}

.product-hero--outreach .product-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
  background: var(--product-hero-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
}

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

.product-hero--outreach .product-hero__title-line {
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: transparent;
}

.product-hero__title-accent {
  background: linear-gradient(180deg, #b8c8ff 0%, #8ea4ff 42%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-hero--outreach .product-hero__title-accent {
  background: none;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-hero__title-soft {
  background: var(--product-hero-title-soft-gradient, linear-gradient(90deg, #dad2fe 0%, #ffffff 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-hero__subtitle {
  font-size: 18px;
  color: rgba(226, 232, 255, 0.78);
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  max-width: 760px;
  margin: 0 auto 32px;
  font-family: var(--product-font);
  letter-spacing: -0.01em;
}

.product-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.product-hero__actions .product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  min-width: 214px;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.product-hero__actions .product-btn--primary {
  background: var(--product-accent);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(42, 77, 251, 0.34);
}

.product-hero__actions .product-btn--primary:hover {
  background: var(--product-accent-deep);
  color: #fff;
}

.product-hero__actions .product-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.product-hero__actions .product-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.product-hero__divider {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  height: 0;
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: 0;
  border: 0;
  border-top: 1px solid;
  border-image-source: linear-gradient(
    90deg,
    rgba(42, 77, 251, 0.1) 0%,
    rgba(42, 77, 251, 0.5) 50%,
    rgba(102, 91, 249, 0.5) 75%,
    rgba(102, 91, 249, 0.1) 100%
  );
  border-image-slice: 1;
}

.product-hero__chips {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  width: min(100%, 920px);
}

.product-hero__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 108px;
}

.product-hero__chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-hero__chip-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.product-hero__chip-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(226, 232, 255, 0.82);
  line-height: 1.3;
}

.product-hero__banner {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 1006px);
  aspect-ratio: 1006 / 498;
  margin: clamp(28px, 5vw, 48px) auto 0;
}

.product-hero__banner-back {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-hero__banner-stage {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: 79.124%;
  max-width: 796px;
  aspect-ratio: 796 / 448;
}

.product-hero__banner-gif {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7.78px;
  object-fit: cover;
}

.product-hero__banner-tile {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.product-hero__banner-tile--top-left {
  top: -15.41%;
  left: -30.57%;
  width: min(240px, 42vw);
}

.product-hero__banner-tile--top-left .product-hero__banner-tile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 240 / 138.111;
  object-fit: contain;
}

.product-hero__banner-tile--bottom-left {
  top: 47.52%;
  left: -27.52%;
  width: min(210px, 38vw);
}

.product-hero__banner-tile--top-right {
  top: -13.03%;
  right: -20.73%;
  width: min(210px, 40vw);
}

.product-hero__banner-tile--top-right .product-hero__banner-tile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 230;
  object-fit: contain;
}

.product-hero__banner-tile--bottom-right {
  top: 88.84%;
  right: -30.24%;
  width: min(340px, 44vw);
}

.product-hero__banner-tile--bottom-right .product-hero__banner-tile-image {
  width: 100%;
  height: auto;
  aspect-ratio: 340 / 150;
  object-fit: contain;
}

.product-hero__banner-tile-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero__banner-tile-card {
  border: 1px solid rgba(120, 150, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 18, 42, 0.82);
  box-shadow: 0 14px 36px rgba(2, 8, 28, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
}

.product-hero__banner-tile-card--follow-up {
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border: 1px solid #ffffff0f;
  border-radius: 21px;
  background: linear-gradient(180deg, rgba(0, 38, 227, 0.14) 0%, rgba(0, 38, 227, 0.14) 78.72%);
  box-shadow: 3px 7px 22px 0 #2a4dfb24;
  backdrop-filter: blur(46px);
  -webkit-backdrop-filter: blur(46px);
}

.product-hero__banner-tile-head--follow-up {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.product-hero__banner-tile-card--follow-up .product-hero__banner-tile-icon--square {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.product-hero__banner-tile-title--follow-up {
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.product-hero__banner-tile-card--follow-up .product-hero__banner-tile-copy {
  font-size: 10px;
  line-height: 1.35;
}

.product-hero__banner-tile-card--deal {
  padding-bottom: 0;
  overflow: hidden;
}

.product-hero__banner-tile-card--companies {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 14px 12px 14px 16px;
  background: rgba(6, 12, 32, 0.92);
}

.product-hero__banner-tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-hero__banner-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 12px;
}

.product-hero__banner-tile-icon--round {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a4dfb 0%, #22d3ee 100%);
}

.product-hero__banner-tile-icon--square {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a4dfb 0%, #22d3ee 100%);
}

.product-hero__banner-tile-icon--success {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  font-size: 16px;
}

.product-hero__banner-tile-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.product-hero__banner-tile-lead-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-hero__banner-tile-lead-body img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-hero__banner-tile-lead-body strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.product-hero__banner-tile-lead-body p,
.product-hero__banner-tile-copy {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(226, 232, 255, 0.68);
}

.product-hero__banner-tile-meta {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(226, 232, 255, 0.72);
}

.product-hero__banner-tile-amount {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.product-hero__banner-tile-chart {
  width: calc(100% + 32px);
  height: 92px;
  margin: 8px -16px 0;
  overflow: hidden;
}

.product-hero__banner-tile-chart img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.product-hero__banner-tile-companies-copy {
  flex: 1;
  min-width: 0;
}

.product-hero__banner-tile-label {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(226, 232, 255, 0.62);
}

.product-hero__banner-tile-value {
  margin: 0 0 4px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.product-hero__banner-tile-change {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #60a5fa;
}

.product-hero__banner-tile-companies-chart {
  display: block;
  width: 112px;
  height: auto;
  align-self: flex-end;
  object-fit: contain;
  opacity: 0.95;
}

/* ─── How It Works ─── */
.product-how-it-works {
  position: relative;
  padding: clamp(12px, 2vw, 20px) 0 clamp(72px, 8vw, 112px);
}

.product-how-it-works__container {
  position: relative;
  z-index: 2;
}

.product-how-it-works__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.product-how-it-works__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid rgba(148, 178, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #9C88FA;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.product-how-it-works__title {
  margin: 0 0 16px;
  font-size: var(--product-fs-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.product-how-it-works__title-accent {
  background: linear-gradient(180deg, #b8c8ff 0%, #8ea4ff 42%, #c56bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-how-it-works__subtitle {
  margin: 0;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: rgba(226, 232, 255, 0.78);
}

.product-how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-how-it-works__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 236px;
  min-height: 236px;
  padding: 24px;
  border: none;
  border-radius: 17.78px;
  background: rgba(8, 14, 36, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(2, 8, 28, 0.18);
}

.product-how-it-works__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 17.78px;
  padding: 1.5px;
  background: linear-gradient(
    41.87deg,
    #B6CBDC 1.99%,
    #DCE7EE 23.87%,
    #34628C 41.74%,
    #5B85A8 58.26%,
    #000026 76.13%,
    #E7EEF8 98.01%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.product-how-it-works__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08);
}

.product-how-it-works__icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.product-how-it-works__card h3 {
  margin: 0;
  font-size: var(--product-fs-card-title);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.product-how-it-works__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(226, 232, 255, 0.72);
}

/* ─── Add-Ons ─── */
.product-add-ons {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
  background-color: #f8faff;
  background-image: url("/assets/product/add_ons_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.product-add-ons__container {
  position: relative;
  z-index: 1;
}

.product-add-ons__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.product-add-ons__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(42, 77, 251, 0.08);
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-add-ons__title {
  margin: 0 0 16px;
  font-size: var(--product-fs-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--product-text);
}

.product-add-ons__title-accent {
  background: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-add-ons__subtitle {
  margin: 0;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: var(--product-muted);
}

.product-add-ons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-add-ons__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  padding: 24px 22px;
  border: 1px solid rgba(42, 77, 251, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(42, 77, 251, 0.06);
}

.product-add-ons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(42, 77, 251, 0.08);
}

.product-add-ons__icon img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.product-add-ons__card h3 {
  margin: 0;
  font-size: var(--product-fs-card-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--product-text);
}

.product-add-ons__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--product-muted);
}

.product-add-ons__cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 48px);
}

.product-add-ons__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--product-fs-body-lg);
  font-weight: 600;
  color: var(--product-accent);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.product-add-ons__link:hover {
  color: var(--product-accent-deep);
  gap: 12px;
}

.product-add-ons__link i {
  font-size: 14px;
}

/* ─── How The-Suave Works for Business ─── */
.product-business-works {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
  background: linear-gradient(180deg, #f8faff 0%, #f4f8fb 100%);
}

.product-business-works__container {
  position: relative;
  z-index: 1;
}

.product-business-works__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.product-business-works__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-business-works__title {
  margin: 0 0 16px;
  font-size: var(--product-fs-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--product-text);
}

.product-business-works__title-accent {
  background: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-business-works__subtitle {
  margin: 0;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: var(--product-muted);
}

.product-business-works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-business-works__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(42, 77, 251, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(42, 77, 251, 0.06);
}

.product-business-works__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-business-works__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.product-business-works__icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.product-business-works__icon img[src$=".png"] {
  width: 24px;
  height: 24px;
}

.product-business-works__body {
  flex: 1;
  min-width: 0;
}

.product-business-works__body h3 {
  margin: 0 0 8px;
  font-size: var(--product-fs-card-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--product-text);
}

.product-business-works__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--product-muted);
}

.product-business-works__integrations {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-business-works__integration-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(42, 77, 251, 0.08);
  box-shadow: 0 2px 8px rgba(42, 77, 251, 0.08);
}

.product-business-works__integration-item img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.product-business-works__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.product-business-works__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 77, 251, 0.08);
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.product-business-works__cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 48px);
}

.product-business-works__btn {
  min-width: 220px;
  gap: 8px;
  background: var(--product-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 77, 251, 0.28);
}

.product-business-works__btn:hover {
  background: var(--product-accent-deep);
  color: #fff;
}

/* ─── Data & Privacy ─── */
.product-data-privacy {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0;
  background-color: #050816;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-data-privacy__container {
  position: relative;
  z-index: 1;
}

.product-data-privacy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.product-data-privacy__content {
  max-width: 620px;
}

.product-data-privacy__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid rgba(122, 95, 248, 0.45);
  border-radius: 999px;
  background: rgba(122, 95, 248, 0.12);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.product-data-privacy__title {
  margin: 0 0 20px;
  font-size: var(--product-fs-section);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-data-privacy__title-line {
  display: block;
}

.product-data-privacy__title-line--soft {
  background: linear-gradient(180deg, #d8dcff 0%, #a8b4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-data-privacy__title-line--bright {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-data-privacy__description {
  margin: 0 0 28px;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: rgba(226, 232, 255, 0.78);
}

.product-data-privacy__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-data-privacy__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 232, 255, 0.82);
}

.product-data-privacy__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: #38bdf8;
  flex-shrink: 0;
}

.product-data-privacy__check i {
  font-size: 11px;
}

.product-data-privacy__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-data-privacy__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  background: rgba(8, 16, 40, 0.72);
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-data-privacy__link:hover {
  border-color: rgba(125, 211, 252, 0.65);
  color: #bae6fd;
  background: rgba(14, 24, 56, 0.88);
}

.product-data-privacy__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-data-privacy__visual img {
  width: min(100%, 560px);
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── Case Study ─── */
.product-case-study {
  padding: clamp(64px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
  background: #f8faff;
}

.product-case-study__container {
  position: relative;
  z-index: 1;
}

.product-case-study__header {
  text-align: center;
  max-width: 1030px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.product-case-study__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(122, 95, 248, 0.1);
  color: #7a5ff8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-case-study__title {
  max-width: 1030px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--product-text);
}

.product-case-study__title-accent {
  background: linear-gradient(90deg, #3450FB 46.63%, #9B86FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-case-study__subtitle {
  margin: 0;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: var(--product-muted);
}

.product-case-study__card {
  border: 1px solid rgba(42, 77, 251, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.product-case-study__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(28px, 4vw, 40px);
}

.product-case-study__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.product-case-study__brand img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.product-case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-case-study__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 77, 251, 0.08);
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.product-case-study__tag i {
  font-size: 11px;
}

.product-case-study__intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--product-muted);
}

.product-case-study__block + .product-case-study__block {
  margin-top: 28px;
}

.product-case-study__block-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.product-case-study__block-title--challenge {
  color: #7a5ff8;
}

.product-case-study__block-title--solution {
  color: var(--product-accent);
}

.product-case-study__block-intro {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--product-muted);
}

.product-case-study__solution-intro {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--product-muted);
}

.product-case-study__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-case-study__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--product-muted);
}

.product-case-study__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-case-study__list--challenge li::before {
  background: black;
}

.product-case-study__list--solution li::before {
  background: black;
}

.product-case-study__results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-case-study__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 275px));
  gap: 16px;
}

.product-case-study__metric {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 275px;
  height: 340px;
  padding: 18px 18px 52px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16.78px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  opacity: 1;
}

.product-case-study__metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.product-case-study__metric--blue .product-case-study__metric-icon {
  background: #2a4dfb;
}

.product-case-study__metric--purple .product-case-study__metric-icon {
  background: #7a5ff8;
}

.product-case-study__metric--teal .product-case-study__metric-icon {
  background: #14b8a6;
}

.product-case-study__metric--orange .product-case-study__metric-icon {
  background: #f97316;
}

.product-case-study__metric-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.product-case-study__metric-value {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-case-study__metric--blue .product-case-study__metric-value {
  color: #2a4dfb;
}

.product-case-study__metric--purple .product-case-study__metric-value {
  color: #7a5ff8;
}

.product-case-study__metric--teal .product-case-study__metric-value {
  color: #14b8a6;
}

.product-case-study__metric--orange .product-case-study__metric-value {
  color: #f97316;
}

.product-case-study__metric-label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--product-text);
}

.product-case-study__metric-caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #94a3b8;
}

.product-case-study__metric-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  opacity: 0.45;
  pointer-events: none;
}

.product-case-study__metric-chart--image {
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}

.product-case-study__metric-chart--strip {
  width: 100%;
  height: 175px;
  background-position: center bottom;
  background-size: 100% 100%;
}

.product-case-study__metric-chart--full {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 275px;
  max-width: 100%;
  height: 340px;
  border-radius: 16.78px;
  background-position: center;
  background-size: cover;
}

.product-case-study__metric--has-chart-strip {
  padding-bottom: 175px;
}

.product-case-study__metric--has-chart-full > :not(.product-case-study__metric-chart) {
  position: relative;
  z-index: 1;
}

.product-case-study__metric--blue .product-case-study__metric-chart:not(.product-case-study__metric-chart--image) {
  background:
    linear-gradient(180deg, rgba(42, 77, 251, 0) 0%, rgba(42, 77, 251, 0.12) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 56' preserveAspectRatio='none'%3E%3Cpath d='M0 44 L40 36 L80 40 L120 24 L160 28 L200 12 L240 18 L240 56 L0 56 Z' fill='%232A4DFB' fill-opacity='0.18'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.product-case-study__metric--purple .product-case-study__metric-chart:not(.product-case-study__metric-chart--image) {
  background:
    linear-gradient(180deg, rgba(122, 95, 248, 0) 0%, rgba(122, 95, 248, 0.12) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 56' preserveAspectRatio='none'%3E%3Cpath d='M0 38 L40 30 L80 34 L120 20 L160 24 L200 10 L240 16 L240 56 L0 56 Z' fill='%237A5FF8' fill-opacity='0.18'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.product-case-study__metric--teal .product-case-study__metric-chart:not(.product-case-study__metric-chart--image) {
  background:
    linear-gradient(180deg, rgba(20, 184, 166, 0) 0%, rgba(20, 184, 166, 0.12) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 56' preserveAspectRatio='none'%3E%3Cpath d='M0 42 L40 34 L80 38 L120 26 L160 30 L200 16 L240 22 L240 56 L0 56 Z' fill='%2314B8A6' fill-opacity='0.18'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.product-case-study__metric--orange .product-case-study__metric-chart:not(.product-case-study__metric-chart--image) {
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0) 0%, rgba(249, 115, 22, 0.12) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 56' preserveAspectRatio='none'%3E%3Cpath d='M0 40 L40 32 L80 36 L120 22 L160 26 L200 14 L240 20 L240 56 L0 56 Z' fill='%23F97316' fill-opacity='0.18'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.product-case-study__testimonial {
  width: 100%;
  margin: 0;
}

.product-case-study__quote {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 18px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 180px;
  margin: 0;
  padding: 32px 40px;
  border-radius: 16.78px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  opacity: 1;
}

.product-case-study__quote-mark {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.product-case-study__quote-text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
}

.product-case-study__quote-avatar {
  grid-column: 1;
  grid-row: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-case-study__quote-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--product-muted);
}

.product-case-study__quote-meta strong {
  color: var(--product-text);
  font-weight: 600;
}

.product-case-study__quote-meta > span {
  color: var(--product-accent);
  font-weight: 500;
}

.product-case-study__quote-company {
  color: inherit;
  font-weight: inherit;
}

.product-case-study__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  min-height: 180px;
  margin: clamp(24px, 4vw, 32px) auto 0;
  padding: 32px 40px;
  border: 1px solid rgba(42, 77, 251, 0.1);
  border-radius: 16.78px;
  background: #fff;
}

.product-case-study__cta-copy h3 {
  margin: 0 0 6px;
  font-size: var(--product-fs-section);
  font-weight: 600;
  line-height: 1.25;
  color: var(--product-text);
}

.product-case-study__cta-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--product-muted);
}

.product-case-study__cta-btn {
  flex-shrink: 0;
  min-width: 210px;
  gap: 8px;
}

/* ─── Pricing Offer ─── */
.product-pricing-offer {
  padding: clamp(24px, 3vw, 36px) 0 clamp(72px, 9vw, 112px);
  background-image: url("/assets/product/add_ons_bg.png");

}

.product-pricing-offer__container {
  position: relative;
  z-index: 1;
}

.product-pricing-offer__header {
  text-align: center;
  max-width: 709px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.product-pricing-offer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(42, 77, 251, 0.08);
  color: var(--product-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-pricing-offer__title {
  max-width: 709px;
  margin: 0 auto 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--product-text);
}

.product-pricing-offer__title-accent {
  background: linear-gradient(90deg, #3450FB 46.63%, #9B86FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-pricing-offer__subtitle {
  margin: 0;
  font-size: var(--product-fs-body-lg);
  line-height: var(--product-lh-body-lg);
  color: var(--product-muted);
}

.product-pricing-offer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-pricing-offer__plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.product-pricing-offer__plan--featured {
  border-color: rgba(42, 77, 251, 0.28);
  box-shadow: 0 16px 40px rgba(42, 77, 251, 0.12);
}

.product-pricing-offer__plan-badge {
  position: absolute;
  top: 8px;
  left: 80%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(42, 77, 251, 0.1);
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.product-pricing-offer__plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14.91px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.product-pricing-offer__plan-icon img {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.product-pricing-offer__plan-name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--product-text);
}

.product-pricing-offer__plan-tagline {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: #94a3b8;
}

.product-pricing-offer__plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}

.product-pricing-offer__plan-amount {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--product-text);
}

.product-pricing-offer__plan-period {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

.product-pricing-offer__plan-audience {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--product-muted);
}

.product-pricing-offer__plan-features {
  flex: 1;
  margin-bottom: 20px;
}

.product-pricing-offer__plan-features-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--product-text);
}

.product-pricing-offer__plan-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-pricing-offer__plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--product-muted);
}

.product-pricing-offer__plan-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  flex-shrink: 0;
}

.product-pricing-offer__plan-check i {
  font-size: 10px;
}

.product-pricing-offer__plan-btn {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  gap: 8px;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 12px;
}

.product-pricing-offer__plan-btn--outline {
  background: #fff;
  color: var(--product-accent);
  border: 1px solid rgba(42, 77, 251, 0.35);
  box-shadow: none;
}

.product-pricing-offer__plan-btn--outline:hover {
  background: rgba(42, 77, 251, 0.04);
  color: var(--product-accent-deep);
  border-color: rgba(42, 77, 251, 0.55);
  transform: translateY(-1px);
}

.product-pricing-offer__plan--featured .product-btn--gradient {
  background: linear-gradient(90deg, #2a4dfb 0%, #7a5ff8 100%);
  border: none;
  box-shadow: 0 8px 20px rgba(42, 77, 251, 0.24);
}

/* ─── Sales CTA ─── */
.product-sales-cta {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  background-color: #050816;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.product-sales-cta__container {
  position: relative;
  z-index: 1;
}

.product-sales-cta__shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.product-sales-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.product-sales-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid rgba(122, 95, 248, 0.45);
  border-radius: 999px;
  background: rgba(122, 95, 248, 0.12);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.product-sales-cta__title {
  max-width: 665px;
  margin: 0 auto 18px;
  font-family: var(--product-font);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.product-sales-cta__title-lead {
  background: linear-gradient(90deg, #dad2fe 0%, #ffffff 42.53%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-sales-cta__title-build {
  background: linear-gradient(90deg, #ffffff 0%, #3450fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-sales-cta__title-accent {
  display: block;
  background: linear-gradient(90deg, #3450fb 46.63%, #9b86fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-sales-cta__description {
  margin: 0 auto 28px;
  max-width: 589px;
  font-family: var(--product-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  color: rgba(226, 232, 255, 0.78);
}

.product-sales-cta__btn {
  min-width: 220px;
  gap: 8px;
  background: linear-gradient(90deg, #2a4dfb 0%, #4f63f7 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 77, 251, 0.35);
}

.product-sales-cta__btn:hover {
  background: linear-gradient(90deg, #2343e8 0%, #4356ef 100%);
  color: #fff;
}

.product-sales-cta__service-link {
  margin: 18px auto 0;
  max-width: 589px;
  font-family: var(--product-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  color: rgba(226, 232, 255, 0.72);
}

.product-sales-cta__service-link a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-sales-cta__service-link a:hover {
  color: #dbeafe;
}

.product-sales-cta__float {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  pointer-events: none;
}

.product-sales-cta__float--deal {
  width: 224px;
  left: max(0px, calc(50% - 550px));
}

.product-sales-cta__float--insight {
  width: 210px;
opacity: 1;
border-radius: 21px;
border-width: 1px;
right: max(0px, calc(50% - 580px));
}

.product-sales-cta__deal-card,
.product-sales-cta__insight-card {
  border: 1px solid rgba(148, 178, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 14, 36, 0.72);
  box-shadow: 0 18px 40px rgba(2, 8, 28, 0.28);
  backdrop-filter: blur(12px);
}

.product-sales-cta__deal-card {
  padding: 16px 16px 0;
  overflow: hidden;
}

.product-sales-cta__deal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.product-sales-cta__deal-head img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-sales-cta__deal-company {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(226, 232, 255, 0.72);
}

.product-sales-cta__deal-amount {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.product-sales-cta__deal-category {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(226, 232, 255, 0.58);
}

.product-sales-cta__deal-chart {
  width: 224px;
  height: 125px;
  margin: 0 -16px;
  overflow: hidden;
  opacity: 1;
}

.product-sales-cta__deal-chart img {
  display: block;
  width: 224px;
  height: 125px;
  object-fit: cover;
  object-position: center bottom;
}

.product-sales-cta__insight-card {
  padding: 18px;
}

.product-sales-cta__insight-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-sales-cta__insight-head strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.product-sales-cta__insight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #2a4dfb;
  flex-shrink: 0;
}

.product-sales-cta__insight-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.product-sales-cta__insight-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(226, 232, 255, 0.72);
}

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

/* ─── 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: transparent;
}

.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: var(--product-fs-eyebrow);
  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: var(--text-xl);
  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: var(--product-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 100%;
}

#pricing .product-section__title {
  color: #f8f8ff;
  font-size: var(--product-fs-section);
  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: 12px 24px;
  font-size: var(--text-sm);
  line-height: 1.25;
}

.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: 12px 24px;
  font-size: var(--text-sm);
  line-height: 1.25;
}

#principles .product-section__cta .product-demo-btn {
  padding: 12px 24px;
  line-height: 1.25;
}

#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: 12px 24px;
  border-radius: 11px;
  font-size: var(--text-sm);
  line-height: 1.25;
  font-weight: 700;
  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 (max-width: 1199px) {
  .product-hero__banner-tile {
    display: none;
  }
}

@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-pricing-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-dark-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
    max-width: 100%;
  }

}

@media (max-width: 991px) {
  .product-hero__headline-wrap {
    margin-bottom: 24px;
  }

  .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-how-it-works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-business-works {
    padding: 20px 0 48px;
  }

  .product-business-works__header {
    margin-bottom: 28px;
  }

  .product-business-works__badge {
    margin-bottom: 14px;
  }

  .product-business-works__title {
    margin-bottom: 12px;
  }

  .product-business-works__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-business-works__card {
    min-height: 0;
    gap: 16px;
    padding: 18px;
  }

  .product-business-works__body h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .product-business-works__body p {
    font-size: 13px;
    line-height: 1.45;
  }

  .product-business-works__cta {
    margin-top: 28px;
  }

  .product-data-privacy__grid {
    grid-template-columns: 1fr;
  }

  .product-case-study__body {
    grid-template-columns: 1fr;
  }

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

  .product-case-study__metric {
    max-width: none;
  }

  .product-case-study__quote {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 14px;
    min-height: 0;
    padding: clamp(20px, 4vw, 28px) clamp(20px, 4vw, 24px);
  }

  .product-case-study__quote-mark {
    width: 40px;
    height: 40px;
  }

  .product-case-study__cta {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: clamp(24px, 4vw, 32px) clamp(20px, 4vw, 28px);
  }

  .product-case-study__cta-btn {
    width: 100%;
  }

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

  .product-sales-cta__float {
    display: none;
  }

  .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__subtitle {
    font-size: var(--text-sm);
    line-height: var(--product-lh-subtitle);
  }

  .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;
  }

  .product-case-study__metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .product-hero--outreach {
    --product-fs-hero: clamp(32px, 9vw, 42px);
    --product-lh-hero: 1;
  }

  .product-hero__chips {
    gap: 18px 24px;
  }

  .product-hero__chip {
    min-width: 92px;
  }

  .product-hero__banner {
    display: none;
  }

  .product-how-it-works__grid {
    grid-template-columns: 1fr;
  }

  .product-how-it-works__card {
    height: auto;
    min-height: 0;
    gap: 10px;
    padding: 16px 18px;
  }

  .product-how-it-works__icon {
    width: 36px;
    height: 36px;
  }

  .product-how-it-works__icon img {
    width: 18px;
    height: 18px;
  }

  .product-how-it-works__card h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .product-how-it-works__card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .product-add-ons__grid {
    grid-template-columns: 1fr;
  }

  .product-add-ons__card {
    min-height: 0;
    gap: 10px;
    padding: 16px 18px;
  }

  .product-add-ons__icon {
    width: 36px;
    height: 36px;
  }

  .product-add-ons__icon img {
    width: 15px;
    height: 15px;
  }

  .product-add-ons__card h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .product-add-ons__card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .product-case-study__body {
    gap: 20px;
    padding: 18px 16px;
  }

  .product-case-study__brand {
    gap: 12px;
    margin-bottom: 16px;
  }

  .product-case-study__brand img {
    height: 32px;
  }

  .product-case-study__intro {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
  }

  .product-case-study__block + .product-case-study__block {
    margin-top: 18px;
  }

  .product-case-study__block-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .product-case-study__block-intro,
  .product-case-study__list li {
    font-size: 13px;
    line-height: 1.45;
  }

  .product-case-study__list {
    gap: 8px;
  }

  .product-case-study__results {
    gap: 14px;
  }

  .product-case-study__metric {
    height: auto;
    min-height: 0;
    max-width: none;
    padding: 14px 14px 16px;
  }

  .product-case-study__metric--has-chart-strip {
    padding-bottom: 90px;
  }

  .product-case-study__metric-chart--strip {
    height: 90px;
  }

  .product-case-study__metric-chart--full {
    height: 220px;
  }

  .product-case-study__metric-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .product-case-study__metric-icon img {
    width: 16px;
    height: 16px;
  }

  .product-case-study__metric-label {
    font-size: 13px;
  }

  .product-case-study__metric-caption {
    font-size: 11px;
  }

  .product-case-study__quote {
    min-height: 0;
    padding: 16px 18px;
    column-gap: 12px;
    row-gap: 12px;
  }

  .product-case-study__quote-mark {
    width: 32px;
    height: 32px;
  }

  .product-case-study__quote-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .product-case-study__quote-avatar {
    width: 36px;
    height: 36px;
  }

  .product-case-study__quote-meta {
    font-size: 12px;
  }

  .product-case-study__cta {
    min-height: 0;
    padding: 18px 16px;
  }

  .product-case-study__cta-copy h3 {
    font-size: 16px;
  }

  .product-case-study__cta-copy p {
    font-size: 13px;
    line-height: 1.4;
  }

  .product-pricing-offer__grid {
    grid-template-columns: 1fr;
  }

  .product-business-works__grid {
    grid-template-columns: 1fr;
  }

  .product-business-works {
    padding: 16px 0 40px;
  }

  .product-business-works__header {
    margin-bottom: 24px;
  }

  .product-business-works__card {
    gap: 12px;
    padding: 16px 18px;
  }

  .product-business-works__icon {
    width: 36px;
    height: 36px;
  }

  .product-business-works__icon img {
    width: 36px;
    height: 36px;
  }

  .product-business-works__icon img[src$=".png"] {
    width: 20px;
    height: 20px;
  }

  .product-business-works__cta {
    margin-top: 24px;
  }

  .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;
  }

.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 ===== */
