/* ==========================================================================
   Automation Consulting — Capabilities Page Styles
   Modern dark SPA design with glass-morphism
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --ac-bg: #010D12;
  --ac-bg-alt: #020F15;
  --ac-primary: #07A9D1;
  --ac-accent: #06CFC3;
  --ac-light-bg: #FAFFFF;
  --ac-text-light: #E8EDF5;
  --ac-text-muted: #7A8AA8;
  --ac-text-dim: #4A5A78;
  --ac-text-dark: #1A1A1A;
  --ac-glass-bg: rgba(255, 255, 255, 0.03);
  --ac-glass-border: rgba(255, 255, 255, 0.08);
  --ac-glass-bg-sm: rgba(255, 255, 255, 0.02);
  --ac-glass-border-sm: rgba(255, 255, 255, 0.06);
  --ac-radius: 12px;
  --ac-radius-lg: 1rem;
  --ac-transition: 0.3s ease;
  --ac-font-display: 'Inter', sans-serif;
  --ac-font-body: var(--font-secondary);
}


/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

/* Floating pill animation */
@keyframes ac-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes ac-float-alt {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Pulse glow */
@keyframes ac-pulse-glow {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

/* Slow rotation */
@keyframes ac-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ac-rotate-slow-ccw {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Particle float */
@keyframes ac-particle-float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

/* Bento card reveal */
@keyframes ac-bento-reveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Live status pulse */
@keyframes ac-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Orbit float variants */
@keyframes ac-orbit-float-a {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(6px, -10px); }
  50%      { transform: translate(-4px, -18px); }
  75%      { transform: translate(8px, -8px); }
}

@keyframes ac-orbit-float-b {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-8px, 6px); }
  50%      { transform: translate(5px, 14px); }
  75%      { transform: translate(-6px, 4px); }
}

@keyframes ac-orbit-float-c {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(10px, 8px); }
  66%      { transform: translate(-8px, -12px); }
}

/* Fade-in from bottom */
@keyframes ac-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer line */
@keyframes ac-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ==========================================================================
   GRADIENT MESH BACKGROUND MIXIN (applied via class)
   ========================================================================== */
.ac-gradient-mesh {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 169, 209, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 207, 195, 0.06) 0%, transparent 50%),
    var(--ac-bg);
}


/* ==========================================================================
   SHARED — Scroll reveal fade-in
   ========================================================================== */
.ac-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-fade-in.ac-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   SHARED — Section label
   ========================================================================== */
.ac-section-label {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ac-primary);
  margin-bottom: 0.75rem;
}

.ac-section-label--light {
  color: var(--ac-primary);
}


/* ==========================================================================
   SHARED — Badge
   ========================================================================== */
.ac-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 20px;
}


/* ==========================================================================
   SHARED — Accent text
   ========================================================================== */
.ac-text-accent {
  background: linear-gradient(135deg, var(--ac-primary), var(--ac-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Buttons — inherited from ac-homepage.css (loaded globally).
   ac-btn--ghost maps to ac-btn--outline for consistency. */
.ac-btn--ghost {
  background: transparent;
  color: var(--ac-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.ac-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--ac-primary);
  color: var(--ac-primary);
  text-decoration: none;
}


/* ==========================================================================
   CAP HERO — Dark gradient mesh background, centered text
   ========================================================================== */
.ac-cap-hero {
  position: relative;
  text-align: center;
  overflow: hidden !important;
  background: var(--ac-bg);
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box !important;
}

.admin-bar .ac-cap-hero {
  
  min-
  max-
}

.ac-cap-hero__center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 20px;
  box-sizing: border-box;
}

/* Full-bleed animated canvas behind hero content */
.ac-cap-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-hero__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Hero glow */
.ac-cap-hero__glow {
  position: absolute;
  width: 1100px;
  height: 800px;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(7, 169, 209, 0.3) 0%,
    rgba(7, 169, 209, 0.15) 25%,
    rgba(6, 207, 195, 0.06) 50%,
    transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  border-radius: 50%;
  animation: ac-pulse-glow 6s ease-in-out infinite;
}

/* Flowing decorative lines */
.ac-cap-hero .ac-deco-figma {
  position: absolute;
  pointer-events: none;
  display: block;
}

.ac-cap-hero .ac-deco-flow-left {
  width: 200px;
  top: 12%;
  left: -2%;
  opacity: 0.15;
  animation: ac-float 8s ease-in-out infinite;
}

.ac-cap-hero .ac-deco-flow-right {
  width: 200px;
  bottom: 10%;
  right: -2%;
  opacity: 0.15;
  animation: ac-float-alt 9s ease-in-out infinite;
}

/* Particle dots in hero */
.ac-cap-hero__decorations circle {
  animation: ac-particle-float 8s ease-in-out infinite;
}

.ac-cap-hero > .wp-block-group,
.ac-cap-hero > .wp-block-heading,
.ac-cap-hero > .wp-block-paragraph,
.ac-cap-hero__badge-wrap,
.ac-cap-hero__title,
.ac-cap-hero__subtitle {
  position: relative;
  z-index: 1;
}

.ac-cap-hero__badge-wrap {
  margin-bottom: 0.75rem !important;
}

.ac-cap-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.03em;
  color: var(--ac-text-light);
  margin-bottom: 1.25rem !important;
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ac-cap-hero__subtitle {
  line-height: 1.33;
  color: #E7E7E7;
  font-size: 1.125rem;
  max-width: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0.9375rem !important;
}

.ac-cap-hero__ctas {
  margin-top: 0 !important;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.ac-cap-hero .ac-trust-carousel {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  z-index: 2;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.ac-cap-hero .ac-hero__bottom {
  position: absolute !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--ac-max-width, 1340px);
  padding: 0 var(--wp--preset--spacing--50, 2rem) !important;
  box-sizing: border-box !important;
  z-index: 2;
}

.ac-cap-hero .ac-hero-scroll-indicator {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2;
}

/* Floating pills — HIDDEN to match homepage consistency */
.ac-cap-hero__pills {
  display: none !important;
}

.ac-cap-hero__pill {
  position: absolute;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ac-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  opacity: 0.6;
}

.ac-cap-hero__pill--1 {
  top: 22%;
  left: 8%;
  animation: ac-float 7s ease-in-out infinite;
}

.ac-cap-hero__pill--2 {
  top: 18%;
  right: 10%;
  animation: ac-float-alt 8s ease-in-out infinite 1s;
}

.ac-cap-hero__pill--3 {
  bottom: 28%;
  left: 5%;
  animation: ac-float 9s ease-in-out infinite 2s;
}

.ac-cap-hero__pill--4 {
  bottom: 22%;
  right: 7%;
  animation: ac-float-alt 6s ease-in-out infinite 0.5s;
}

/* Mobile hero */
@media (max-width: 768px) {
  .ac-cap-hero {
    height: auto !important;
    min-max-height: none !important;
  }

  .ac-cap-hero .ac-trust-carousel,
  .ac-cap-hero .ac-hero__bottom,
  .ac-cap-hero .ac-hero-scroll-indicator {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .ac-cap-hero .ac-trust-carousel {
    margin-bottom: 1rem;
  }

  .ac-cap-hero .ac-hero__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem !important;
    margin-top: 1rem;
  }

  .ac-cap-hero .ac-hero-scroll-indicator {
    display: none;
  }
}

/* Gradient mesh overlay for core section */
.ac-cap-core__gradient-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(7, 169, 209, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(6, 207, 195, 0.04) 0%, transparent 50%);
}


/* ==========================================================================
   CAP CORE — Dark background with gradient mesh, bento grid container
   ========================================================================== */
.ac-cap-core {
  position: relative;
  overflow: hidden;
  padding: 6rem var(--wp--preset--spacing--50);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 169, 209, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 207, 195, 0.06) 0%, transparent 50%),
    var(--ac-bg);
}

