:root {
  --actozzzz-bg: #ffffff;
  --actozzzz-surface: #f8f9fb;
  --actozzzz-navy: #091832;
  --actozzzz-navy-90: #0d2040;
  --actozzzz-ink: #0b1a33;
  --actozzzz-accent: #e04e14;
  --actozzzz-accent-soft: rgba(224, 78, 20, 0.06);
  --actozzzz-accent-glow: rgba(224, 78, 20, 0.15);
  --actozzzz-accent-hover: #f25e28;
  --actozzzz-blue: #1a6bff;
  --actozzzz-blue-soft: rgba(26, 107, 255, 0.05);
  --actozzzz-teal: #0ca88f;
  --actozzzz-teal-soft: rgba(12, 168, 143, 0.05);
  --actozzzz-green: #0fa968;
  --actozzzz-green-soft: rgba(15, 169, 104, 0.05);
  --actozzzz-violet: #5b4cff;
  --actozzzz-violet-soft: rgba(91, 76, 255, 0.05);
  --actozzzz-g100: #f3f5f7;
  --actozzzz-g200: #e5e8ec;
  --actozzzz-g300: #c9cdd4;
  --actozzzz-g400: #8f96a3;
  --actozzzz-g500: #5f6978;
  --actozzzz-g600: #3d4655;
  --actozzzz-g700: #252d3a;
}

/* ====== PAGE HERO ====== */

.web-scraping-services-main {
  padding-top: 10px;
  padding-bottom: 0;
}

.web-scraping-services-main .btn-main {
  background: #290660;
}

.actozzzz-page-hero {
  background: linear-gradient(180deg, var(--actozzzz-navy) 0%, #0f2240 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.actozzzz-page-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(224, 78, 20, 0.04);
  filter: blur(100px);
}
.actozzzz-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    black 20%,
    transparent 70%
  );
}
.actozzzz-ph-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.actozzzz-ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}
.actozzzz-phb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--actozzzz-green);
  animation: actozzzz-blink 2s infinite;
}
@keyframes actozzzz-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.actozzzz-ph-h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
}
.actozzzz-ph-h1 span {
  background: linear-gradient(135deg, var(--actozzzz-accent), #ff7940);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.actozzzz-ph-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 32px;
}
.actozzzz-ph-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.actozzzz-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--actozzzz-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--actozzzz-accent-glow);
}
.actozzzz-btn-main:hover {
  background: var(--actozzzz-accent-hover);
  transform: translateY(-2px);
}
.actozzzz-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.actozzzz-btn-sec:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.actozzzz-ph-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.actozzzz-ph-note span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.actozzzz-ck {
  color: var(--actozzzz-green);
  font-weight: 700;
}

/* Trust strip */
.actozzzz-trust-strip {
  background: #290660;
  border-bottom: 1px solid #fff;
  padding: 18px 24px;
}
.actozzzz-ts-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.actozzzz-ts-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff9c;
}
.actozzzz-tsi-num {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
}
.actozzzz-ts-sep {
  width: 1px;
  height: 20px;
  background: var(--actozzzz-g200);
}

/* ====== SECTION HELPERS ====== */
.pricing-link-hero a {
  color: #290660;
}

.pricing-link-hero a:hover {
  border-bottom-color: #290660;
}
.actozzzz-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 20px;
  background: #ffffff;
}

.actozzzz-sec-center {
  text-align: center;
}

.actozzzz-sec-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: #ffffff !important;
  color: #290660 !important;
  border: 1px solid #290660;
}

.actozzzz-sec-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.actozzzz-sec-title span {
  color: #290660;
}

.actozzzz-sec-sub {
  font-size: 1.05rem;
  color: #6b5ab2; /* soft purple-gray */
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== SERVICE GRID ====== */
.actozzzz-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.actozzzz-svc {
  background: #ffffff;
  border: 2px solid #e5dfff; /* light purple border */
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.actozzzz-svc:hover {
  border-color: #290660;
  box-shadow: 0 12px 40px rgba(41, 6, 96, 0.08);
  transform: translateY(-6px);
}

.actozzzz-svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #290660;
  border-radius: 16px 16px 0 0;
}

.actozzzz-svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(41, 6, 96, 0.08);
  color: #290660;
}

.actozzzz-svc h3 {
  font-size: 1.28rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 10px;
  line-height: 1.3;
}

.actozzzz-svc-desc {
  font-size: 0.95rem;
  color: #6b5ab2;
  line-height: 1.65;
  margin-bottom: 18px;
}

.actozzzz-svc-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.actozzzz-svc-features li {
  font-size: 0.88rem;
  color: #6b5ab2;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.actozzzz-svc-features li::before {
  content: "✓";
  color: #28a745; /* green checkmark rakha hai */
  font-weight: bold;
  font-size: 1rem;
}

.actozzzz-svc-metric {
  background: #f9f8ff; /* very light purple-white */
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.actozzzz-sm-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: #290660;
  white-space: nowrap;
}

.actozzzz-sm-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8c7ae6; /* medium purple */
  line-height: 1.4;
}

.actozzzz-svc-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.actozzzz-svc-cta {
  font-size: 0.92rem;
  font-weight: 700;
  color: #290660;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.actozzzz-svc-cta:hover {
  gap: 10px;
  color: #1a0342; /* dark hover purple */
}

.actozzzz-svc-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8c7ae6;
  text-decoration: none;
  border-bottom: 1px dashed #d0c4ff;
  transition: color 0.2s;
}

.actozzzz-svc-price:hover {
  color: #290660;
}

.actozzzz-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 40px;
  background: #ffffff;
}

.actozzzz-sec-center {
  text-align: center;
}

.actozzzz-sec-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(41, 6, 96, 0.08);
  color: #290660;
}

.actozzzz-sec-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.actozzzz-sec-title span {
  color: #290660;
}

.actozzzz-sec-sub {
  font-size: 1.05rem;
  color: #6b5ab2;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== HOW IT WORKS ====== */
.actozzzz-hiw-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 32px;
}

.actozzzz-hiw-row::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(to right, #290660, #8c7ae6, #d0c4ff);
  border-radius: 3px;
  z-index: 0;
}

@media (max-width: 900px) {
  .actozzzz-hiw-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .actozzzz-hiw-row::before {
    display: none; /* hide line on mobile, or make vertical if you want */
  }
}

.actozzzz-hiw-s {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.actozzzz-hiw-s:hover {
  transform: translateY(-8px);
}

.actozzzz-hiw-n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  background: #290660;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(41, 6, 96, 0.18);
  position: relative;
  z-index: 2;
}

/* Optional: subtle ring glow */
.actozzzz-hiw-n::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(41, 6, 96, 0.12);
  z-index: -1;
}

.actozzzz-hiw-s h4 {
  font-size: 1.1rem; /* bigger & bold */
  font-weight: 700;
  color: #290660;
  margin-bottom: 8px;
  line-height: 1.3;
}

.actozzzz-hiw-s p {
  font-size: 0.95rem; /* readable */
  color: #6b5ab2;
  line-height: 1.6;
  margin-bottom: 12px;
}

.actozzzz-hiw-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #290660;
  background: rgba(41, 6, 96, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(41, 6, 96, 0.06);
}

/* ====== USE CASES ====== */
.actozzzz-uc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 20px;
}

.actozzzz-uc {
  background: #ffffff;
  border: 2px solid #e5dfff; /* light purple border */
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.actozzzz-uc:hover {
  border-color: #290660;
  box-shadow: 0 12px 36px rgba(41, 6, 96, 0.1);
  transform: translateY(-6px);
}

.actozzzz-uc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #290660, #8c7ae6);
  opacity: 0.9;
  transition: all 0.4s;
}

.actozzzz-uc:hover::before {
  opacity: 1;
}

.actozzzz-uc-icon {
  font-size: 2.2rem; /* bada icon */
  margin-bottom: 18px;
  display: block;
  color: #290660;
  opacity: 0.9;
  transition: transform 0.3s;
}

.actozzzz-uc:hover .actozzzz-uc-icon {
  transform: scale(1.15);
}

.actozzzz-uc h4 {
  font-size: 1.18rem; /* readable title */
  font-weight: 700;
  color: #290660;
  margin-bottom: 10px;
  line-height: 1.3;
}

.actozzzz-uc p {
  font-size: 0.94rem;
  color: #6b5ab2;
  line-height: 1.65;
  margin-bottom: 16px;
}

.actozzzz-uc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.actozzzz-uc-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px; /* pill shape zyada attractive */
  background: rgba(41, 6, 96, 0.06);
  color: #290660;
  border: 1px solid rgba(41, 6, 96, 0.12);
  transition: all 0.2s;
}

.actozzzz-uc:hover .actozzzz-uc-tag {
  background: rgba(41, 6, 96, 0.12);
  border-color: #290660;
}

/* ====== PLATFORMS ====== */
.actozzzz-plat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.actozzzz-plat-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95rem; /* bada aur padhne layak */
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px; /* pill shape */
  background: #f9f8ff; /* very light purple tint */
  color: #290660;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5dfff;
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(41, 6, 96, 0.04);
}

.actozzzz-plat-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 6, 96, 0.12);
  border-color: #290660;
  background: #ffffff;
}

.actozzzz-plat-chip i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) inset; /* inner glow */
}

.actozzzz-plat-more {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.98rem;
  font-weight: 700;
  color: #290660;
  background: rgba(41, 6, 96, 0.08);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px dashed #8c7ae6;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.actozzzz-plat-more:hover {
  background: #290660;
  color: #ffffff;
  border-color: #290660;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 6, 96, 0.18);
}

