/* ===================================================
   AAPO ELEMENTOR WIDGETS — DESIGN SYSTEM
   Ported from React/Tailwind project index.css
   =================================================== */

/* ── Reset ─────────────────────────────────────────── */
.aapo-widget *,
.aapo-widget *::before,
.aapo-widget *::after {
  box-sizing: border-box;
}

.aapo-widget {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

.aapo-widget img,
.aapo-widget video {
  max-width: 100%;
  display: block;
}

/* ── Colours / tokens ──────────────────────────────── */
:root {
  --aapo-blue-50: #eff6ff;
  --aapo-blue-100: #dbeafe;
  --aapo-blue-200: #bfdbfe;
  --aapo-blue-400: #60a5fa;
  --aapo-blue-600: #2563eb;
  --aapo-blue-700: #1d4ed8;
  --aapo-blue-900: #1e3a8a;
  --aapo-cyan-300: #67e8f9;
  --aapo-cyan-400: #22d3ee;
  --aapo-cyan-600: #0891b2;
  --aapo-gray-50: #f8fafc;
  --aapo-gray-100: #f1f5f9;
  --aapo-gray-300: #d1d5db;
  --aapo-gray-400: #9ca3af;
  --aapo-gray-500: #6b7280;
  --aapo-gray-700: #374151;
  --aapo-gray-800: #1f2937;
  --aapo-gray-900: #111827;
  --aapo-red-50: #fef2f2;
  --aapo-red-200: #fecaca;
  --aapo-red-600: #dc2626;
  --aapo-emerald: #34d399;
  --aapo-amber: #fbbf24;
}

/* ── Glassmorphism ─────────────────────────────────── */
.aapo-glass {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
}

.aapo-glass-white {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .6);
}

.aapo-glass-dark {
  background: rgba(17, 24, 39, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
}

.aapo-glass-blue {
  background: rgba(37, 99, 235, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, .25);
}

/* ── Gradient text ─────────────────────────────────── */
.aapo-gradient-text {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aapo-gradient-text-light {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ── Section badge ─────────────────────────────────── */
.aapo-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, .1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, .2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Glow effects ──────────────────────────────────── */
.aapo-glow-blue {
  box-shadow: 0 0 40px rgba(37, 99, 235, .25);
}

.aapo-glow-cyan {
  box-shadow: 0 0 40px rgba(8, 145, 178, .25);
}

/* ── Buttons ───────────────────────────────────────── */
.aapo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .95rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
  text-decoration: none;
}

.aapo-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, .5);
  color: #fff;
  text-decoration: none;
}

.aapo-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #2563eb;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid #2563eb;
  cursor: pointer;
  transition: all .3s ease;
  font-size: .95rem;
  text-decoration: none;
}

.aapo-btn-outline:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, .3);
  text-decoration: none;
}

/* ── Card hover lift ───────────────────────────────── */
.aapo-card-hover {
  transition: transform .3s ease, box-shadow .3s ease;
}

.aapo-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, .15);
}

/* ── Background patterns ───────────────────────────── */
.aapo-bg-dots {
  background-image: radial-gradient(circle, rgba(37, 99, 235, .12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.aapo-bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ── Form inputs ───────────────────────────────────── */
.aapo-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fafafa;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: #111827;
  transition: all .2s ease;
  outline: none;
}

.aapo-input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.aapo-input::placeholder {
  color: #9ca3af;
}

/* ── Animations ────────────────────────────────────── */
@keyframes aapo-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aapo-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aapo-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aapo-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes aapo-glow-pulse {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: .8;
  }
}

@keyframes aapo-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes aapo-wave-pulse {

  0%,
  100% {
    height: 20%;
    transform: scaleY(1);
  }

  50% {
    height: 100%;
    transform: scaleY(1.2);
  }
}

@keyframes aapo-audio-bar-playing {

  0%,
  100% {
    transform: scaleY(.25);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes aapo-bubble-pop {
  0% {
    transform: translateY(20px) scale(.8);
    opacity: 0;
  }

  7% {
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
  }

  10% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  80% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  85% {
    transform: translateY(-10px) scale(.9);
    opacity: 0;
  }

  100% {
    transform: translateY(-10px) scale(.9);
    opacity: 0;
  }
}

.aapo-animate-fade-in-up {
  animation: aapo-fadeInUp .7s ease forwards;
}

.aapo-animate-fade-in-right {
  animation: aapo-fadeInRight .7s ease forwards;
}

.aapo-animate-float {
  animation: aapo-float 4s ease-in-out infinite;
}

.aapo-animate-blob {
  animation: aapo-blob 10s ease-in-out infinite;
}

.aapo-animate-glow {
  animation: aapo-glow-pulse 2.5s ease-in-out infinite;
}

.aapo-animate-pulse {
  animation: aapo-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.aapo-audio-bar {
  animation: aapo-wave-pulse 1.5s ease-in-out infinite;
}

.aapo-audio-bar-playing {
  animation: aapo-audio-bar-playing .55s ease-in-out infinite;
}

.aapo-bubble-1 {
  animation: aapo-bubble-pop 8s infinite .5s;
  opacity: 0;
}

.aapo-bubble-2 {
  animation: aapo-bubble-pop 8s infinite 2s;
  opacity: 0;
}

/* Responsive utility for order */
.aapo-order-mobile-1 {
  order: 1;
}

.aapo-order-mobile-2 {
  order: 2;
}

@media (min-width: 1024px) {
  .aapo-order-desktop-1 {
    order: 1 !important;
  }

  .aapo-order-desktop-2 {
    order: 2 !important;
  }
}

/* ══════════════════════════════════════════════════════
   WIDGET: HERO
   ══════════════════════════════════════════════════════ */
.aapo-hero {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #ecfeff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.aapo-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.aapo-hero__blob--blue {
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  opacity: .2;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

.aapo-hero__blob--cyan {
  bottom: -5rem;
  left: -5rem;
  width: 500px;
  height: 500px;
  opacity: .15;
  background: radial-gradient(circle, #0891b2 0%, transparent 70%);
  animation-delay: -5s;
}

.aapo-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 3rem;
  width: 100%;
}

.aapo-hero__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media(min-width:1024px) {
  .aapo-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.aapo-hero__headline {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
}

.aapo-hero__subtext {
  font-size: 1.125rem;
  color: var(--aapo-gray-500);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 0 2rem;
}

.aapo-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.aapo-hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.aapo-hero__stat-label {
  font-size: .75rem;
  color: var(--aapo-gray-400);
  font-weight: 500;
}

/* Image card */
.aapo-hero__image-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.aapo-hero__glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  opacity: .3;
  filter: blur(2rem);
  background: linear-gradient(135deg, #2563eb, #0891b2);
}

.aapo-hero__image-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  aspect-ratio: 4/5;
}

.aapo-hero__image-card video,
.aapo-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aapo-hero__image-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(17, 24, 39, .7), transparent);
}

.aapo-hero__floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.aapo-hero__float-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
}

.aapo-hero__float-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.aapo-hero__float-title {
  font-weight: 600;
  color: #fff;
  font-size: .875rem;
}

.aapo-hero__float-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
  margin-top: .125rem;
}

.aapo-hero__live-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--aapo-emerald);
  display: inline-block;
  margin-right: .25rem;
}

