:root {
  --bg: #ffffff;
  --surface: #f8f9fb;
  --navy: #091832;
  --navy-90: #0d2040;
  --ink: #0b1a33;
  --accent: #290660 !important;
  --accent-soft: rgba(224, 78, 20, 0.06);
  --accent-glow: #29066038;
  --accent-hover: #290660 !important;
  --blue: #1a6bff;
  --blue-soft: rgba(26, 107, 255, 0.05);
  --teal: #0ca88f;
  --teal-soft: rgba(12, 168, 143, 0.05);
  --green: #290660;
  --green-soft: rgba(15, 169, 104, 0.05);
  --violet: #5b4cff;
  --violet-soft: rgba(91, 76, 255, 0.05);
  --g100: #f3f5f7;
  --g200: #e5e8ec;
  --g300: #c9cdd4;
  --g400: #8f96a3;
  --g500: #5f6978;
  --g600: #3d4655;
  --g700: #252d3a;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 24px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-bg .g1 {
  width: 600px;
  height: 600px;
  background: rgba(224, 78, 20, 0.035);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bg .g2 {
  width: 350px;
  height: 350px;
  background: rgba(26, 107, 255, 0.03);
  top: 50px;
  right: 0;
}

.hero-bg .g3 {
  width: 300px;
  height: 300px;
  background: rgba(12, 168, 143, 0.025);
  bottom: 0;
  left: 5%;
}

.hero-bg .dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse 55% 45% at 50% 35%,
    black 20%,
    transparent 70%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* USA pill */
.usa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #290660;
  border: 1.5px solid var(--g200);
  padding: 6px 18px 6px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: White;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025);
  animation: fadeUp 0.5s ease 0.1s both;
}

.usa-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #002868 33%,
    #fff 33%,
    #fff 66%,
    #bf0a30 66%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.usa-flag::after {
  content: "★";
  position: absolute;
  font-size: 0.45rem;
  color: #fff;
  font-weight: 800;
}

.pill-sep {
  width: 1px;
  height: 14px;
  background: var(--g200);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headline */
.hero-h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #290660;
  line-height: 1.12;
  letter-spacing: -2.2px;
  max-width: 760px;
  margin: 0 auto 18px;
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero-h1 .grad {
  background: linear-gradient(135deg, #29066078, #361d5f, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-h1 .line {
  display: block;
}

/* ICP Change #3: Sub-headline inclusive */
.hero-sub {
  font-size: 1.08rem;
  color: var(--g500);
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 34px;
  animation: fadeUp 0.5s ease 0.3s both;
}

.hero-sub strong {
  color: #290660;
  font-weight: 600;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  animation: fadeUp 0.5s ease 0.4s both;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-main:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px #29066038;
  color: white;
}

.btn-main .arr {
  transition: transform 0.3s;
  font-size: 1.1rem;
}

.btn-main:hover .arr {
  transform: translateX(4px);
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--navy);
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid var(--g200);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-sec:hover {
  border-color: var(--g400);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

/* ICP Change #2: Pricing link below CTAs */
.pricing-link-hero {
  display: block;
  text-align: center;
  margin-bottom: 25px;
  animation: fadeUp 0.5s ease 0.42s both;
  margin-top: 25px;
}

.pricing-link-hero a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px dashed #2906604d;
  transition: all 0.2s;
  padding-bottom: 1px;
}

.pricing-link-hero a:hover {
  border-bottom-color: var(--primary);
}

/* ICP Change #1: Pricing hint in note */
.hero-note {
  font-size: 18px;
  color: black;
  margin-bottom: 40px;
  animation: fadeUp 0.5s ease 0.45s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-note .ck {
  color: var(--green);
  font-weight: 700;
}

/* ICP Change #4: Trust chips inclusive */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.5s ease 0.5s both;
}

.tc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid;
}

.tc-iso {
  background: var(--green-soft);
  border-color: rgba(15, 169, 104, 0.12);
  color: var(--green);
}

.tc-clients {
  background: var(--blue-soft);
  border-color: rgba(26, 107, 255, 0.1);
  color: var(--blue);
}

.tc-acc {
  background: var(--teal-soft);
  border-color: rgba(12, 168, 143, 0.1);
  color: var(--teal);
}

.tc-global {
  background: var(--violet-soft);
  border-color: rgba(91, 76, 255, 0.1);
  color: var(--violet);
}

.tc-media {
  background: var(--accent-soft);
  border-color: rgba(224, 78, 20, 0.1);
  color: var(--primary);
}

.tc .td {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Featured logos */
.featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.55s both;
      max-width: 1300px;
    margin-inline: auto;
    padding: 0 16px;
}

.featured-home .iweb-marquee-slider-section-design-logo_items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.iweb-marquee-slider-section-design-logo_items img {
  width: 100%;
  height: auto;
  max-width: 190px;
}

.featured-home .iweb-marquee-slider-section-design-logo_items img{
  max-width: 130px;
}

.featured .fl {
  font-size: 16px;
  font-weight: 700;
  color: #290660;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.featured .fs {
  width: 1px;
  height: 18px;
  background: #290660;
}

.f-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  /* filter: grayscale(1); */
  /* opacity: 0.3; */
  transition: opacity 0.3s;
}

.f-logos:hover {
  /* opacity: 0.5; */
}

.f-logo {
  font-size: 18px;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.f-logo.sm {
  font-size: 0.82rem;
  font-weight: 700;
}

/* ========================
   DASHBOARD VISUAL
   ======================== */
.dash-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  animation: fadeUp 0.6s ease 0.6s both;
  position: relative;
}

.fb {
  position: absolute;
  background: #290660;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px #0000000f;
  z-index: 10;
}

.fb-1 {
  top: 48px;
  left: -16px;
  animation: fbIn 0.5s ease 0.9s both;
}

.fb-2 {
  top: 60px;
  right: -12px;
  animation: fbIn 0.5s ease 1.1s both;
}

.fb-3 {
  bottom: 100px;
  left: -8px;
  animation: fbIn 0.5s ease 1.3s both;
}

@keyframes fbIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.93);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fb .fh {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.fb .fv {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: white !important;
}

.fb .fs2 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 1px;
}

.fc-up {
  color: White;
}

.fc-dn {
  color: #fff;
}

.fb .fr {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 3px;
}

