/* ==========================================================================
   AI Solutions — Hero
   Page-specific styles for page-ai-solutions.php. Kept out of main.css /
   style.css so this page's styles ship only where they're used.

   Full-screen background-video hero, deliberately minimal: badge, headline,
   description, one primary CTA, dark gradient overlay for readability.
   Entrance (fade-up + stagger) and the video's ambient zoom + scroll
   parallax are bespoke, see ai-solutions.js.
   ========================================================================== */

.ais-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #04070d;
}

.ais-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ais-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: top center;
  will-change: transform;
}

.ais-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000000;
  opacity: 0.4;
}

.ais-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.ais-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.22);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ais-hero-title {
  margin: 22px auto 20px;
  max-width: 880px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.ais-hero-title .bold-text {
  font-weight: 800;
  color: #ffffff;
  /* font-style: italic; */
}

.ais-hero-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: #ffffff;
}

.ais-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ---- Responsive ---- */

@media (max-width: 640px) {
  .ais-hero {
    min-height: calc(100svh - 70px);
  }

  .ais-hero-content {
    padding-top: 130px;
    padding-bottom: 72px;
  }
}

/* ==========================================================================
   AI Solutions — AI Chatbot Development
   Feature-card grid directly under the Hero. Entrance (fade-up + stagger)
   rides the sitewide `.scroll-reveal-group` system in main.js; only the
   card hover lift/icon animation is bespoke (see ai-solutions.js).
   ========================================================================== */

.ais-chatbot {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0;
  background: #04070d;
}

.ais-chatbot-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 140%;
  height: 560px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(0, 194, 255, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  filter: blur(20px);
}

.ais-chatbot>.container {
  position: relative;
  z-index: 1;
}

/* ---- Intro ---- */

.ais-chatbot-intro {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.ais-chatbot-heading {
  margin: 20px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  color: #ffffff;
}

.ais-chatbot-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ais-chatbot-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.75);
}

/* ---- Card grid ---- */

.ais-chatbot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ais-chatbot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border-radius: 22px;
  background-color: hsla(0, 0%, 100%, .05);
  border: 1px solid hsla(0, 0%, 100%, .1);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 320ms ease, box-shadow 320ms ease;
  will-change: transform;
}

.ais-chatbot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: hsla(0, 0%, 100%, .05);;
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}

.ais-chatbot-card:hover {
  transform: translateY(-6px);
  border-color: #1A3696;
  box-shadow:
    0 8px 20px rgba(26, 54, 150, 0.12),
    0 20px 40px rgba(26, 54, 150, 0.18),
    0 40px 80px rgba(26, 54, 150, 0.08);
}

.ais-chatbot-card:hover::before {
  opacity: 1;
}

.ais-chatbot-card-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  margin-bottom: 22px;
  border-radius: 16px;
  /* background: linear-gradient(155deg, rgba(0, 194, 255, 0.22), rgba(124, 58, 237, 0.18)); */
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ais-chatbot-card-icon svg {
  width: 26px;
  height: 26px;
}

.ais-chatbot-card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ais-chatbot-card-text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.72);
}

.ais-chatbot-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.ais-chatbot-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 260ms ease;
}

.ais-chatbot-card:hover .ais-chatbot-card-link svg {
  transform: translateX(4px);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .ais-chatbot {
    padding: 96px 0;
  }

  .ais-chatbot-intro {
    margin-bottom: 52px;
  }

  .ais-chatbot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .ais-chatbot {
    padding: 72px 0;
  }

  .ais-chatbot-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ais-chatbot-card {
    padding: 28px;
    border-radius: 20px;
  }

  .ais-chatbot-card-title {
    font-size: 18px;
  }

  .ais-chatbot-card-text {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ais-chatbot-card {
    transition: none !important;
  }

  .ais-chatbot-card-link svg {
    transition: none !important;
  }
}

/* ==========================================================================
   AI Solutions — Generative AI Development
   White, premium-SaaS variant directly under AI Chatbot Development. Intro
   (fade-up) and card grid (fade-up + stagger) ride the same sitewide
   `.scroll-reveal` / `.scroll-reveal-group` system as the chatbot section;
   the CTA band adds a left/right slide-in pair via `data-direction`. Card
   hover lift/icon-pop and the background glow parallax are bespoke, see
   initGenAICards / initGenAIParallax in ai-solutions.js.
   ========================================================================== */

.ais-genai {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: #ffffff;
}

.ais-genai-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}