.ac-cap-core__inner {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Background decoration container */
.ac-cap-core__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Triangle decoration */
.ac-cap-core__triangle {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 60px;
  right: -80px;
  opacity: 0.06;
  animation: ac-rotate-slow 70s linear infinite;
}

.ac-cap-core__triangle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dot grid pattern */
.ac-cap-core__dots {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 80px;
  left: 30px;
  background-image: radial-gradient(circle, rgba(7, 169, 209, 0.25) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.25;
}

.ac-cap-core__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 0.5rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-core__intro {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   BENTO GRID — Glass-morphism cards, 2-column asymmetric layout
   ========================================================================== */
.ac-cap-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glass-morphism card (uses <a> tags) */
.ac-cap-bento__card {
  background: var(--ac-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid var(--ac-glass-border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  /* Start hidden for scroll reveal */
  opacity: 0;
  transform: translateY(40px) scale(0.97);
}

/* Subtle gradient overlay on hover */
.ac-cap-bento__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(7, 169, 209, 0.05) 0%, rgba(6, 207, 195, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ac-cap-bento__card:hover {
  border-color: rgba(7, 169, 209, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(7, 169, 209, 0.1);
  text-decoration: none;
  color: inherit;
}

.ac-cap-bento__card:hover::before {
  opacity: 1;
}

/* Icon container */
.ac-cap-bento__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 169, 209, 0.08);
  border: 1px solid rgba(7, 169, 209, 0.12);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ac-cap-bento__card:hover .ac-cap-bento__icon {
  background: rgba(7, 169, 209, 0.15);
  transform: scale(1.05);
}

.ac-cap-bento__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ac-cap-bento__desc {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0 0 1.25rem;
  flex: 1;
}

.ac-cap-bento__proof {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ac-cap-bento__stat {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #07A9D1, #06CFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ac-cap-bento__stat-label {
  font-size: 0.82rem;
  color: var(--ac-text-dim);
}

/* Arrow indicator */
.ac-cap-bento__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 169, 209, 0.08);
  color: var(--ac-primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-end;
}

.ac-cap-bento__card:hover .ac-cap-bento__arrow {
  background: var(--ac-primary);
  color: #fff;
  transform: translateX(4px);
}

/* Bento reveal animation */
.ac-cap-bento__card.ac-bento-visible {
  animation: ac-bento-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays per card */
.ac-cap-bento__card:nth-child(1).ac-bento-visible { animation-delay: 0s; }
.ac-cap-bento__card:nth-child(2).ac-bento-visible { animation-delay: 0.1s; }
.ac-cap-bento__card:nth-child(3).ac-bento-visible { animation-delay: 0.2s; }
.ac-cap-bento__card:nth-child(4).ac-bento-visible { animation-delay: 0.3s; }
.ac-cap-bento__card:nth-child(5).ac-bento-visible { animation-delay: 0.4s; }
.ac-cap-bento__card:nth-child(6).ac-bento-visible { animation-delay: 0.5s; }

/* Reduced motion: skip bento animations */
@media (prefers-reduced-motion: reduce) {
  .ac-cap-bento__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}


/* ==========================================================================
   CAP OTHER — Solutions Matrix, 3-col grid of small glass cards
   ========================================================================== */
.ac-cap-other {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 169, 209, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 207, 195, 0.06) 0%, transparent 50%),
    var(--ac-bg);
  overflow: hidden;
}

/* Glow decoration */
.ac-cap-other__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-other__glow-left {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(7, 169, 209, 0.1) 0%, rgba(10, 87, 107, 0.04) 40%, transparent 70%);
  top: -100px;
  left: -150px;
  filter: blur(60px);
  border-radius: 50%;
  animation: ac-pulse-glow 8s ease-in-out infinite;
}

.ac-cap-other__glow-right {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(7, 169, 209, 0.08) 0%, transparent 60%);
  bottom: -80px;
  right: -100px;
  filter: blur(50px);
  border-radius: 50%;
  animation: ac-pulse-glow 6s ease-in-out infinite 2s;
}

.ac-cap-other__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-other__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glass card small */
.ac-cap-other__item {
  background: var(--ac-glass-bg-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ac-glass-border-sm);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ac-cap-other__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--ac-primary), var(--ac-accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ac-cap-other__item:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 169, 209, 0.2);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ac-cap-other__item:hover::before {
  opacity: 1;
}

/* Expanded state for clickable items */
.ac-cap-other__item.is-expanded {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(7, 169, 209, 0.25);
}

.ac-cap-other__item.is-expanded::before {
  opacity: 1;
}

/* Header row: icon + title + chevron */
.ac-cap-other__item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ac-cap-other__chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--ac-text-dim);
  transition: transform 0.25s ease, color 0.25s ease;
}

.ac-cap-other__item.is-expanded .ac-cap-other__chevron {
  transform: rotate(180deg);
  color: var(--ac-primary);
}

.ac-cap-other__item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(7, 169, 209, 0.1);
  border-radius: 10px;
  color: var(--ac-primary);
  transition: background 0.25s ease;
}

.ac-cap-other__item:hover .ac-cap-other__item-icon {
  background: rgba(7, 169, 209, 0.18);
}

.ac-cap-other__item-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ac-text-light);
  margin: 0;
  line-height: 1.3;
}

/* Description hidden by default, shown on expand */
.ac-cap-other__item-desc {
  font-size: var(--body-5-size);
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
  display: none;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ac-cap-other__item.is-expanded .ac-cap-other__item-desc {
  display: block;
}


/* ==========================================================================
   QUOTE BLOCK — with decoration
   ========================================================================== */
.ac-cap-quote {
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(7, 169, 209, 0.06) 0%, transparent 60%),
    var(--ac-bg);
}

.ac-cap-quote__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-quote__triangle {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  animation: ac-rotate-slow 80s linear infinite;
}

.ac-cap-quote__triangle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ac-cap-quote__block {
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.ac-cap-quote__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ac-text-light);
  margin: 0 0 1.5rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.ac-cap-quote__attribution {
  font-family: var(--font-secondary);
  font-size: var(--body-4-size);
  font-weight: 600;
  color: var(--ac-primary);
  letter-spacing: 0.06em;
}

/* Decorative quote mark */
.ac-cap-quote__block::before {
  content: '\201C';
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--ac-primary);
  opacity: 0.2;
  margin-bottom: -1rem;
}


/* ==========================================================================
   CAP ORBIT — Floating technology pill badges
   ========================================================================== */
.ac-cap-orbit {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(7, 169, 209, 0.06) 0%, transparent 50%),
    var(--ac-bg);
}