.aapo-hero__live-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   WIDGET: PARTNERS CAROUSEL
   ══════════════════════════════════════════════════════ */
.aapo-partners {
  position: relative;
  padding: 3.5rem 0;
  background: #fff;
  overflow: hidden;
}

.aapo-partners__separator {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #bfdbfe, transparent);
}

.aapo-partners__separator--top {
  top: 0;
}

.aapo-partners__separator--bottom {
  bottom: 0;
}

.aapo-partners__title {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 2rem;
}

.aapo-partners__viewport {
  position: relative;
  overflow: hidden;
}

.aapo-partners__fade-left,
.aapo-partners__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.aapo-partners__fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.aapo-partners__fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.aapo-partners__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
}

.aapo-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  height: 72px;
  padding: .75rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: none;
  transition: transform .3s ease;
  cursor: default;
}

.aapo-partners__logo:hover {
  transform: scale(1.05);
}

.aapo-partners__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .3s ease;
}

.aapo-partners__logo:hover img {
  filter: grayscale(0);
}

/* ══════════════════════════════════════════════════════
   WIDGET: WHY THIS EXISTS
   ══════════════════════════════════════════════════════ */
.aapo-why {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.aapo-why__hero-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(20rem, 40vw, 40rem);
}

.aapo-why__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aapo-why__hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 12rem;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, .8) 50%, transparent 100%);
  pointer-events: none;
}

.aapo-why__content {
  padding: 7rem 1.5rem;
  position: relative;
}

.aapo-why__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 1rem;
  text-align: center;
}

.aapo-why__intro {
  text-align: center;
  color: var(--aapo-gray-500);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.aapo-why__grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media(min-width:768px) {
  .aapo-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.aapo-why__challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border-left: 4px solid #2563eb;
  border-radius: .75rem;
  transition: box-shadow .3s ease;
}

.aapo-why__challenge-item:hover {
  box-shadow: 0 4px 20px rgba(37, 99, 235, .12);
}

.aapo-why__challenge-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.aapo-why__challenge-text {
  color: var(--aapo-gray-700);
  line-height: 1.6;
  font-size: .9375rem;
  padding-top: .125rem;
}

.aapo-why__need-card {
  background: linear-gradient(135deg, #fef2f2, #fff);
  border: 2px solid var(--aapo-red-200);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aapo-why__need-card svg {
  width: 3rem;
  height: 3rem;
  color: var(--aapo-red-600);
  margin: 0 auto 1.5rem;
}

.aapo-why__need-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--aapo-red-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.aapo-why__need-quote {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--aapo-gray-900);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════
   WIDGET: WHAT AI CALLER IS
   ══════════════════════════════════════════════════════ */
.aapo-what {
  padding: 7rem 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.aapo-what__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 1rem;
  text-align: center;
}

.aapo-what__intro {
  text-align: center;
  color: var(--aapo-gray-500);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.aapo-what__grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media(min-width:1024px) {
  .aapo-what__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.aapo-what__col-header {
  margin-bottom: 2rem;
}

.aapo-what__col-icon-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.aapo-what__col-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.aapo-what__col-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.aapo-what__col-icon--blue {
  background: #2563eb;
}

.aapo-what__col-icon--red {
  background: var(--aapo-red-600);
}

.aapo-what__col-label--blue {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2563eb;
}

.aapo-what__col-label--red {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--aapo-red-600);
}

.aapo-what__col-bar {
  height: 4px;
  width: 3rem;
  border-radius: 999px;
}

.aapo-what__col-bar--blue {
  background: linear-gradient(to right, #2563eb, #60a5fa);
}

.aapo-what__col-bar--red {
  background: linear-gradient(to right, var(--aapo-red-600), #fca5a5);
}

.aapo-what__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aapo-what__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid;
  border-radius: 1rem;
  transition: all .3s ease;
}

.aapo-what__item--blue {
  background: linear-gradient(135deg, var(--aapo-blue-50), #fff);
  border-color: var(--aapo-blue-200);
}

.aapo-what__item--blue:hover {
  box-shadow: 0 8px 30px rgba(37, 99, 235, .12);
  border-color: var(--aapo-blue-400);
}

.aapo-what__item--red {
  background: linear-gradient(135deg, var(--aapo-red-50), #fff);
  border-color: var(--aapo-red-200);
}

.aapo-what__item--red:hover {
  box-shadow: 0 8px 30px rgba(220, 38, 38, .12);
  border-color: #fca5a5;
}

.aapo-what__item-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.aapo-what__item-icon--blue {
  background: #2563eb;
}

.aapo-what__item-icon--red {
  background: var(--aapo-red-600);
}

.aapo-what__item-icon svg {
  width: .875rem;
  height: .875rem;
  color: #fff;
}

.aapo-what__item-text {
  color: var(--aapo-gray-700);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   WIDGET: HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.aapo-hiw {
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f4a 0%, #1a3a6b 50%, #0a2a5e 100%);
}

.aapo-hiw__heading {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.5rem;
  text-align: center;
}

.aapo-hiw__subtext {
  text-align: center;
  color: rgba(147, 197, 253, .7);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 5rem;
}

.aapo-hiw__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media(min-width:1024px) {
  .aapo-hiw__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* Image panel */
.aapo-hiw__image-wrap {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  aspect-ratio: 1/1;
  max-width: 32rem;
  margin: 0 auto;
}

.aapo-hiw__main-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .7s ease;
}

.aapo-hiw__image-wrap:hover .aapo-hiw__main-img {
  transform: scale(1.05);
}

.aapo-hiw__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 30, 90, .5) 0%, rgba(10, 30, 90, .3) 100%);
  z-index: 5;
}

/* Player UI Overlay */
.aapo-hiw__player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  background: linear-gradient(to top, rgba(10, 30, 90, .55), rgba(10, 30, 90, .2));
  transition: background .5s ease;
}

.aapo-hiw__player-overlay[data-playing="true"] {
  background: transparent;
}

.aapo-hiw__play-btn {
  background: none !important;
  border: none !important;
  padding: 0;
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  transition: all .5s ease;
  z-index: 30;
}

.aapo-hiw__play-btn[data-playing="true"] {
  opacity: 1;
  transform: scale(1);
}

.aapo-hiw__play-btn[data-playing="true"] .aapo-hiw__icon-play {
  display: none;
}

.aapo-hiw__play-btn[data-playing="true"] .aapo-hiw__icon-pause {
  display: block;
}

.aapo-hiw__play-btn[data-playing="true"] .aapo-hiw__play-label {
  opacity: 0;
}


.aapo-hiw__icon-play {
  display: block;
}

.aapo-hiw__icon-pause {
  display: none;
}

.aapo-hiw__play-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, .92), rgba(6, 182, 212, .92));
  border: 2px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, .4);
  transition: all .3s ease;
}