.ais-genai-glow--blue {
  top: -12%;
  left: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.ais-genai-glow--violet {
  bottom: -18%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.ais-genai>.container {
  position: relative;
  z-index: 1;
}

/* ---- Intro ---- */

.ais-genai-intro {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.ais-genai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ais-genai-heading {
  margin: 20px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  color: #0b0f19;
}

.ais-genai-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ais-genai-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: #55606f;
}

/* ---- Card grid ---- */

.ais-genai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.ais-genai-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px -28px rgba(15, 23, 42, 0.18);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
  will-change: transform;
}

.ais-genai-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle 220px at 20% 0%, rgba(37, 99, 235, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}

.ais-genai-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 30px 60px -26px rgba(37, 99, 235, 0.22);
}

.ais-genai-card:hover::before {
  opacity: 1;
}

.ais-genai-card-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.12));
  color: #00c2ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08) inset;
}

.ais-genai-card-icon svg {
  width: 26px;
  height: 26px;
}

.ais-genai-card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b0f19;
}

.ais-genai-card-text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #55606f;
}

.ais-genai-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 700;
  color: #00c2ff;
}

.ais-genai-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 260ms ease;
}

.ais-genai-card:hover .ais-genai-card-link svg {
  transform: translateX(4px);
}

/* ---- CTA band ---- */

.ais-genai-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 52px;
  border-radius: 28px;
  background: linear-gradient(135deg, #00c2ff 0%, #7c3aed 100%);
  box-shadow: 0 30px 70px -24px rgba(37, 99, 235, 0.45);
}

.ais-genai-cta-heading {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ais-genai-cta-desc {
  margin: 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.ais-genai-cta-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #00c2ff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.3);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.ais-genai-cta-btn:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.34);
}

.ais-genai-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}

.ais-genai-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .ais-genai {
    padding: 96px 0;
  }

  .ais-genai-intro {
    margin-bottom: 52px;
  }

  .ais-genai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 52px;
  }

  .ais-genai-cta {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .ais-genai-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 24px;
  }

  .ais-genai-cta-desc {
    max-width: none;
  }

  .ais-genai-cta-btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ais-genai {
    padding: 72px 0;
  }

  .ais-genai-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ais-genai-card {
    padding: 28px;
    border-radius: 20px;
  }

  .ais-genai-card-title {
    font-size: 18px;
  }

  .ais-genai-card-text {
    font-size: 14.5px;
  }

  .ais-genai-cta {
    padding: 32px 24px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ais-genai-card,
  .ais-genai-cta-btn {
    transition: none !important;
  }

  .ais-genai-card-link svg,
  .ais-genai-cta-btn svg {
    transition: none !important;
  }
}

/* ==========================================================================
   AI Solutions — AI Agent Development
   Dark, premium two-column "sticky sidebar" section directly under
   Generative AI Development. `.ais-agent-sticky-col` pins with plain CSS
   `position: sticky` (NOT a GSAP ScrollTrigger pin — no ancestor here has
   `overflow` set to anything but visible, so the browser handles the
   stick/unstick natively: no pin-spacer, no jump, no leftover whitespace
   once `.ais-agent-cards-col` runs out and the row's height is exhausted).
   Left column intro/CTA (fade-up) rides the sitewide `.scroll-reveal`
   system; the cards column gets a bespoke fade+slide+scale+stagger reveal,
   hover lift/icon-pop, and background glow parallax — see
   initAgentCardsReveal / initAgentCardHover / initAgentParallax in
   ai-solutions.js.
   ========================================================================== */