.ac-orbit {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Radial glow behind center */
.ac-orbit::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(7, 169, 209, 0.08) 0%,
    rgba(6, 207, 195, 0.04) 30%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ring decoration */
.ac-orbit::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(7, 169, 209, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Central text block */
.ac-orbit__center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 480px;
  padding: 2.5rem 3rem;
  background: radial-gradient(ellipse at center, var(--ac-bg, #010d12) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-orbit.ac-orbit--visible .ac-orbit__center {
  opacity: 1;
  transform: translateY(0);
}

.ac-orbit__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.ac-orbit__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
}

.ac-orbit__sub {
  font-family: var(--font-secondary);
  font-size: var(--body-4-size);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Floating tool pills — glass style */
.ac-orbit__pill {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(7, 169, 209, 0.12);
  border-radius: 100px;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: default;
  opacity: 0;
  animation-play-state: paused;
}

.ac-orbit__pill:hover {
  border-color: rgba(7, 169, 209, 0.35);
  background: rgba(7, 169, 209, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.08);
}

.ac-orbit__pill-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

.ac-orbit__pill-icon {
  flex-shrink: 0;
}

/* Pill positions — Ring 1 (inner) */
.ac-orbit__pill--1  { top: 24%;  left: 15%;  }
.ac-orbit__pill--2  { top: 68%;  left: 14%;  }
.ac-orbit__pill--3  { top: 22%;  right: 15%; }
.ac-orbit__pill--4  { top: 70%;  right: 14%; }
.ac-orbit__pill--5  { top: 44%;  left: 10%;  }
.ac-orbit__pill--6  { top: 46%;  right: 10%; }

/* Pill positions — Ring 2 (middle) */
.ac-orbit__pill--7  { top: 10%;  left: 24%;  }
.ac-orbit__pill--8  { top: 82%;  left: 22%;  }
.ac-orbit__pill--9  { top: 12%;  right: 22%; }
.ac-orbit__pill--10 { top: 84%;  right: 24%; }
.ac-orbit__pill--11 { top: 48%;  left: 5%;   }
.ac-orbit__pill--12 { top: 34%;  right: 5%;  }
.ac-orbit__pill--13 { top: 80%;  left: 34%;  }
.ac-orbit__pill--14 { top: 80%;  right: 34%; }

/* Pill positions — Ring 3 (outer) */
.ac-orbit__pill--15 { top: 4%;   left: 38%;  }
.ac-orbit__pill--16 { top: 4%;   right: 34%; }
.ac-orbit__pill--17 { top: 92%;  left: 38%;  }
.ac-orbit__pill--18 { top: 92%;  right: 36%; }
.ac-orbit__pill--19 { top: 14%;  left: 8%;   }
.ac-orbit__pill--20 { top: 14%;  right: 8%;  }
.ac-orbit__pill--21 { top: 56%;  left: 6%;   }
.ac-orbit__pill--22 { top: 86%;  left: 10%;  }
.ac-orbit__pill--23 { top: 58%;  right: 6%;  }
.ac-orbit__pill--24 { top: 88%;  right: 10%; }

/* Assign float animations with staggered durations/delays */
.ac-orbit__pill--1  { animation: ac-orbit-float-a 8s  ease-in-out -1s   infinite; }
.ac-orbit__pill--2  { animation: ac-orbit-float-b 9s  ease-in-out -3s   infinite; }
.ac-orbit__pill--3  { animation: ac-orbit-float-c 7s  ease-in-out -2s   infinite; }
.ac-orbit__pill--4  { animation: ac-orbit-float-a 10s ease-in-out -4s   infinite; }
.ac-orbit__pill--5  { animation: ac-orbit-float-b 8.5s ease-in-out -1.5s infinite; }
.ac-orbit__pill--6  { animation: ac-orbit-float-c 9.5s ease-in-out -5s   infinite; }
.ac-orbit__pill--7  { animation: ac-orbit-float-a 9s  ease-in-out -2s   infinite; }
.ac-orbit__pill--8  { animation: ac-orbit-float-c 8s  ease-in-out -6s   infinite; }
.ac-orbit__pill--9  { animation: ac-orbit-float-b 10s ease-in-out -3.5s infinite; }
.ac-orbit__pill--10 { animation: ac-orbit-float-a 7.5s ease-in-out -4.5s infinite; }
.ac-orbit__pill--11 { animation: ac-orbit-float-c 9s  ease-in-out -1s   infinite; }
.ac-orbit__pill--12 { animation: ac-orbit-float-b 8s  ease-in-out -5.5s infinite; }
.ac-orbit__pill--13 { animation: ac-orbit-float-a 10s ease-in-out -2.5s infinite; }
.ac-orbit__pill--14 { animation: ac-orbit-float-c 8.5s ease-in-out -3s   infinite; }
.ac-orbit__pill--15 { animation: ac-orbit-float-b 9s  ease-in-out -0.5s infinite; }
.ac-orbit__pill--16 { animation: ac-orbit-float-a 8s  ease-in-out -4s   infinite; }
.ac-orbit__pill--17 { animation: ac-orbit-float-c 10s ease-in-out -2s   infinite; }
.ac-orbit__pill--18 { animation: ac-orbit-float-b 7.5s ease-in-out -5s   infinite; }
.ac-orbit__pill--19 { animation: ac-orbit-float-a 9.5s ease-in-out -1.5s infinite; }
.ac-orbit__pill--20 { animation: ac-orbit-float-c 8s  ease-in-out -3.5s infinite; }
.ac-orbit__pill--21 { animation: ac-orbit-float-b 10s ease-in-out -6s   infinite; }
.ac-orbit__pill--22 { animation: ac-orbit-float-a 8.5s ease-in-out -2s   infinite; }
.ac-orbit__pill--23 { animation: ac-orbit-float-c 9s  ease-in-out -4.5s infinite; }
.ac-orbit__pill--24 { animation: ac-orbit-float-b 7.5s ease-in-out -1s   infinite; }

/* Pills fade in with stagger when visible */
.ac-orbit.ac-orbit--visible .ac-orbit__pill {
  opacity: 1;
  animation-play-state: running;
}

/* Stagger pill reveal delays */
.ac-orbit.ac-orbit--visible .ac-orbit__pill--1  { transition: opacity 0.6s ease 0.15s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--2  { transition: opacity 0.6s ease 0.20s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--3  { transition: opacity 0.6s ease 0.25s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--4  { transition: opacity 0.6s ease 0.30s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--5  { transition: opacity 0.6s ease 0.35s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--6  { transition: opacity 0.6s ease 0.40s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--7  { transition: opacity 0.6s ease 0.45s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--8  { transition: opacity 0.6s ease 0.50s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--9  { transition: opacity 0.6s ease 0.55s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--10 { transition: opacity 0.6s ease 0.60s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--11 { transition: opacity 0.6s ease 0.65s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--12 { transition: opacity 0.6s ease 0.70s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--13 { transition: opacity 0.6s ease 0.75s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--14 { transition: opacity 0.6s ease 0.80s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--15 { transition: opacity 0.6s ease 0.85s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--16 { transition: opacity 0.6s ease 0.90s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--17 { transition: opacity 0.6s ease 0.95s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--18 { transition: opacity 0.6s ease 1.00s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--19 { transition: opacity 0.6s ease 1.05s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--20 { transition: opacity 0.6s ease 1.10s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--21 { transition: opacity 0.6s ease 1.15s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--22 { transition: opacity 0.6s ease 1.20s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--23 { transition: opacity 0.6s ease 1.25s; }
.ac-orbit.ac-orbit--visible .ac-orbit__pill--24 { transition: opacity 0.6s ease 1.30s; }

/* Orbit reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ac-orbit__pill {
    animation: none !important;
    opacity: 1;
  }
  .ac-orbit__center {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ==========================================================================
   CAP STATS — Horizontal strip with gradient numbers
   ========================================================================== */
.ac-cap-stats {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(7, 169, 209, 0.06) 0%, transparent 60%),
    var(--ac-bg);
  overflow: hidden;
}

/* Subtle center glow behind stats */
.ac-cap-stats::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(7, 169, 209, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ac-cap-stats__strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* Dividers between stat items */
.ac-cap-stats__item {
  text-align: center;
  min-width: 140px;
  position: relative;
}

.ac-cap-stats__item + .ac-cap-stats__item::before {
  display: none;
}

.ac-cap-stats__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a2e;
  -webkit-text-fill-color: #1a1a2e;
  background: none;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.ac-cap-stats__label {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  color: #07A9D1;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}


/* ==========================================================================
   CAP PRODUCTS — From Our Garage, 3-col product cards
   ========================================================================== */
.ac-cap-products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 169, 209, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 207, 195, 0.06) 0%, transparent 50%),
    var(--ac-bg);
}

.ac-cap-products__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-products__triangle {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -40px;
  left: -60px;
  opacity: 0.04;
  animation: ac-rotate-slow-ccw 80s linear infinite;
}

.ac-cap-products__triangle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ac-cap-products__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(7, 169, 209, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  border-radius: 50%;
  animation: ac-pulse-glow 7s ease-in-out infinite;
}

.ac-cap-products__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 0.5rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-products__intro {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Product card — glass style */
.ac-cap-product-card {
  background: var(--ac-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--ac-radius-lg);
  border: 1px solid var(--ac-glass-border);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ac-cap-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(7, 169, 209, 0.1);
  border-color: rgba(7, 169, 209, 0.25);
}

/* Product card — image/visual area */
.ac-cap-product-card__visual {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 169, 209, 0.08) 0%, rgba(6, 207, 195, 0.04) 100%);
}

.ac-cap-product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ac-cap-product-card:hover .ac-cap-product-card__visual img {
  transform: scale(1.06);
}

.ac-cap-product-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-text-muted);
  background: rgba(1, 13, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ac-cap-product-card__status--live {
  color: #06CFC3;
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(1, 13, 18, 0.8);
}

.ac-cap-product-card__status--live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #06CFC3;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: ac-live-pulse 2s ease-in-out infinite;
}

/* Product card — text body area */
.ac-cap-product-card__body {
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ac-cap-product-card__badge {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac-primary);
  background: rgba(7, 169, 209, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.ac-cap-product-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.ac-cap-product-card__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0 0 1.5rem;
  flex: 1;
}


/* ==========================================================================
   CAP PROCESS — 3 numbered steps with connecting lines
   ========================================================================== */
.ac-cap-process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(7, 169, 209, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(6, 207, 195, 0.05) 0%, transparent 50%),
    var(--ac-bg);
}

.ac-cap-process__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 0.5rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-process__intro {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 4rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.ac-cap-process__steps::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(7, 169, 209, 0.3) 15%,
    rgba(7, 169, 209, 0.3) 85%,
    transparent 100%
  );
  z-index: 0;
}

.ac-cap-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Numbered circle with gradient border */
.ac-cap-process__number {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ac-text-light);
  background: var(--ac-bg-alt);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--ac-bg-alt), var(--ac-bg-alt)),
                    linear-gradient(135deg, var(--ac-primary), var(--ac-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

/* Glow behind number circle */
.ac-cap-process__number::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 169, 209, 0.15) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ac-cap-process__step:hover .ac-cap-process__number::after {
  opacity: 1;
}

.ac-cap-process__step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.ac-cap-process__step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
  max-width: 280px;
}

/* Glass card behind each step */
.ac-cap-process__step-card {
  background: var(--ac-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ac-glass-border);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.ac-cap-process__step-card:hover {
  border-color: rgba(7, 169, 209, 0.2);
  box-shadow: 0 16px 48px rgba(7, 169, 209, 0.08);
  transform: translateY(-4px);
}


/* ==========================================================================
   CAP TOOLS — Light background, categorized grid
   ========================================================================== */
.ac-cap-tools {
  position: relative;
  overflow: hidden;
  background: var(--ac-light-bg);
}

.ac-cap-tools__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-tools__dots {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 60px;
  left: 40px;
  background-image: radial-gradient(circle, rgba(7, 169, 209, 0.25) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.3;
}

.ac-cap-tools__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-dark);
  margin-bottom: 0.5rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-tools__intro {
  line-height: 1.65;
  color: var(--ac-grey-text);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 1;
}

.ac-cap-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ac-cap-tools__category {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.1);
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ac-cap-tools__category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(7, 169, 209, 0.1);
  border-color: rgba(7, 169, 209, 0.2);
}

.ac-cap-tools__cat-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ac-text-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ac-primary);
}

.ac-cap-tools__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ac-cap-tools__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-secondary);
  font-size: var(--body-4-size);
  font-weight: 500;
  color: var(--ac-grey-text);
  transition: color var(--ac-transition);
}

.ac-cap-tools__category:hover .ac-cap-tools__list li {
  color: var(--ac-grey-dark);
}

.ac-cap-tools__logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}


/* ==========================================================================
   CAP CTA — Dark background, centered heading and button
   ========================================================================== */
.ac-cap-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(1, 13, 18, 1) 0%, rgba(6, 46, 58, 1) 45%, rgba(1, 13, 18, 1) 100%);
  border-radius: 40px 40px 0 0;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}

.ac-cap-cta__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-cap-cta__title,
.ac-cap-cta__buttons,
.ac-cap-cta > .wp-block-paragraph,
.ac-cap-cta > .wp-block-group,
.ac-cap-cta > .wp-block-heading {
  position: relative;
  z-index: 2;
}

.ac-cap-cta__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 51px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 1.5rem !important;
}

.ac-cap-cta__sub {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
  position: relative;
  z-index: 2;
}

.ac-cap-cta__buttons {
  gap: 1rem;
}


/* ==========================================================================
   STAGGERED CARD REVEALS — children stagger on scroll
   ========================================================================== */
.ac-cap-other__grid .ac-cap-other__item,
.ac-cap-other__grid .ac-cap-other__card,
.ac-cap-tools__grid .ac-cap-tools__category,
.ac-cap-products__grid .ac-cap-product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow var(--ac-transition), border-color var(--ac-transition);
}

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item,
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card,
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category,
.ac-cap-products__grid.ac-stagger-visible .ac-cap-product-card {
  opacity: 1;
  transform: translateY(0);
}

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(even) {
  transform: translateY(60px);
}

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(odd):hover {
  transform: translateY(-8px);
}

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(even):hover {
  transform: translateY(52px);
}

/* Stagger delays for grid children */
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(1),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(1),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(1),
.ac-cap-products__grid.ac-stagger-visible .ac-cap-product-card:nth-child(1) { transition-delay: 0s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(2),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(2),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(2),
.ac-cap-products__grid.ac-stagger-visible .ac-cap-product-card:nth-child(2) { transition-delay: 0.08s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(3),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(3),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(3),
.ac-cap-products__grid.ac-stagger-visible .ac-cap-product-card:nth-child(3) { transition-delay: 0.16s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(4),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(4),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(4) { transition-delay: 0.24s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(5),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(5),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(5) { transition-delay: 0.32s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(6),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(6),
.ac-cap-tools__grid.ac-stagger-visible .ac-cap-tools__category:nth-child(6) { transition-delay: 0.40s; }

.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(7),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(7) { transition-delay: 0.48s; }
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(8),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(8) { transition-delay: 0.56s; }
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(9),
.ac-cap-other__grid.ac-stagger-visible .ac-cap-other__item:nth-child(9) { transition-delay: 0.64s; }


/* Process steps stagger */
.ac-cap-process__step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ac-cap-process__steps.ac-stagger-visible .ac-cap-process__step {
  opacity: 1;
  transform: translateY(0);
}

.ac-cap-process__steps.ac-stagger-visible .ac-cap-process__step:nth-child(1) { transition-delay: 0s; }
.ac-cap-process__steps.ac-stagger-visible .ac-cap-process__step:nth-child(2) { transition-delay: 0.15s; }
.ac-cap-process__steps.ac-stagger-visible .ac-cap-process__step:nth-child(3) { transition-delay: 0.3s; }



/* ==========================================================================
   CAP CORE V2 — Tabbed switcher with nav + panels
   ========================================================================== */
.ac-cap-core__badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(7, 169, 209, 0.08);
  border: 1px solid rgba(7, 169, 209, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 20px;
}

.ac-cap-core__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 2.5rem;
}

.ac-cap-core__header-left {
  flex: 1;
}

.ac-cap-core__header-right {
  flex-shrink: 0;
  max-width: 320px;
}

.ac-cap-core__desc {
  font-size: var(--body-4-size);
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
}

.ac-cap-core__switcher {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
}

.ac-cap-core__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 280px;
  flex-shrink: 0;
  padding: 0.5rem 2.5rem 0.5rem 0;
  border-right: 1px solid rgba(7, 169, 209, 0.2);
}

.ac-cap-core__nav-item {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  margin-left: -1.25rem;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-align: left;
  line-height: 1.35;
}

.ac-cap-core__nav-item:hover {
  color: var(--ac-text-light);
  background: none;
}

.ac-cap-core__nav-item.is-active {
  color: var(--ac-cyan, #07a9d1);
  background: rgba(7, 169, 209, 0.1);
  border-color: rgba(7, 169, 209, 0.4);
}

.ac-cap-core__panels {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-left: 2.5rem;
}

.ac-cap-core__panel {
  background: var(--ac-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ac-glass-border);
  border-radius: 1rem;
  padding: 2.5rem;
}

.ac-cap-core__panel[hidden] {
  display: none;
}

.ac-cap-core__panel-img {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-height: 280px;
}

.ac-cap-core__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-cap-core__metric {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--body-5-size);
  font-weight: 600;
  color: var(--ac-primary);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(7, 169, 209, 0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
}

.ac-cap-core__panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.ac-cap-core__panel-desc {
  font-size: var(--body-4-size);
  line-height: 1.7;
  color: var(--ac-text-muted);
  margin: 0 0 1.5rem;
  max-width: 700px;
}

.ac-cap-core__cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: var(--body-5-size);
  font-weight: 600;
  color: #fff;
  background: var(--ac-cyan, #07a9d1);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ac-cap-core__cta:hover {
  background: var(--ac-accent, #06c4e0);
  color: #fff;
  text-decoration: none;
}


/* ==========================================================================
   CAP OTHER V2 — Card links with icons
   ========================================================================== */
.ac-cap-other__track {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 5rem;
}

.ac-cap-other__track::-webkit-scrollbar {
  display: none;
}

.ac-cap-other__grid {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  min-width: max-content;
}

.ac-cap-other__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #06C7C9;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 260px;
  min-width: 260px;
  height: 280px;
  flex-shrink: 0;
  transform: translateY(0);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.ac-cap-other__card:nth-child(even) {
  transform: translateY(60px);
}

.ac-cap-other__card::before {
  display: none;
}

.ac-cap-other__card:nth-child(odd):hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(6, 199, 201, 0.15);
  text-decoration: none;
  color: inherit;
}

.ac-cap-other__card:nth-child(even):hover {
  transform: translateY(52px);
  box-shadow: 0 16px 40px rgba(6, 199, 201, 0.15);
  text-decoration: none;
  color: inherit;
}

.ac-cap-other__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-cyan, #07a9d1);
  border-radius: 10px;
  flex-shrink: 0;
  align-self: flex-end;
  transition: transform 300ms ease;
}

.ac-cap-other__card:hover .ac-cap-other__card-icon {
  transform: scale(1.1);
}

.ac-cap-other__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

.ac-cap-other__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
}

.ac-cap-other__card-desc {
  font-size: var(--body-5-size);
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.ac-cap-other__scroll-track {
  width: 100%;
  max-width: 400px;
  height: 3px;
  background: #E0E0E0;
  border-radius: 999px;
  margin: 2.5rem auto 0;
  position: relative;
  overflow: hidden;
}

.ac-cap-other__scroll-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: #06C7C9;
  border-radius: 999px;
  transition: left 150ms ease;
}

.ac-cap-other .ac-cap-core__badge {
  color: var(--ac-cyan, #07a9d1);
  background: rgba(7, 169, 209, 0.08);
  border-color: rgba(7, 169, 209, 0.3);
}



/* ==========================================================================
   GARAGE CAROUSEL — Products from our garage
   ========================================================================== */
.ac-garage-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.ac-garage-slide {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(7, 169, 209, 0.3);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
}

.ac-garage-slide--active {
  display: grid;
  animation: ac-fade-in-up 0.5s ease forwards;
}

.ac-garage-slide__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.ac-garage-slide__status {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac-primary, #07A9D1);
  background: rgba(7, 169, 209, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(7, 169, 209, 0.2);
}

.ac-garage-slide__status--live {
  color: #06CFC3;
  border-color: rgba(6, 207, 195, 0.3);
  background: rgba(6, 207, 195, 0.08);
}

.ac-garage-slide__status--live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #06CFC3;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: ac-live-pulse 2s ease-in-out infinite;
}

.ac-garage-slide__name {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

.ac-garage-slide__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

.ac-garage-slide__btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--ac-cyan, #07a9d1);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.ac-garage-slide__btn:hover {
  background: var(--ac-accent, #06CFC3);
  color: #fff;
  text-decoration: none;
}

.ac-garage-slide__visual {
  border-radius: 1rem;
  overflow: hidden;
  background: #f0f4f5;
  aspect-ratio: 16/10;
}

.ac-garage-slide__visual img,
.ac-garage-slide__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-garage-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ac-garage-carousel__arrow:hover {
  background: var(--ac-primary);
  color: #fff;
  border-color: var(--ac-primary);
}

.ac-garage-carousel__arrow--prev {
  left: -56px;
}

.ac-garage-carousel__arrow--next {
  right: -56px;
}

.ac-garage-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.ac-garage-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(7, 169, 209, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.ac-garage-carousel__dot:hover {
  border-color: var(--ac-primary);
}

.ac-garage-carousel__dot--active {
  background: var(--ac-primary);
  border-color: var(--ac-primary);
}


/* ==========================================================================
   CAP CTA V2 — Simple glow + content layout
   ========================================================================== */
.ac-cap-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(7, 169, 209, 0.18) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ac-cap-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ac-cap-cta__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0 0 2rem;
}

.ac-cap-cta__btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--ac-primary);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ac-cap-cta__btn:hover {
  background: #0A576B;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 169, 209, 0.3);
}


/* ==========================================================================
   CAP STATS V2 — Light background number strip
   ========================================================================== */
.ac-cap-stats {
  position: relative;
  overflow: hidden;
}

.ac-cap-stats__strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.ac-cap-stats__item {
  text-align: center;
  min-width: 140px;
}

.ac-cap-stats__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.ac-cap-stats__label {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ac-primary);
  text-transform: capitalize;
  letter-spacing: 0.02em;
}


/* ==========================================================================
   RESPONSIVE V2 — New component responsive rules
   ========================================================================== */
@media (max-width: 1024px) {
  .ac-cap-core__header {
    flex-direction: column;
    gap: 1rem;
  }
  .ac-cap-core__header-right {
    max-width: none;
  }
  .ac-cap-other__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-garage-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ac-garage-carousel__arrow--prev { left: 8px; }
  .ac-garage-carousel__arrow--next { right: 8px; }
}

@media (max-width: 768px) {
  /* Header: center-align badge, heading, description */
  .ac-cap-core__header {
    text-align: center;
    align-items: center;
  }
  .ac-cap-core__header-left,
  .ac-cap-core__header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Replace tab-switcher with horizontal card scroll */
  .ac-cap-core__nav {
    display: none;
  }
  .ac-cap-core__switcher {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 16px;
  }
  .ac-cap-core__switcher::-webkit-scrollbar {
    display: none;
  }
  .ac-cap-core__panels {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-left: 0;
    min-width: 0;
  }
  /* Neutralise JS-injected absolute layout on mobile */
  .ac-cap-core__panels--ready {
    height: auto !important;
    overflow: visible !important;
  }
  .ac-cap-core__panels--ready .ac-cap-core__panel {
    position: static !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  /* Show all panels as scroll cards */
  .ac-cap-core__panel[hidden],
  .ac-cap-core__panels--ready .ac-cap-core__panel[hidden] {
    display: block !important;
  }
  .ac-cap-core__panel {
    flex: 0 0 280px;
    width: 280px;
    padding: 1.25rem;
  }
  .ac-cap-core__panel-img {
    max-height: 180px;
  }
  .ac-cap-core__panel-title {
    font-size: 1.15rem;
  }
  /* Reduce section side padding on mobile */
  .ac-cap-core {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  /* ac-cap-other: switch horizontal scroll to 2-col grid on mobile */
  .ac-cap-other__track {
    overflow-x: visible;
    padding-bottom: 0;
  }
  .ac-cap-other__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: unset;
    gap: 0.75rem;
  }
  .ac-cap-other__card {
    width: auto;
    min-width: unset;
    height: auto;
    flex-shrink: unset;
  }
  .ac-cap-other__card:nth-child(even),
  .ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(even) {
    transform: translateY(0) !important;
  }
  .ac-cap-other__card:nth-child(odd):hover,
  .ac-cap-other__card:nth-child(even):hover,
  .ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(odd):hover,
  .ac-cap-other__grid.ac-stagger-visible .ac-cap-other__card:nth-child(even):hover {
    transform: translateY(0) !important;
    box-shadow: none;
  }
  .ac-cap-other__card:hover .ac-cap-other__card-icon {
    transform: none;
  }
  .ac-cap-other__scroll-track {
    display: none;
  }
  /* Garage carousel */
  .ac-garage-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ac-garage-slide__name {
    font-size: 1.5rem;
  }
  .ac-garage-carousel__arrow {
    width: 32px;
    height: 32px;
  }
  .ac-garage-carousel__arrow--prev { left: 4px; }
  .ac-garage-carousel__arrow--next { right: 4px; }
  .ac-cap-stats__strip {
    flex-direction: column;
    gap: 1.5rem;
  }
}


/* ==========================================================================
   RESPONSIVE — Tablet (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .ac-cap-bento {
    grid-template-columns: 1fr 1fr;
  }

  .ac-cap-bento__card--wide,
  .ac-cap-bento__card--narrow {
    grid-column: span 1;
  }

  .ac-cap-bento__card {
    padding: 1.75rem 1.5rem;
  }

  .ac-cap-other__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-cap-tools__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-cap-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-cap-process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .ac-cap-process__steps::before {
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
  }

  .ac-cap-core__triangle {
    width: 200px;
    height: 200px;
    opacity: 0.04;
  }

  /* Orbit tablet */
  .ac-orbit {
    min-height: 600px;
    padding: 5rem 1.5rem;
  }

  .ac-orbit__pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }

  .ac-orbit__pill--r3 { display: none; }
}


/* Hide mobile carousel on desktop */
.orbit-mob-carousel { display: none; }

/* ==========================================================================
   RESPONSIVE — Small tablet / large phone (768px)
   ========================================================================== */
@media (max-width: 768px) {

  /* ── Technology Agnostic orbit → mobile carousel ── */
  .ac-orbit__pill,
  .ac-orbit::before,
  .ac-orbit::after {
    display: none !important;
  }
  .ac-orbit {
    min-height: auto;
    padding: 3rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ac-orbit__center {
    position: static;
    transform: none;
    opacity: 1;
    background: none;
    padding: 0 1.5rem 0.75rem;
  }
  .orbit-mob-carousel {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 24px;
  }
  .orbit-mob-carousel::-webkit-scrollbar { display: none; }
  .orbit-mob-track {
    display: flex;
    gap: 8px;
  }
  .orbit-mob-item {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .orbit-mob-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0a1622;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .orbit-mob-circle img {
    width: 60%;
    height: auto;
    object-fit: contain;
  }
  .orbit-mob-circle--inv img { width: 55%; }
  .orbit-mob-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    letter-spacing: 0.03em;
  }

  .ac-cap-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .ac-cap-hero .ac-trust-carousel {
    bottom: 70px !important;
  }

  .ac-cap-hero .ac-hero__bottom {
    bottom: 16px !important;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem !important;
  }

  .ac-cap-hero .ac-deco-flow-left,
  .ac-cap-hero .ac-deco-flow-right {
    display: none;
  }

  .ac-cap-hero__pills {
    display: none;
  }

  .ac-cap-hero__canvas {
    opacity: 0.5;
  }

  .ac-cap-bento {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-cap-bento__card {
    padding: 1.5rem;
  }

  .ac-cap-other__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ac-cap-tools__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-cap-products__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-cap-stats__strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ac-cap-stats__item + .ac-cap-stats__item::before {
    display: none;
  }

  .ac-cap-quote__text {
    font-size: 1.2rem;
  }

  .ac-cap-quote__block::before {
    font-size: 3.5rem;
  }

  .ac-cap-core__triangle,
  .ac-cap-core__dots,
  .ac-cap-tools__dots {
    display: none;
  }

  .ac-cap-products__triangle {
    display: none;
  }

  .ac-cap-quote__triangle {
    width: 140px;
    height: 140px;
  }

  /* Process — stack vertically */
  .ac-cap-process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .ac-cap-process__steps::before {
    /* Vertical line instead of horizontal */
    top: 2.75rem;
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 5.5rem);
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(7, 169, 209, 0.3) 15%,
      rgba(7, 169, 209, 0.3) 85%,
      transparent 100%
    );
  }

  .ac-cap-process__number {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.5rem;
  }

  /* Orbit mobile */
  .ac-orbit {
    min-height: auto;
    flex-direction: column;
    padding: 4rem 1.5rem 3rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .ac-orbit__center {
    position: relative;
    margin-bottom: 2.5rem;
  }

  .ac-orbit__pill {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
    opacity: 1;
  }

  .ac-orbit__pill--r2,
  .ac-orbit__pill--r3 {
    display: inline-flex;
  }

  .ac-orbit::after {
    display: none;
  }
}


/* ==========================================================================
   RESPONSIVE — Phone (480px)
   ========================================================================== */
@media (max-width: 480px) {
  .ac-cap-hero__title {
    font-size: 2.2rem !important;
  }

  .ac-cap-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .ac-cap-cta {
    border-radius: 24px 24px 0 0;
    padding: 64px 20px;
  }

  .ac-cap-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .ac-cap-bento__card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .ac-cap-bento__title {
    font-size: 1.05rem;
  }

  .ac-cap-product-card {
    padding: 0;
  }

  .ac-cap-product-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .ac-cap-product-card__visual {
    height: 150px;
  }

  .ac-cap-tools__category {
    padding: 1.25rem;
  }

  .ac-cap-process__steps {
    gap: 1.5rem;
  }

  .ac-cap-process__number {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }

  .ac-cap-process__step-title {
    font-size: 1rem;
  }

  .ac-orbit {
    padding: 3rem 1rem 2rem;
  }

  .ac-orbit__title {
    font-size: 1.6rem;
  }

  .ac-orbit__pill {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  /* Section padding overrides */
  .ac-cap-other {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .ac-cap-products {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Core tabs — bigger touch targets at smallest size */
  .ac-cap-core__nav-item {
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    min-height: 38px;
  }
  .ac-cap-core__panel {
    padding: 1.25rem;
  }

  /* Other cards — single column at 480px */
  .ac-cap-other__grid {
    grid-template-columns: 1fr;
  }
  .ac-cap-other__card {
    padding: 1.25rem;
  }

  /* Garage carousel tighten at 480px */
  .ac-garage-slide {
    padding: 1.5rem;
    gap: 1rem;
  }
  .ac-garage-slide__name {
    font-size: 1.25rem;
  }
  .ac-garage-carousel__arrow {
    width: 28px;
    height: 28px;
  }
}


/* ==========================================================================
   ==========================================================================
   INDIVIDUAL CAPABILITY PAGE — ac-capp-* styles
   ==========================================================================
   ========================================================================== */

/* Override WordPress constrained layout — decorations need full bleed */
.ac-capp-cta__decorations,
.ac-capp-hero__decorations {
  max-width: none !important;
}

/* Content grids constrained to section width */
.ac-capp-usecases__list,
.ac-capp-cases__grid,
.ac-capp-faq__list,
.ac-capp-related__grid,
.ac-capp-trust__inner,
.ac-capp-stats__strip {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ==========================================================================
   CAPP HERO — dark bg, glow decorations
   ========================================================================== */
.ac-capp-hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(7, 169, 209, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 207, 195, 0.06) 0%, transparent 50%),
    var(--ac-bg);
  }

.ac-capp-hero__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-capp-hero__glow {
  position: absolute;
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(7, 169, 209, 0.25) 0%,
    rgba(7, 169, 209, 0.12) 25%,
    rgba(6, 207, 195, 0.05) 50%,
    transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(70px);
  border-radius: 50%;
  animation: ac-pulse-glow 6s ease-in-out infinite;
}

.ac-capp-hero__badge-wrap,
.ac-capp-hero__title,
.ac-capp-hero__body,
.ac-capp-hero__ctas {
  position: relative;
  z-index: 1;
}

.ac-capp-hero__badge-wrap {
  margin-bottom: 1.75rem !important;
}

.ac-capp-hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ac-text-light);
  margin-bottom: 1.5rem !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ac-capp-hero__body {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 640px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ac-capp-hero__ctas {
  margin-top: 2rem !important;
  gap: 1rem;
}

/* Particle dots in capp hero */
.ac-capp-hero__decorations circle {
  animation: ac-particle-float 8s ease-in-out infinite;
}


/* ==========================================================================
   CAPP VISION — light bg, emotional anchor
   ========================================================================== */
.ac-capp-vision {
  position: relative;
  background: var(--ac-light-bg);
}

.ac-capp-vision__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-dark);
  margin-bottom: 2rem !important;
}

.ac-capp-vision__body {
  line-height: 1.65;
  color: var(--ac-grey-text);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1.5rem !important;
}

.ac-capp-vision__closing {
  line-height: 1.65;
  color: var(--ac-grey-text);
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ==========================================================================
   CAPP TRUST BAR — rolling logo carousel, dark bg
   ========================================================================== */
.ac-capp-trust {
  background: var(--ac-bg);
  border-top: 1px solid rgba(7, 169, 209, 0.08);
  border-bottom: 1px solid rgba(7, 169, 209, 0.08);
  overflow: hidden;
}

/* Override WordPress is-layout-flow spacing on trust bar children */
.ac-capp-trust.is-layout-flow > * {
  margin-block-start: 0;
}
.ac-capp-trust .ac-capp-trust__header,
.ac-capp-trust .ac-capp-trust__track {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-capp-trust__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ac-capp-trust__label {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ac-text-muted);
}

.ac-capp-trust__track {
  position: relative;
  overflow: hidden;
}

.ac-capp-trust__track::before,
.ac-capp-trust__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ac-capp-trust__track::before {
  left: 0;
  background: linear-gradient(to right, var(--ac-bg), transparent);
}
.ac-capp-trust__track::after {
  right: 0;
  background: linear-gradient(to left, var(--ac-bg), transparent);
}

.ac-capp-trust__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: ac-capp-scroll-logos 25s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.ac-capp-trust__inner:hover {
  animation-play-state: paused;
}

@keyframes ac-capp-scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.ac-capp-trust__logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ac-capp-trust__logo-item img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--ac-transition);
}
.ac-capp-trust__logo-item:hover img {
  opacity: 1;
}


/* ==========================================================================
   CAPP USE CASES — visual cards with tool logos
   ========================================================================== */
.ac-capp-usecases {
  position: relative;
  background: var(--ac-light-bg);
}

/* Override WordPress constrained layout on usecases grid children */
.ac-capp-usecases .ac-capp-usecases__list {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ac-capp-usecases__list > .ac-capp-usecase {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-block-start: 0 !important;
}

.ac-capp-usecases__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-dark);
  margin-bottom: 3rem !important;
}

.ac-capp-usecases__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ac-capp-usecase {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.1);
  padding: 2rem 2rem 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.ac-capp-usecase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ac-primary), var(--ac-accent, #06CFC3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ac-capp-usecase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.1);
}

.ac-capp-usecase:hover::before {
  opacity: 1;
}

.ac-capp-usecase--wide {
  grid-column: 1 / -1;
}

.ac-capp-usecase__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(7, 169, 209, 0.08), rgba(6, 207, 195, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ac-capp-usecase__icon svg {
  width: 24px;
  height: 24px;
}

.ac-capp-usecase__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ac-text-dark) !important;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.ac-capp-usecase__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ac-grey-text);
  margin: 0 0 1.25rem;
}

/* Tool / brand logo pills within cards */
.ac-capp-usecase__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.ac-capp-tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--ac-light-bg);
  border-radius: 100px;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ac-grey-dark);
  border: 1px solid rgba(7, 169, 209, 0.08);
  transition: all 0.2s ease;
}

.ac-capp-tool-pill:hover {
  background: rgba(7, 169, 209, 0.1);
  border-color: rgba(7, 169, 209, 0.2);
}

.ac-capp-tool-pill img {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.ac-capp-usecase__hood {
  background: var(--ac-light-bg);
  border-radius: var(--ac-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.ac-capp-usecase__hood-title {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ac-primary);
  margin: 0 0 0.75rem;
}

.ac-capp-usecase__hood-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ac-capp-usecase__hood-list li {
  font-family: var(--font-secondary);
  font-size: var(--body-4-size);
  color: var(--ac-grey-text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.ac-capp-usecase__hood-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ac-primary), #06CFC3);
  opacity: 0.7;
}

.ac-capp-usecase__quote {
  border: none;
  border-left: 3px solid var(--ac-primary);
  margin: 0;
  padding: 0.75rem 0 0.75rem 1.25rem;
}

.ac-capp-usecase__quote p {
  font-family: 'Inter', sans-serif;
  font-size: var(--body-4-size);
  font-style: italic;
  line-height: 1.65;
  color: var(--ac-grey-text);
  margin: 0 0 0.5rem;
}

.ac-capp-usecase__quote footer {
  font-family: var(--font-secondary);
  font-size: var(--body-5-size);
  font-weight: 600;
  color: var(--ac-primary);
}


/* ==========================================================================
   CAPP STATS BAR — animated counters, dark bg
   ========================================================================== */
.ac-capp-stats {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(7, 169, 209, 0.06) 0%, transparent 60%),
    var(--ac-bg);
  overflow: hidden;
}

.ac-capp-stats::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(7, 169, 209, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ac-capp-stats__strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.ac-capp-stats__item {
  text-align: center;
  min-width: 140px;
  position: relative;
}

.ac-capp-stats__item + .ac-capp-stats__item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(7, 169, 209, 0.2), transparent);
}

.ac-capp-stats__number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #07A9D1, #06CFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ac-capp-stats__label {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ac-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ==========================================================================
   CAPP MINI CASE STUDIES — 2-col grid
   ========================================================================== */
.ac-capp-cases {
  background: var(--ac-light-bg);
}

.ac-capp-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ac-capp-case-card {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ac-capp-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.1);
}

.ac-capp-case-card__photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ac-capp-case-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-capp-case-card__body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.ac-capp-case-card__logo {
  height: 40px;
  margin-bottom: 0.25rem;
}

.ac-capp-case-card__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.ac-capp-case-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ac-text-dark);
  margin: 0;
}