.aapo-hiw__play-circle:hover {
  transform: scale(1.1);
}

.aapo-hiw__play-circle svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}


.aapo-hiw__play-label {
  margin-top: .75rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
}

.aapo-hiw__status-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 25;
}

.aapo-hiw__status-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--aapo-emerald);
}

.aapo-hiw__status-text {
  color: #fff;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Waveform bars */
.aapo-hiw__waveform {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: .375rem;
  height: 2.25rem;
  pointer-events: none;
  z-index: 25;
}

.aapo-hiw__waveform-bar {
  width: .375rem;
  background: rgba(255, 255, 255, .75);
  border-radius: 999px;
  height: 100%;
  transform-origin: bottom;
}

/* Transcript bubble */
.aapo-hiw__transcript {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  transition: all .5s ease;
  pointer-events: none;
  z-index: 25;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
}

.aapo-hiw__transcript-bubble {
  display: inline-block;
  padding: .875rem 1.25rem;
  border-radius: 1.25rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  max-width: 85%;
  background: rgba(37, 99, 235, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aapo-hiw__transcript-speaker {
  display: block;
  font-size: .625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .25rem;
}

.aapo-hiw__transcript-text {
  display: block;
  line-height: 1.5;
}

/* Steps */
.aapo-hiw__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aapo-hiw__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.aapo-hiw__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.aapo-hiw__step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.aapo-hiw__step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.aapo-hiw__step-icon--blue {
  background: #2563eb;
}

.aapo-hiw__step-icon--cyan {
  background: #0891b2;
}

.aapo-hiw__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}

.aapo-hiw__step-desc {
  color: rgba(147, 197, 253, .7);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}


/* ══════════════════════════════════════════════════════
   WIDGET: SAFETY & BOUNDARIES
   ══════════════════════════════════════════════════════ */
.aapo-safety {
  padding: 7rem 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.aapo-safety__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 4rem;
  text-align: center;
}

.aapo-safety__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media(min-width:768px) {
  .aapo-safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .aapo-safety__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.aapo-safety__card {
  background: #fff;
  border: 2px solid var(--aapo-gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all .3s ease;
}

.aapo-safety__card:hover {
  border-color: var(--aapo-blue-200);
  box-shadow: 0 8px 30px rgba(37, 99, 235, .1);
}

.aapo-safety__card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  transition: transform .3s ease;
}

.aapo-safety__card:hover .aapo-safety__card-icon {
  transform: scale(1.1);
}

.aapo-safety__card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.aapo-safety__card-icon--blue {
  background: #2563eb;
}

.aapo-safety__card-icon--cyan {
  background: #0891b2;
}

.aapo-safety__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--aapo-gray-900);
  line-height: 1.4;
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   WIDGET: TARGET GROUPS
   ══════════════════════════════════════════════════════ */
.aapo-target {
  padding: 7rem 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.aapo-target__heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 1rem;
  text-align: center;
}

.aapo-target__subtext {
  text-align: center;
  color: var(--aapo-gray-500);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.aapo-target__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media(min-width:768px) {
  .aapo-target__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aapo-target__card {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  border: 1px solid var(--aapo-gray-100);
  overflow: hidden;
  position: relative;
  transition: all .5s ease;
}

.aapo-target__card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, .12);
  transform: translateY(-4px);
}


.aapo-target__card-img {
  position: relative;
  height: 18rem;
  overflow: hidden;
}

.aapo-target__main-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .7s ease;
  position: relative;
  z-index: 1;
}


.aapo-target__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--aapo-gray-100), var(--aapo-gray-200));
}

.aapo-target__card:hover .aapo-target__main-img,
.aapo-target__card:hover .aapo-target__card-img img {
  transform: scale(1.05);
}


.aapo-target__card-img-fade {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 8rem;
  background: linear-gradient(to top, #fff 0%, #fff 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}


.aapo-target__card-body {
  position: relative;
  padding: 2rem;
  padding-top: 0;
}

.aapo-target__card-icon {
  position: relative;
  z-index: 5;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: -2rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  transition: transform .3s ease;
}

.aapo-target__card:hover .aapo-target__card-icon {
  transform: scale(1.05);
}

.aapo-target__card-icon svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.aapo-target__card-icon--blue {
  background: #2563eb;
}

.aapo-target__card-icon--cyan {
  background: #0891b2;
}

.aapo-target__card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 .5rem;
}

.aapo-target__card-desc {
  color: var(--aapo-gray-500);
  font-size: .9375rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.aapo-target__expand-btn {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: .5rem !important;
  font-size: .875rem !important;
  font-weight: 700 !important;
  color: #2563eb !important;
  transition: color .2s ease !important;
}

.aapo-target__expand-btn:hover {
  color: #1d4ed8 !important;
}

.aapo-target__expand-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform .3s ease;
}

.aapo-target__expand-btn.is-open svg {
  transform: rotate(180deg);
}

.aapo-target__details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all .5s ease;
  margin-top: .5rem;
}

.aapo-target__details.is-open {
  max-height: 24rem;
  opacity: 1;
  margin-top: 1.25rem;
}

.aapo-target__details-inner {
  padding-top: 1.25rem;
  border-top: 1px solid var(--aapo-gray-100);
}

.aapo-target__details-box {
  background: rgba(239, 246, 255, .5);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(191, 219, 254, .5);
  color: var(--aapo-gray-800);
  font-size: .9375rem;
  line-height: 1.7;
  font-weight: 500;
}

.aapo-target__cta-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--aapo-gray-50);
  display: flex;
  justify-content: flex-end;
}

.aapo-target__cta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--aapo-gray-900);
  background: var(--aapo-gray-50);
  padding: .625rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s ease;
}

.aapo-target__cta-link:hover {
  background: var(--aapo-gray-100);
}

.aapo-target__card-deco {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  transition: transform .7s ease;
}

.aapo-target__card:hover .aapo-target__card-deco {
  transform: scale(1.2) rotate(-5deg);
}

.aapo-target__card-deco svg {
  width: 16rem;
  height: 16rem;
}

.aapo-target__card-deco--blue {
  color: #2563eb;
}

.aapo-target__card-deco--cyan {
  color: #0891b2;
}


.aapo-target__cta-link:hover {
  background: var(--aapo-gray-100);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  color: var(--aapo-gray-900);
}

.aapo-target__cta-link svg {
  width: .875rem;
  height: .875rem;
  color: #2563eb;
}

/* ══════════════════════════════════════════════════════
   WIDGET: PILOT PROGRAM
   ══════════════════════════════════════════════════════ */