.ais-agent {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  background: #04070d;
  /* Deliberately no `overflow` here — it's the sticky column's own section
     ancestor, and overflow other than visible breaks `position: sticky`.
     Decorative glow clipping lives on `.ais-agent-glow-layer` instead,
     which is a sibling of `.container`, not an ancestor of the sticky col. */
}

.ais-agent-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ais-agent-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.ais-agent-glow--cyan {
  top: 4%;
  left: -6%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.16) 0%, transparent 70%);
}

.ais-agent-glow--violet {
  bottom: 2%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
}

.ais-agent>.container {
  position: relative;
  z-index: 1;
}

/* ---- Layout ---- */

.ais-agent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 30px;
}

.ais-agent-sticky-col {
  position: sticky;
  top: 48px;
}

/* ---- Left column: intro + CTA ---- */

.ais-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.2);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ais-agent-heading {
  margin: 22px 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #ffffff;
}

.ais-agent-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ais-agent-desc {
  max-width: 460px;
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.72);
}

.ais-agent-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #00c2ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.ais-agent-cta-btn:hover {
  background: #33d1ff;
  transform: translateY(-2px);
}

.ais-agent-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}

.ais-agent-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ---- Right column: capability cards ---- */

.ais-agent-cards-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ais-agent-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  padding: 30px 32px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 320ms ease, box-shadow 320ms ease;
  will-change: transform;
}

.ais-agent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle 240px at 15% 20%, rgba(0, 194, 255, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}

.ais-agent-card:hover {
  border-color: #1A3696;
  box-shadow:
    0 8px 20px rgba(26, 54, 150, 0.12),
    0 20px 40px rgba(26, 54, 150, 0.18),
    0 40px 80px rgba(26, 54, 150, 0.08);
}

/* .ais-agent-card:hover::before {
  opacity: 1;
} */

.ais-agent-card-index {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(226, 232, 240, 0.28);
  font-variant-numeric: tabular-nums;
}

.ais-agent-card-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 15px;
  /* background: linear-gradient(155deg, rgba(0, 194, 255, 0.22), rgba(124, 58, 237, 0.18)); */
  color: #00c2ff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ais-agent-card-icon svg {
  width: 24px;
  height: 24px;
}

.ais-agent-card-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.ais-agent-card-title {
  margin: 0 0 8px;
  padding-right: 36px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ais-agent-card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.68);
}

/* ---- Responsive ---- */

@media (max-width: 1023px) {
  .ais-agent {
    padding: 96px 0;
  }

  .ais-agent-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ais-agent-sticky-col {
    position: static;
  }

  .ais-agent-desc {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .ais-agent {
    padding: 80px 0;
  }

  .ais-agent-cards-col {
    gap: 16px;
  }

  .ais-agent-card {
    flex-direction: column;
    gap: 16px;
    padding: 26px;
    border-radius: 20px;
  }

  .ais-agent-card-index {
    top: 22px;
    right: 22px;
  }

  .ais-agent-card-title {
    font-size: 17px;
  }

  .ais-agent-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ais-agent-card,
  .ais-agent-cta-btn {
    transition: none !important;
  }

  .ais-agent-cta-btn svg {
    transition: none !important;
  }
}

/* ==========================================================================
   AI Solutions — Generative AI Consulting
   White, premium-SaaS tabbed section directly under AI Agent Development.
   A self-contained `aisc-*` component (own class + data-attr namespace —
   see the PHP template for why this doesn't reuse the sitewide
   `[data-ai-tabs]` pattern). Section entrance (fade-up) rides the sitewide
   `.scroll-reveal` system; tab switching (fade + slide + stagger) is
   bespoke, see initConsultingTabs in ai-solutions.js.
   ========================================================================== */

.aisc {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: #ffffff;
}

.aisc-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

.aisc-glow--blue {
  top: -14%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.aisc-glow--violet {
  bottom: -16%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.09) 0%, transparent 70%);
}

.aisc>.container {
  position: relative;
  z-index: 1;
}

/* ---- Intro ---- */

.aisc-intro {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.aisc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aisc-heading {
  margin: 20px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  color: #0b0f19;
}

.aisc-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aisc-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: #55606f;
}