.ac-capp-case-card__tag {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ac-primary);
  background: rgba(7, 169, 209, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  align-self: flex-start;
}

.ac-capp-case-card__desc {
  font-size: var(--body-4-size);
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
}

.ac-capp-case-card__stat {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ac-text-dark);
  line-height: 1.3;
  flex: 1;
}

.ac-capp-cases__grid--centered {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   CAPP FAQ — accordion, dark bg
   ========================================================================== */
.ac-capp-faq {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(7, 169, 209, 0.04) 0%, transparent 60%),
    var(--ac-bg);
  position: relative;
}

.ac-capp-faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ac-capp-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ac-capp-faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ac-capp-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ac-text-light);
  text-align: left;
  gap: 1rem;
  transition: color var(--ac-transition);
}

.ac-capp-faq__trigger:hover {
  color: var(--ac-primary);
}

.ac-capp-faq__icon {
  flex-shrink: 0;
  color: var(--ac-primary);
  transition: transform 0.3s ease;
}

.ac-capp-faq__trigger[aria-expanded="true"] .ac-capp-faq__icon {
  transform: rotate(180deg);
}

.ac-capp-faq__answer {
  padding: 0 0 1.25rem;
}

.ac-capp-faq__answer p {
  font-size: 24px;
  line-height: 1.65;
  color: var(--ac-text-muted);
  margin: 0;
}