.aapo-pilot {
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1a3a6b 50%, #065f7a 100%);
}

.aapo-pilot__grid {
  display: grid;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

@media(min-width:1024px) {
  .aapo-pilot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.aapo-pilot__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .625rem 1.25rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 2rem;
}

.aapo-pilot__badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--aapo-cyan-300);
}

.aapo-pilot__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.aapo-pilot__subtext {
  color: rgba(147, 197, 253, .7);
  font-size: 1.125rem;
  line-height: 1.7;
}

.aapo-pilot__benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
}

.aapo-pilot__benefits-title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--aapo-cyan-300);
}

.aapo-pilot__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aapo-pilot__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  transition: background .2s ease;
}

.aapo-pilot__benefit:hover {
  background: rgba(255, 255, 255, .17);
}

.aapo-pilot__benefit svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--aapo-cyan-400);
  flex-shrink: 0;
}

.aapo-pilot__benefit-text {
  color: rgba(255, 255, 255, .9);
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6;
}

.aapo-pilot__who {
  margin-top: 5rem;
  max-width: 1280px;
  margin-inline: auto;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aapo-pilot__who h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.aapo-pilot__who p {
  color: rgba(219, 234, 254, .8);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   WIDGET: TRUST & CREDIBILITY
   ══════════════════════════════════════════════════════ */
.aapo-trust {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #f8fafc, #fff);
  position: relative;
  overflow: hidden;
}

.aapo-trust__heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--aapo-gray-900);
  margin: 0 0 1rem;
  text-align: center;
}

.aapo-trust__subtext {
  text-align: center;
  color: var(--aapo-gray-500);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 5rem;
}

/* Milestones */
.aapo-trust__milestones {
  display: grid;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
}

@media(min-width:768px) {
  .aapo-trust__milestones {
    grid-template-columns: repeat(3, 1fr);
  }
}

.aapo-trust__milestone {
  background: #fff;
  border: 2px solid var(--aapo-gray-100);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.25, 1, .5, 1);
}

.aapo-trust__milestone:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: 0 20px 60px rgba(37, 99, 235, .15);
}


.aapo-trust__milestone--cyan:hover {
  border-color: #cffafe;
  box-shadow: 0 12px 40px rgba(8, 145, 178, .1);
}

.aapo-trust__milestone-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-bottom-left-radius: 2rem;
  opacity: .05;
  transition: opacity .3s ease;
}

.aapo-trust__milestone:hover .aapo-trust__milestone-accent {
  opacity: .1;
}

.aapo-trust__milestone--blue .aapo-trust__milestone-accent {
  background: #2563eb;
}

.aapo-trust__milestone--cyan .aapo-trust__milestone-accent {
  background: #0891b2;
}


.aapo-trust__milestone-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform .3s ease;
}

.aapo-trust__milestone:hover .aapo-trust__milestone-icon {
  transform: scale(1.1);
}

.aapo-trust__milestone-icon svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.aapo-trust__milestone-icon--blue {
  background: #2563eb;
  box-shadow: 0 0 20px rgba(37, 99, 235, .25);
}

.aapo-trust__milestone-icon--cyan {
  background: #0891b2;
  box-shadow: 0 0 20px rgba(8, 145, 178, .25);
}

.aapo-trust__milestone-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--aapo-gray-900);
  margin: 0 0 .5rem;
}

.aapo-trust__milestone-desc {
  color: var(--aapo-gray-500);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial slider */
.aapo-trust__slider-wrap {
  position: relative;
  max-width: 64rem;
  margin: 0 auto 5rem;
}

.aapo-trust__slider-prev,
.aapo-trust__slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1) !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #2563eb !important;
  z-index: 20 !important;
  transition: opacity .3s ease !important;
}

.aapo-trust__slider-prev {
  left: -1.25rem;
}

@media(min-width:768px) {
  .aapo-trust__slider-prev {
    left: -3.5rem;
  }
}

.aapo-trust__slider-next {
  right: -1.25rem;
}

@media(min-width:768px) {
  .aapo-trust__slider-next {
    right: -3.5rem;
  }
}

.aapo-trust__slider-prev:disabled,
.aapo-trust__slider-next:disabled {
  opacity: 0;
  pointer-events: none;
}

.aapo-trust__slider-prev svg,
.aapo-trust__slider-next svg {
  width: 1.5rem;
  height: 1.5rem;
}

.aapo-trust__slider-viewport {
  overflow: hidden;
  padding: 2rem 1rem;
  margin: -2rem -1rem;
}


.aapo-trust__slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25, 1, .5, 1);
}

.aapo-trust__slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 .75rem;
}

@media(min-width:768px) {
  .aapo-trust__slide {
    width: 50%;
  }
}

.aapo-trust__testimonial {
  background: #fff;
  border: 2px solid var(--aapo-gray-100);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.25, 1, .5, 1);
}

.aapo-trust__testimonial:hover {
  transform: translateY(-6px);
  border-color: #dbeafe;
  box-shadow: 0 20px 60px rgba(37, 99, 235, .15);
}


.aapo-trust__quote-deco {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #2563eb;
  opacity: .03;
  transition: all .4s ease;
}

.aapo-trust__testimonial:hover .aapo-trust__quote-deco {
  opacity: .08;
  transform: scale(1.1);
}


.aapo-trust__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.5rem;
}

.aapo-trust__star {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: #fbbf24;
}

.aapo-trust__quote {
  color: var(--aapo-gray-700);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  flex-grow: 1;
  margin: 0 0 2rem;
}

.aapo-trust__author {
  padding-top: 1.25rem;
  border-top: 1px solid var(--aapo-gray-100);
}

.aapo-trust__author-name {
  font-weight: 700;
  color: var(--aapo-gray-900);
  font-size: .9375rem;
  margin: 0 0 .125rem;
}

.aapo-trust__author-role {
  font-size: .75rem;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}

/* Dot indicators */
.aapo-trust__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.aapo-trust__dot {
  height: .5rem !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  background: var(--aapo-gray-300) !important;
  transition: all .3s ease !important;
  padding: 0 !important;
}

.aapo-trust__dot--active {
  width: 2rem !important;
  background: #2563eb !important;
}

.aapo-trust__dot:not(.aapo-trust__dot--active) {
  width: .5rem !important;
}

.aapo-trust__dot:not(.aapo-trust__dot--active):hover {
  background: var(--aapo-gray-400) !important;
}

/* Banner */
.aapo-trust__banner {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e3a8a, #1a3a6b, #0e7490);
  padding: 3rem 2.5rem;
  text-align: center;
}

.aapo-trust__banner-badge {
  display: inline-block;
  padding: .375rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #93c5fd;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.aapo-trust__banner h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 .75rem;
}