/* ====== PRICING PREVIEW ====== */
.actozzzz-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.actozzzz-price-card {
  background: linear-gradient(145deg, #ffffff, #f9f8ff);
  border: 2px solid #e5dfff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s ease;
  /* overflow: hidden; */
  box-shadow: 0 6px 20px rgba(41, 6, 96, 0.05);
  transform: scale(0.95);
}

.actozzzz-price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(41, 6, 96, 0.15);
  border-color: #290660;
}

.actozzzz-pc-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #290660, #8c7ae6);
  opacity: 0.85;
}

.actozzzz-pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #290660;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(41, 6, 96, 0.3);
  z-index: 2;
}

.actozzzz-popular {
  border-color: #290660;
  box-shadow: 0 12px 40px rgba(41, 6, 96, 0.18);
  transform: scale(1); /* popular plan thoda bada */
  z-index: 1;
}

.actozzzz-popular:hover {
  transform: scale(1) translateY(-12px);
}

.actozzzz-pc-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 8px;
  text-align: center;
}

.actozzzz-pc-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 3.2rem; /* dramatic price */
  font-weight: 800;
  color: #290660;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1;
}

.actozzzz-pc-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #8c7ae6;
  vertical-align: super;
}

.actozzzz-pc-desc {
  font-size: 0.98rem;
  color: #6b5ab2;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.actozzzz-pc-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.actozzzz-pc-features li {
  font-size: 0.95rem;
  color: #4a3e80;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0eaff;
}

.actozzzz-pc-features li span {
  color: #28a745;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 20px;
}

.actozzzz-pc-features li:last-child {
  border-bottom: none;
}