/* ==========================================================================
   CAPP RELATED CAPABILITIES — 3-col grid
   ========================================================================== */
.ac-capp-related {
  background: var(--ac-light-bg);
}

.ac-capp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ac-capp-related__grid:has(> .ac-capp-related-card:nth-child(4)) {
  grid-template-columns: repeat(2, 1fr);
}

.ac-capp-related-card {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ac-capp-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 169, 209, 0.12);
  border-color: rgba(7, 169, 209, 0.25);
  color: inherit;
  text-decoration: none !important;
}

.ac-capp-related-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(7, 169, 209, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--ac-transition);
}

.ac-capp-related-card:hover .ac-capp-related-card__icon {
  background: rgba(7, 169, 209, 0.14);
}

.ac-capp-related-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ac-text-dark) !important;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.ac-capp-related-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ac-grey-text);
  margin: 0;
  flex: 1;
}

.ac-capp-related-card__link {
  font-family: var(--font-secondary);
  font-size: var(--body-5-size);
  font-weight: 600;
  color: var(--ac-primary);
  margin-top: 1.25rem;
  transition: color var(--ac-transition);
}

.ac-capp-related-card:hover .ac-capp-related-card__link {
  color: var(--ac-accent);
}


/* ==========================================================================
   CAPP CTA — gradient bg, rounded top corners
   ========================================================================== */