/* ---- Tab list ---- */

.aisc-tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.aisc-tab-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 26px -20px rgba(15, 23, 42, 0.3);
  color: #55606f;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 240ms ease, color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
}

.aisc-tab-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #00c2ff;
  transition: color 240ms ease;
}

.aisc-tab-trigger-icon svg {
  width: 16px;
  height: 16px;
}

.aisc-tab-trigger-label {
  white-space: nowrap;
}

.aisc-tab-trigger:hover {
  border-color: rgba(37, 99, 235, 0.3);
  color: #0b0f19;
  transform: translateY(-1px);
}

.aisc-tab-trigger.is-active {
  background: linear-gradient(135deg, #00c2ff 0%, #00c2ff 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 16px 34px -14px rgba(37, 99, 235, 0.5);
}

.aisc-tab-trigger.is-active .aisc-tab-trigger-icon {
  color: #ffffff;
}

.aisc-tab-trigger:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: 2px;
}

/* ---- Panels ---- */

.aisc-tab-panel {
  display: none;
}

.aisc-tab-panel.is-active {
  display: block;
}

.aisc-tab-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.035), rgba(124, 58, 237, 0.025));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 30px 70px -44px rgba(15, 23, 42, 0.3);
}

.aisc-tab-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.aisc-tab-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.14));
  color: #00c2ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08) inset;
}

.aisc-tab-panel-icon svg {
  width: 24px;
  height: 24px;
}

.aisc-tab-panel-title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b0f19;
}

.aisc-tab-panel-tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #00c2ff;
}

.aisc-tab-panel-desc {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #55606f;
}

.aisc-tab-panel-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.aisc-tab-panel-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #334155;
}

.aisc-benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #00c2ff;
}

.aisc-benefit-check svg {
  width: 12px;
  height: 12px;
}

.aisc-tab-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00c2ff 0%, #00c2ff 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -16px rgba(37, 99, 235, 0.5);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.aisc-tab-panel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -16px rgba(37, 99, 235, 0.6);
}

.aisc-tab-panel-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}

.aisc-tab-panel-cta:hover svg {
  transform: translateX(3px);
}

/* ---- Visual ---- */

.aisc-tab-panel-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.aisc-visual-card {
  position: relative;
  z-index: 2;
  width: min(300px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 60px -30px rgba(37, 99, 235, 0.3);
}

.aisc-visual-ring {
  position: absolute;
  inset: -14px;
  z-index: 1;
  border-radius: 36px;
  border: 1px dashed rgba(37, 99, 235, 0.25);
  pointer-events: none;
}

.aisc-visual-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: linear-gradient(135deg, #00c2ff 0%, #00c2ff 100%);
  color: #ffffff;
  box-shadow: 0 20px 45px -14px rgba(37, 99, 235, 0.55);
}

.aisc-visual-icon-badge svg {
  width: 48px;
  height: 48px;
}

.aisc-visual-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.25);
}

.aisc-visual-stat--top {
  top: 0px;
  left: -40px;
}

.aisc-visual-stat--bottom {
  bottom: 0px;
  right: -40px;
}

.aisc-visual-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.12);
  color: #00c2ff;
}

.aisc-visual-stat-icon svg {
  width: 15px;
  height: 15px;
}

.aisc-visual-stat-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

.aisc-visual-stat-value {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0b0f19;
  white-space: nowrap;
}

/* ---- Responsive ---- */