.fr-us {
  background: rgba(26, 107, 255, 0.06);
  color: white;
}

.fr-uk {
  background: rgba(91, 76, 255, 0.06);
  color: white;
}

.df {
  background: var(--bg);
  border: 1px solid var(--g200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.03);
}

.chrome {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: #290660;
  border-bottom: 1px solid #290660;
  gap: 10px;
}

.cd {
  display: flex;
  gap: 4px;
}

.cd i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.cd i:nth-child(1) {
  background: #ff5f57;
}

.cd i:nth-child(2) {
  background: #febc2e;
}

.cd i:nth-child(3) {
  background: #28c840;
}

.cu {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--g200);
  border-radius: 5px;
  padding: 4px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--g400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cu .lk {
  color: var(--green);
  font-size: 0.65rem;
}

.cl {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cl .cp {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

.db {
  padding: 20px;
}

.rb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.rt {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.rtb {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #290660;
  background: white;
  color: #290660;
  cursor: pointer;
  transition: all 0.2s;
}

.rtb.active-rtb {
  background: #290660;
  color: #fff;
  border-color: #290660;
  box-shadow: 0 2px 8px #290660a6;
}

.ri {
  font-size: 0.58rem;
  color: var(--g400);
}

.ri strong {
  color: var(--g600);
}

.sg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.st {
  background: white;
  border: 1px solid rgb(41 6 96);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.2s;
}

.st:hover {
  transform: translateY(-2px);
}

.st .sv {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #290660;
  line-height: 1;
}

.st .sl {
  font-size: 12px;
  font-weight: 700;
  color: #290660a3;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-top: 4px;
}

.st .sd {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  color: black;
}

.dg {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.pn {
  background: var(--g100);
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 16px;
}

.ph {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pt {
  font-size: 16px;
  font-weight: 700;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pl {
  display: flex;
  gap: 8px;
}

.plg {
  font-size: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--g400);
}

.plg i {
  width: 7px;
  height: 3px;
  border-radius: 2px;
  display: block;
}

svg.ch {
  width: 100%;
  height: 85px;
  display: block;
}

.ln {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.l1 {
  stroke: var(--primary);
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 2s ease 0.8s forwards;
}

.l2 {
  stroke: var(--blue);
  opacity: 0.45;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 2s ease 1s forwards;
}

.l3 {
  stroke: var(--teal);
  opacity: 0.35;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 2s ease 1.2s forwards;
}

.ar {
  opacity: 0;
  animation: fadeIn 0.8s ease 1.5s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

table.tb {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

table.tb th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #290660;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 0 6px 8px;
  border-bottom: 1px solid #290660;
}

table.tb td {
  padding: 7px 6px;
  color: #290660;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

table.tb tr:last-child td {
  border-bottom: none;
}

.plt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.plt i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
}

.pr {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--navy);
}

.tg {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
}

.tg-s {
  background: rgba(15, 169, 104, 0.08);
  color: var(--green);
}

.tg-o {
  background: rgba(229, 62, 62, 0.06);
  color: #e53e3e;
}

.tg-m {
  background: var(--accent-soft);
  color: var(--primary);
}

.tg-d {
  background: var(--blue-soft);
  color: var(--blue);
}

.rf {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
  display: inline-block;
  margin-left: 3px;
  background: rgb(41 6 96);
  color: white;
}

.pb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border-top: 1px solid var(--g200);
  flex-wrap: wrap;
}

.pc {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: #fff;
  color: #290660;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid #290660;
}

.pc i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
}

.pm {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 8px;
}

/* ========================
   PLATFORM LOGOS
   ======================== */
.plat-section {
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.ps-inner {
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 14px;
  padding: 28px 28px 20px;
}

.ps-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.ps-head h3 {
  font-size: 26px;
  font-weight: 700;
  color: #290660;
}

.ps-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
}

.ps-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  overflow: scroll;
  white-space: nowrap;
}

.pst {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: var(--bg);
  color: var(--g500);
  cursor: pointer;
  transition: all 0.2s;
}

.pst.active {
  background: #290660;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 2px 6px rgba(9, 24, 50, 0.1);
}

.pg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.pgc {
  background: var(--bg);
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
  position: relative;
}

.pgc:hover {
  border-color: var(--g300);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.035);
  transform: translateY(-2px);
}

.pgc .pgt {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.pgc .pgn {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.pgc .pgf {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  background: #290660;
  color: white;
}

.ps-more {
  text-align: center;
  margin-top: 14px;
}

.ps-more a {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1.5px dashed #290660cf;
}

.plat-panel {
  display: none;
}

.plat-panel.active {
  display: grid;
}

/* ========================
   ICP Change #6: STATS BAR with pricing
   ======================== */
.stats-section {
  max-width: 1300px;
  margin: 32px auto 0;
  padding: 0 20px;
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ss {
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s;
}

.ss:hover {
  border-color: var(--g300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.ss .sn {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.ss .slb {
  font-size: 16px;
  font-weight: 700;
  color: black;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ss .ssb {
  font-size: 16px;
  font-weight: 500;
  color: var(--g400);
  margin-top: 3px;
}

.ss:nth-child(1) .sn {
  color: var(--primary);
}

.ss:nth-child(2) .sn {
  color: var(--blue);
}

.ss:nth-child(3) .sn {
  color: var(--teal);
}

.ss:nth-child(4) .sn {
  color: var(--green);
}

/* ========================
   ICP Change #5: SERVICE CARDS with dual CTAs
   ======================== */
.srv-section {
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.srv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.srv-head h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.srv-head h2 span {
  color: var(--primary);
}

.srv-head p {
  font-size: 16px;
  color: #000;
  max-width: 420px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.sc {
  background: var(--bg);
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  padding: 26px 20px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.sc:hover {
  border-color: var(--g300);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.sc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
}

.sc:nth-child(1)::before {
  background: var(--primary);
}

.sc:nth-child(2)::before {
  background: var(--blue);
}

.sc:nth-child(3)::before {
  background: var(--teal);
}

.sc:nth-child(4)::before {
  background: var(--violet);
}

.sc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.sc:nth-child(1) .sc-icon {
  background: var(--accent-soft);
}

.sc:nth-child(2) .sc-icon {
  background: var(--blue-soft);
}

.sc:nth-child(3) .sc-icon {
  background: var(--teal-soft);
}

.sc:nth-child(4) .sc-icon {
  background: var(--violet-soft);
}

.sc h3 {
  font-size: 16px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 7px;
  line-height: 1.3;
}

.sc .sd2 {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 90px;
}

.sc-res {
  background: var(--g100);
  border-radius: 7px;
  padding: 9px 11px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sc-res .srn {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.sc-res .srt {
  font-size: 12px;
  font-weight: 600;
  color: var(--g400);
  line-height: 1.4;
}

.sc-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  padding: 4px 0;
}

.sc-cta:hover {
  gap: 9px;
}

.sc:nth-child(1) .sc-cta {
  color: var(--primary);
}

.sc:nth-child(2) .sc-cta {
  color: var(--blue);
}

.sc:nth-child(3) .sc-cta {
  color: var(--teal);
}

.sc:nth-child(4) .sc-cta {
  color: var(--violet);
}

.sc-pricing {
  font-size: 14px;
  font-weight: 600;
  color: var(--g400);
  text-decoration: none;
  border-bottom: 1px dashed var(--g300);
  transition: all 0.2s;
}

.sc-pricing:hover {
  color: var(--g600);
  border-bottom-color: var(--g500);
}

/* ========================
   ICP Change #7: BOTTOM CTA segmented
   ======================== */
.bottom-section {
  max-width: 1300px;
  margin: 40px auto 0;
  padding: 0 20px 60px;
}

.bc {
  background: linear-gradient(135deg, #290660, #290660d4);
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
}

.bc h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.bc .bc-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.bc-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.bc-path {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.bc-path:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.bc-path .bp-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.bc-path .bp-label {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.bc-path:nth-child(1) .bp-label {
  color: white;
}

.bc-path:nth-child(2) .bp-label {
  color: white;
}

.bc-path:nth-child(3) .bp-label {
  color: white;
}

.bc-path .bp-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bc-path .bp-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ========================
   INTEGRATED SOLUTIONS
   ======================== */
.sol-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.sol-label {
  text-align: center;
  margin-bottom: 8px;
}

.sol-label span {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #290660;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
}

.sol-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.sol-sub {
  text-align: center;
  font-size: 16px;
  color: #000;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.sol-card {
  background: var(--bg);
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.sol-card:hover {
  border-color: var(--g300);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.sol-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
}

.sol-card:nth-child(1)::before {
  background: var(--primary);
}

.sol-card:nth-child(2)::before {
  background: var(--blue);
}

.sol-card:nth-child(3)::before {
  background: var(--teal);
}

.sol-card:nth-child(4)::before {
  background: var(--violet);
}

.sol-card:nth-child(5)::before {
  background: var(--green);
}

.sol-card:nth-child(6)::before {
  background: #e5720f;
}

.sol-card .sol-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.sol-card:nth-child(1) .sol-icon {
  background: var(--accent-soft);
}

.sol-card:nth-child(2) .sol-icon {
  background: var(--blue-soft);
}

.sol-card:nth-child(3) .sol-icon {
  background: var(--teal-soft);
}

.sol-card:nth-child(4) .sol-icon {
  background: var(--violet-soft);
}

.sol-card:nth-child(5) .sol-icon {
  background: var(--green-soft);
}

.sol-card:nth-child(6) .sol-icon {
  background: rgba(229, 114, 15, 0.06);
}

.sol-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 15px;
  line-height: 1.3;
}

.sol-card .sol-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Mini visual inside card */
.sol-visual {
  background: #290660;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
}

.sol-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #fff;
  font-size: 16px;
}

.sol-row:last-child {
  border-bottom: none;
}

.sol-row .sr-store {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: white;
}

.sol-row .sr-store i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.sol-row .sr-val {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 16px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg);
}

.sr-val.sr-green {
  color: var(--green);
}

.sr-val.sr-red {
  color: #e53e3e;
}

.sr-val.sr-blue {
  color: var(--blue);
}

.sr-val.sr-navy {
  color: var(--navy);
}

.sol-card .sol-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}

.sol-card .sol-cta:hover {
  gap: 9px;
}

.sol-card:nth-child(1) .sol-cta {
  color: var(--primary);
}

.sol-card:nth-child(2) .sol-cta {
  color: var(--blue);
}

.sol-card:nth-child(3) .sol-cta {
  color: var(--teal);
}

.sol-card:nth-child(4) .sol-cta {
  color: var(--violet);
}

.sol-card:nth-child(5) .sol-cta {
  color: var(--green);
}

.sol-card:nth-child(6) .sol-cta {
  color: #e5720f;
}

.sol-more {
  text-align: center;
  margin-top: 8px;
}

.sol-more a {
  font-size: 16px;
  font-weight: 600;
  color: #290660;
  text-decoration: none;
  border-bottom: 1px dashed #290660;
  transition: color 0.2s;
}

.sol-more a:hover {
  color: #290660;
}

/* ========================
   HOW IT WORKS
   ======================== */
.hiw-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.hiw-label {
  text-align: center;
  margin-bottom: 8px;
}

.hiw-label span {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--accent-soft);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
}

.hiw-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hiw-sub {
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-bottom: 36px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.hiw-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #290660 0,
    #290660 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.hiw-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hiw-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hiw-step:nth-child(1) .hiw-num {
  background: var(--primary);
}

.hiw-step:nth-child(2) .hiw-num {
  background: white;
  border: 1px solid #290660;
  color: #290660;
}

.hiw-step:nth-child(3) .hiw-num {
  background: var(--green);
}

.hiw-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 6px;
}

.hiw-step p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.hiw-step .hiw-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: #290660;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 10px;
}

.hiw-cta {
  text-align: center;
  margin-top: 32px;
}

.hiw-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--accent-glow);
  font-family: inherit;
}

.hiw-cta a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========================
   INDUSTRY TABS
   ======================== */
.ind-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.ind-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.ind-sub {
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-bottom: 28px;
}

.ind-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ind-tab.active img {
  filter: brightness(50);
}

.ind-tab {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #290660;
  background: var(--bg);
  color: var(--g500);
  cursor: pointer;
  transition: all 0.2s;
}

.ind-tab.active {
  background: #290660;
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 2px 8px #29066082;
}

.ind-tab:hover:not(.active) {
  border-color: var(--g300);
  color: var(--navy);
}

.ind-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 14px;
  padding: 32px;
  animation: fadeUp 0.3s ease;
}

.ind-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.ind-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.ind-info p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 18px;
}

.ind-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.ind-met {
  background: #290660;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}

.ind-met .im-val {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 800;
  color: rgb(255, 255, 255);
}

.ind-met .im-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.ind-cta:hover {
  gap: 10px;
}

.ind-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ind-plat {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid #290660;
  color: #290660;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ind-plat i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
}

.ind-more {
  text-align: center;
  margin-top: 20px;
}

.ind-more a {
  font-size: 16px;
  font-weight: 600;
  color: #290660;
  text-decoration: none;
  border-bottom: 1px dashed #290660;
  transition: color 0.2s;
}

.awz-clients-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.awz-clients-title {
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
}

.awz-clients-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.5;
}

.awz-cl-tabs {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 10px;
  justify-content: start;
  margin-bottom: 32px;
  padding: 0 4px;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  overflow: auto;
  padding-bottom: 5px;
}
.awz-cl-tabs .awz-cl-tab {
  white-space: nowrap;
}

.awz-cl-tab img, .df-icon img, .awz-dash-dd img  {
    width: 20px;
    margin-right: 5px;
}

 


.awz-cl-tab.active img,
.awz-cl-tab:hover img,
.awz-dash-tab.active .dt-icon img,
.dv-title2 img {
    filter: brightness(0) invert(1);
}

/* Desktop/large screens: tabs wrap normally */
@media (min-width: 1301px) {
  .awz-cl-tabs {
    /* flex-wrap: wrap; */
    /* justify-content: center; */
  }
}

/* Below 1300px: make tabs horizontally scrollable */
@media (max-width: 1300px) {
  .awz-cl-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px 20px;
    /*margin: 0 -20px 32px;     */ /* full-width feel on mobile/tablet */
    scrollbar-width: none; /* hide scrollbar in Firefox */
  }

  .awz-cl-tabs::-webkit-scrollbar {
    /* display: none; */
     /* hide scrollbar in Chrome/Safari/Edge */
  }

  .awz-cl-tab {
    flex: 0 0 auto; /* don't shrink tabs */
    white-space: nowrap;
    min-width: fit-content;
  }
}

.awz-cl-tab {
  background: rgba(255, 255, 255, 0.08);
  color: #290660;
  border: 1px solid #290660;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}

.awz-cl-tab:hover {
  background: #290660;
  color: white;
}

.awz-cl-tab.active {
  background: #290660;
  color: white;
}

.awz-cl-panels {
  position: relative;
}

.awz-cl-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.awz-cl-panel.active {
  display: grid;
}

.awz-cl-logo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #290660;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.2s;
}

.awz-cl-logo:hover {
  transform: translateY(-3px);
  border-color: #c084fc60;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.awz-cl-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.awz-cl-industry {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.awz-cl-flag {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.awz-clients-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 24px;
  font-size: 1.1rem;
  font-weight: 600;
  align-items: center;
}

.awz-clients-stats strong {
  color: #290660;
  font-size: 1.4rem;
}

.awz-clients-cta {
  text-align: center;
}

.awz-clients-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #290660;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 12px 28px;
  border: 2px solid #290660;
  border-radius: 50px;
  transition: all 0.25s;
}

.awz-clients-cta a:hover {
  background: #290660;
  color: rgb(255, 255, 255);
}

/* Responsive for logos */
@media (max-width: 768px) {
  .sol-label span {
    font-size: 14px;
  }
  .sol-title {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .awz-cl-panel {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .awz-cl-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .awz-cl-panel {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  .awz-cl-name {
    font-size: 0.95rem;
  }
  .awz-cl-industry {
    font-size: 0.65rem;
  }
}

/* ========================
   CASE STUDIES
   ======================== */
.cases-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.cases-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.cases-sub {
  text-align: center;
  font-size: 18px;
  color: #000;
  margin-bottom: 28px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-card {
  background: var(--bg);
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  border-color: var(--g300);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.case-card:nth-child(1)::before {
  background: var(--primary);
}

.case-card:nth-child(2)::before {
  background: var(--blue);
}

.case-card:nth-child(3)::before {
  background: var(--teal);
}

.cc-industry {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 15px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.case-card:nth-child(1) .cc-industry {
  background: var(--accent-soft);
  color: var(--accent);
}

.case-card:nth-child(2) .cc-industry {
  background: var(--blue-soft);
  color: var(--blue);
}

.case-card:nth-child(3) .cc-industry {
  background: var(--teal-soft);
  color: var(--teal);
}

.cc-quote {
  font-size: 16px;
  font-weight: 600;
  color: #290660;
  line-height: 1.55;
  margin-bottom: 16px;
  font-style: italic;
}

.cc-result {
  background: var(--g100);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.cc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.cc-before,
.cc-after {
  text-align: center;
}

.cc-before .cc-val,
.cc-after .cc-val {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
}

.cc-before .cc-val {
  color: var(--g400);
}

.cc-after .cc-val {
  color: var(--green);
}

.cc-before .cc-lbl,
.cc-after .cc-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-arrow-r {
  color: var(--g300);
  font-size: 0.8rem;
}

.cc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #290660;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: rgb(255, 255, 255);
}

.cc-name {
  font-size: 16px;
  font-weight: 700;
  color: #290660;
}

.cc-role {
  font-size: 16px;
  color: #000;
}

/* ========================
   TESTIMONIALS
   ======================== */
.test-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.test-inner {
  background: #290660;
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.test-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224, 78, 20, 0.06);
  filter: blur(80px);
}

.test-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.test-sub {
  text-align: center;
  font-size: 16px;
  color: white;
  margin-bottom: 32px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.t-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 18px;
  transition: all 0.3s;
}

.t-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.t-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-quote {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #290660;
}

.t-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.t-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.test-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.t-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.t-badge .tb-score {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

/* ========================
   DATASETS
   ======================== */
.ds-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.ds-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.ds-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
}

.ds-head a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px dashed #290660;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ds-card {
  background: #fff;
  border: 1px solid #290660;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}

.ds-card:hover {
  border-color: var(--g300);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.ds-card .ds-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.ds-card .ds-name {
  font-size: 18px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 2px;
}

.ds-card .ds-type {
  font-size: 16px;
  font-weight: 700;
  color: #290660b3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ds-card .ds-free {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-top: 6px;
  display: block;
}

/* ========================
   BLOG
   ======================== */
.blog-section {
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
}

.blog-head a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px dashed #290660;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog-card {
  background: var(--bg);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: var(--g300);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.blog-img {
  height: auto;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.blog-img img {
    width: 100%;
    object-fit: cover;
}

.blog-body {
  padding: 18px;
}

.blog-tag {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.bt-case {
  background: var(--accent-soft);
  color: var(--primary);
}

.bt-data {
  background: var(--blue-soft);
  color: var(--blue);
}

.bt-guide {
  background: var(--teal-soft);
  color: var(--teal);
}

.blog-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #290660;
  line-height: 1.4;
  margin-bottom: 6px;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================
   WHY TRUST ACTOWIZ (Stats)
   ======================== */
.trust-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.trust-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-head-left h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #290660;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.trust-head-left p {
  font-size: 16px;
  color: #000;
  max-width: 600px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.why-card {
  background: rgb(255, 255, 255);
  border: 1px solid #290660;
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: #290660;
  box-shadow: 0 6px 24px #29066082;
  transform: translateY(-3px);
}

.why-card .wc-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.why-card .wc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.why-card .wc-label {
  font-size: 18px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 6px;
}

.why-card .wc-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.55;
}

.why-card:nth-child(1) .wc-num {
  color: var(--accent);
}

.why-card:nth-child(2) .wc-num {
  color: var(--blue);
}

.why-card:nth-child(3) .wc-num {
  color: var(--teal);
}

.why-card:nth-child(4) .wc-num {
  color: var(--violet);
}

.why-card:nth-child(5) .wc-num {
  color: var(--green);
}

.why-card:nth-child(6) .wc-num {
  color: #e5720f;
}

/* ========================
   AI SOLUTIONS + PARTNER ECOSYSTEM
   ======================== */
.ai-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  overflow: hidden;
}

/* AI Left */
.ai-left {
  background: var(--surface);
  padding: 36px 32px;
}

.ai-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.ai-feature {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.ai-feature .aif-arrow {
  color: #290660;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-feature .aif-text {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.ai-feature .aif-text strong {
  color: #290660;
  font-weight: 700;
}

.ai-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 18px;
}

.ai-cap {
  font-size: 16px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid #290660;
  color: #290660;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ai-cap .ac-icon {
  font-size: 16px;
}

.ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s;
}

.ai-cta:hover {
  background: var(--primary);
  color: #fff;
}

/* Partner Right */
.ai-right {
  background: #290660;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.ai-right::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(224, 78, 20, 0.05);
  filter: blur(60px);
}

.ai-right h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.ai-right > p {
  font-size: 18px;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.partner-item {
  background: rgb(255, 255, 255);
  border: 1px solid #290660;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.2s;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.partner-item .pi-icon {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.partner-item .pi-name {
  font-size: 16px;
  font-weight: 600;
  color: #290660;
  line-height: 1.3;
}

.partner-item:hover .pi-name {
  color: white;
}

.ai-right .ai-cta {
  border-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}

.ai-right .ai-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ========================
   FEATURED CASE STUDY
   ======================== */
.cs-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}

.cs-featured:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.csf-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.csf-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.csf-meta-item {
  background: var(--bg);
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 10px 16px;
}

.csf-ml {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.csf-mv {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.csf-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.csf-quote {
  font-size: 0.86rem;
  color: var(--g500);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.csf-author {
  font-size: 0.78rem;
  color: var(--g500);
  margin-bottom: 10px;
}

.csf-author strong {
  color: var(--navy);
}

.csf-checks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.csf-checks span {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

.csf-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 22px;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s;
}

.csf-cta:hover {
  background: var(--primary);
  color: #fff;
}

.csf-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.csf-img-placeholder {
  background: linear-gradient(135deg, #e8d5c4, #d4b896);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.csf-img-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.csf-img-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.csf-img-text {
  font-size: 0.75rem;
  color: var(--g600);
  margin-bottom: 16px;
}

.csf-img-products {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.csf-prod {
  width: 24px;
  height: 56px;
  border-radius: 12px;
  opacity: 0.7;
}

/* ========================
   CONTACT FORM
   ======================== */
.contact-section {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 20px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: rgb(255, 255, 255);
  border: 1.5px solid #290660;
  border-radius: 16px;
  overflow: hidden;
}

.contact-info {
  background: #290660;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(224, 78, 20, 0.06);
  filter: blur(60px);
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(26, 107, 255, 0.04);
  filter: blur(60px);
}

.ci-label {
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ci-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.ci-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.ci-benefits {
  list-style: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  padding: 0;
}

.ci-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.ci-benefit .cib-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ci-benefit .cib-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.ci-benefit .cib-text strong {
  color: #fff;
  display: block;
  margin-bottom: 1px;
  font-size: 18px;
}

.ci-contact-details {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 20px;
}

.ci-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ci-detail .cid-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
}

.ci-detail a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.ci-detail a:hover {
  color: #fff;
}

.ci-detail span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Form Side */
.contact-form {
  padding: 36px 36px;
}

.cf-title {
  font-size: 20px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 4px;
}

.cf-sub {
  font-size: 16px;
  color: #000;
  margin-bottom: 24px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cf-field {
  margin-bottom: 0;
}

.cf-field.full {
  grid-column: 1/-1;
}

.cf-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--g200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 18px;
  color: #000;
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
}

.cf-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cf-input::placeholder {
  color: var(--g400);
}

textarea.cf-input {
  resize: vertical;
  min-height: 80px;
}

select.cf-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238f96a3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.cf-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: #290660;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.cf-submit:hover {
  background: #290660;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #29066038;
}

.cf-note {
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-top: 10px;
}

.cf-note span {
  color: var(--green);
  font-weight: 600;
}

/* ========================
   MID-PAGE CTA BANNER – PURPLE THEME
   ======================== */
.mid-cta {
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.mid-cta-inner {
  background: linear-gradient(135deg, #290660, #4a148c);
  border-radius: 14px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(41, 6, 96, 0.35);
}

.mid-cta-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.mid-cta-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  position: relative;
  z-index: 1;
}

.mid-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.mid-cta-btn {
  background: rgb(255, 255, 255); /* light purple accent */
  color: #1e0033; /* dark purple text for contrast */
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.mid-cta-btn:hover {
  background: rgb(255, 255, 255);
  color: #290660;
  transform: translateY(-2px);
}

/* Optional secondary link (if you use it later) */
.mid-cta-sec {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.mid-cta-sec:hover {
  color: #c084fc;
}

/* ────────────────────────────────────────────────
   Responsive adjustments
   ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mid-cta-inner {
    padding: 28px 24px;
    flex-direction: column;
    text-align: center;
  }

  .mid-cta-text {
    margin-bottom: 20px;
  }

  .mid-cta-actions {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .mid-cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mid-cta h3 {
    font-size: 1.05rem;
  }
  .mid-cta p {
    font-size: 0.78rem;
  }
}

/* ==============================================
   DASHBOARD PREVIEW - WHITE BG + PURPLE CONTENT
   ============================================== */
.awz-dash-section {
  background: #ffffff;
  color: #333333;
  padding: 80px 20px 60px;
}

.awz-dash-container {
  max-width: 1300px;
  margin: 0 auto;
}

.awz-dash-label span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(192, 132, 252, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}

.awz-dash-title {
  text-align: center;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  color: #290660;
  margin: 16px 0 20px;
}

.awz-dash-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #555555;
}

/* Controls - light bg with purple border */
.awz-dash-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.awz-dash-controls-left,
.awz-dash-controls-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.awz-dash-filter,
.awz-dash-dd {
  background: #ffffff;
  color: #290660;
  border: 1px solid #c084fc;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.awz-dash-filter:hover,
.awz-dash-dd:hover {
  background: #c084fc;
  color: white;
  border-color: #c084fc;
}

/* Tabs - scrollable + attractive cards */
.awz-dash-tabs {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  margin-bottom: 32px;
  scrollbar-width: thin;
  scrollbar-color: #c084fc #f0e8ff;
}

.awz-dash-tabs::-webkit-scrollbar {
  height: 6px;
}

.awz-dash-tabs::-webkit-scrollbar-thumb {
  background: #c084fc;
  border-radius: 10px;
}

.awz-dash-tab {
  flex: 0 0 260px;
  min-width: 260px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e0d4ff;
  box-shadow: 0 4px 16px rgba(41, 6, 96, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.awz-dash-tab:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(192, 132, 252, 0.25);
  border-color: #c084fc;
}

.awz-dash-tab.active {
  background: #290660;
  color: white;
  border-color: #c084fc;
}

.awz-dash-tab .dt-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.awz-dash-tab .dt-name {
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.awz-dash-tab .dt-sub {
  font-size: 0.82rem;
  opacity: 0.8;
  display: block;
}

/* Panels - dark purple inside white section */
.awz-dash-panel {
  display: none;
  background: #290660;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(41, 6, 96, 0.25);
}

.awz-dash-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}

.awz-dash-info {
  padding: 40px 36px;
  background: linear-gradient(135deg, #290660, #3c0f7a);
}

.awz-dash-info p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0.92;
}

.awz-dash-use-cases h4 {
  color: #c084fc;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.awz-dash-use-list {
  list-style: none;
  padding: 0;
}

.awz-dash-use-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.awz-dash-use-list li::before {
  content: "→";
  color: #c084fc;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 2px;
}

.awz-dash-info-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e0033;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.awz-dash-info-cta a:hover {
  background: #fff;
  color: #290660;
  transform: translateY(-2px);
}

.awz-dash-visual {
  padding: 32px;
  background: rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(192, 132, 252, 0.2);
}

/* KPI, Products, Chart styling (white text on dark) */
.dv-title2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dv-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.dv-kpi {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(192, 132, 252, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
}

.kpi-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.kpi-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}

.kpi-up {
  color: #66bb6a;
  font-size: 0.82rem;
}
.kpi-down {
  color: #ef5350;
  font-size: 0.82rem;
}

.dv-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.dv-product {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 12px;
  padding: 16px 14px;
}

.dvp-name {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dvp-price {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}

.dvp-change {
  font-size: 0.78rem;
  font-weight: 600;
}

.dvp-up {
  color: #66bb6a;
}
.dvp-dn {
  color: #ef5350;
}

/* Chart */
.dv-chart2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 132, 252, 0.22);
  border-radius: 12px;
  padding: 18px;
}

.dv-chart-legend {
  font-size: 0.82rem;
  opacity: 0.85;
}

.dv-chart-legend i {
  width: 14px;
  height: 5px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 160px;
  padding-top: 12px;
}

.chart-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.cb-1 {
  background: #c084fc;
}
.cb-2 {
  background: #ab47bc;
  opacity: 0.65;
}

/* Bottom */
.awz-dash-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: #f8f5ff;
  border-radius: 16px;
  border: 1px solid #e0d4ff;
  flex-wrap: wrap;
  gap: 20px;
}

.awz-dash-bottom-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-bottom-pill {
  background: #290660;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.awz-dash-bottom-right a {
  color: #290660;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.awz-dash-bottom-right a:hover {
  color: #ab47bc;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .awz-dash-panel.active {
    grid-template-columns: 1fr;
  }
  .awz-dash-visual {
    border-left: none;
    border-top: 1px solid rgba(192, 132, 252, 0.2);
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .awz-dash-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .awz-dash-info {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .dv-kpis,
  .dv-products {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   API SECTION - PURPLE THEME (ATTRACTIVE & RESPONSIVE)
   ============================================== */
.awz-api-section {
  padding: 80px 20px;
  background: #ffffff;
  max-width: 1300px;
  margin: 0 auto;
}

.awz-api-inner {
  background: #290660;
  color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(41, 6, 96, 0.25);
}

.awz-api-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
}

.awz-api-info {
  padding: 48px 40px;
  background: linear-gradient(135deg, #290660 0%, #3c0f7a 100%);
}

.awz-api-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(192, 132, 252, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.awz-api-info h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px;
  line-height: 1.25;
}

.awz-api-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.awz-api-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.af-check {
  color: #66bb6a;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.awz-api-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.awz-api-cta-primary {
  background: rgb(255, 255, 255);
  color: #290660;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.35);
}

.awz-api-cta-primary:hover {
  background: #290660;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px #29066096;
  border: 1px solid white;
}

.awz-api-cta-secondary {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px dashed rgba(192, 132, 252, 0.4);
  transition: all 0.2s;
}

.awz-api-cta-secondary:hover {
  color: #c084fc;
  border-bottom-color: #c084fc;
}

/* Table wrapper - scrollable on mobile */
.awz-api-table-wrap {
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.18);
  position: relative;
}

.awz-api-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.awz-api-tb {
  width: 100%;
  min-width: 700px; /* forces horizontal scroll on small screens */
  border-collapse: collapse;
}

.awz-api-tb th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.awz-api-tb td {
  padding: 16px 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.awz-api-tb tr:last-child td {
  border-bottom: none;
}

.awz-api-tb td:first-child {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.api-yes {
  color: #66bb6a;
  font-weight: 700;
}

.api-no {
  color: rgba(255, 255, 255, 0.3);
}

.api-freq {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.api-cloud {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Count row - glass effect */
.awz-api-count-row {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(192, 132, 252, 0.2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.awz-api-count-left {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.awz-api-count-pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgb(255, 255, 255);
  color: #290660;
  border: 1px solid rgba(192, 132, 252, 0.3);
}

.awz-api-count-right a {
  color: #c084fc;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.awz-api-count-right a:hover {
  color: #ab47bc;
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .awz-api-top {
    grid-template-columns: 1fr;
  }
  .awz-api-table-wrap {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .awz-api-info {
    padding: 40px 24px;
  }
  .awz-api-count-row {
    flex-direction: column;
    text-align: center;
  }
  .awz-api-count-left {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .awz-api-badge {
    font-size: 0.72rem;
  }
  .awz-api-info h2 {
    font-size: 1.8rem;
  }
}

/* ==============================================
   CASE STUDIES SECTION - PURPLE THEME
   ============================================== */
.awz-case-section {
  padding: 80px 20px;
}

.awz-case-container {
  max-width: 1300px;
  margin: 0 auto;
}

.awz-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Style - Modern & Premium */
.awz-case-card {
  background: #290660;
  color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(41, 6, 96, 0.18);
  transition: all 0.35s ease;
  border: 1px solid rgba(192, 132, 252, 0.18);
  position: relative;
  overflow: hidden;
}

.awz-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(41, 6, 96, 0.32);
  border-color: #c084fc;
}

/* Industry Badge */
.awz-cc-industry {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(192, 132, 252, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Quote */
.awz-cc-quote {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 28px;
  font-style: italic;
  opacity: 0.95;
}

/* Result Before → After */
.awz-cc-result {
  margin-bottom: 32px;
}

.awz-cc-result-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.awz-cc-before,
.awz-cc-after {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.awz-cc-val {
  font-size: 18px;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 4px;
}

.awz-cc-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.awz-cc-arrow {
  font-size: 1.8rem;
  color: #c084fc;
  font-weight: bold;
}

/* Author */
.awz-cc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.awz-cc-avatar {
  width: 48px;
  height: 48px;
  background: #c084fc;
  color: #1e0033;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.awz-cc-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.awz-cc-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive Grid */
@media (max-width: 992px) {
  .awz-case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .awz-case-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .awz-case-card {
    padding: 28px 24px;
  }

  .awz-cc-result-row {
    flex-direction: column;
    gap: 12px;
  }

  .awz-cc-arrow {
    transform: rotate(90deg);
  }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .nav {
    padding: 10px 16px;
  }

  .nav-links,
  .nav-login {
    display: none;
  }

  .mega {
    display: none !important;
  }

  .hero {
    padding-inline: 20px;
    padding-top: 60px;
  }

  .hero-h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .sg {
    grid-template-columns: repeat(3, 1fr);
  }

  .dg {
    grid-template-columns: 1fr;
  }

  .pg {
    grid-template-columns: repeat(3, 1fr);
  }

  .ss-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fb {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-main,
  .btn-sec {
    width: 100%;
    justify-content: center;
  }

  .plat-section,
  .stats-section,
  .srv-section,
  .bottom-section,
  .hiw-section,
  .ind-section,
  .cases-section,
  .test-section,
  .ds-section,
  .blog-section,
  .sol-section,
  .contact-section,
  .trust-section,
  .ai-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bc-paths {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 15px;
  }

  .tc {
    font-size: 0.62rem;
    padding: 5px 9px;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hiw-grid::before {
    display: none;
  }

  .ind-panel.active {
    grid-template-columns: 1fr;
  }

  .ind-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .ds-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    padding: 0;
  }

  .test-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-featured {
    grid-template-columns: 1fr;
  }

  .csf-image {
    order: -1;
  }

  .why-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .ai-inner {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 16px;
  }

  .ft-cta-right {
    text-align: center;
  }

  .ft-contact-item {
    justify-content: center;
  }

  .ft-offices-row {
    grid-template-columns: 1fr;
  }

  .ft-affiliations {
    justify-content: center;
  }

  .ft-cta-center .ft-logo {
    justify-content: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 28px 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
  .f-logos {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero-h1 {
    font-size: 1.85rem;
  }

  .sg {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg {
    grid-template-columns: repeat(2, 1fr);
  }

  .ss-grid,
  .srv-grid {
    grid-template-columns: 1fr;
  }

  .ds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-top {
    grid-template-columns: 1fr;
  }

  .ind-metrics {
    grid-template-columns: 1fr;
  }

  .sol-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Section ── */
.actowiz-testimonial-sliJers__section {
  background: #f4f5f7;
  padding: 0px 0 60px;
  font-family: "DM Sans", sans-serif;
}
.actowiz-testimonial-sliJers__section .ai-section {
  margin-top: 40px;
  padding-top: 40px;
}

/* ── Heading row ── */
.actowiz-testimonial-sliJers__heading {
  font-size: 28px;
  color: #290660;
  font-weight: 600;
  margin-bottom: 10px;
}

.actowiz-testimonial-sliJers-brandicons {
  width: 160px;
  height: 100%;
}

.actowiz-testimonial-sliJers__heading-highlight {
  color: #29066094;
}

.actowiz-testimonial-sliJers__subheading {
  color: #4a5568;
  font-size: 20px;
  margin-bottom: 0;
}

/* ── Slider wrapper ── */
.actowiz-testimonial-sliJers__wrapper {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(13, 33, 55, 0.08);
  margin-top: 36px;
  position: relative;
}

/* ── Slides track ── */
.actowiz-testimonial-sliJers__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.actowiz-testimonial-sliJers__slide {
  min-width: 100%;
  padding: 48px 44px;
}

/* ── Brand name ── */
/* .actowiz-testimonial-sliJers__brand {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d2137;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
} */

/* ── Info tags ── */
.actowiz-testimonial-sliJers__tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.actowiz-testimonial-sliJers__tag {
  border: 1.5px solid #e2e6ea;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 160px;
}

.actowiz-testimonial-sliJers__tag-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #290660;
  margin-bottom: 4px;
}
.actowiz-testimonial-sliJers__tag-label2 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d38bf;
  margin-bottom: 4px;
}

.actowiz-testimonial-sliJers__tag-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0d2137;
  line-height: 1.4;
}

/* ── Stars ── */
.actowiz-testimonial-sliJers__stars {
  color: #290660;
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

/* ── Quote ── */
.actowiz-testimonial-sliJers__quote {
  font-style: italic;
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── Author ── */
.actowiz-testimonial-sliJers__author {
  font-size: 0.9rem;
  color: #0d2137;
  margin-bottom: 16px;
}

.actowiz-testimonial-sliJers__author strong {
  font-weight: 700;
}

/* ── Highlights ── */
.actowiz-testimonial-sliJers__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.actowiz-testimonial-sliJers-brandss {
  max-width: 460px;
  width: 100%;
}

.actowiz-testimonial-sliJers__highlights li {
  color: #2ca87f;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.actowiz-testimonial-sliJers__sliderzzzzzz {
  height: 100%;
}
.actowiz-testimonial-sliJers__highlights li::before {
  content: "✓ ";
  font-weight: 700;
}

/* ── Button ── */
.actowiz-testimonial-sliJers__btn {
  display: inline-block;
  border: 1.5px solid #290660;
  color: #290660;
  background: transparent;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: pointer;
}

.actowiz-testimonial-sliJers__btn:hover,
.actowiz-testimonial-sliJers__btn:focus-visible {
  background: #290660;
  color: #fff;
}

/* ── Image column ── */
.actowiz-testimonial-sliJers__img-wrap {
  height: 100%;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actowiz-testimonial-sliJers__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* ── Placeholder image ── */
.actowiz-testimonial-sliJers__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* ── Dots ── */
.actowiz-testimonial-sliJers__dots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 0 4px;
}

.actowiz-testimonial-sliJers__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.actowiz-testimonial-sliJers__dot--active {
  background: #290660;
  transform: scale(1.35);
}

/* ── Right column alignment on desktop ── */
@media (min-width: 993px) {
  .actowiz-testimonial-sliJers-brandss {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .actowiz-testimonial-sliJers__right {
    display: flex;
    align-items: center;
    padding-left: 10px;
  }
}

/* ── Mobile tweaks ── */
@media (max-width: 767.98px) {
  .actowiz-testimonial-sliJers__slide {
    padding: 32px 24px;
  }

  .actowiz-testimonial-sliJers__img-wrap,
  .actowiz-testimonial-sliJers__img-placeholder {
    min-height: 220px;
    margin-top: 24px;
    border-radius: 12px;
  }

  .actowiz-testimonial-sliJers__tags {
    flex-direction: column;
    gap: 10px;
  }

  .actowiz-testimonial-sliJers__tag {
    min-width: unset;
  }

  /* ================= */
  .dash-wrap {
    padding-inline: 0;
  }
  .hiw-label span {
    font-size: 14px;
  }

  .hiw-title {
    font-size: 22px;
    margin-block: 15px;
  }
  .ind-title {
    font-size: 22px;
    line-height: normal;
  }
  .ind-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .awz-api-top {
    display: flex;
    flex-direction: column;
  }
}


/* ==============================================
   VIDEO TESTIMONIALS - WHITE BG + #290660 ACCENTS
   ============================================== */
.awz-vt-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.awz-vt-container {
  max-width: 1300px;
  margin: 0 auto;
}

.awz-vt-label span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #290660;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(41,6,96,0.08);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}

.awz-vt-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #290660;
  margin: 16px 0 20px;
}

.awz-vt-sub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.5;
}

.awz-vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.awz-vt-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(41,6,96,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(41,6,96,0.1);
}

.awz-vt-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(41,6,96,0.18);
  border-color: #290660;
}

.awz-vt-video {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3e8ff, #e0d4ff);
  background-size: cover;
  background-repeat: no-repeat;
}

.awz-vt-play {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #290660;
  box-shadow: 0 6px 24px rgba(41,6,96,0.15);
  transition: all 0.25s;
  padding-left: 10px;
}

.awz-vt-card:hover .awz-vt-play {
  transform: scale(1.15);
  background: #290660;
  color: white;
}

.awz-vt-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(41,6,96,0.7);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.awz-vt-body {
  padding: 24px;
}

.awz-vt-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.awz-vt-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.awz-vt-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.awz-vt-avatar {
  width: 48px;
  height: 48px;
  background: #290660;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.awz-vt-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 2px;
}

.awz-vt-role,
.awz-vt-company {
  font-size: 0.82rem;
  color: #666;
}

/* Badges */
.awz-vt-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.awz-vt-badge {
  background: rgba(41,6,96,0.08);
  color: #290660;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(41,6,96,0.15);
}

/* Video Popup */
.awz-vt-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41,6,96,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.awz-vt-popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 70px rgba(41,6,96,0.35);
  border: 1px solid #290660;
}

.awz-vt-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #290660;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s;
}

.awz-vt-popup-close:hover {
  background: #c084fc;
}

.awz-vt-popup-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.awz-vt-popup-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .awz-vt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .awz-vt-grid {
    grid-template-columns: 1fr;
  }
  .awz-vt-popup-box {
    width: 95%;
    margin: 20px;
  }
}



/* ------------------------------------------------ */
.cf-field-new-box {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}
.cf-field-new-box.cf-field-new-box-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
}
.cf-field-new-box-popupform.cf-field-new-popup-box-grid {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
}
.cf-field-new-box select.budget-select.budget-select-inner {
  width: auto;
}
@media (max-width: 475px) {
  .cf-field-new-box {
    gap: 10px;
  }
  .country-code-text {
    font-size: 12px;
  }
}