.aapo-trust__banner p {
  color: rgba(147, 197, 253, .7);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.aapo-trust__indicator {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
}

.aapo-trust__indicator-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--aapo-emerald);
}

.aapo-trust__indicator-text {
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   WIDGET: CALL TO ACTION
   ══════════════════════════════════════════════════════ */
.aapo-cta {
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.aapo-cta__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aapo-cta__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aapo-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: .8;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c1445 100%);
}

.aapo-cta__content {
  position: relative;
  z-index: 30;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.aapo-cta__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
}

.aapo-cta__heading-accent {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aapo-cta__subtext {
  color: rgba(147, 197, 253, .6);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.aapo-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
}

.aapo-cta__btn:hover {
  background: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(37, 99, 235, .5);
  color: #fff;
  text-decoration: none;
}

.aapo-cta__btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform .2s ease;
}

.aapo-cta__btn:hover svg {
  transform: translateX(4px);
}

/* ── Glow orbs (shared utility) ────────────────────── */
.aapo-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4rem);
}

/* ══════════════════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════════════════ */
.aapo-page-header {
  position: relative;
  width: 100%;
  height: var(--aapo-header-height, 50vh);
  min-height: 500px;
  margin-bottom: 2rem;
  overflow: hidden;
  pointer-events: none;
}

.aapo-page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
}

.aapo-page-header__overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════════════
   PAGE HERO (DARK)
   ══════════════════════════════════════════════════ */
.aapo-page-hero {
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 5;
}


.aapo-page-hero__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  /* leading-tight */
  margin-bottom: 1.5rem;
}

@media(min-width:768px) {
  .aapo-page-hero__title {
    font-size: 4.5rem;
  }
}

.aapo-page-hero__subtext {
  color: rgba(191, 219, 254, .7);
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.625;
  /* leading-relaxed */
}

.aapo-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1rem;
  max-width: 48rem;
  margin: 4rem auto 0;
  text-align: center;
}

@media(min-width:768px) {
  .aapo-page-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.aapo-page-hero__stat-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* border-white/10 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.aapo-page-hero__stat-value {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 800;
  /* font-extrabold */
  margin-bottom: 0.25rem;
  /* mt-1 on label equivalent */
  word-break: break-all;
  line-height: 1.333;
  /* default text-2xl line height */
}

.aapo-page-hero__stat-label {
  color: rgba(147, 197, 253, 0.7);
  /* text-blue-300/70 */
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 400;
  /* Tailwind normal */
  line-height: 1rem;
  /* default text-xs line height */
}



/* ══════════════════════════════════════════════════
   PROCESS PHASES
   ══════════════════════════════════════════════════ */
.aapo-process-phases {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  /* max-w-5xl */
  margin: 0 auto;
}

.aapo-phase-card {
  position: relative;
  border-left-width: 3px;
  border-left-style: solid;
  border-radius: 1.5rem;
  /* rounded-3xl */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}


.aapo-phase-card--blue {
  border-left-color: #2563eb;
}

.aapo-phase-card--cyan {
  border-left-color: #0891b2;
}

.aapo-phase-card__watermark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 800;
  /* font-extrabold */
  opacity: .06;
  line-height: 1;
  /* leading-none */
  pointer-events: none;
}

.aapo-phase-card--blue .aapo-phase-card__watermark {
  color: #60a5fa;
}

.aapo-phase-card--cyan .aapo-phase-card__watermark {
  color: #22d3ee;
}

.aapo-phase-card__grid {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}

@media(min-width:768px) {
  .aapo-phase-card__grid {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
  }

  .aapo-phase-card.is-reverse .aapo-phase-card__grid {
    direction: rtl;
  }

  .aapo-phase-card.is-reverse .aapo-phase-card__content,
  .aapo-phase-card.is-reverse .aapo-phase-card__details {
    direction: ltr;
  }

}

.aapo-phase-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.aapo-phase-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aapo-phase-card--blue .aapo-phase-card__icon {
  background: rgba(37, 99, 235, .13);
  border: 1px solid rgba(37, 99, 235, .25);
  color: #60a5fa;
}

.aapo-phase-card--cyan .aapo-phase-card__icon {
  background: rgba(8, 145, 178, .13);
  border: 1px solid rgba(8, 145, 178, .25);
  color: #22d3ee;
}

.aapo-phase-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.aapo-phase-card__step-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aapo-phase-card--blue .aapo-phase-card__step-label {
  color: #60a5fa;
}

.aapo-phase-card--cyan .aapo-phase-card__step-label {
  color: #22d3ee;
}

.aapo-phase-card__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 .25rem;
  line-height: 1.2;
}

@media(min-width:768px) {
  .aapo-phase-card__title {
    font-size: 1.875rem;
    /* text-3xl */
  }
}

.aapo-phase-card__subtitle {
  font-size: .875rem;
  font-weight: 500;
  /* font-medium */
  margin-bottom: 1rem;
}

.aapo-phase-card--blue .aapo-phase-card__subtitle {
  color: #60a5fa;
}

.aapo-phase-card--cyan .aapo-phase-card__subtitle {
  color: #22d3ee;
}

.aapo-phase-card__desc {
  color: rgba(191, 219, 254, .7);
  line-height: 1.625;
  /* leading-relaxed */
  font-size: .875rem;
  /* text-sm */
}

@media(min-width:768px) {
  .aapo-phase-card__desc {
    font-size: 1rem;
    /* text-base */
  }
}