@media (max-width: 1023px) {
  .aisc {
    padding: 96px 0;
  }

  .aisc-intro {
    margin-bottom: 44px;
  }

  .aisc-tab-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px;
  }

  .aisc-tab-panel-visual {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .aisc {
    padding: 72px 0;
  }

  .aisc-tabs-list {
    gap: 8px;
    margin-bottom: 32px;
  }

  .aisc-tab-trigger {
    padding: 10px 16px;
    font-size: 13px;
  }

  .aisc-tab-panel-grid {
    padding: 26px;
    border-radius: 22px;
  }

  .aisc-tab-panel-title {
    font-size: 19px;
  }

  .aisc-visual-card {
    width: 220px;
  }

  .aisc-visual-icon-badge {
    width: 84px;
    height: 84px;
  }

  .aisc-visual-icon-badge svg {
    width: 38px;
    height: 38px;
  }

  .aisc-visual-stat {
    display: none;
  }

  .aisc-tab-panel-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .aisc-tab-trigger,
  .aisc-tab-panel-cta {
    transition: none !important;
  }

  .aisc-tab-trigger-icon,
  .aisc-tab-panel-cta svg {
    transition: none !important;
  }
}

/* ==========================================================================
   AI Solutions — AI Integration
   Dark, compact split-band section directly under Generative AI Consulting
   — heading/description/CTA on the left, the "connected platforms" hub
   visual on the right, mirroring the page's own Hero layout instead of
   stacking another full-width intro + grid (kept this one deliberately
   tight). The hub's six orbiting nodes/lines are positioned with a
   rotate → translateY(-radius) → counter-rotate transform chain off one
   `--radius` custom property (set on `.aisi-hub`, inherited down) and a
   per-node `--angle` inline custom property — reflowing at any breakpoint
   is just overriding `--radius` once, no per-node position rules needed.
   Left column (fade-up) and the hub (slide-in) ride the sitewide
   `.scroll-reveal` system; hub entrance stagger and glow parallax are
   bespoke, see initIntegrationHub / initIntegrationParallax in
   ai-solutions.js.
   ========================================================================== */

.aisi {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  background: #04070d;
}

.aisi-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aisi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.aisi-glow--cyan {
  top: -20%;
  left: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.16) 0%, transparent 70%);
}

.aisi-glow--violet {
  bottom: -24%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
}

.aisi>.container {
  position: relative;
  z-index: 1;
}

/* ---- Layout ---- */

.aisi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 48px;
}

.aisi-content {
  max-width: 460px;
}

/* ---- Left column ---- */

.aisi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.2);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aisi-heading {
  margin: 18px 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  color: #ffffff;
}

.aisi-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aisi-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.72);
}

.aisi-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #00c2ff;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 45px -16px rgba(0, 194, 255, 0.5), 0 8px 30px -12px rgba(124, 58, 237, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.aisi-cta-btn:hover {
  background: #33d1ff;
  transform: translateY(-2px);
  box-shadow: 0 24px 55px -16px rgba(0, 194, 255, 0.6), 0 10px 34px -12px rgba(124, 58, 237, 0.4);
}

.aisi-cta-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 220ms ease;
}

.aisi-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ---- Hub visual ---- */

.aisi-hub {
  --radius: 150px;
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.aisi-hub-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(0, 194, 255, 0.2);
}

.aisi-hub-ring--outer {
  animation: aisiHubSpin 70s linear infinite;
}

.aisi-hub-ring--inner {
  inset: 16%;
  border-color: rgba(124, 58, 237, 0.2);
  animation: aisiHubSpin 46s linear infinite reverse;
}

@keyframes aisiHubSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.aisi-hub-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 1px;
  height: var(--radius);
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.4), transparent);
  transform-origin: top center;
  transform: translateX(-50%) rotate(var(--angle));
}

.aisi-hub-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #00c2ff 0%, #00c2ff 100%);
  box-shadow: 0 0 0 8px rgba(0, 194, 255, 0.08), 0 30px 60px -18px rgba(0, 194, 255, 0.55);
}

.aisi-hub-core svg {
  width: 32px;
  height: 32px;
  color: #04070d;
}

.aisi-hub-node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.aisi-hub-node-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.65);
  color: #00c2ff;
}

.aisi-hub-node-inner svg {
  width: 22px;
  height: 22px;
}

.aisi-hub-node-label {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 8px;
  transform: translateX(-50%);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  white-space: nowrap;
}

/* ---- Responsive ---- */