.ac-capp-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 62, 76, 1) 0%, rgba(4, 32, 40, 1) 42%, rgba(1, 13, 18, 1) 85%);
  border-radius: 40px 40px 0 0;
}

.ac-capp-cta__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-capp-cta__title,
.ac-capp-cta__sub,
.ac-capp-cta__buttons,
.ac-capp-cta > .wp-block-group,
.ac-capp-cta > .wp-block-heading,
.ac-capp-cta > .wp-block-paragraph {
  position: relative;
  z-index: 2;
}

.ac-capp-cta__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ac-text-light);
  margin-bottom: 1rem !important;
}

.ac-capp-cta__sub {
  line-height: 1.65;
  color: var(--ac-text-muted);
  font-size: clamp(14px, 1.1vw, 16px);
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
}

.ac-capp-cta__buttons {
  gap: 1rem;
}


/* ==========================================================================
   CAPP STAGGER REVEALS
   ========================================================================== */
.ac-capp-usecases__list .ac-capp-usecase,
.ac-capp-cases__grid .ac-capp-case-card,
.ac-capp-related__grid .ac-capp-related-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow var(--ac-transition), border-color var(--ac-transition);
}

.ac-capp-usecases__list.ac-stagger-visible .ac-capp-usecase,
.ac-capp-cases__grid.ac-stagger-visible .ac-capp-case-card,
.ac-capp-related__grid.ac-stagger-visible .ac-capp-related-card {
  opacity: 1;
  transform: translateY(0);
}