.aapo-phase-card__includes-label {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(96, 165, 250, .6);
  letter-spacing: .1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.aapo-phase-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.aapo-phase-card__list li {
  display: flex;
  gap: .75rem;
  color: rgba(219, 234, 254, .75);
  font-size: .875rem;
  line-height: 1.625;
  /* leading-relaxed */
}

.aapo-phase-card__check {
  margin-top: .125rem;
  flex-shrink: 0;
}

.aapo-phase-card--blue .aapo-phase-card__check {
  color: #60a5fa;
}

.aapo-phase-card--cyan .aapo-phase-card__check {
  color: #22d3ee;
}

/* ══════════════════════════════════════════════════
   PLATFORM SPECS GRID
   ══════════════════════════════════════════════════ */
.aapo-platform-specs {
  max-width: 64rem;
  margin: 4rem auto;
}

.aapo-platform-specs__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.aapo-platform-specs__title {
  color: #fff;
  font-size: 2.25rem;
  /* text-4xl */
  font-weight: 800;
  line-height: 1.2;
}

@media(min-width:768px) {
  .aapo-platform-specs__title {
    font-size: 3rem;
    /* text-5xl */
  }
}

.aapo-platform-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media(min-width:768px) {
  .aapo-platform-specs__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.aapo-stats-card {
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 1rem;
  /* rounded-2xl */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* border-white/10 */
}

.aapo-stats-card:hover {
  transform: scale(1.05);
  /* Match group-hover:scale-105 */
}

.aapo-stats-card__icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: rgba(37, 99, 235, .2);
  /* bg-blue-600/20 */
  border: 1px solid rgba(59, 130, 246, .2);
  /* border-blue-500/20 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  color: #60a5fa;
  transition: background .3s ease;
}

.aapo-stats-card:hover .aapo-stats-card__icon-box {
  background: rgba(37, 99, 235, .3);
}

.aapo-stats-card__icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.aapo-stats-card__label {
  color: #fff;
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 800;
  /* font-extrabold */
  margin-bottom: .125rem;
  line-height: 1.75rem;
  /* Tailwind text-xl line-height */
}

.aapo-stats-card__sub {
  color: rgba(96, 165, 250, .5);
  /* text-blue-400/50 */
  font-size: .75rem;
  /* text-xs */
  line-height: 1rem;
  /* Tailwind text-xs line-height */
}

/* ══════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════ */
.aapo-timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.aapo-timeline__heading-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.aapo-timeline__heading {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.aapo-timeline__subtext {
  color: rgba(191, 219, 254, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.aapo-timeline__content {
  position: relative;
}

.aapo-timeline__line {
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #2563eb, #0891b2, transparent);
}

.aapo-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 3.5rem;
}

.aapo-timeline__step {
  position: relative;
}

.aapo-timeline__dot {
  position: absolute;
  left: -2.25rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.aapo-timeline__dot-inner {
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: #22d3ee;
}

.aapo-timeline__card {
  padding: 1.25rem;
  border-radius: 1rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.aapo-timeline__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.aapo-timeline__day {
  color: #22d3ee;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

.aapo-timeline__arrow {
  color: rgba(37, 99, 235, .5);
  display: flex;
  align-items: center;
}

.aapo-timeline__title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
}

.aapo-timeline__desc {
  color: rgba(191, 219, 254, .6);
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}

.aapo-general-subpages-bg {
  background: linear-gradient(160deg, rgb(10, 15, 46) 0%, rgb(13, 26, 58) 40%, rgb(7, 26, 46) 100%);
}

/* ══════════════════════════════════════════════════════
   WIDGET: HOW IT WORKS CTA
   ══════════════════════════════════════════════════════ */
.aapo-hiw-cta {
  position: relative;
  padding-bottom: 6rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.aapo-hiw-cta__container {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.aapo-hiw-cta__card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.aapo-hiw-cta__heading {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.aapo-hiw-cta__subtext {
  color: rgba(191, 219, 254, 0.6);
  margin: 0 0 2rem;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════
   WIDGET: FAQ ACCORDION
   ══════════════════════════════════════════════════════ */
.aapo-faq {
  max-width: 48rem;
  margin: 0 auto;
}

.aapo-faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.aapo-faq__tab {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  cursor: pointer;
}

.aapo-faq__tab:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.aapo-faq__tab--active {
  background: #2563eb !important;
  color: #fff !important;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3) !important;
  border-color: transparent !important;
}

.aapo-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aapo-faq__item {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aapo-faq__item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.aapo-faq__item.is-open {
  border-color: rgba(59, 130, 246, 0.4);
}

.aapo-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

button.aapo-faq__question:hover,
button.aapo-faq__question:focus,
.is-open button.aapo-faq__question {
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.aapo-faq__question-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  color: #fff;
  transition: color 0.3s ease;
}

.aapo-faq__item:hover .aapo-faq__question-text {
  color: #93c5fd;
}

.aapo-faq__item.is-open .aapo-faq__question-text {
  color: #93c5fd;
}

.aapo-faq__question-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  color: rgba(59, 130, 246, 0.5);
  transition: all 0.3s ease;
  display: flex;
}

.aapo-faq__item:hover .aapo-faq__question-icon {
  color: #60a5fa;
}

.aapo-faq__item.is-open .aapo-faq__question-icon {
  transform: rotate(180deg);
  color: #60a5fa;
}

.aapo-faq__answer-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.aapo-faq__item.is-open .aapo-faq__answer-wrapper {
  max-height: 24rem;
  opacity: 1;
}

.aapo-faq__answer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(191, 219, 254, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.aapo-faq__answer p {
  margin: 0 0 1rem 0;
}

.aapo-faq__answer p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════
   WIDGET: FAQ CTA
   ══════════════════════════════════════════════════════ */
.aapo-faq-cta {
  text-align: center;
  margin-top: 4rem;
}

.aapo-faq-cta__card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  border-color: rgba(255, 255, 255, 0.1);
  max-width: 48rem;
  margin: 0 auto;
}

.aapo-faq-cta__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.aapo-faq-cta__subtext {
  color: rgba(191, 219, 254, 0.6);
  font-size: 0.875rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.aapo-faq-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .aapo-faq-cta__actions {
    flex-direction: row;
  }
}

.aapo-btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════
   WIDGET: PRIVACY POLICY
   ══════════════════════════════════════════════════════ */
.aapo-privacy {
  max-width: 72rem;
  margin: 0 auto;
}

/* Removed Elementor overflow overrides since JS handles sticky */

.aapo-privacy__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .aapo-privacy__grid {
    grid-template-columns: 260px 1fr;
  }
}

.aapo-privacy__sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .aapo-privacy__sidebar {
    display: block;
  }
}

.aapo-privacy__toc {
  border-radius: 1rem;
  padding: 1.25rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.aapo-privacy__toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(96, 165, 250, 0.6);
  margin: 0 0 1rem;
}

.aapo-privacy__toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aapo-privacy__toc-link {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  color: rgba(147, 197, 253, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.375;
  white-space: normal;
  word-break: break-word;
}

.aapo-privacy__toc-link:hover {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.1);
}

.aapo-privacy__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.aapo-privacy__section {
  border-radius: 1rem;
  padding: 1.75rem;
  border-color: rgba(255, 255, 255, 0.1);
  scroll-margin-top: 7rem;
}

.aapo-privacy__section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aapo-privacy__section-content {
  color: rgba(191, 219, 254, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.aapo-privacy__section-content p {
  margin: 0 0 1rem;
}

.aapo-privacy__section-content p:last-child {
  margin-bottom: 0;
}

.aapo-privacy__section-content ul {
  margin: 0 0 1rem;
  padding-left: 0.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.aapo-privacy__section-content li {
  position: relative;
  padding-left: 1rem;
}

.aapo-privacy__section-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

.vivonep-title-one-line .aapo-page-hero__title br {
  display: none;
}

.vivonep-title-one-line .aapo-page-hero__title {
  display: flex;
  justify-content: center;
}

.vivonep-title-one-line-space .aapo-page-hero__title br {
  display: none;
}

.vivonep-title-one-line-space .aapo-page-hero__title {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ══════════════════════════════════════════════════════
   WIDGET: JOIN PAGE HERO
   ══════════════════════════════════════════════════════ */
.aapo-join-hero {
  position: relative;
  background: linear-gradient(160deg, #0a0f2e 0%, #0d1a3a 40%, #071a2e 100%);
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Orbs ─────────────────────────────────────────────── */
.aapo-join-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.aapo-join-hero__orb--tr {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb, transparent);
  opacity: .05;
}

.aapo-join-hero__orb--bl {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0891b2, transparent);
  opacity: .05;
}

/* ── Dot overlay ──────────────────────────────────────── */
.aapo-join-hero__dots {
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
}

/* ── Featured image ───────────────────────────────────── */
.aapo-join-hero__img-wrap {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.aapo-join-hero__img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  /* bottom fade — mirrors React's maskImage */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
}

@media (min-width: 768px) {
  .aapo-join-hero__img {
    background-size: 80%;
  }
}

.aapo-join-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, .20);
  /* blue-900/20 */
  mix-blend-mode: overlay;
}

/* ── Hero text ────────────────────────────────────────── */
.aapo-join-hero__text {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.aapo-join-hero__text-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.aapo-join-hero__heading {
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 1.25rem;
}

.aapo-join-hero__heading .aapo-gradient-text-light {
  display: inline;
}

.aapo-join-hero__subtitle {
  color: rgba(191, 219, 254, .70);
  /* blue-200/70 */
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}


/* ══════════════════════════════════════════════════════
   .aapo-form — PilotForm (isGlass=false) for Fluent Forms
   Add this class to the Elementor section/container that
   wraps both the header HTML widget and the shortcode.
   ══════════════════════════════════════════════════════ */

/* ── Outer card ──────────────────────────────────────── */
.aapo-form {
  max-width: 48rem !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  border-radius: 1.5rem !important;
  box-shadow: none !important;
  overflow: hidden !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  color: #111827 !important;
}

/* ── Form header ─────────────────────────────────────── */
.aapo-form .aapo-form__header {
  padding: 2rem 2rem 1.5rem !important;
  border-bottom: 1px solid #f3f4f6 !important;
  background: #ffffff !important;
}

.aapo-form .aapo-form__title,
.aapo-form h3.aapo-form__title {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 .25rem !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  background: none !important;
  -webkit-text-fill-color: #111827 !important;
}

/* Subtitle — aggressively reset theme link/color overrides */
.aapo-form .aapo-form__subtitle,
.aapo-form p.aapo-form__subtitle {
  font-size: .875rem !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #9ca3af !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

/* ── Form body (Fluent Forms wrapper) ────────────────── */
.aapo-form .ff-form-wrap {
  background: #ffffff !important;
}

.aapo-form .fluentform,
.aapo-form form {
  padding: 0 1rem !important;
  background: #ffffff !important;
  margin: 0 !important;

}

/* ── Field groups ────────────────────────────────────── */
.aapo-form .ff-el-group {
  margin-bottom: 1.25rem !important;
}

/* ── Labels (Top-level field labels) ───────────────── */
.aapo-form .ff-el-input--label label {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: #6b7280 !important;
  margin-bottom: .375rem !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  background: none !important;
  -webkit-text-fill-color: #6b7280 !important;
}

/* Required asterisk */
.aapo-form .ff-el-is-required .ff-el-input--label label::after {
  content: ' *';
  color: #ef4444 !important;
  -webkit-text-fill-color: #ef4444 !important;
}

/* ── Text inputs, email, tel, number ─────────────────── */
.aapo-form input[type="text"],
.aapo-form input[type="email"],
.aapo-form input[type="tel"],
.aapo-form input[type="number"],
.aapo-form input[type="url"],
.aapo-form input[type="search"] {
  width: 100% !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e5e7eb !important;
  background: #fafafa !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  color: #111827;
  -webkit-text-fill-color: #111827;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  line-height: 1.5 !important;
}

/* ── Textarea ────────────────────────────────────────── */
.aapo-form textarea {
  width: 100% !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e5e7eb !important;
  background: #fafafa !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  color: #111827 !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  resize: none !important;
  min-height: 90px !important;
  line-height: 1.5 !important;
}

/* ── Select ──────────────────────────────────────────── */
.aapo-form select {
  width: 100% !important;
  padding: 14px 44px 14px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e5e7eb !important;
  background: #fafafa !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  color: #111827 !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
}

/* ── Focus states ────────────────────────────────────── */
.aapo-form input[type="text"]:focus,
.aapo-form input[type="email"]:focus,
.aapo-form input[type="tel"]:focus,
.aapo-form input[type="number"]:focus,
.aapo-form input[type="url"]:focus,
.aapo-form textarea:focus,
.aapo-form select:focus {
  border-color: #2563eb !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .10) !important;
  outline: none !important;
}

/* ── Placeholders ────────────────────────────────────── */
.aapo-form input::placeholder,
.aapo-form textarea::placeholder {
  color: #9ca3af !important;
  -webkit-text-fill-color: #9ca3af !important;
  opacity: 1 !important;
}

/* ── Consent / Terms box ─────────────────────────────── */
.aapo-form .ff-column-container {
  background: #f9fafb !important;
  border: 1px solid #f3f4f6 !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  margin-bottom: 1.25rem !important;
}

/* Terms checkbox label row */
.aapo-form .ff-el-tc>label {
  display: flex !important;
  align-items: flex-start !important;
  gap: .75rem !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: .875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  -webkit-text-fill-color: #374151 !important;
  line-height: 1.65 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

/* Consent rich-text content */
.aapo-form .ff-el-tc .ff-el-tc-text,
.aapo-form .ff-el-tc label .ff-el-tc-text {
  font-size: .875rem !important;
  line-height: 1.65 !important;
  color: #374151 !important;
  -webkit-text-fill-color: #374151 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.aapo-form .ff-el-tc .ff-el-tc-text ul {
  list-style: disc !important;
  padding-left: 1.25rem !important;
  margin-top: .5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .375rem !important;
}

.aapo-form .ff-el-tc .ff-el-tc-text li {
  font-size: .75rem !important;
  line-height: 1.5 !important;
  color: #374151 !important;
  -webkit-text-fill-color: #374151 !important;
  font-weight: 400 !important;
  opacity: .9;
}

/* Privacy policy link inside consent — keep this blue */
.aapo-form .ff-el-tc .ff-el-tc-text a {
  color: #3b82f6 !important;
  -webkit-text-fill-color: #3b82f6 !important;
  text-decoration: underline !important;
}

/* ── Checkboxes ──────────────────────────────────────── */
.aapo-form input[type="checkbox"] {
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem !important;
  border-radius: 4px !important;
  border: 1.5px solid #d1d5db !important;
  background: #ffffff !important;
  accent-color: #2563eb !important;
  flex-shrink: 0 !important;
  margin-top: .2rem !important;
  cursor: pointer !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ── Radio groups ────────────────────────────────────── */
.aapo-form .ff-el-form-radio,
.aapo-form .ff-radio-group {
  display: flex !important;
  flex-direction: column !important;
  gap: .5rem !important;
}

.aapo-form .ff-el-form-radio label,
.aapo-form .ff-el-form-check label,
.aapo-form .ff-radio-group label,
.aapo-form .ff-checkbox-group label {
  display: flex !important;
  align-items: flex-start !important;
  gap: .75rem !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: .875rem !important;
  /* Increased slightly to match PilotForm.tsx */
  font-weight: 400 !important;
  color: #4b5563 !important;
  -webkit-text-fill-color: #4b5563 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

.aapo-form input[type="radio"] {
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem !important;
  accent-color: #2563eb !important;
  flex-shrink: 0 !important;
  margin-top: .2rem !important;
  cursor: pointer !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: none !important;
}

/* Radio group section title */
.aapo-form .ff-el-form-radio>p,
.aapo-form .ff-el-form-radio .ff-el-input--label label,
.aapo-form .ff-radio-group>p {
  font-size: .875rem !important;
  font-weight: 700 !important;
  /* Bolder to match screenshot */
  color: #111827 !important;
  /* Darker to match screenshot */
  -webkit-text-fill-color: #111827 !important;
  margin: 0 0 .75rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
}

/* ── Inline validation errors ────────────────────────── */
.aapo-form .ff-el-is-error input[type="text"],
.aapo-form .ff-el-is-error input[type="email"],
.aapo-form .ff-el-is-error input[type="tel"],
.aapo-form .ff-el-is-error select,
.aapo-form .ff-el-is-error textarea {
  border-color: #fca5a5 !important;
  background: #ffffff !important;
}

.aapo-form .error,
.aapo-form .ff-el-is-error .error {
  display: block !important;
  font-size: .8rem !important;
  color: #b91c1c !important;
  -webkit-text-fill-color: #b91c1c !important;
  margin-top: .375rem !important;
  text-decoration: none !important;
}

/* Form-level error response */
.aapo-form .ff-errors-in-group,
.aapo-form .ff-response-wrap.error_message {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  border-radius: 1rem !important;
  padding: 1rem 1.25rem !important;
  font-size: .875rem !important;
  color: #b91c1c !important;
  -webkit-text-fill-color: #b91c1c !important;
  margin: 1rem 0 !important;
  text-decoration: none !important;
}

/* ── Success message ─────────────────────────────────── */
.aapo-form .ff-message-success,
.aapo-form .ff-response-wrap.success_message {
  padding: 3rem 2rem !important;
  text-align: center !important;
  background: #ffffff !important;
}

.aapo-form .ff-message-success p,
.aapo-form .ff-response-wrap.success_message p {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  margin-bottom: .5rem !important;
  text-decoration: none !important;
}

/* ── Submit button ───────────────────────────────────── */
.aapo-form .ff_submit_btn_wrapper {
  margin-top: 1.5rem !important;
}

.aapo-form .ff-btn-submit,
.aapo-form button[type="submit"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  background: #2563eb !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 1rem 2rem !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .39) !important;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.aapo-form .ff-btn-submit:hover,
.aapo-form button[type="submit"]:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .50) !important;
  text-decoration: none !important;
}

.aapo-form .ff-btn-submit:disabled,
.aapo-form button[type="submit"]:disabled {
  opacity: .5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 640px) {

  .aapo-form .fluentform,
  .aapo-form form {
    padding: 1.25rem !important;
  }

  .aapo-form .aapo-form__header {
    padding: 1.5rem 1.25rem 1.25rem !important;
  }
}

.aapo-form .ff-el-tc>label a {
  color: #3b82f6 !important;
  -webkit-text-fill-color: #3b82f6 !important;
}

.aapo-form .ff-el-tc>label a:hover {
  text-decoration: underline !important;
}

.aapo-form .ff-el-tc>label ul {
  padding-left: 20px !important;
}

.aapo-form .ff-el-tc>label ul li {
  font-size: 0.75rem !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  margin-top: 5px !important;
  color: #374151 !important;
  -webkit-text-fill-color: #374151 !important;
}

.ff-default .ff-el-form-check label.ff-el-form-check-label span {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
}

/* ==========================================================================
   Target Group CTA Widget
   ========================================================================== */

.aapo-tg-cta {
  position: relative;
  z-index: 10;
  padding: 4rem 1rem;
  text-align: center;
}

.aapo-tg-cta__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .aapo-tg-cta__title {
    font-size: 2.25rem;
  }
}

.aapo-tg-cta__desc {
  color: rgba(219, 234, 254, 0.9);
  font-size: 1.125rem;
  margin: 0 auto 2rem;
  max-width: 36rem;
  line-height: 1.6;
}

.aapo-tg-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.aapo-tg-cta__button:hover {
  background: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}


/* ==========================================================================
   Target Group Description Widget
   ========================================================================== */

.aapo-target-group-desc {
  position: relative;
  z-index: 10;
  padding: 0 1rem 3rem;
  margin-top: -2rem;
  /* Matches React -mt-8 */
}

.aapo-target-group-desc__inner {
  max-width: 48rem;
  /* max-w-3xl */
  margin: 0 auto;
}

.aapo-target-group-desc__inner p {
  color: rgba(239, 246, 255, 0.9);
  /* text-blue-50/90 */
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.aapo-target-group-desc__inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Target Group Features Widget (4 Block Grid)
   ========================================================================== */

.aapo-tg-features-section {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem;
}

.aapo-tg-grid {
  max-width: 72rem;
  /* max-w-6xl */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .aapo-tg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aapo-tg-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .aapo-tg-card {
    padding: 2.5rem;
  }
}

.aapo-tg-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.aapo-tg-card__glow-br {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.aapo-tg-card__glow-bl {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.aapo-tg-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .aapo-tg-card__title {
    font-size: 1.875rem;
  }
}

.aapo-tg-card__intro {
  color: rgba(219, 234, 254, 0.8);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.aapo-tg-card__outro {
  color: rgba(191, 219, 254, 0.9);
  font-weight: 500;
  font-style: italic;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}

.aapo-tg-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aapo-tg-card__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(239, 246, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 500;
}

/* Check icon (Blue) */
.aapo-tg-icon-check {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aapo-tg-icon-check .aapo-tg-icon-text {
  color: #60a5fa;
  font-size: 0.875rem;
}

/* Dot icon (Cyan) */
.aapo-tg-icon-dot {
  margin-top: 0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #22d3ee;
  flex-shrink: 0;
}

/* Cross icon (Red) */
.aapo-tg-icon-cross {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aapo-tg-icon-cross .aapo-tg-icon-text {
  color: #f87171;
  font-size: 0.875rem;
}

/* Arrow icon (Emerald) */
.aapo-tg-icon-arrow {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aapo-tg-icon-arrow .aapo-tg-icon-text {
  color: #34d399;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.aapo-page-hero__inner {
  max-width: 56rem;
  margin: 0 auto;
}