@media (max-width: 1023px) {
  .aisi {
    padding: 72px 0;
  }

  .aisi-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .aisi-content {
    max-width: 520px;
    margin: 0 auto;
  }

  .aisi-hub {
    --radius: 140px;
    width: min(340px, 88%);
  }
}

@media (max-width: 640px) {
  .aisi {
    padding: 64px 0;
  }

  .aisi-layout {
    gap: 44px;
  }

  .aisi-hub {
    --radius: 100px;
    width: min(260px, 84%);
  }

  .aisi-hub-core {
    width: 60px;
    height: 60px;
  }

  .aisi-hub-core svg {
    width: 26px;
    height: 26px;
  }

  .aisi-hub-node {
    width: 42px;
    height: 42px;
  }

  .aisi-hub-node-inner {
    border-radius: 12px;
  }

  .aisi-hub-node-inner svg {
    width: 17px;
    height: 17px;
  }

  .aisi-hub-node-label {
    display: none;
  }

  .aisi-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .aisi-hub-ring--outer,
  .aisi-hub-ring--inner {
    animation: none;
  }

  .aisi-cta-btn {
    transition: none !important;
  }

  .aisi-cta-btn svg {
    transition: none !important;
  }
}

/* ==========================================================================
   AI Solutions — FAQ
   White, premium-SaaS section directly under AI Integration: centered
   intro above a single-open exclusive accordion. Self-contained `aisf-*`
   component — see the PHP template for why this doesn't reuse the
   sitewide `.ai-why-accordion` pattern used elsewhere in the theme.
   Intro and item entrance (fade-up + stagger) ride the sitewide
   `.scroll-reveal` / `.scroll-reveal-group` system; the expand/collapse
   height tween is bespoke, see initFaqAccordion in ai-solutions.js.
   ========================================================================== */

.aisf {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  background: #ffffff;
}

.aisf-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aisf-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.aisf-glow--blue {
  top: -16%;
  left: -14%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
}

.aisf-glow--violet {
  bottom: -18%;
  right: -14%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
}

.aisf>.container {
  position: relative;
  z-index: 1;
}

/* ---- Intro ---- */

.aisf-intro {
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: center;
}

.aisf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #00c2ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aisf-heading {
  margin: 20px 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: #0b0f19;
}

.aisf-heading-accent {
  background: linear-gradient(90deg, #00c2ff, #00c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aisf-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #55606f;
}

/* ---- Accordion ---- */

.aisf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}

.aisf-item {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px -30px rgba(15, 23, 42, 0.3);
  overflow: hidden;
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.aisf-item.is-active {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 24px 55px -30px rgba(37, 99, 235, 0.28);
}

.aisf-question-wrap {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.aisf-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.aisf-question-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0b0f19;
  transition: color 240ms ease;
}

.aisf-item.is-active .aisf-question-text {
  color: #00c2ff;
}

.aisf-question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #00c2ff;
  transition: background 240ms ease, color 240ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.aisf-item.is-active .aisf-question-icon {
  background: linear-gradient(135deg, #00c2ff 0%, #00c2ff 100%);
  color: #ffffff;
  transform: rotate(180deg);
}

.aisf-question-icon svg {
  width: 16px;
  height: 16px;
}

.aisf-question:focus-visible {
  outline: 2px solid #00c2ff;
  outline-offset: -2px;
}

.aisf-answer {
  height: 0;
  overflow: hidden;
}

.aisf-item.is-active .aisf-answer {
  height: auto;
}

.aisf-answer-inner {
  padding: 0 26px 24px;
}

.aisf-answer-inner p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #55606f;
}

/* ---- Responsive ---- */

@media (max-width: 640px) {
  .aisf {
    padding: 76px 0;
  }

  .aisf-intro {
    margin-bottom: 40px;
  }

  .aisf-question {
    gap: 14px;
    padding: 18px 20px;
  }

  .aisf-question-text {
    font-size: 15px;
  }

  .aisf-question-icon {
    width: 28px;
    height: 28px;
  }

  .aisf-answer-inner {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .aisf-item,
  .aisf-question-text,
  .aisf-question-icon {
    transition: none !important;
  }
}