.ac-capp-usecases__list.ac-stagger-visible .ac-capp-usecase:nth-child(1),
.ac-capp-cases__grid.ac-stagger-visible .ac-capp-case-card:nth-child(1),
.ac-capp-related__grid.ac-stagger-visible .ac-capp-related-card:nth-child(1) { transition-delay: 0s; }

.ac-capp-usecases__list.ac-stagger-visible .ac-capp-usecase:nth-child(2),
.ac-capp-cases__grid.ac-stagger-visible .ac-capp-case-card:nth-child(2),
.ac-capp-related__grid.ac-stagger-visible .ac-capp-related-card:nth-child(2) { transition-delay: 0.1s; }

.ac-capp-related__grid.ac-stagger-visible .ac-capp-related-card:nth-child(3) { transition-delay: 0.2s; }


/* ==========================================================================
   CAPP RESPONSIVE — Tablet (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .ac-capp-cases__grid {
    grid-template-columns: 1fr;
  }

  .ac-capp-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   CAPP RESPONSIVE — Small tablet / large phone (768px)
   ========================================================================== */
@media (max-width: 768px) {
  .ac-capp-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .ac-capp-stats__strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ac-capp-stats__item + .ac-capp-stats__item::before {
    display: none;
  }

  .ac-capp-related__grid {
    grid-template-columns: 1fr;
  }

  .ac-capp-usecases__list {
    grid-template-columns: 1fr;
  }

  .ac-capp-usecase {
    padding: 1.75rem;
  }
}


/* ==========================================================================
   CAPP RESPONSIVE — Phone (480px)
   ========================================================================== */
@media (max-width: 480px) {
  .ac-capp-hero__title {
    font-size: 2.2rem !important;
  }

  .ac-capp-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .ac-capp-cta {
    border-radius: 24px 24px 0 0;
  }

  .ac-capp-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .ac-capp-usecase {
    padding: 1.25rem;
  }

  .ac-capp-case-card {
    padding: 1.5rem;
  }

  .ac-capp-related-card {
    padding: 1.5rem;
  }
}


/* ==========================================================================
   PREFERS REDUCED MOTION — disable all animations globally
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .ac-cap-hero__glow,
  .ac-capp-hero__glow {
    animation: none;
  }

  .ac-cap-hero__decorations circle,
  .ac-capp-hero__decorations circle {
    animation: none;
  }

  .ac-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ac-cap-other__grid .ac-cap-other__item,
  .ac-cap-other__grid .ac-cap-other__card,
  .ac-cap-tools__grid .ac-cap-tools__category,
  .ac-cap-products__grid .ac-cap-product-card,
  .ac-cap-process__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ac-capp-usecases__list .ac-capp-usecase,
  .ac-capp-cases__grid .ac-capp-case-card,
  .ac-capp-related__grid .ac-capp-related-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ==========================================================================
   CAPP V2 — Hero: 2-column split layout
   ========================================================================== */
.ac-capp-hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem !important;
}

.ac-capp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,169,209,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,169,209,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.ac-capp-hero__bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(7,169,209,0.08), transparent 70%);
  pointer-events: none;
}

.ac-capp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

.ac-capp-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  text-align: left;
}

.ac-capp-hero__image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.ac-capp-hero__checks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.ac-capp-hero__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ac-text-muted);
}

.ac-capp-hero__check svg {
  color: var(--ac-primary);
  flex-shrink: 0;
}

.ac-capp-hero .ac-trust-carousel {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.ac-capp-hero .ac-hero__bottom {
  margin-top: 2rem;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 2;
}

.ac-capp-hero__visual {
  position: relative;
}

.ac-capp-hero__visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ac-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ac-capp-hero__visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ac-capp-hero__visual-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--ac-radius);
  padding: 1.25rem;
  text-align: center;
}

.ac-capp-hero__visual-metric-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ac-primary);
  line-height: 1.2;
}

.ac-capp-hero__visual-metric-label {
  font-size: 0.75rem;
  color: var(--ac-text-muted);
  margin-top: 0.25rem;
}

.ac-capp-hero__float-stat {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #fff;
  border-radius: var(--ac-radius);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.ac-capp-hero__float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--ac-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-capp-hero__float-icon svg {
  color: var(--ac-primary);
}

.ac-capp-hero__float-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ac-bg);
  line-height: 1;
}

.ac-capp-hero__float-label {
  font-size: 0.7rem;
  color: #7A8AA8;
}


/* ==========================================================================
   CAPP V2 — Challenge: problem statement + cards
   ========================================================================== */
.ac-capp-challenge {
  position: relative;
  background: var(--ac-light-bg);
}

.ac-capp-challenge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ac-capp-challenge__bar {
  width: 3rem;
  height: 3px;
  background: var(--ac-bg);
  margin-bottom: 1.5rem;
}

.ac-capp-challenge__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ac-text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ac-capp-challenge__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ac-grey-text);
  margin-bottom: 1.5rem;
}

.ac-capp-challenge__problems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ac-capp-challenge__problem {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--ac-radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  align-items: flex-start;
}

.ac-capp-challenge__problem-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(224, 82, 82, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ac-capp-challenge__problem-icon span {
  color: var(--ac-error, #E05252);
  font-weight: 700;
  font-size: 0.8rem;
}

.ac-capp-challenge__problem-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--body-4-size);
  color: var(--ac-text-dark);
  margin-bottom: 0.15rem;
}

.ac-capp-challenge__problem-desc {
  font-size: var(--body-5-size);
  color: var(--ac-grey-text);
  line-height: 1.5;
}

/* Right side — quote card */
.ac-capp-challenge__aside {
  position: relative;
}

.ac-capp-challenge__quote-card {
  background: var(--ac-bg);
  color: #fff;
  border-radius: var(--ac-radius-lg);
  padding: 2.5rem;
  position: relative;
}

.ac-capp-challenge__quote-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: 'Inter', sans-serif;
  color: var(--ac-primary);
  opacity: 0.3;
  line-height: 1;
}

.ac-capp-challenge__quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
}

.ac-capp-challenge__quote-attr {
  font-size: var(--body-5-size);
  color: var(--ac-primary);
}

.ac-capp-challenge__aside-decor {
  position: absolute;
  inset: -0.5rem;
  background: rgba(7,169,209,0.08);
  border-radius: var(--ac-radius-lg);
  transform: rotate(2deg);
  z-index: -1;
}


