/* ============================================================
   BKM Travels — About Us Page Styles
   ============================================================ */

/* ── SHARED ── */
.au-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.au-section {
  padding: 90px 0;
}
.au-gradient-text {
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: au-flow 4s linear infinite;
}
@keyframes au-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.au-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F95CA4;
  margin-bottom: 12px;
}
.au-section-label--light { color: rgba(255,255,255,0.6); }
.au-section-title {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #111118;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.au-section-title--light { color: #fff; }
.au-section-sub {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #666680;
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
}
.au-section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.au-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #273DB4, #F95CA4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 28px;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 20px rgba(249,92,164,0.35);
}
.au-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,92,164,0.5);
}
.au-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(#111118, #111118) padding-box,
              linear-gradient(90deg, #273DB4, #F95CA4, #ED7845) border-box;
  border: 2px solid transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 28px;
  transition: box-shadow .25s, transform .2s, background .2s;
  box-shadow: 0 4px 20px rgba(39,61,180,0.25);
}
.au-btn-ghost svg {
  width: 17px;
  height: 17px;
  stroke: #F95CA4;
  flex-shrink: 0;
}
.au-btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(39,61,180,0.4);
  background: linear-gradient(rgba(39,61,180,0.15), rgba(249,92,164,0.1)) padding-box,
              linear-gradient(90deg, #273DB4, #F95CA4, #ED7845) border-box;
}

/* ── HERO ── */
.au-hero {
  background: #111118;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.au-hero-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  background-size: 200% auto;
  animation: au-flow 3s linear infinite;
}
.au-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.au-hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,61,180,0.25) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.au-hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,92,164,0.2) 0%, transparent 70%);
  top: -100px; right: 10%;
}
.au-hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(237,120,69,0.15) 0%, transparent 70%);
  bottom: -50px; right: 30%;
}
.au-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.au-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.au-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F95CA4, #ED7845);
  animation: au-pulse 2s ease-in-out infinite;
}
@keyframes au-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
.au-hero-title {
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.au-hero-sub {
  font-family: Arial, sans-serif;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.55);
  margin: 0 0 36px;
  font-weight: 400;
}
.au-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.au-chip {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.au-hero-scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.au-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F95CA4;
  margin: 0 auto;
  animation: au-scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes au-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

/* ── STATS STRIP ── */
.au-stats-strip {
  background: #EEF0FF;
  border-bottom: 1px solid #d4d8f5;
  box-shadow: 0 4px 32px rgba(39,61,180,0.08);
}
.au-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.au-stat {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
}
.au-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #111118;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.au-stat-num--visible {
  opacity: 1;
  transform: translateY(0);
}
.au-stat-num span {
  font-size: 0.6em;
  background: linear-gradient(90deg, #273DB4, #F95CA4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.au-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8888a8;
}
.au-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, #dde0f5, transparent);
}