/* Buttons */
.actozzzz-pc-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.actozzzz-pc-btn-primary {
  background: linear-gradient(90deg, #290660, #4a3e80);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(41, 6, 96, 0.25);
}

.actozzzz-pc-btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(41, 6, 96, 0.35);
  background: linear-gradient(90deg, #4a3e80, #290660);
}

.actozzzz-pc-btn-outline {
  background: transparent;
  color: #290660;
  border: 2px solid #290660;
}

.actozzzz-pc-btn-outline:hover {
  background: #290660;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(41, 6, 96, 0.2);
}
.actozzzz-price-card.actozzzz-popular::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #290660;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ====== FAQ ====== */
.actozzzz-faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.actozzzz-faq {
  border: 2px solid #e5dfff;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(41, 6, 96, 0.04);
}

.actozzzz-faq:hover {
  border-color: #8c7ae6;
  box-shadow: 0 10px 28px rgba(41, 6, 96, 0.12);
}

.actozzzz-faq-q {
  padding: 20px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem; /* bada & bold */
  font-weight: 700;
  color: #290660;
  background: #f9f8ff;
  transition: background 0.25s ease;
}

.actozzzz-faq-q:hover {
  background: rgba(41, 6, 96, 0.08);
}

.actozzzz-faq-arr {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #8c7ae6; /* down arrow */
  transition: transform 0.4s ease;
  margin-left: 12px;
}

.actozzzz-faq-q.actozzzz-open .actozzzz-faq-arr {
  transform: rotate(180deg); /* becomes up arrow */
}

.actozzzz-faq-a {
  padding: 0 28px 24px;
  font-size: 0.98rem;
  color: #4a3e80;
  line-height: 1.7;
  display: none;
  background: #ffffff;
}

/* ====== CTA BANNER ====== */
.actozzzz-cta-banner {
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 40px;
}

/* ====== CLIENT LOGOS ====== */
.actozzzz-clients-section {
  max-width: 1300px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.actozzzz-cl-inner {
  background: #ffffff;
  border: 2px solid #e5dfff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(41, 6, 96, 0.06);
  transition: all 0.35s ease;
}

.actozzzz-cl-inner:hover {
  box-shadow: 0 16px 48px rgba(41, 6, 96, 0.12);
  transform: translateY(-6px);
  border-color: #8c7ae6;
}

.actozzzz-cl-label {
  font-size: 0.95rem; /* thoda bada */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8c7ae6;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(41, 6, 96, 0.06);
  padding: 6px 18px;
  border-radius: 100px;
}

.actozzzz-cl-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.actozzzz-cl-logo {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.45rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  opacity: 0.75;
}

.actozzzz-cl-logo:hover {
  opacity: 1;
  transform: scale(1.12);
  color: #290660;
}

.actozzzz-cl-logo.actozzzz-sm {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.7;
}

.actozzzz-cl-logo.actozzzz-sm:hover {
  transform: scale(1.15);
}

/* Badges */
.actozzzz-cl-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.actozzzz-cl-badge {
  font-size: 0.92rem;
  font-weight: 600;
  color: #4a3e80;
  background: rgba(41, 6, 96, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(41, 6, 96, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(41, 6, 96, 0.04);
}

.actozzzz-cl-badge:hover {
  background: rgba(41, 6, 96, 0.12);
  border-color: #290660;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(41, 6, 96, 0.12);
}

.actozzzz-clb-score {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  color: #290660;
  font-size: 1.05rem;
}

/* ====== TESTIMONIALS ====== */
.actozzzz-test-section {
  max-width: 1300px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.actozzzz-test-inner {
  background: linear-gradient(135deg, #290660 0%, #3a1a7a 100%);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(41, 6, 96, 0.35);
}

.actozzzz-test-inner::before,
.actozzzz-test-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.actozzzz-test-inner::before {
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: #8c7ae6;
}

.actozzzz-test-inner::after {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: #d0c4ff;
}

.actozzzz-test-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.actozzzz-test-sub {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.actozzzz-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.actozzzz-t-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.actozzzz-t-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(41, 6, 96, 0.3);
}

.actozzzz-t-stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.actozzzz-t-quote {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.actozzzz-t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.actozzzz-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8c7ae6, #d0c4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #290660;
  box-shadow: 0 4px 12px rgba(41, 6, 96, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.actozzzz-t-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.actozzzz-t-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ====== BLOG & RESEARCH ====== */
.actozzzz-blog-section {
  max-width: 1300px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.actozzzz-blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.actozzzz-blog-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.6px;
  margin: 0;
}

.actozzzz-blog-all {
  font-size: 1rem;
  font-weight: 700;
  color: #290660;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #290660;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.actozzzz-blog-all:hover {
  background: #290660;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(41, 6, 96, 0.15);
}

.actozzzz-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
}

.actozzzz-blog-card {
  background: #ffffff;
  border: 2px solid #e5dfff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(41, 6, 96, 0.05);
}

.actozzzz-blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(41, 6, 96, 0.15);
  border-color: #290660;
}

.actozzzz-blog-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
  position: relative;
}

.actozzzz-blog-card:hover .actozzzz-blog-img {
  transform: scale(1.08);
}

.actozzzz-blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(41, 6, 96, 0.15));
  opacity: 0;
  transition: opacity 0.4s;
}

.actozzzz-blog-card:hover .actozzzz-blog-img::after {
  opacity: 1;
}

.actozzzz-bg-1 {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.actozzzz-bg-2 {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.actozzzz-bg-3 {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.actozzzz-bg-4 {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.actozzzz-blog-body {
  padding: 24px 20px;
}

.actozzzz-blog-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.actozzzz-bt-case {
  background: rgba(41, 6, 96, 0.08);
  color: #290660;
}
.actozzzz-bt-report {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}
.actozzzz-bt-guide {
  background: rgba(20, 184, 166, 0.08);
  color: #14b8a6;
}
.actozzzz-bt-research {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.actozzzz-blog-card h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #290660;
  line-height: 1.35;
  margin-bottom: 10px;
}

.actozzzz-blog-card p {
  font-size: 0.95rem;
  color: #6b5ab2;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
/* ====== CTA BANNER ====== */
.actozzzz-cta-banner {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
}

.actozzzz-ctab {
  background: linear-gradient(135deg, #290660 0%, #3a1a7a 100%);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(41, 6, 96, 0.35);
}

.actozzzz-ctab::before,
.actozzzz-ctab::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}

.actozzzz-ctab::before {
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: #8c7ae6;
}

.actozzzz-ctab::after {
  bottom: -180px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: #d0c4ff;
}

.actozzzz-ctab h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.actozzzz-ctab p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.actozzzz-ctab-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.actozzzz-btn-main,
.actozzzz-btn-sec {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.actozzzz-btn-main {
  background: linear-gradient(90deg, #ffffff, #f0ebff);
  color: #290660;
  border: 2px solid #ffffff;
}

.actozzzz-btn-main:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.3);
  background: #ffffff;
}

.actozzzz-btn-sec {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.actozzzz-btn-sec:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

/* DATA FIELDS */
/* ====== DATA FIELDS SECTION ====== */
.service-table-web-scraping-section {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.service-table-web-scraping-center {
  text-align: center;
  margin-bottom: 40px;
}

.service-table-web-scraping-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(41, 6, 96, 0.08);
  color: #290660;
}

.service-table-web-scraping-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.7px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-table-web-scraping-title span {
  color: #290660;
}

.service-table-web-scraping-sub {
  font-size: 1.1rem;
  color: #6b5ab2;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* ====== TABLE STYLING ====== */
.service-table-web-scraping-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(41, 6, 96, 0.08);
  background: #ffffff;
}

.service-table-web-scraping-table th,
.service-table-web-scraping-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e5dfff;
}

.service-table-web-scraping-table th {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8c7ae6;
  background: #f9f8ff;
  border-bottom: 2px solid #d0c4ff;
}

.service-table-web-scraping-table tr:last-child td {
  border-bottom: none;
}

.service-table-web-scraping-table tr:hover {
  background: rgba(41, 6, 96, 0.04);
  transition: background 0.2s ease;
}

.service-table-web-scraping-cat {
  font-weight: 700;
  color: #290660;
  width: 220px;
  min-width: 220px;
  background: #f9f8ff;
  font-size: 1rem;
}

.service-table-web-scraping-fields {
  font-family: "JetBrains Mono", monospace;
  color: #4a3e80;
  line-height: 1.6;
  font-size: 0.92rem;
}

/* ====== SAMPLE DATA OUTPUT SECTION ====== */
.sample-data-output-amazon-section {
  max-width: 1300px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.sample-data-output-amazon-container {
  background: linear-gradient(135deg, #290660 0%, #3a1a7a 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(41, 6, 96, 0.3);
}

.sample-data-output-amazon-container::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(140, 122, 230, 0.12);
  filter: blur(80px);
}

.sample-data-output-amazon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 16px;
}

.sample-data-output-amazon-head h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.4px;
}

.sample-data-output-amazon-download {
  font-size: 0.98rem;
  font-weight: 700;
  color: #290660;
  background: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sample-data-output-amazon-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(41, 6, 96, 0.35);
  background: #f0ebff;
}

.sample-data-output-amazon-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.sample-data-output-amazon-table th,
.sample-data-output-amazon-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sample-data-output-amazon-table th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.sample-data-output-amazon-table td {
  font-weight: 500;
}

.sample-data-output-amazon-price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.05rem;
}

.sample-data-output-amazon-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.sample-data-output-amazon-tag-green {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
}

.sample-data-output-amazon-tag-warning {
  background: rgba(245, 158, 11, 0.18);
  color: #fde047;
}

.sample-data-output-amazon-tag-danger {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 900px) {
  .sample-data-output-amazon-container {
    padding: 32px 24px;
  }
  .sample-data-output-amazon-head h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .actozzzz-price-card .actozzzz-popular {
    transform: scale(1); /* popular plan thoda bada */
  }
  .actozzzz-price-card {
    transform: scale(0.95);
  }
  .sample-data-output-amazon-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .sample-data-output-amazon-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .sample-data-output-amazon-download {
    width: 100%;
    text-align: center;
  }
}

/* ====== INDUSTRIES SERVED GRID ====== */

.industries-served-grid-center {
  text-align: center;
  margin-bottom: 48px;
}

.industries-served-grid-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(41, 6, 96, 0.08);
  color: #290660;
}

.industries-served-grid-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.7px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.industries-served-grid-title span {
  color: #290660;
}

.industries-served-grid-sub {
  font-size: 1.12rem;
  color: #6b5ab2;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

/* Grid of Industries */
.industries-served-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 20px;
}

.industries-served-grid-item {
  background: #ffffff;
  border: 2px solid #e5dfff;
  border-radius: 16px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.32s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(41, 6, 96, 0.05);
}

.industries-served-grid-item:hover {
  transform: translateY(-10px);
  border-color: #290660;
  box-shadow: 0 16px 40px rgba(41, 6, 96, 0.14);
}

.industries-served-grid-icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #290660;
  transition: transform 0.4s ease;
}

.industries-served-grid-icon img {
  width: 50px;
}

.industries-served-grid-item:hover .industries-served-grid-icon {
  transform: scale(1.15);
}

.industries-served-grid-name {
  font-size: 18px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 6px;
}

.industries-served-grid-desc {
  font-size: 0.92rem;
  color: #6b5ab2;
  line-height: 1.5;
}

/* More industries link */
.industries-served-grid-more {
  text-align: center;
  margin-top: 36px;
}

.industries-served-grid-more a {
  font-size: 1rem;
  font-weight: 600;
  color: #8c7ae6;
  text-decoration: none;
  border-bottom: 2px dashed #d0c4ff;
  padding-bottom: 4px;
  transition: all 0.25s;
}

.industries-served-grid-more a:hover {
  color: #290660;
  border-bottom-color: #290660;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .industries-served-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  .industries-served-grid-item {
    padding: 24px 16px;
  }
  .industries-served-grid-icon {
    font-size: 2.4rem;
  }
  .industries-served-grid-name {
    font-size: 1.05rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .service-table-web-scraping-table {
    font-size: 0.9rem;
  }
  .service-table-web-scraping-table th,
  .service-table-web-scraping-table td {
    padding: 14px 16px;
  }
  .service-table-web-scraping-cat {
    width: 180px;
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  .service-table-web-scraping-table {
    display: block;
    overflow-x: auto;
    padding-inline: 10px;
  }
  .service-table-web-scraping-table thead,
  .service-table-web-scraping-table tbody,
  .service-table-web-scraping-table tr,
  .service-table-web-scraping-table th,
  .service-table-web-scraping-table td {
    display: block;
  }
  .service-table-web-scraping-table th {
    display: none;
  }
  .service-table-web-scraping-table tr {
    margin-bottom: 16px;
    border: 1px solid #e5dfff;
    border-radius: 12px;
    overflow: hidden;
  }
  .service-table-web-scraping-table td {
    border: none;
    padding: 12px 16px;
    position: relative;
    text-align: left;
    width: 100%;
  }
  .service-table-web-scraping-table td:before {
    content: attr(data-label);
    font-weight: 700;
    color: #290660;
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .service-table-web-scraping-table td.service-table-web-scraping-cat:before {
    content: "Category";
  }
  .service-table-web-scraping-table
    td.service-table-web-scraping-fields:before {
    content: "Fields";
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .actozzzz-ctab {
    padding: 48px 24px;
  }
  .actozzzz-ctab h2 {
    font-size: 2.1rem;
  }
  .actozzzz-ctab p {
    font-size: 1.1rem;
  }
  .actozzzz-ctab-btns {
    flex-direction: column;
    gap: 16px;
  }
  .actozzzz-btn-main,
  .actozzzz-btn-sec {
    width: 100%;
    text-align: center;
  }
}

/* ====== API CODE DEMO SECTION ====== */
.api-code-demo-section {
  max-width: 1300px;
  margin: 80px auto 40px;
  padding: 0 20px;
}

.api-code-demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #e5dfff;
  box-shadow: 0 12px 40px rgba(41, 6, 96, 0.1);
}

.api-code-demo-left {
  padding: 48px 40px;
  background: #ffffff;
}

.api-code-demo-left h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #290660;
  margin-bottom: 16px;
  line-height: 1.25;
}

.api-code-demo-left p {
  font-size: 1.05rem;
  color: #6b5ab2;
  line-height: 1.6;
  margin-bottom: 32px;
}

.api-code-demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.api-code-demo-tab {
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #e5dfff;
  background: #f9f8ff;
  color: #8c7ae6;
  cursor: pointer;
  transition: all 0.25s ease;
}

.api-code-demo-tab.active,
.api-code-demo-tab:hover {
  background: #290660;
  color: #ffffff;
  border-color: #290660;
}

.api-code-demo-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.api-code-demo-features li {
  font-size: 0.98rem;
  color: #4a3e80;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.api-code-demo-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Code Right Side */
.api-code-demo-right {
  background: linear-gradient(135deg, #1e0f4a, #290660);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.api-code-demo-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.api-code-demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.api-code-demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.api-code-demo-dot.red {
  background: #ff5f57;
}
.api-code-demo-dot.yellow {
  background: #febc2e;
}
.api-code-demo-dot.green {
  background: #28c840;
}

.api-code-demo-header span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 12px;
}

.api-code-demo-right pre {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  overflow-x: auto;
  white-space: pre;
  position: relative;
  z-index: 1;
}

.api-code-demo-right code {
  display: block;
}

.api-code-demo-right .kw {
  color: #60a5fa;
}
.api-code-demo-right .str {
  color: #34d399;
}
.api-code-demo-right .cm {
  color: rgba(255, 255, 255, 0.4);
}
.api-code-demo-right .fn {
  color: #fbbf24;
}

/* Responsive */
@media (max-width: 1024px) {
  .api-code-demo-split {
    grid-template-columns: 1fr;
  }
  .api-code-demo-left,
  .api-code-demo-right {
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  .api-code-demo-left h3 {
    font-size: 1.7rem;
  }
  .api-code-demo-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
  .api-code-demo-tab {
    width: 100%;
    text-align: left;
  }
}

/* GRID */

.azr-cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* CARDS */

.azr-card {
  border-radius: 18px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}

/* LIVE CARD */

.azr-live {
  background: #290660;
  color: #fff;
}

/* SCHEDULED CARD */

.azr-scheduled {
  background: #fff;
  border: 2px solid #eee;
}

/* BADGE */

.azr-badge {
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #290660;
}

/* HEADINGS */

.azr-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* TEXT */

.azr-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.azr-live p {
  color: rgba(255, 255, 255, 0.75);
}

.azr-scheduled p {
  color: #555;
}

/* LIST */

.azr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.azr-list li {
  font-size: 0.95rem;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.azr-list li::before {
  content: "✓";
  font-weight: 700;
  color: #22c55e;
  font-size: 0.9rem;
}

/* SECTION */

.azr-feed-section {
  max-width: 1300px;
  margin: 90px auto;
  padding: 0 20px;
}

/* BOX */

.azr-feed-box {
  background: #290660;
  border-radius: 16px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* HEADER */

.azr-feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.azr-feed-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.azr-feed-head a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  transition: 0.2s;
}

.azr-feed-head a:hover {
  background: #fff;
  color: #290660;
}

/* LIVE DOT */

.azr-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: azrPulse 1.5s infinite;
}

@keyframes azrPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* FEED */

.azr-feed-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.2s;
}

.azr-feed-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.azr-feed-item:last-child {
  border-bottom: none;
}

/* TIME */

.azr-time {
  font-family: monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  width: 70px;
  padding-left: 5px;
}

/* TYPE BADGE */

.azr-type {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  width: 80px;
  text-align: center;
}

/* COLORS */

.azr-price {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.azr-stock {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.azr-map {
  background: rgba(251, 191, 36, 0.15);
  color: #f59e0b;
}
.azr-new {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.azr-review {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}

/* DESCRIPTION */

.azr-desc {
  flex: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.azr-desc strong {
  color: #fff;
}

/* VALUE */

.azr-val {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
}

.azr-green {
  color: #22c55e;
}
.azr-red {
  color: #ef4444;
}
.azr-amber {
  color: #f59e0b;
}
.azr-blue {
  color: #3b82f6;
}
.azr-violet {
  color: #8b5cf6;
}

/* TABLET */

@media (max-width: 900px) {
  .azr-feed-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .azr-feed-head h3 {
    font-size: 1.2rem;
  }

  .azr-feed-item {
    gap: 10px;
    padding: 12px;
  }

  .azr-desc {
    font-size: 0.95rem;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .azr-feed-box {
    padding: 22px;
  }

  .azr-feed-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
  }

  .azr-time {
    width: auto;
    font-size: 0.75rem;
  }

  .azr-type {
    font-size: 0.65rem;
    width: auto;
  }

  .azr-desc {
    flex-basis: 100%;
    font-size: 0.9rem;
  }

  .azr-val {
    flex-basis: 100%;
    font-size: 0.9rem;
  }

  .azr-feed-head a {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .azr-cmp-title {
    font-size: 2rem;
  }

  .azr-cmp-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSE SECTION */

.azr-response {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.azr-response-box {
  background: #290660;
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* header */

.azr-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.azr-head h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.azr-head a {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: 0.2s;
}

.azr-head a:hover {
  background: #fff;
  color: #290660;
}

/* meta chips */

.azr-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.azr-chip {
  font-size: 16px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.azr-ok {
  background: rgba(34, 197, 94, 0.15);
}
.azr-time {
  background: rgba(255, 255, 255, 0.12);
}
.azr-credit {
  background: rgba(251, 191, 36, 0.18);
}

/* code */

.azr-response pre {
  background: rgba(0, 0, 0, 0.25);
  padding: 18px;
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: auto;
  color: #fff;
  margin: 0;
}

/* ====== RESPONSIVE (unchanged) ====== */
@media (max-width: 900px) {
  .actozzzz-nav {
    padding: 10px 16px;
  }
  .actozzzz-nav-links,
  .actozzzz-nav-login {
    display: none;
  }
  .actozzzz-page-hero {
    padding: 48px 16px 40px;
  }
  .actozzzz-ph-h1 {
    font-size: 2rem;
  }
  .actozzzz-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .actozzzz-hiw-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .actozzzz-hiw-row::before {
    display: none;
  }
  .actozzzz-uc-grid {
    grid-template-columns: 1fr;
  }
  .actozzzz-price-grid {
    grid-template-columns: 1fr;
  }
  .actozzzz-section,
  .actozzzz-cta-banner,
  .actozzzz-clients-section,
  .actozzzz-test-section,
  .actozzzz-blog-section,
  .actozzzz-contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .actozzzz-ph-ctas {
    flex-direction: column;
  }
  .actozzzz-btn-main,
  .actozzzz-btn-sec {
    width: 100%;
    justify-content: center;
  }
  .actozzzz-test-grid {
    grid-template-columns: 1fr;
  }
  .actozzzz-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .actozzzz-contact-inner {
    grid-template-columns: 1fr;
  }
  .actozzzz-contact-info {
    padding: 24px 20px;
  }
  .actozzzz-contact-form {
    padding: 24px 20px;
  }
  .actozzzz-cf-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .actozzzz-ph-h1 {
    font-size: 1.7rem;
  }
  .actozzzz-svc-grid {
    grid-template-columns: 1fr;
  }
  .actozzzz-hiw-row {
    grid-template-columns: 1fr;
  }
  .actozzzz-ts-inner {
    flex-direction: column;
    gap: 10px;
  }
  .actozzzz-ts-sep {
    display: none;
  }
  .actozzzz-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */

.azr-platforms {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

/* BOX */

.azr-platforms-inner {
  background: #fff;
  border: 1px solid #e9e9ef;
  border-radius: 14px;
  padding: 26px 28px;
}

/* TITLE */

.azr-platforms h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 16px;
}

/* GRID */

.azr-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* CHIP */

.azr-chip {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  background: #f6f6fb;
  border: 1px solid #e9e9ef;
  color: #555;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* HOVER */

.azr-chip:hover {
  border-color: #290660;
  color: #290660;
  background: #f3f0ff;
}

/* ACTIVE */

.azr-chip:hover {
  background: #290660;
  color: #fff;
  border-color: #290660;
}

/* RESPONSIVE */

@media (max-width: 700px) {
  .azr-platforms-inner {
    padding: 22px;
  }

  .azr-platforms h4 {
    font-size: 0.95rem;
  }

  .azr-chip {
    font-size: 0.8rem;
    padding: 7px 12px;
  }
}

/* ===================== */
.breadcrumb {
  justify-content: center;
}
ul.breadcrumb li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  display: block;
}

ul.breadcrumb li {
  color: #000;
}
ul.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

ul.breadcrumb li a {
  color: #000;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: #000;
  content: "/\00a0";
}

/* ============================================================================================== */
.zacrom-actowiz-blu-s {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 40px 0;
}

/* ── Section center header ── */
.zacrom-actowiz-blu-sc {
  text-align: center;
}

/* ── Label pill ── */
.zacrom-actowiz-blu-sll {
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.zacrom-actowiz-blu-sll-o {
  background: rgba(41, 6, 96, 0.08);
  color: #6c22e8;
  border: 1px solid rgba(108, 34, 232, 0.2);
}

.zacrom-actowiz-blu-sll-g {
  background: rgba(15, 169, 104, 0.07);
  color: #0fa968;
}

.zacrom-actowiz-blu-sll-b {
  background: rgba(26, 107, 255, 0.06);
  color: #1a6bff;
}

/* ── Section title ── */
.zacrom-actowiz-blu-st {
  font-size: 1.4rem;
  font-weight: 800;
  color: #290660;
  letter-spacing: -0.7px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.zacrom-actowiz-blu-st-accent {
  color: #6c22e8;
}

/* ── Section subtitle ── */
.zacrom-actowiz-blu-ss {
  font-size: 0.84rem;
  color: #6b5b8a;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 620px;
}

.zacrom-actowiz-blu-sc .zacrom-actowiz-blu-ss {
  margin-left: auto;
  margin-right: auto;
}

/* ── Product accordion box ── */
.zacrom-actowiz-blu-pag-box {
  background: #ffffff;
  border: 1.5px solid rgba(41, 6, 96, 0.18);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  min-height: 420px;
  box-shadow: 0 8px 40px rgba(41, 6, 96, 0.1);
}

/* ── Left nav panel ── */
.zacrom-actowiz-blu-pag-nav {
  padding: 24px 20px;
  border-right: 1px solid rgba(41, 6, 96, 0.18);
  background: linear-gradient(160deg, #faf8ff 0%, #f2ecff 100%);
}

/* ── Individual accordion item ── */
.zacrom-actowiz-blu-pag-item {
  padding: 14px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.zacrom-actowiz-blu-pag-item-bordered {
  border-bottom: 1px solid rgba(41, 6, 96, 0.18);
}

.zacrom-actowiz-blu-pag-item-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #6b5b8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.zacrom-actowiz-blu-pag-item-title-active {
  color: #290660;
}

.zacrom-actowiz-blu-pag-item-icon {
  color: #6c22e8;
  font-size: 0.7rem;
}

.zacrom-actowiz-blu-pag-item-desc {
  font-size: 1.05rem;
  color: #6b5b8a;
  line-height: 1.5;
  margin-top: 6px;
}

.zacrom-actowiz-blu-pag-item-desc-hidden {
  display: none;
}

.zacrom-actowiz-blu-pag-item-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6c22e8;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  transition: opacity 0.2s;
}

.zacrom-actowiz-blu-pag-item-link:hover {
  opacity: 0.75;
}

/* ── Right visual panel ── */
.zacrom-actowiz-blu-pag-visual {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f3ff 0%, #ede4ff 100%);
}

/* ── SVG containers ── */
.zacrom-actowiz-blu-svg-wrap {
  width: 100%;
  max-width: 420px;
}

.zacrom-actowiz-blu-svg-wrap svg {
  width: 100%;
}

.zacrom-actowiz-blu-svg-hidden {
  display: none;
}

.sr-pnds {
  color: white;
}

@media (max-width: 993px) {
  .zacrom-actowiz-blu-pag-box {
    grid-template-columns: 1fr;
  }
}

/* =======================================================J================================== */
.daza-desk-acto-bk-section {
  font-family: var(--font-sans);
  padding: 2rem 0;
}
.daza-desk-acto-bk-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.daza-desk-acto-bk-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #290660;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.daza-desk-acto-bk-title {
  font-size: 22px;
  font-weight: 500;
  color: #290660;
  margin: 0;
}
.daza-desk-acto-bk-title span {
  color: #290660;
  border-bottom: 2px solid #290660;
  padding-bottom: 1px;
}
.daza-desk-acto-bk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.daza-desk-acto-bk-card {
  background: #fff;
  border: 1px solid rgba(41, 6, 96, 0.18);
  border-radius: 12px;
  padding: 18px;
}
.daza-desk-acto-bk-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #290660;
  text-align: center;
  margin-bottom: 12px;
}
.daza-desk-acto-bk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.daza-desk-acto-bk-table th {
  padding: 6px 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(41, 6, 96, 0.5);
  border-bottom: 1px solid rgba(41, 6, 96, 0.15);
  text-align: left;
}
.daza-desk-acto-bk-table th.daza-desk-acto-bk-num {
  text-align: center;
}
.daza-desk-acto-bk-table td {
  padding: 7px 8px;
  font-size: 15px;
  border-bottom: 1px solid rgba(41, 6, 96, 0.07);
  color: #290660;
  font-weight: 500;
}
.daza-desk-acto-bk-table td.daza-desk-acto-bk-num {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 500;
}
.daza-desk-acto-bk-table tr:last-child td {
  border-bottom: none;
}
.daza-desk-acto-bk-red {
  color: #c0175a;
}
.daza-desk-acto-bk-green {
  color: #057a4a;
}
.daza-desk-acto-bk-amber {
  color: #50009a52;
}
.daza-desk-acto-bk-comp {
  color: rgba(41, 6, 96, 0.55);
}
.daza-desk-acto-bk-legend {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(41, 6, 96, 0.45);
  text-align: center;
}
.daza-desk-acto-bk-bar-row {
  margin-bottom: 12px;
}
.daza-desk-acto-bk-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 5px;
}
.daza-desk-acto-bk-bar-label-text {
  font-weight: 500;
  font-size: 18px;
  color: #290660;
}
.daza-desk-acto-bk-bar-track {
  height: 8px;
  background: rgba(41, 6, 96, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.daza-desk-acto-bk-bar-fill-red {
  height: 100%;
  background: #c0175a;
  border-radius: 4px;
}
.daza-desk-acto-bk-bar-fill-amber {
  height: 100%;
  background: rgba(41, 6, 96, 0.45);
  border-radius: 4px;
}
.daza-desk-acto-bk-total-box {
  background: #290660;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  margin-top: 14px;
}
.daza-desk-acto-bk-total-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}
.daza-desk-acto-bk-total-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 6px;
}
.daza-desk-acto-bk-total-suffix {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 560px) {
  .daza-desk-acto-bk-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================================== */
.multi-matrix-bar-acto-J-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 1rem 0;
}
.multi-matrix-bar-acto-J-card {
  background: #fff;
  border: 1px solid #e8e0f0;
  border-radius: 12px;
  padding: 18px;
}
.multi-matrix-bar-acto-J-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.multi-matrix-bar-acto-J-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #290660;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multi-matrix-bar-acto-J-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.multi-matrix-bar-acto-J-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #290660;
}
.multi-matrix-bar-acto-J-metric {
  margin-bottom: 10px;
}
.multi-matrix-bar-acto-J-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.multi-matrix-bar-acto-J-label {
  font-size: 1rem;
  font-weight: 500;
  color: #290660;
}
.multi-matrix-bar-acto-J-badge {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: monospace;
  padding: 1px 6px;
  border-radius: 4px;
}
.multi-matrix-bar-acto-J-badge-green {
  background: #d6f4e6;
  color: #0a6640;
}
.multi-matrix-bar-acto-J-badge-red {
  background: #fde8e8;
  color: #7a1a1a;
}
.multi-matrix-bar-acto-J-badge-amber {
  background: #fdf3d6;
  color: #7a4f00;
}
.multi-matrix-bar-acto-J-track {
  height: 6px;
  background: #f0ebf8;
  border-radius: 99px;
  overflow: hidden;
}
.multi-matrix-bar-acto-J-fill {
  height: 100%;
  border-radius: 99px;
  background: #290660;
}
.multi-matrix-bar-acto-J-fill-green {
  background: #0fa968;
}
.multi-matrix-bar-acto-J-fill-red {
  background: #e24b4a;
}
.multi-matrix-bar-acto-J-fill-amber {
  background: #e09a10;
}
.multi-matrix-bar-acto-J-rank-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e8e0f0;
  margin-bottom: 6px;
  background: #fff;
}
.multi-matrix-bar-acto-J-rank-item-self {
  border: 1.5px solid #290660;
  background: #f9f5ff;
}
.multi-matrix-bar-acto-J-rank-bubble {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.multi-matrix-bar-acto-J-rank-name {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #290660;
}
.multi-matrix-bar-acto-J-rank-name-self {
  color: #290660;
  font-weight: 700;
}
.multi-matrix-bar-acto-J-rank-score {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
}
.multi-matrix-bar-acto-J-gap-bar {
  background: #290660;
  border-radius: 8px;
  padding: 9px 12px;
  text-align: center;
  margin-top: 12px;
}
.multi-matrix-bar-acto-J-gap-text-muted {
  font-size: 0.82rem;
  color: #fff;
}
.multi-matrix-bar-acto-J-gap-text-accent {
  font-size: 0.82rem;
  color: #e8b4f8;
  font-weight: 500;
}

@media (max-width: 993px) {
  .multi-matrix-bar-acto-J-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================================== */

.assotment-planning-J-Actowimz-svc-grid-web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.assotment-planning-J-Actowimz-svc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  margin-top: 8px;
}

.assotment-planning-J-Actowimz-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  margin-top: 8px;
}

/* AI Block */
.assotment-planning-J-Actowimz-ai-header {
  background: #290660;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.assotment-planning-J-Actowimz-ai-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.assotment-planning-J-Actowimz-ai-text {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.7);
}

.assotment-planning-J-Actowimz-user-msg {
  background: rgba(99, 102, 241, 0.06);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
  text-align: right;
  font-size: 0.6rem;
  color: #290660;
  font-weight: 600;
}

.assotment-planning-J-Actowimz-ai-response {
  background: #290660;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tags */
.assotment-planning-J-Actowimz-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.assotment-planning-J-Actowimz-tags span {
  font-size: 0.48rem;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.08);
  color: #290660;
  padding: 3px 6px;
  border-radius: 3px;
}

/* Dashboard */
.assotment-planning-J-Actowimz-dashboard-title {
  font-size: 14px;
  font-weight: 700;
  color: #6457a5;
  margin-bottom: 8px;
}

.assotment-planning-J-Actowimz-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.assotment-planning-J-Actowimz-stat {
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}

.assotment-planning-J-Actowimz-stat .value {
  font-family:
    JetBrains Mono,
    monospace;
  font-size: 0.9rem;
  font-weight: 800;
}

.assotment-planning-J-Actowimz-stat .label {
  font-size: 0.46rem;
  color: #6b7280;
}

/* Stat Colors */
.stat-purple {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.12);
}
.stat-purple .value {
  color: #290660;
}

.stat-green {
  background: rgba(15, 169, 104, 0.05);
  border: 1px solid rgba(15, 169, 104, 0.12);
}
.stat-green .value {
  color: #0fa968;
}

.stat-red {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.stat-red .value {
  color: #ef4444;
}

.stat-orange {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.12);
}
.stat-orange .value {
  color: #f59e0b;
}

/* Alerts */
.assotment-planning-J-Actowimz-alert {
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.alert-red {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.alert-orange {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Datatsets Main Page  */
/* ── Datasets Hero ─────────────────────────────────────────────── */
.sr-datasets-hero {
  background: #ffffff;
  padding: 50px 20px 80px;
  position: relative;
  overflow: hidden;
}

.sr-breadcrumb .breadcrumb {
  justify-content: flex-start;
}

.sr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.sr-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sr-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.6px;
}

.sr-badge-hot {
  background: rgba(41, 6, 96, 0.1);
  color: #290660;
  border: 1px solid rgba(41, 6, 96, 0.2);
}

.sr-badge-global {
  background: rgba(41, 6, 96, 0.05);
  color: #4b5563;
  border: 1px solid rgba(41, 6, 96, 0.12);
}

.sr-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.sr-hero-subtitle {
  font-size: 1.18rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.sr-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.28s;
  cursor: pointer;
}

.sr-btn-primary {
  background: #290660;
  color: white;
  box-shadow: 0 6px 24px rgba(41, 6, 96, 0.22);
}

.sr-btn-primary:hover {
  background: #290660;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(41, 6, 96, 0.3);
}

.sr-btn-secondary {
  background: transparent;
  color: #374151;
  border: 2px solid #d1d5db;
}

.sr-btn-secondary:hover {
  border-color: #290660;
  color: #290660;
  background: rgba(41, 6, 96, 0.04);
}

.sr-market-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sr-flag {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(41, 6, 96, 0.05);
  border: 1px solid rgba(41, 6, 96, 0.12);
  color: #374151;
  transition: all 0.2s;
}

.sr-flag:hover {
  background: rgba(41, 6, 96, 0.12);
  border-color: #290660;
  color: #290660;
}

/* ── Metrics Card ──────────────────────────────────────────────── */
.sr-hero-metrics {
  background: rgba(41, 6, 96, 0.03);
  border: 1px solid rgba(41, 6, 96, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.sr-metrics-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.sr-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.sr-metric-row:last-child {
  border-bottom: none;
}

.sr-metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
}

.sr-metric-value {
  /* font-family: "JetBrains Mono", monospace; */
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
}

.sr-format {
  color: #290660;
  font-weight: 900;
}

.sr-big {
  font-size: 1.6rem;
  color: #290660;
}

.sr-metric-pills {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.sr-pill {
  background: rgba(41, 6, 96, 0.06);
  border: 1px solid rgba(41, 6, 96, 0.15);
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  min-width: 140px;
}

.sr-pill small {
  font-size: 0.68rem;
  color: #6b7280;
  display: block;
  margin-bottom: 4px;
}

.sr-pill strong {
  font-size: 1.05rem;
  color: #290660;
  font-weight: 800;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sr-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sr-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .sr-datasets-hero {
    padding: 80px 20px 60px;
  }
  .sr-hero-title {
    font-size: 2.4rem;
  }
  .sr-hero-subtitle {
    font-size: 1.05rem;
  }
  .sr-hero-cta {
    flex-direction: column;
  }
  .sr-btn {
    width: 100%;
    justify-content: center;
  }
  .sr-market-flags {
    justify-content: center;
  }
}

/* ── Why Choose Section ────────────────────────────────────────── */
.sr-why-section {
  background: #ebe8f1;
  border-bottom: 1px solid #e5e7eb;
  padding: 64px 20px;
}

.sr-why-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.sr-why-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.28s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sr-why-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(41, 6, 96, 0.12);
  border-color: #290660;
}

.sr-why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #290660;
  line-height: 1;
}

.sr-why-title {
  font-size: 18px;
  font-weight: 600;
  color: #290660;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sr-why-desc {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.5;
}

/* ── Responsive Layout ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sr-why-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .sr-why-section {
    padding: 56px 24px;
  }
  .sr-why-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sr-why-icon {
    font-size: 2.2rem;
  }
  .sr-why-title {
    font-size: 1.08rem;
  }
}

@media (max-width: 480px) {
  .sr-why-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sr-why-card {
    padding: 28px 20px;
  }
  .sr-why-icon {
    font-size: 2.6rem; /* bigger on mobile for impact */
  }
}

/* Datatsets Main Page  */

.amazon-dataset-title-main .actozzzz-sec-center h3 {
  text-align: left;
  margin: 0;
  color: #8c7ae6;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: -8px;
}

.amazon-dataset-title-main h4 {
  text-align: left;
  margin-top: 20px;
  font-size: 22px;
  color: #290660;
}

.amazon-dataset-title-main ul {
  text-align: left;
  font-size: 20px;
  line-height: 30px;
  padding-left: 25px;
  color: black;
}

/* ============== */

.assotment-planning-J-Actowimz-sec-label {
  background: var(--actozzzz-accent-soft);
  color: var(--actozzzz-accent);
}

.assotment-planning-J-Actowimz-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Chat Box */
/* .assotment-planning-J-Actowimz-chat-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:14px;
    margin-top:8px;
} */

.assotment-planning-J-Actowimz-svc h3 {
  color: #290660;
}

.assotment-planning-J-Actowimz-chat-box h3 {
  color: #290660;
}

.assotment-planning-J-Actowimz-chat-ai {
  background: #290660;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.assotment-planning-J-Actowimz-chat-ai-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.assotment-planning-J-Actowimz-chat-ai-text {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.7);
}

.assotment-planning-J-Actowimz-chat-user {
  background: rgba(99, 102, 241, 0.06);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
  text-align: right;
  font-size: 0.6rem;
  color: #290660;
  font-weight: 600;
}

.assotment-planning-J-Actowimz-chat-ai-response {
  background: #290660;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Tags */
.assotment-planning-J-Actowimz-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.assotment-planning-J-Actowimz-tags span {
  font-size: 16px;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.08);
  color: #290660;
  padding: 3px 6px;
  border-radius: 3px;
  padding: 9px 22px;
  border-radius: 3px;
}

/* Dashboard */
/* .assotment-planning-J-Actowimz-dashboard-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:14px;
    margin-top:8px;
} */

.assotment-planning-J-Actowimz-dashboard-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 8px;
}

.assotment-planning-J-Actowimz-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

/* Cards */
.assotment-planning-J-Actowimz-card {
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  border: 1px solid;
}

.assotment-planning-J-Actowimz-card-value {
  font-family:
    JetBrains Mono,
    monospace;
  font-size: 25px;
  font-weight: 800;
}

.assotment-planning-J-Actowimz-card-label {
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
}

.assotment-planning-J-Actowimz-svc .sr-visual-summary.dark {
  font-size: 16px;
}
.assotment-planning-J-Actowimz-svc .sr-visual-summary {
  font-size: 16px;
}
/* Card Colors */
.assotment-planning-J-Actowimz-card.blue {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.12);
  color: #290660;
}

.assotment-planning-J-Actowimz-card.green {
  background: rgba(15, 169, 104, 0.05);
  border-color: rgba(15, 169, 104, 0.12);
  color: #0fa968;
}

.assotment-planning-J-Actowimz-card.red {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.assotment-planning-J-Actowimz-card.yellow {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

/* Alerts */
.assotment-planning-J-Actowimz-alert {
  border-radius: 6px;
  padding: 15px 11px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}

.assotment-planning-J-Actowimz-alert.red {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.assotment-planning-J-Actowimz-alert.yellow {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
  .assotment-planning-J-Actowimz-svc-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */

.hercules-boxesz-acto-J-wrapper {
  width: 100%;
  max-width: 1100px;
}

.hercules-boxesz-acto-J-badge {
  text-align: center;
  margin-bottom: 10px;
}

.hercules-boxesz-acto-J-badge span {
  background: #290660;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}

.hercules-boxesz-acto-J-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #290660;
  margin-bottom: 32px;
}

.hercules-boxesz-acto-J-heading-accent {
  color: #6c2bd9;
}

.hercules-boxesz-acto-J-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 700px) {
  .hercules-boxesz-acto-J-grid {
    grid-template-columns: 1fr;
  }
  .hercules-boxesz-acto-J-heading {
    font-size: 1.4rem;
  }
}

.hercules-boxesz-acto-J-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid #e0d0f5;
  box-shadow: 0 4px 24px rgba(41, 6, 96, 0.08);
}

.hercules-boxesz-acto-J-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 20px;
  text-align: center;
}

.hercules-boxesz-acto-J-table {
  width: 100%;
  border-collapse: collapse;
}

.hercules-boxesz-acto-J-table thead tr th {
  font-size: 0.9rem;
  font-weight: 700;
  color: #290660;
  padding: 8px 10px;
  text-align: right;
  border-bottom: 2px solid #e0d0f5;
}

.hercules-boxesz-acto-J-table thead tr th:first-child {
  text-align: left;
}

.hercules-boxesz-acto-J-table tbody tr td {
  padding: 11px 10px;
  font-size: 1.05rem;
  color: #290660;
  text-align: right;
  border-bottom: 1px solid #f2ecfb;
}

.hercules-boxesz-acto-J-table tbody tr:last-child td {
  border-bottom: none;
}
.hercules-boxesz-acto-J-table tbody tr td:first-child {
  text-align: left;
  font-weight: 600;
}

.hercules-boxesz-acto-J-num-red {
  color: #e53935;
  font-weight: 800;
}
.hercules-boxesz-acto-J-num-green {
  color: #2e7d32;
  font-weight: 800;
}
.hercules-boxesz-acto-J-num-yellow {
  color: #e6a817;
  font-weight: 800;
}
.hercules-boxesz-acto-J-num-normal {
  color: #290660;
  font-weight: 600;
}

.hercules-boxesz-acto-J-legend {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #7a6a96;
}

.hercules-boxesz-acto-J-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hercules-boxesz-acto-J-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.hercules-boxesz-acto-J-dot-red {
  background: #e53935;
}
.hercules-boxesz-acto-J-dot-green {
  background: #2e7d32;
}
.hercules-boxesz-acto-J-dot-yellow {
  background: #e6a817;
}

.hercules-boxesz-acto-J-rev-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid #e0d0f5;
  box-shadow: 0 4px 24px rgba(41, 6, 96, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hercules-boxesz-acto-J-rev-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #290660;
  text-align: center;
}

.hercules-boxesz-acto-J-gap-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hercules-boxesz-acto-J-gap-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hercules-boxesz-acto-J-gap-label {
  font-size: 1rem;
  font-weight: 600;
  color: #290660;
}

.hercules-boxesz-acto-J-val-red {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e53935;
}
.hercules-boxesz-acto-J-val-orange {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e65100;
}
.hercules-boxesz-acto-J-val-yellow {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e6a817;
}

.hercules-boxesz-acto-J-track {
  background: #f2ecfb;
  border-radius: 8px;
  height: 14px;
  overflow: hidden;
}

.hercules-boxesz-acto-J-fill {
  height: 100%;
  border-radius: 8px;
}

.hercules-boxesz-acto-J-fill-red {
  background: #e53935;
  width: 95%;
}
.hercules-boxesz-acto-J-fill-orange {
  background: #e65100;
  width: 73%;
}
.hercules-boxesz-acto-J-fill-yellow {
  background: #e6a817;
  width: 54%;
}

.hercules-boxesz-acto-J-total {
  background: #290660;
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: auto;
  line-height: 1.6;
}

.hercules-boxesz-acto-J-total-amount {
  font-size: 1.55rem;
  font-weight: 900;
  color: #c9a0ff;
  margin: 0 6px;
}

.sample-data-output-amazon-section .btn-main {
  background: #290660;
}

.actozzzz-uc-grid-dataset .actozzzz-uc-grid {
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.geo-and-marketplace .actozzzz-uc-grid {
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
}

@media (max-width: 1280px) {
  .geo-and-marketplace .actozzzz-uc-grid {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
}

@media (max-width: 900px) {
  .actozzzz-uc-grid-dataset .actozzzz-uc-grid,
  .geo-and-marketplace .actozzzz-uc-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Quality + Tracker Section ─────────────────────────────────── */
.sr-quality-tracker-section {
  padding: 80px 20px;
  background: #ffffff;
}

.sr-qt-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Quality Card */
.sr-quality-card {
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.sr-quality-header {
  font-size: 24px;
  font-weight: 600;
  color: #290660;
  margin-bottom: 16px;
}

.sr-quality-desc {
  font-size: 18px;
  color: black;
  line-height: 1.7;
  margin-bottom: 24px;
}

.sr-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sr-quality-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
}

.sr-quality-item strong {
  font-size: 16px;
  color: #290660;
  display: block;
  margin-bottom: 4px;
}

.sr-quality-item span {
  font-size: 0.82rem;
  color: #6b7280;
}

/* Tracker Card */
.sr-tracker-card {
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.sr-tracker-header {
  font-size: 24px;
  font-weight: 600;
  color: #290660;
  margin-bottom: 20px;
}

.sr-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.sr-search-input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #f9fafb;
  color: #6b7280;
}

.sr-search-select {
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #f9fafb;
  min-width: 120px;
}

.sr-tracker-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.sr-tracker-item:hover {
  border-color: #290660;
  box-shadow: 0 6px 16px rgba(41, 6, 96, 0.08);
  transform: translateY(-2px);
}

.sr-tracker-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.sr-product-info {
  flex: 1;
}

.sr-product-name {
  font-size: 18px;
  font-weight: 600;
  color: #290660;
  margin-bottom: 4px;
}

.sr-store-name {
  font-size: 0.82rem;
  color: #6b7280;
}

.sr-price-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sr-current-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.35rem;
  font-weight: 800;
  color: #290660;
}

.sr-old-price {
  font-size: 0.95rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.sr-discount {
  font-size: 0.82rem;
  font-weight: 700;
  color: #10b981;
}

.sr-product-meta {
  font-size: 0.88rem;
  color: #6b7280;
}

.sr-in-stock {
  color: #10b981;
  font-weight: 700;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sr-qt-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .sr-quality-tracker-section {
    padding: 60px 20px;
  }
  .sr-quality-card,
  .sr-tracker-card {
    padding: 28px 20px;
  }
  .sr-product-name {
    font-size: 1rem;
  }
  .sr-qt-grid {
    display: flex;
    flex-direction: column;
  }
  .sr-quality-grid {
    grid-template-columns: 1fr;
  }

  .sr-search-bar {
    flex-direction: column;
  }
}

/* ========================== */
/* Promo rows */
.twilight-actowiz-moon-promo-row {
  background: #fff;
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.twilight-actowiz-moon-promo-row--red {
  border-left: 3px solid #ef4444;
}
.twilight-actowiz-moon-promo-row--amber {
  border-left: 3px solid #f59e0b;
}
.twilight-actowiz-moon-promo-row--green {
  border-left: 3px solid #0fa968;
}

/* Promo top row */
.twilight-actowiz-moon-promo-top {
  display: flex;
  justify-content: space-between;
}

/* Promo name */
.twilight-actowiz-moon-promo-name {
  font-size: 17px;
  font-weight: 700;
}
.twilight-actowiz-moon-promo-name--red {
  color: #ef4444;
}
.twilight-actowiz-moon-promo-name--amber {
  color: #f59e0b;
}
.twilight-actowiz-moon-promo-name--green {
  color: #0fa968;
}

/* Promo source label */
.twilight-actowiz-moon-promo-source {
  font-size: 15px;
  color: var(--g400);
}

/* Promo description */
.twilight-actowiz-moon-promo-desc {
  font-size: 14px;
  color: var(--g500);
}

/* Bar widths */
.twilight-actowiz-moon-bar-w-42 {
  width: 42%;
}
.twilight-actowiz-moon-bar-w-22 {
  width: 22%;
}
.twilight-actowiz-moon-bar-w-18 {
  width: 18%;
}
.twilight-actowiz-moon-bar-w-12 {
  width: 12%;
}
.twilight-actowiz-moon-bar-w-6 {
  width: 6%;
}

.jayheyinactowiz-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  font-size: 0.52rem;
}

/* Header */
.jayheyinactowiz-head {
  font-size: 16px;
  padding: 5px;
  font-weight: 700;
  color: var(--g400);
  border-bottom: 1px solid var(--g200);
}

.jayheyinactowiz-center {
  text-align: center;
}

.jayheyinactowiz-product {
  text-align: left;
}

/* Product Name */
.jayheyinactowiz-product-name {
  padding: 4px 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--g100);
}

/* Cells */
.jayheyinactowiz-cell {
  padding: 4px;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid var(--g100);
}

/* Status Styles */
.jayheyinactowiz-ok {
  background: rgba(15, 169, 104, 0.1);
  color: #0fa968;
  font-size: 15px;
}

.jayheyinactowiz-oos {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 15px;
}

.jayheyinactowiz-low {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  font-size: 15px;
}

/* Remove border for last row */
.jayheyinactowiz-grid > div:nth-last-child(-n + 4) {
  border-bottom: none;
}

.actozzzz-svc-icon img {
  width: 40px;
}
.actozzzz-uc-icon img {
  width: 50px;
}
.jayheyinactowiz-visual {
}

/* Title */
.jayheyinactowiz-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Alert Box */
.jayheyinactowiz-alert {
  background: #fff;
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  margin-bottom: 6px;
}

/* Top Row */
.jayheyinactowiz-alert-top {
  display: flex;
  justify-content: space-between;
}

/* Time */
.jayheyinactowiz-alert-time {
  font-size: 1rem;
  font-weight: 700;
}

/* Channel */
.jayheyinactowiz-channel {
  font-size: 1rem;
  color: var(--g400);
}
/* Warning variant for value */
.jayheyinactowiz-oos-value-warning {
  color: #f59e0b;
}

/* Description */
.jayheyinactowiz-alert-desc {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

/* Status Variants */
.jayheyinactowiz-critical {
  border-left: 3px solid #ef4444;
}

.jayheyinactowiz-warning {
  border-left: 3px solid #f59e0b;
}

.jayheyinactowiz-resolved {
  border-left: 3px solid #0fa968;
}

.jayheyinactowiz-critical-text {
  color: #ef4444;
}

.jayheyinactowiz-warning-text {
  color: #f59e0b;
}

.jayheyinactowiz-resolved-text {
  color: #0fa968;
}

/* Summary */
.jayheyinactowiz-summary {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}

.jayheyinactowiz-highlight {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.azr-chip img {
  width: 20px;
}

/* Card */
.jayheyinactowiz-oos-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 6px;
}

/* Row layout */
.jayheyinactowiz-oos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left text */
.jayheyinactowiz-oos-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* Right value */
.jayheyinactowiz-oos-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  font-weight: 800;
  color: #ef4444;
}
/* ++++++++++++++++++++++++++++ */
.ronaldoz-acto-J-wrap {
  font-family: var(--font-sans);
  padding: 2.5rem 1.5rem;
  background: #fff;
  color: #290660;
}
.ronaldoz-acto-J-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #290660;
  opacity: 0.4;
  margin-bottom: 13px;
}
.ronaldoz-acto-J-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #290660;
  margin-bottom: 34px;
  line-height: 1.25;
}
.ronaldoz-acto-J-accent {
  color: #7c3aed;
}
.ronaldoz-acto-J-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ronaldoz-acto-J-card {
  border: 0.5px solid rgba(41, 6, 96, 0.16);
  border-radius: 16px;
  padding: 30px 28px;
  background: #fff;
}
.ronaldoz-acto-J-card-title {
  font-size: 17px;
  font-weight: 500;
  color: #290660;
  margin-bottom: 26px;
  text-align: center;
}
.ronaldoz-acto-J-buckets {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.ronaldoz-acto-J-bucket {
  flex: 1;
  border-radius: 12px;
  padding: 22px 10px;
  text-align: center;
  border: 0.5px solid transparent;
}
.ronaldoz-acto-J-b-shared {
  background: rgba(109, 40, 217, 0.06);
  border-color: rgba(109, 40, 217, 0.18);
}
.ronaldoz-acto-J-b-excl {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.2);
}
.ronaldoz-acto-J-b-gaps {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.18);
}
.ronaldoz-acto-J-pct {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.ronaldoz-acto-J-pct-shared {
  color: #7c3aed;
}
.ronaldoz-acto-J-pct-excl {
  color: #059669;
}
.ronaldoz-acto-J-pct-gaps {
  color: #dc2626;
}
.ronaldoz-acto-J-blabel {
  font-size: 15px;
  font-weight: 500;
  color: #290660;
  margin-bottom: 4px;
}
.ronaldoz-acto-J-bsub {
  font-size: 12.5px;
  color: #290660;
  opacity: 0.42;
}
.ronaldoz-acto-J-strat {
  border: 0.5px solid rgba(41, 6, 96, 0.13);
  border-radius: 10px;
  padding: 17px 19px;
  background: rgba(41, 6, 96, 0.025);
}
.ronaldoz-acto-J-strat-head {
  font-size: 15px;
  font-weight: 500;
  color: #290660;
  margin-bottom: 8px;
}
.ronaldoz-acto-J-strat-body {
  font-size: 14px;
  color: #290660;
  opacity: 0.58;
  line-height: 1.7;
}
.ronaldoz-acto-J-gaps-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.ronaldoz-acto-J-gap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.5px solid rgba(41, 6, 96, 0.11);
  border-radius: 12px;
  padding: 18px 20px;
  gap: 16px;
  background: rgba(41, 6, 96, 0.015);
}
.ronaldoz-acto-J-gap-name {
  font-size: 16px;
  font-weight: 500;
  color: #290660;
  margin-bottom: 5px;
}
.ronaldoz-acto-J-gap-meta {
  font-size: 12.5px;
  color: #290660;
  opacity: 0.42;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.ronaldoz-acto-J-dot {
  opacity: 0.5;
}
.ronaldoz-acto-J-val {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.ronaldoz-acto-J-val-org {
  color: #ea580c;
}
.ronaldoz-acto-J-val-amb {
  color: #d97706;
}
.ronaldoz-acto-J-val-red {
  color: #dc2626;
}
.ronaldoz-acto-J-total {
  background: #290660;
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  color: #fff;
  font-size: 15px;
}
.ronaldoz-acto-J-total-num {
  color: #c4b5fd;
  font-weight: 500;
}
@media (max-width: 680px) {
  .ronaldoz-acto-J-grid {
    grid-template-columns: 1fr;
  }
  .ronaldoz-acto-J-heading {
    font-size: 24px;
  }
}
.trust-badge {
  font-size: 12px;
  font-weight: 700;
  background: rgb(255, 255, 255);
  color: #290660;
  padding: 4px 10px;
  border-radius: 6px;
}

.process-api .actozzzz-hiw-row {
  grid-template-columns: repeat(3, 1fr);
}

.process-api .actozzzz-hiw-row::before {
  left: 14%;
  right: 14%;
}

@media (max-width: 900px) {
  .process-api .actozzzz-hiw-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .process-api .actozzzz-hiw-row {
    grid-template-columns: 1fr;
  }
}

*
  ──
  Code
  /
  Quick
  Start
  Section
  ──────────────────────────────────
  */
  .sr-code-section {
  background: #ffffff;
  padding: 100px 32px 80px;
}

.sr-code-container {
  max-width: 1300px;
  margin: 0 auto;
}

.sr-code-header {
  text-align: center;
  margin-bottom: 60px;
}

.sr-code-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a6bff;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

.sr-code-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.12;
  margin-bottom: 16px;
}

.sr-code-title span {
  background: linear-gradient(135deg, #290660, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sr-code-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
}

/* Code Grid */
.sr-code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Tabs */
.sr-code-tabs {
  display: flex;
  gap: 4px;
}

.sr-code-tab {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.25s;
}

.sr-code-tab.active {
  background: #290660;
  color: white;
}

.sr-code-tab:not(.active) {
  background: rgba(41, 6, 96, 0.06);
  color: #290660;
}

/* Code Block */
.sr-code-block {
  background: #0f172a;
  border-radius: 0 12px 12px 12px;
  padding: 28px;
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 95%;
}

.sr-code {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #e2e8f0;
  white-space: pre;
}

.c-kw {
  color: #c084fc;
}
.c-fn {
  color: #fbbf24;
}
.c-var {
  color: #60a5fa;
}
.c-str {
  color: #34d399;
}
.c-num {
  color: #60a5fa;
}
.c-cm {
  color: #64748b;
}
.c-op {
  color: #94a3b8;
}
.c-key {
  color: #f472b6;
}

/* Response Title */
.sr-resp-title {
  font-size: 20px;
  font-weight: 700;
  color: #290660;
  margin-bottom: 16px;
  text-align: center;
}

/* SDK Bar */
.sr-sdk-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.sr-sdk-pill {
  font-size: 16px;
  font-weight: 600;
  background: #290660;
  border: 1px solid rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 100px;
  color: rgb(255, 255, 255);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sr-code-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .sr-code-section {
    padding: 70px 20px 60px;
  }
  .sr-code-title {
    font-size: 2.4rem;
  }
  .sr-code-block {
    padding: 20px;
  }
  .sr-code {
    font-size: 0.95rem;
  }
}

/* ===================================================================== */

.multi-zangoozez-acto-J-wrapper {
  width: 100%;
  max-width: 1200px;
}

/* Header */
.multi-zangoozez-acto-J-eyebrow {
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7b5ea7;
  margin-bottom: 0.75rem;
}

.multi-zangoozez-acto-J-headline {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #290660;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.multi-zangoozez-acto-J-headline-accent {
  color: #1db96a;
}

/* Grid */
.multi-zangoozez-acto-J-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .multi-zangoozez-acto-J-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.multi-zangoozez-acto-J-card {
  background: #ffffff;
  border: 2px solid #290660;
  border-radius: 18px;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.multi-zangoozez-acto-J-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #290660, #4a0faa);
  border-radius: 18px 18px 0 0;
}

.multi-zangoozez-acto-J-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #290660;
  text-align: center;
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}

/* Price Comparison Bars */
.multi-zangoozez-acto-J-bar-group {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.multi-zangoozez-acto-J-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.multi-zangoozez-acto-J-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.multi-zangoozez-acto-J-bar-label {
  font-size: 1rem;
  font-weight: 600;
  color: #290660;
}

.multi-zangoozez-acto-J-bar-badge {
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.multi-zangoozez-acto-J-bar-badge--low {
  background: #d1fae5;
  color: #1db96a;
}

.multi-zangoozez-acto-J-bar-badge--mid {
  background: #fef3c7;
  color: #f59e0b;
}

.multi-zangoozez-acto-J-bar-badge--high {
  background: #fee2e2;
  color: #ef4444;
}

.multi-zangoozez-acto-J-bar-track {
  position: relative;
  height: 10px;
  background: #f0eaf9;
  border-radius: 99px;
  overflow: visible;
}

.multi-zangoozez-acto-J-bar-fill-base {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #1db96a;
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-zangoozez-acto-J-bar-fill-premium {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-zangoozez-acto-J-bar-fill-premium--low {
  background: #f59e0b;
}

.multi-zangoozez-acto-J-bar-fill-premium--mid {
  background: #f59e0b;
}

.multi-zangoozez-acto-J-bar-fill-premium--high {
  background: #ef4444;
}

/* Footer note */
.multi-zangoozez-acto-J-footnote {
  background: #290660;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  text-align: center;
}

.multi-zangoozez-acto-J-footnote-text {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.5;
}

.multi-zangoozez-acto-J-footnote-text em {
  font-style: normal;
  color: #1db96a;
  font-weight: 600;
}

/* Zone Availability */
.multi-zangoozez-acto-J-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.multi-zangoozez-acto-J-zone-tile {
  border: 2px solid #f0eaf9;
  border-radius: 12px;
  padding: 1.2rem 0.75rem 1rem;
  text-align: center;
  background: #f0eaf9;
  transition:
    border-color 0.2s,
    transform 0.2s;
  cursor: default;
}

.multi-zangoozez-acto-J-zone-tile:hover {
  border-color: #4a0faa;
  transform: translateY(-2px);
}

.multi-zangoozez-acto-J-zone-name {
  font-size: 1rem;
  font-weight: 700;
  color: #290660;
  margin-bottom: 0.3rem;
}

.multi-zangoozez-acto-J-zone-pct {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.multi-zangoozez-acto-J-zone-pct--high {
  color: #1db96a;
}

.multi-zangoozez-acto-J-zone-pct--mid {
  color: #f59e0b;
}

.multi-zangoozez-acto-J-zone-pct--low {
  color: #ef4444;
}

.multi-zangoozez-acto-J-zone-sub {
  font-size: 0.8rem;
  color: #7b5ea7;
  line-height: 1.4;
}

/* Zone ring indicator */
.multi-zangoozez-acto-J-zone-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.multi-zangoozez-acto-J-zone-ring svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.sr-signal-emoji img {
  width: 30px;
}

.api-code-main pre {
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 5px;
}

.api-doc .actozzzz-svc-icon {
  height: auto;
  font-size: 20px;
}

.pricing-api .actozzzz-price-grid {
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
}

/* =================== */

.service-api-main,
.inc-section-inner.inc-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 40px;
  background: #ffffff;
}

.service-api-main .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--g200);
}
.service-api-main .service:last-child {
  border-bottom: none;
}
.service-api-main .svc-name {
  font-size: 21px;
  font-weight: 600;
  color: #290660;
}
.service-api-main .svc-desc {
  font-size: 16px;
  color: black;
}
.service-api-main .svc-status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-api-main .svc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.service-api-main .svc-dot.up {
  background: var(--green);
}
.service-api-main .svc-dot.deg {
  background: #f59e0b;
}
.service-api-main .svc-label {
  font-size: 16px;
  font-weight: 600;
}
.service-api-main .svc-label.up {
  color: #290660;
}
.service-api-main .svc-label.deg {
  color: #f59e0b;
}
/* ============== */

 
.inc-section-inner .inc-title {
 font-size: 24px;
    font-weight: 600;
    color: #290660;
    margin-bottom: 16px;
}
.inc-section-inner .inc-item {
  background: var(--sf);
  border: 1px solid var(--g200);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 8px;
}
.inc-section-inner .inc-date {
     font-size: 14px;
    font-weight: 600;
    color: #290660;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.inc-section-inner .inc-desc {
     font-size: 14px;
    color: #000;
    margin-top: 4px;
    line-height: 1.6;
}
.inc-section-inner .inc-resolved {
display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: #c084fc;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 6px;
}