/* ==========================================================================
   CAPP V2 — Solution: dark bg with 3 feature cards
   ========================================================================== */
.ac-capp-solution {
  position: relative;
  background: var(--ac-bg);
  color: #fff;
  overflow: hidden;
}

.ac-capp-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ac-primary), transparent);
}

.ac-capp-solution__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.ac-capp-solution__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ac-capp-solution__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ac-text-muted);
}

.ac-capp-solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ac-capp-solution__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ac-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.ac-capp-solution__card:hover {
  border-color: rgba(7,169,209,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ac-capp-solution__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--ac-radius);
  background: rgba(7,169,209,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.ac-capp-solution__card:hover .ac-capp-solution__card-icon {
  background: rgba(7,169,209,0.2);
}

.ac-capp-solution__card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ac-primary);
}

.ac-capp-solution__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ac-capp-solution__card-desc {
  font-size: var(--body-4-size);
  line-height: 1.65;
  color: var(--ac-text-muted);
}


/* ==========================================================================
   CAPP V2 — Big Quote with typing animation
   ========================================================================== */
.ac-capp-bigquote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.ac-capp-bigquote__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--ac-primary);
  opacity: 0.3;
  margin-bottom: -1.5rem;
  user-select: none;
}

.ac-capp-bigquote__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  border: none;
  padding: 0;
  margin: 0 0 2rem;
  min-height: 3.5em;
  letter-spacing: -0.01em;
}

.ac-capp-bigquote__typed {
  /* text appears here via JS */
}

.ac-capp-bigquote__cursor {
  display: inline-block;
  color: var(--ac-primary);
  font-weight: 100;
  animation: ac-blink 0.8s step-end infinite;
  margin-left: 2px;
}

.ac-capp-bigquote__cursor.ac-cursor--done {
  animation: ac-blink 0.8s step-end infinite;
  opacity: 0;
  animation: ac-cursor-fade 1.5s ease forwards;
}

@keyframes ac-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes ac-cursor-fade {
  0%, 60% { opacity: 1; }
  100% { opacity: 0; }
}

.ac-capp-bigquote__attr {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ac-capp-bigquote__attr.ac-visible {
  opacity: 1;
  transform: translateY(0);
}

.ac-capp-bigquote__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ac-text-muted);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.ac-capp-bigquote__sub.ac-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .ac-capp-bigquote__text {
    min-height: 5em;
  }
}


/* ==========================================================================
   CAPP V2 — Detail: sticky sidebar + numbered capability items
   ========================================================================== */
.ac-capp-detail {
  position: relative;
  background: var(--ac-light-bg);
}

.ac-capp-detail__layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 3rem;
}

.ac-capp-detail__sidebar {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.ac-capp-detail__sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ac-text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ac-capp-detail__sidebar-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ac-grey-text);
  margin-bottom: 1.5rem;
}

.ac-capp-detail__sidebar-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ac-primary), transparent);
}

.ac-capp-detail__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ac-capp-detail__item {
  background: #fff;
  border-radius: var(--ac-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.ac-capp-detail__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.ac-capp-detail__item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ac-capp-detail__item-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ac-grey-light);
  line-height: 1;
  transition: color 0.3s ease;
}

.ac-capp-detail__item:hover .ac-capp-detail__item-num {
  color: var(--ac-primary);
}

.ac-capp-detail__item-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ac-text-dark);
}

.ac-capp-detail__item-desc {
  font-size: var(--body-4-size);
  line-height: 1.65;
  color: var(--ac-grey-text);
  margin-bottom: 1rem;
  padding-left: 3rem;
}

.ac-capp-detail__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-left: 3rem;
}

.ac-capp-detail__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--ac-light-bg);
  font-size: 0.78rem;
  color: var(--ac-grey-text);
  border-radius: 100px;
}


/* ==========================================================================
   CAPP V2 — Method: 4-step process (dark bg)
   ========================================================================== */
.ac-capp-method {
  position: relative;
  background: var(--ac-bg);
  color: #fff;
  overflow: hidden;
}

.ac-capp-method__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.ac-capp-method__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.ac-capp-method__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ac-text-muted);
}

.ac-capp-method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ac-capp-method__step {
  position: relative;
}

.ac-capp-method__step-bg-num {
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  transition: color 0.3s ease;
  pointer-events: none;
}

.ac-capp-method__step:hover .ac-capp-method__step-bg-num {
  color: rgba(7,169,209,0.15);
}

.ac-capp-method__step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ac-radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.3s ease;
}

.ac-capp-method__step:hover .ac-capp-method__step-card {
  border-color: rgba(7,169,209,0.3);
}

.ac-capp-method__step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ac-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ac-capp-method__step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ac-bg);
}

.ac-capp-method__step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.ac-capp-method__step-desc {
  font-size: var(--body-5-size);
  line-height: 1.55;
  color: var(--ac-text-muted);
}

/* Connector lines between steps */
.ac-capp-method__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.75rem;
  right: -0.75rem;
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--ac-primary), transparent);
}


/* ==========================================================================
   CAPP V2 — Scenarios: use case cards grid
   ========================================================================== */
.ac-capp-scenarios {
  position: relative;
  background: var(--ac-light-bg);
}

.ac-capp-scenarios__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.ac-capp-scenarios__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ac-text-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.ac-capp-scenarios__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ac-grey-text);
}

.ac-capp-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ac-capp-scenarios__card {
  background: #fff;
  border-radius: var(--ac-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.ac-capp-scenarios__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.ac-capp-scenarios__card-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ac-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--body-4-size);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.ac-capp-scenarios__card:hover .ac-capp-scenarios__card-badge {
  background: var(--ac-primary);
  color: var(--ac-bg);
}

.ac-capp-scenarios__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ac-text-dark);
  margin-bottom: 0.5rem;
}

.ac-capp-scenarios__card-desc {
  font-size: var(--body-4-size);
  line-height: 1.65;
  color: var(--ac-grey-text);
}


/* ==========================================================================
   CAPP V2 — Responsive overrides
   ========================================================================== */

/* WordPress layout overrides for new sections — constrain to contentSize */
.ac-capp-challenge .ac-capp-challenge__grid,
.ac-capp-solution .ac-capp-solution__cards,
.ac-capp-detail .ac-capp-detail__layout,
.ac-capp-method .ac-capp-method__steps,
.ac-capp-scenarios .ac-capp-scenarios__grid,
.ac-capp-hero .ac-capp-hero__grid {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Override WP is-layout-flow spacing */
.ac-capp-challenge.is-layout-flow > *,
.ac-capp-challenge.is-layout-constrained > *,
.ac-capp-solution.is-layout-flow > *,
.ac-capp-solution.is-layout-constrained > *,
.ac-capp-detail.is-layout-flow > *,
.ac-capp-detail.is-layout-constrained > *,
.ac-capp-method.is-layout-flow > *,
.ac-capp-method.is-layout-constrained > *,
.ac-capp-scenarios.is-layout-flow > *,
.ac-capp-scenarios.is-layout-constrained > * {
  margin-block-start: 0 !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1024px) {
  .ac-capp-hero__grid {
    grid-template-columns: 1fr;
  }
  .ac-capp-hero__visual {
    display: none;
  }
  .ac-capp-challenge__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ac-capp-solution__cards {
    grid-template-columns: 1fr 1fr;
  }
  .ac-capp-detail__layout {
    grid-template-columns: 1fr;
  }
  .ac-capp-detail__sidebar {
    position: static;
  }
  .ac-capp-method__steps {
    grid-template-columns: 1fr 1fr;
  }
  .ac-capp-method__step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .ac-capp-solution__cards {
    grid-template-columns: 1fr;
  }
  .ac-capp-method__steps {
    grid-template-columns: 1fr;
  }
  .ac-capp-scenarios__grid {
    grid-template-columns: 1fr;
  }
  .ac-capp-detail__item-desc,
  .ac-capp-detail__item-tags {
    padding-left: 0;
  }
}

/* ================================================
   CAP INDEX HERO — CENTER ALIGN (Figma design)
   ================================================ */
.ac-cap-hero__center-content {
  align-items: center !important;
  text-align: center !important;
}
.ac-cap-hero__title {
  text-align: center !important;
}
.ac-cap-hero__subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.ac-cap-hero__badge-wrap {
  justify-content: center !important;
}
.ac-cap-hero__ctas {
  justify-content: center !important;
}
.ac-capp-detail__item-bullets{margin:0 0 1rem 0;padding-left:4.5rem;list-style:none}.ac-capp-detail__item-bullets li{font-size:var(--body-4-size);line-height:1.65;color:var(--ac-grey-text);padding:.15rem 0;position:relative;padding-left:1.1rem}.ac-capp-detail__item-bullets li::before{content:'';position:absolute;left:0;top:.65em;width:5px;height:5px;border-radius:50%;background:var(--ac-primary)}.ac-capp-scenarios__card--light{background:#f4f6f9;border-color:rgba(0,0,0,.08)}.ac-capp-scenarios__card--light .ac-capp-scenarios__card-title{color:#1A1A1A}.ac-capp-scenarios__card--light .ac-capp-scenarios__card-desc{color:rgba(26,26,26,.6)}