/* ── WHO WE ARE ── */
.au-who {
  background: #111118;
  position: relative;
  overflow: hidden;
}
.au-who::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(39,61,180,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(249,92,164,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.au-who .au-container { position: relative; z-index: 2; }
.au-who .au-section-label { color: rgba(255,255,255,0.55); }
.au-who .au-section-title { color: #fff; }
.au-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.au-who-text p {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* ── WHO WE ARE visual ── */
.au-who-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.au-who-img-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(39,61,180,0.35),
    0 0 0 1px rgba(255,255,255,0.08);
}
.au-who-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

/* ── SPECIALIZATIONS ── */
.au-specialize { background: #FFF3EE; }
.au-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.au-spec-card--wide {
  grid-column: span 3;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.au-spec-card {
  background: #fff;
  border: 1px solid #e8eaf5;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  cursor: default;
  transform-style: preserve-3d;
}
.au-spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,61,180,0.03) 0%, rgba(249,92,164,0.03) 100%);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}
.au-spec-card:hover::before { opacity: 1; }
.au-spec-card:hover {
  box-shadow:
    0 20px 60px rgba(39,61,180,0.12),
    0 0 0 1px rgba(249,92,164,0.15);
}
.au-spec-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.au-spec-card:hover::after { transform: scaleX(1); }
.au-spec-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef1fb, #fdf0f7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(39,61,180,0.1);
  transition: transform .25s, box-shadow .25s;
}
.au-spec-icon-wrap svg {
  width: 26px; height: 26px;
  color: #273DB4;
  transition: color .25s;
}
.au-spec-card:hover .au-spec-icon-wrap svg { color: #F95CA4; }
.au-spec-card:hover .au-spec-icon-wrap {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(249,92,164,0.2);
}
.au-spec-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111118;
  margin: 0 0 10px;
}
.au-spec-card p {
  font-size: 13.5px;
  line-height: 1.72;
  color: #666680;
  margin: 0;
}

/* ── NETWORK ── */
.au-network {
  background: #111118;
  position: relative;
  overflow: hidden;
}
.au-network-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(39,61,180,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(249,92,164,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.au-network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.au-network-text p {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.au-network-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.au-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.au-badge:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(39,61,180,0.25);
}
.au-badge--float-1 { animation: au-badge-float 5s ease-in-out infinite; }
.au-badge--float-2 { animation: au-badge-float 5s ease-in-out 1.2s infinite; }
.au-badge--float-3 { animation: au-badge-float 5s ease-in-out 2.4s infinite; }
.au-badge--float-4 { animation: au-badge-float 5s ease-in-out 3.6s infinite; }
@keyframes au-badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.au-badge-icon { font-size: 30px; margin-bottom: 10px; }
.au-badge-icon img { width: 48px; height: 48px; object-fit: contain; display: block; margin: 0 auto; }
.au-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ── CERTIFICATIONS (3D Coverflow) ── */
.au-certs {
  background: linear-gradient(135deg, #0a0a16 0%, #0e0e20 50%, #0a0a16 100%);
  position: relative;
  overflow: hidden;
}
.au-certs-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  background-size: 200% auto;
  animation: au-flow 3s linear infinite;
}
.au-certs-glow-1 {
  position: absolute;
  width: 600px; height: 400px;
  top: -80px; left: -80px;
  background: radial-gradient(ellipse, rgba(39,61,180,0.2) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(24px);
}
.au-certs-glow-2 {
  position: absolute;
  width: 500px; height: 400px;
  bottom: -60px; right: -80px;
  background: radial-gradient(ellipse, rgba(249,92,164,0.16) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(24px);
}
.au-certs .au-section-header { position: relative; z-index: 2; }
.au-certs .au-section-label  { color: rgba(255,255,255,0.5); }
.au-certs .au-section-title  { color: #fff; }
.au-certs .au-section-sub    { color: rgba(255,255,255,0.4); }

/* 3D wrap */
.au-cert3d-wrap {
  position: relative;
  z-index: 2;
}
.au-cert3d-active-glow {
  position: absolute;
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(249,92,164,0.18) 0%, rgba(39,61,180,0.12) 40%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

/* Scene */
.au-cert3d-scene {
  position: relative;
  height: 380px;
  perspective: 900px;
  overflow: visible;
  z-index: 2;
}

/* Each item positioned absolutely at center, JS moves them */
.au-cert3d-item {
  position: absolute;
  top: 40%; left: 50%;
  width: 260px; height: 350px;
  margin-top: -150px;
  margin-left: -130px;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
  cursor: pointer;
  will-change: transform, opacity;
}

/* Card face */
.au-cert3d-card {
  width: 100%; height: 100%;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.au-cert3d-item.is-active .au-cert3d-card {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 60px rgba(249,92,164,0.18),
    0 0 0 1px rgba(249,92,164,0.22);
  animation: au-cert-float 3.5s ease-in-out infinite;
}
.au-cert3d-item.is-active:hover .au-cert3d-card { animation-play-state: paused; }

@keyframes au-cert-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Dimming overlay for side cards */
.au-cert3d-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,18,0.55);
  border-radius: 18px;
  transition: opacity 0.5s ease;
  z-index: 5;
  pointer-events: none;
}
.au-cert3d-item.is-active .au-cert3d-overlay { opacity: 0; }

/* Image area */
.au-cert3d-img-wrap {
  height: 300px;
  background: linear-gradient(135deg, #f0f2ff 0%, #fff5fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.au-cert3d-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.au-cert3d-item.is-active .au-cert3d-img-wrap img { transform: scale(1.04); }

/* Card footer label — hidden inside card, name shown in .au-cert3d-display instead */
.au-cert3d-foot { display: none; }

/* Star badge pops on active card */
.au-cert3d-badge {
  position: absolute;
  top: -12px; right: -12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #273DB4, #F95CA4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,92,164,0.55);
  z-index: 10;
  opacity: 0;
  transform: scale(0) rotate(-30deg);
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.au-cert3d-item.is-active .au-cert3d-badge {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Floor divider line */
.au-cert3d-floor {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,92,164,0.35) 30%, rgba(39,61,180,0.35) 70%, transparent);
  margin-top: 10px;
}

/* Active cert name display (fades in/out) */
.au-cert3d-display {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 24px;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}

/* Navigation */
.au-cert3d-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}
.au-cert3d-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.au-cert3d-arrow svg { width: 18px; height: 18px; }
.au-cert3d-arrow:hover {
  background: linear-gradient(135deg, #273DB4, #F95CA4);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(249,92,164,0.4);
}
.au-cert3d-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Dots */
.au-cert3d-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.au-cert3d-dot {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.au-cert3d-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #273DB4, #F95CA4);
}

@media (max-width: 700px) {
  .au-cert3d-scene { height: 420px; }
  .au-cert3d-item {
    width: 220px; height: 360px;
    margin-top: -180px; margin-left: -110px;
  }
  .au-cert3d-img-wrap { height: 314px; }
  .au-cert3d-foot { height: 46px; font-size: 10px; }
}

/* ── WHY US ── */
.au-why { background: #EEF0FF; }
.au-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: why-counter;
}
.au-why-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eaf5;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
  counter-increment: why-counter;
}
.au-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(39,61,180,0.1);
}
.au-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.au-why-card:hover::before { transform: scaleX(1); }
.au-why-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.au-why-num::before {
  content: counter(why-counter, decimal-leading-zero);
}
.au-why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111118;
  margin: 0 0 10px;
  line-height: 1.4;
}
.au-why-card p {
  font-size: 13.5px;
  line-height: 1.72;
  color: #666680;
  margin: 0;
}

/* ── MISSION ── */
.au-mission {
  /* background: #111118; */
  background: rgb(238, 240, 255);
  position: relative;
  overflow: hidden;
}
.au-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(39,61,180,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(249,92,164,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.au-mission > .au-container { position: relative; z-index: 2; }
.au-mission-card {
  background: linear-gradient(135deg, #1c1c30 0%, #18182a 100%);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,92,164,0.14);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04);
}
.au-mission-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(249,92,164,0.12) 0%, rgba(39,61,180,0.1) 50%, transparent 70%);
  pointer-events: none;
}
.au-mission-content { position: relative; z-index: 2; }
.au-mission-quote {
  font-size: 100px;
  line-height: 0.6;
  font-family: Georgia, serif;
  background: linear-gradient(90deg, #273DB4, #F95CA4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
}
.au-mission-text {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.au-mission-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #273DB4, #F95CA4);
  margin: 28px 0;
  border-radius: 2px;
}
.au-mission-highlight {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA ── */
.au-cta {
  background: #111118;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.au-cta-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  background-size: 200% auto;
  animation: au-flow 3s linear infinite;
}
.au-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.au-cta-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(39,61,180,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.au-cta-orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(249,92,164,0.18) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}
.au-cta-inner { position: relative; z-index: 2; }
.au-cta-title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.au-cta-sub {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 40px;
}
.au-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .au-who-grid      { grid-template-columns: 1fr; }
  .au-who-visual    { justify-content: center; }
  .au-orbit-system  { transform: scale(0.78); transform-origin: center; }
  .au-network-inner { grid-template-columns: 1fr; gap: 48px; }
  .au-spec-grid     { grid-template-columns: repeat(2, 1fr); }
  .au-spec-card--wide { grid-column: span 2; max-width: 100%; }
  .au-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .au-mission-card  { padding: 40px 28px; }
}
@media (max-width: 600px) {
  .au-container   { padding: 0 20px; }
  .au-section     { padding: 64px 0; }
  .au-spec-grid   { grid-template-columns: 1fr; }
  .au-spec-card--wide { grid-column: span 1; }
  .au-why-grid    { grid-template-columns: 1fr; }
  .au-stats-inner { flex-wrap: wrap; }
  .au-stat-divider { display: none; }
  .au-stat        { flex: 0 0 50%; }
  .au-network-badges { grid-template-columns: 1fr 1fr; }
  .au-mission-quote { font-size: 64px; }
}
