/* ============================================================
   GEANY SOFTECH — about-team.css
   AI-Style Corporate Design — Theme Colors
   #fe9402 · #fd5f24 · #f53548 · #cd3576
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gs-orange: #fe9402;
  --gs-orange2: #fd5f24;
  --gs-red: #f53548;
  --gs-purple: #cd3576;
  --gs-navy: #0A1628;
  --gs-navy2: #0f1e38;
  --gs-white: #ffffff;
  --gs-gray: #f4f6fb;
  --gs-text: #1e293b;
  --gs-muted: #64748b;

  --gs-grad: linear-gradient(135deg, #fe9402 0%, #fd5f24 33%, #f53548 66%, #cd3576 100%);
  --gs-grad-r: linear-gradient(to right, #fe9402, #fd5f24, #f53548, #cd3576);
  --gs-grad-soft: linear-gradient(135deg,
      rgba(254, 148, 2, .08) 0%,
      rgba(253, 95, 36, .07) 40%,
      rgba(245, 53, 72, .06) 70%,
      rgba(205, 53, 118, .06) 100%);

  --gs-shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --gs-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  --gs-shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --gs-radius: 16px;
  --gs-radius-lg: 24px;
  --gs-trans: .3s ease;
}

/* ── Base overrides for AI look ── */
body {
  background: #fafbff;
}

/* ── Reveal animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-fade {
  opacity: 0;
  transition: opacity .6s ease;
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-fade.revealed,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* ── Shared label / title / sub ── */
.au-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px 0;
  margin-bottom: 12px;
}

.au-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.au-sub {
  font-size: 1.05rem;
  color: var(--gs-muted);
  max-width: 640px;
  line-height: 1.8;
}

.au-section-header {
  margin-bottom: 64px;
}

.au-section-header.text-center .au-sub {
  margin: 0 auto 0;
}

/* ── Buttons ── */
.au-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--gs-trans);
  position: relative;
  overflow: hidden;
}

.au-btn--primary {
  background: var(--gs-grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 53, 72, .35);
}

.au-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(245, 53, 72, .45);
}

.au-btn--white {
  background: #fff;
  color: var(--gs-navy);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.au-btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.au-btn--outline {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}

.au-btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ============================================================
   HEADER — AI Enhancement
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 148, 2, .12);
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08), 0 1px 0 rgba(254, 148, 2, .15);
}

/* Animated grid lines in header bg */
.header__bg-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.header__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(254, 148, 2, .08), transparent);
  animation: hline-pulse 3s ease-in-out infinite;
}

.header__grid-line--1 {
  left: 25%;
  animation-delay: 0s;
}

.header__grid-line--2 {
  left: 50%;
  animation-delay: .8s;
}

.header__grid-line--3 {
  left: 75%;
  animation-delay: 1.6s;
}

@keyframes hline-pulse {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
}

/* Logo glow */
.logo__wrapper {
  position: relative;
  display: inline-flex;
}

.logo__glow {
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: var(--gs-grad);
  opacity: 0;
  filter: blur(10px);
  transition: .3s;
}

.logo:hover .logo__glow {
  opacity: .18;
}

/* Nav link gradient underline */
.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gs-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.nav__item.active>.nav__link::after,
.nav__link:hover::after {
  transform: scaleX(1);
}

/* Nav button gradient */
.btn--nav {
  background: var(--gs-grad) !important;
  box-shadow: 0 4px 18px rgba(245, 53, 72, .35) !important;
  border-radius: 50px !important;
  gap: 7px;
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 53, 72, .45) !important;
}

/* Dropdown premium */
.dropdown {
  border: 1px solid rgba(254, 148, 2, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13), 0 0 0 1px rgba(254, 148, 2, .08);
  border-radius: 18px;
}

.dropdown__link:hover {
  background: var(--gs-grad-soft);
  color: var(--gs-orange);
}

.dropdown__link i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FOOTER — AI Enhancement
   ============================================================ */
.footer {
  background: var(--gs-navy);
  position: relative;
  overflow: hidden;
}

.footer__top-bar {
  height: 3px;
  width: 100%;
  background: var(--gs-grad);
}

.footer__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
}

.footer__main {
  position: relative;
  z-index: 1;
  padding: 64px 0 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer__heading-accent {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--gs-grad);
  flex-shrink: 0;
}

/* Tech pills */
.footer__tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  transition: var(--gs-trans);
}

.tech-pill i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-pill:hover {
  background: rgba(254, 148, 2, .12);
  border-color: rgba(254, 148, 2, .4);
  color: #fff;
}

/* Contact icon */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.footer__contact-icon i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.footer__contact a:hover {
  color: var(--gs-orange);
}

/* Social links gradient hover */
.footer__social-link {
  transition: var(--gs-trans);
}

.footer__social-link:hover {
  background: var(--gs-grad);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(245, 53, 72, .4);
}

/* Footer links hover */
.footer__links a:hover {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__links a i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--gs-trans);
}

.footer__bottom-links a:hover {
  color: var(--gs-orange);
}

/* ============================================================
   ABOUT US HERO
   ============================================================ */
.au-hero {
  position: relative;
  overflow: hidden;
  /* JS sets --hero-h = 100dvh minus the sticky header height */
  min-height: var(--hero-h, 100dvh);
  display: flex;
  align-items: center;
  background: var(--gs-navy);
  /* Padding overridden by JS dynamically; fallback for no-JS */
  padding: clamp(90px, 12vh, 140px) 0 clamp(60px, 8vh, 90px);
  box-sizing: border-box;
}


/* Aurora blobs */
.au-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.au-blob--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, #fe9402 0%, transparent 70%);
  opacity: .4;
}

.au-blob--2 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #f53548 0%, transparent 70%);
  opacity: .35;
}

.au-blob--3 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: 30%;
  background: radial-gradient(circle, #cd3576 0%, transparent 70%);
  opacity: .3;
}

.au-blob--4 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: 15%;
  background: radial-gradient(circle, #fd5f24 0%, transparent 70%);
  opacity: .25;
}

/* Animated grid */
.au-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(254, 148, 2, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 148, 2, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/* Hero shapes */
.au-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-shape {
  position: absolute;
}

.au-shape--hex {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 8%;
  background: rgba(254, 148, 2, .08);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: float-hex 8s ease-in-out infinite;
}

.au-shape--ring {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 25%;
  border: 2px solid rgba(245, 53, 72, .2);
  border-radius: 50%;
  animation: spin-ring 20s linear infinite;
}

.au-shape--circle {
  width: 80px;
  height: 80px;
  top: 35%;
  left: 5%;
  border: 2px solid rgba(205, 53, 118, .25);
  border-radius: 50%;
  animation: float-hex 6s ease-in-out infinite reverse;
}

@keyframes float-hex {

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

  50% {
    transform: translateY(-18px) rotate(15deg);
  }
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

/* Hero content */
.au-hero__content {
  position: relative;
  z-index: 2;
}

.au-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(254, 148, 2, .12);
  border: 1px solid rgba(254, 148, 2, .3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gs-orange);
  margin-bottom: 22px;
}

.au-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gs-orange);
  box-shadow: 0 0 8px var(--gs-orange);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

  50% {
    transform: scale(1.4);
    opacity: .6;
  }
}

.au-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.au-hero__title-grad {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.au-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 28px;
}

/* Breadcrumb in hero */
.au-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 40px;
}

.au-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: var(--gs-trans);
}

.au-breadcrumb a:hover {
  color: var(--gs-orange);
}

.au-breadcrumb span {
  color: var(--gs-orange);
}

.au-breadcrumb i.fa-chevron-right {
  font-size: .6rem;
}

/* Stat pills row in hero */
.au-hero__pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.au-hero__pill {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--gs-trans);
}

.au-hero__pill:hover {
  background: rgba(254, 148, 2, .15);
  border-color: rgba(254, 148, 2, .35);
  transform: translateY(-4px);
}

.au-hero__pill span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.au-hero__pill small {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll indicator */
.au-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#faq-hero .au-hero__scroll,
#faq-hero .au-scroll-line {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#faq-hero .au-hero__scroll {
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  width: max-content;
}

#about-hero .au-hero__scroll {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  width: max-content;
}

#about-hero .au-scroll-line {
  height: 48px;
}

@media (max-width: 600px) {
  #about-hero .au-hero__scroll {
    bottom: 14px;
    font-size: .65rem;
    gap: 6px;
    display: flex !important;
  }

  #about-hero .au-scroll-line {
    height: 36px;
  }
}

@media (max-height: 750px) {
  #about-hero .au-hero__scroll {
    bottom: 12px;
    display: flex !important;
  }
}

.au-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254, 148, 2, .8), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.tm-hero .au-hero__scroll {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  width: max-content;
  visibility: visible !important;
  opacity: 1 !important;
}

.tm-hero .au-scroll-line {
  height: 48px;
}

@media (max-width: 600px) {
  .tm-hero .au-hero__scroll {
    bottom: 14px;
    font-size: .65rem;
    gap: 6px;
    display: flex !important;
  }

  .tm-hero .au-scroll-line {
    height: 36px;
  }

  #faq-hero .au-hero__scroll {
    bottom: 14px;
    font-size: .65rem;
    gap: 6px;
    display: flex !important;
  }

  #faq-hero .au-scroll-line {
    height: 36px;
  }
}

@media (max-height: 750px) {
  .tm-hero .au-hero__scroll {
    bottom: 12px;
    display: flex !important;
  }

  #faq-hero .au-hero__scroll {
    bottom: 12px;
    display: flex !important;
  }
}

@keyframes scroll-pulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .6;
  }

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

/* ============================================================
   TEAM HERO (reuses .au-hero vars)
   ============================================================ */
.tm-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-h, 100dvh);
  display: flex;
  align-items: center;
  background: var(--gs-navy);
  padding: clamp(90px, 12vh, 140px) 0 clamp(60px, 8vh, 90px);
  box-sizing: border-box;
}

/* ============================================================
   ABOUT STORY SECTION
   ============================================================ */
.au-story {
  background: #fff;
  overflow: visible;
}

.au-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  overflow: visible;
}

.au-story__text p {
  color: var(--gs-muted);
  margin-bottom: 14px;
  font-size: .97rem;
  line-height: 1.8;
}

.au-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.au-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gs-grad-soft);
  border: 1px solid rgba(254, 148, 2, .2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gs-navy);
  transition: var(--gs-trans);
}

.au-tag:hover {
  background: rgba(254, 148, 2, .12);
  border-color: rgba(254, 148, 2, .4);
}

.au-tag i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Visual stack */
.au-story__img-stack {
  position: relative;
  height: 400px;
}

.au-story__img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  background: linear-gradient(135deg, var(--gs-navy) 0%, #1a3060 100%);
  border-radius: var(--gs-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gs-shadow-lg);
  overflow: hidden;
}

.au-story__img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gs-grad-soft);
  opacity: .6;
}

.au-story__img-inner {
  position: relative;
  z-index: 1;
}

.au-story__icon-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(254, 148, 2, .15);
  border: 2px solid rgba(254, 148, 2, .3);
  display: grid;
  place-items: center;
  animation: spin-ring 15s linear infinite;
}

.au-story__icon-ring i {
  font-size: 3rem;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.au-story__badge-est {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--gs-grad);
  color: #fff;
  border-radius: var(--gs-radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245, 53, 72, .4);
  z-index: 5;
}

.au-badge-year {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.au-badge-text {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: .9;
}

.au-story__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: var(--gs-grad);
  border-radius: var(--gs-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(245, 53, 72, .4);
}

.au-story__img-accent i {
  font-size: 3rem;
  color: #fff;
  opacity: .85;
}

/* Floating info cards */
.au-story__floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--gs-radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--gs-shadow-lg);
  z-index: 6;
}

.au-story__floating-card i {
  font-size: 1.4rem;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.au-story__floating-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--gs-navy);
  line-height: 1.2;
}

.au-story__floating-card small {
  font-size: .72rem;
  color: var(--gs-muted);
}

.au-fc--1 {
  bottom: 72px;
  left: -24px;
  animation: float-hex 6s ease-in-out infinite;
}

.au-fc--2 {
  top: 20px;
  right: -10px;
  animation: float-hex 7s ease-in-out infinite reverse;
}

/* Orbit dots */
.au-story__orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gs-grad);
  animation: orbit-anim linear infinite;
}

.orbit-dot--1 {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  animation-duration: 8s;
}

.orbit-dot--2 {
  width: 6px;
  height: 6px;
  top: 30%;
  left: 80%;
  animation-duration: 12s;
}

.orbit-dot--3 {
  width: 8px;
  height: 8px;
  top: 70%;
  left: 20%;
  animation-duration: 10s;
}

@keyframes orbit-anim {
  0% {
    transform: translate(-50%, -50%) rotate(0) translateX(60px) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

/* ============================================================
   ANIMATED STATS SECTION
   ============================================================ */
.au-stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gs-navy) 0%, #12213e 50%, #0d1a30 100%);
  padding: 90px 0;
}

.au-stats__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-stats__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(254, 148, 2, .3), transparent);
}

.au-stats__line--1 {
  top: 30%;
  left: 0;
  right: 0;
  animation: line-scan 4s linear infinite;
}

.au-stats__line--2 {
  bottom: 30%;
  left: 0;
  right: 0;
  animation: line-scan 4s linear infinite 2s;
}

@keyframes line-scan {
  0% {
    transform: scaleX(0) translateX(-100%);
  }

  100% {
    transform: scaleX(1) translateX(100%);
  }
}

.au-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.au-stat {
  text-align: center;
  padding: 44px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--gs-radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--gs-trans);
}

.au-stat:hover {
  background: rgba(254, 148, 2, .08);
  border-color: rgba(254, 148, 2, .25);
  transform: translateY(-8px);
}

.au-stat__icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.au-stat__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: rgba(254, 148, 2, .15);
  border: 1px solid rgba(254, 148, 2, .25);
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.au-stat__icon i {
  font-size: 1.4rem;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.au-stat__ring {
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px solid rgba(254, 148, 2, .15);
  animation: spin-ring 8s linear infinite;
}

.au-stat__num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.au-stat__num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.au-stat__suffix {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.au-stat__label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   TRUSTED PARTNER
   ============================================================ */
.au-partner {
  background: var(--gs-gray);
}

.au-partner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.au-partner__text p {
  color: var(--gs-muted);
  margin-bottom: 14px;
  font-size: .97rem;
  line-height: 1.8;
}

.au-check-list {
  list-style: none;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.au-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  color: var(--gs-text);
  font-weight: 500;
}

.au-check-list li i {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
}

.au-partner__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.au-value-card {
  background: #fff;
  border: 1px solid rgba(254, 148, 2, .12);
  border-radius: var(--gs-radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
  transition: var(--gs-trans);
}

.au-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .35);
}

.au-value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gs-grad);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.au-value-card__icon i {
  font-size: 1.2rem;
  color: #fff;
}

.au-value-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 7px;
}

.au-value-card p {
  font-size: .85rem;
  color: var(--gs-muted);
}

.au-value-card__glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gs-grad);
  opacity: .06;
  filter: blur(20px);
  transition: var(--gs-trans);
}

.au-value-card:hover .au-value-card__glow {
  opacity: .14;
  transform: scale(1.4);
}

/* ============================================================
   AREAS OF SPECIALIZATION (au-spec)
   ============================================================ */
.au-spec {
  position: relative;
  background: #fafbff;
}

.au-spec__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 40%, rgba(254, 148, 2, .04) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(205, 53, 118, .04) 0%, transparent 50%);
}

.au-spec__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.au-spec-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--gs-radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gs-shadow-sm);
  transition: var(--gs-trans);
}

.au-spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .15);
}

.au-spec-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--card-color);
  opacity: .04;
  filter: blur(24px);
  pointer-events: none;
  transition: var(--gs-trans);
}

.au-spec-card:hover .au-spec-card__glow {
  opacity: .12;
  transform: scale(1.4);
}

.au-spec-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--gs-shadow-sm);
  transition: var(--gs-trans);
}

.au-spec-card__icon i {
  font-size: 1.3rem;
  color: var(--card-color);
}

.au-spec-card:hover .au-spec-card__icon {
  background: var(--card-color);
  border-color: transparent;
}

.au-spec-card:hover .au-spec-card__icon i {
  color: #fff;
}

.au-spec-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.au-spec-card p {
  font-size: .85rem;
  color: var(--gs-muted);
  line-height: 1.6;
}

.au-spec-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.au-spec-card:hover .au-spec-card__bar {
  transform: scaleX(1);
}

/* ============================================================
   OUR CLIENTS CAROUSEL
   ============================================================ */
.au-clients {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.au-clients__ticker {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.au-clients__ticker::before,
.au-clients__ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.au-clients__ticker::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.au-clients__ticker::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.au-clients__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.au-client-logo {
  width: 180px;
  height: 90px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--gs-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  box-shadow: var(--gs-shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.au-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: transform 0.3s ease;
}

.au-client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 148, 2, 0.3);
  box-shadow: var(--gs-shadow);
}

.au-client-logo:hover img {
  transform: scale(1.06);
}

/* ============================================================
   TECH TICKER
   ============================================================ */
.au-ticker {
  background: var(--gs-navy);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(254, 148, 2, .1);
  border-bottom: 1px solid rgba(254, 148, 2, .1);
}

.au-ticker__inner {
  overflow: hidden;
}

.au-ticker__track {
  display: flex;
  gap: 32px;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.au-ticker__track span {
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--gs-trans);
}

.au-ticker__track span:hover {
  color: var(--gs-orange);
}

.au-ticker__track .sep {
  font-size: .5rem;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.au-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gs-navy) 0%, #12213e 60%, #180d25 100%);
  padding: 90px 0;
}

.au-cta__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.au-cta__blob--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(254, 148, 2, .2);
}

.au-cta__blob--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: rgba(205, 53, 118, .2);
}

.au-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.au-cta__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

.au-cta__text p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
}

.au-cta__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   TEAM PAGE SPECIFIC STYLES
   ============================================================ */

/* Team Page Intro */
.tm-intro {
  background: #fff;
}

.tm-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tm-intro__text p {
  color: var(--gs-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

/* Team Metrics */
.tm-intro__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tm-metric {
  background: var(--gs-gray);
  border: 1px solid rgba(254, 148, 2, .1);
  padding: 24px 20px;
  border-radius: var(--gs-radius);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--gs-trans);
}

.tm-metric:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--gs-shadow);
  border-color: rgba(254, 148, 2, .3);
}

.tm-metric__icon {
  width: 48px;
  height: 48px;
  background: var(--gs-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(253, 95, 36, .2);
}

.tm-metric strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
}

.tm-metric span {
  font-size: .8rem;
  color: var(--gs-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Department Filter */
.tm-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.tm-filter__btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gs-navy);
  transition: var(--gs-trans);
  box-shadow: var(--gs-shadow-sm);
  cursor: pointer;
}

.tm-filter__btn:hover,
.tm-filter__btn.active {
  background: var(--gs-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(245, 53, 72, .3);
}

/* Team Grid */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Team Card */
.tm-card {
  background: #fff;
  border-radius: var(--gs-radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--gs-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.tm-card:hover {
  box-shadow: var(--gs-shadow-lg);
  border-color: rgba(254, 148, 2, .2);
}

/* Card Glow Effect */
.tm-card__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--card-color);
  opacity: .05;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity var(--gs-trans), transform var(--gs-trans);
}

.tm-card:hover .tm-card__glow {
  opacity: .15;
  transform: translateX(-50%) scale(1.4);
}

/* Avatar block */
.tm-card__avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.tm-card__avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--card-color);
  opacity: .3;
  animation: spin-ring 20s linear infinite;
}

.tm-card:hover .tm-card__avatar-ring {
  opacity: .8;
  animation-duration: 8s;
}

.tm-card__avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gs-gray);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gs-shadow-sm);
  transition: var(--gs-trans);
}

.tm-card__avatar-inner i {
  font-size: 2.2rem;
  color: var(--card-color);
  transition: var(--gs-trans);
}

.tm-card:hover .tm-card__avatar-inner {
  background: var(--card-color);
}

.tm-card:hover .tm-card__avatar-inner i {
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.tm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--gs-trans);
}

.tm-card:hover .tm-card__img {
  transform: scale(1.08);
}

.tm-card__dept-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: var(--gs-shadow-sm);
  white-space: nowrap;
}

/* Card Body */
.tm-card__body {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gs-navy);
  margin-bottom: 4px;
}

.tm-card__role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gs-muted);
  margin-bottom: 16px;
}

.tm-card__skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.tm-card__skill {
  font-size: .7rem;
  font-weight: 700;
  color: var(--card-color);
  background: rgba(254, 148, 2, .06);
  border: 1px solid rgba(254, 148, 2, .15);
  padding: 3px 10px;
  border-radius: 50px;
}

/* Card Socials */
.tm-card__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.tm-card__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gs-gray);
  color: var(--gs-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--gs-trans);
}

.tm-card__social:hover {
  background: var(--gs-grad);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 53, 72, .3);
  transform: translateY(-2px);
}

/* Accent Bar */
.tm-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0.2);
  transition: transform var(--gs-trans);
}

.tm-card:hover .tm-card__accent {
  transform: scaleX(1);
}

/* ============================================================
   RESPONSIVE QUERIES
   ============================================================ */
@media (max-width: 1200px) {
  .tm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .au-spec__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {

  /* ── Hero for tablets (iPad Mini/Air/Pro, Surface Duo, Nest Hub Max) ── */
  .au-hero,
  .tm-hero {
    min-height: var(--hero-h, 100dvh);
    padding: clamp(80px, 12vh, 120px) 0 clamp(50px, 8vh, 80px);
    align-items: center;
  }

  .au-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
  }

  .au-hero__sub {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .au-breadcrumb {
    margin-bottom: 30px;
  }

  .au-hero__pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
  }

  .au-hero__pill {
    padding: 12px 16px;
  }

  .au-hero__pill span {
    font-size: 1.45rem;
  }

  .au-hero__pill small {
    font-size: .68rem;
  }

  .au-story__grid,
  .au-partner__grid,
  .tm-intro__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .au-story__img-stack {
    width: min(360px, 88vw);
    max-width: unset;
    margin: 0 auto;
    /* push top so badge + fc--2 don't get clipped */
    padding-top: 30px;
    padding-left: 20px;
    height: 480px;
    box-sizing: border-box;
  }

  .au-story__img-main {
    top: 30px;
    left: 20px;
    right: 60px;
    bottom: 60px;
  }

  .au-story__img-accent {
    width: 110px;
    height: 110px;
    right: 0;
    bottom: 0;
  }

  .au-story__img-accent i {
    font-size: 2.2rem;
  }

  .au-story__badge-est {
    top: 8px;
    left: 0;
  }

  .au-fc--1 {
    left: 0;
    bottom: 80px;
  }

  .au-fc--2 {
    right: 0;
    top: 40px;
  }

  .au-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-spec__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {

  /* Hero — full screen, compact on mobile */
  .au-hero,
  .tm-hero {
    min-height: var(--hero-h, 100dvh);
    padding: clamp(70px, 13vh, 100px) 0 clamp(40px, 6vh, 60px);
    align-items: center;
  }

  .au-hero__badge {
    font-size: .66rem;
    padding: 5px 13px;
    margin-bottom: 12px;
  }

  .au-hero__title {
    font-size: clamp(1.65rem, 7.5vw, 2.4rem);
    margin-bottom: 12px;
  }

  .au-hero__sub {
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .au-breadcrumb {
    margin-bottom: 20px;
    font-size: .78rem;
  }

  /* Pills: 2x2 grid so all 4 fit without a lone orphan */
  .au-hero__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .au-hero__pill {
    padding: 10px 8px;
    text-align: center;
  }

  .au-hero__pill span {
    font-size: 1.25rem;
  }

  .au-hero__pill small {
    font-size: .63rem;
  }

  /* Hide scroll nudge — no room on mobile */
  .au-hero__scroll {
    display: none;
  }

  /* Other grids */
  .au-stats__grid,
  .au-spec__grid,
  .tm-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .au-partner__cards {
    grid-template-columns: 1fr;
  }

  .tm-intro__metrics {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .au-cta__inner {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }

  .au-cta__btns {
    justify-content: center;
  }

  /* Story section on small phones */
  .au-story__img-stack {
    max-width: 320px;
    height: 380px;
  }

  .au-story__img-main {
    right: 30px;
    bottom: 30px;
  }

  .au-story__img-accent {
    width: 90px;
    height: 90px;
  }

  .au-story__img-accent i {
    font-size: 1.8rem;
  }

  .au-story__floating-card {
    padding: 10px 12px;
    gap: 8px;
  }

  .au-story__floating-card strong {
    font-size: .82rem;
  }

  .au-fc--1 {
    left: 0;
    bottom: 40px;
  }

  .au-fc--2 {
    right: 0;
    top: 6px;
  }
}

/* ── Short height viewports (landscape mobile, Nest Hub, Asus Zenbook Duo screen) ── */
@media (max-height: 750px) {

  .au-hero,
  .tm-hero {
    padding-top: clamp(60px, 10vh, 95px) !important;
    padding-bottom: clamp(40px, 6vh, 65px) !important;
  }

  .au-hero__scroll {
    display: none !important;
  }

  #vision-hero .au-hero__scroll {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 12px;
  }

  .au-hero__title {
    margin-bottom: 8px !important;
  }

  .au-hero__sub {
    margin-bottom: 12px !important;
  }

  .au-breadcrumb {
    margin-bottom: 16px !important;
  }
}

/* ============================================================
   FAQ PAGE — GRADIENT THEME OVERRIDES
   Overrides the plain-orange styles from style.css
   Brand gradient: #fe9402 → #fd5f24 → #f53548 → #cd3576
   ============================================================ */

/* ── FAQ Label Pill ── */
.faq-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(254, 148, 2, .25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

.faq-main-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--gs-navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ── FAQ Items ── */
.faq-item {
  border: 1px solid rgba(0, 0, 0, .07) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: var(--gs-trans) !important;
  margin-bottom: 14px !important;
  overflow: hidden !important;
}

.faq-item:hover {
  border-color: rgba(254, 148, 2, .35) !important;
  box-shadow: none !important;
  transform: none !important;
}

.faq-item.open {
  border-color: rgba(245, 53, 72, .3) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ── Question button ── */
.faq-item__question {
  background: transparent !important;
  color: var(--gs-navy) !important;
}

.faq-item__question:hover {
  background: linear-gradient(135deg,
      rgba(254, 148, 2, .05) 0%,
      rgba(245, 53, 72, .04) 100%) !important;
}

.faq-item__question:hover span:first-child {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item.open .faq-item__question {
  background: linear-gradient(135deg,
      rgba(254, 148, 2, .07) 0%,
      rgba(245, 53, 72, .05) 100%) !important;
}

.faq-item.open .faq-item__question span:first-child {
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── +/× icon ── */
.faq-item__icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, rgba(254, 148, 2, .1) 0%, rgba(245, 53, 72, .1) 100%) !important;
  border: 1.5px solid rgba(254, 148, 2, .25) !important;
  color: var(--gs-orange) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  font-size: .82rem !important;
  transition: transform var(--gs-trans), background var(--gs-trans), box-shadow var(--gs-trans) !important;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg) !important;
  background: var(--gs-grad) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(245, 53, 72, .4) !important;
}

/* ── Answer text ── */
.faq-item__answer p,
.faq-item__answer ul {
  color: var(--gs-muted) !important;
  line-height: 1.8 !important;
}

/* ── Checklist icons ── */
.faq-list li i {
  background: var(--gs-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  flex-shrink: 0;
}

/* ── Sidebar cards ── */
.faq-sidebar-card {
  border-radius: 18px !important;
  border: 1px solid rgba(0, 0, 0, .06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06) !important;
  transition: var(--gs-trans) !important;
}

.faq-sidebar-card:hover {
  border-color: rgba(254, 148, 2, .22) !important;
  box-shadow: 0 10px 36px rgba(254, 148, 2, .13) !important;
  transform: translateY(-3px) !important;
}

/* Contact button in sidebar */
.faq-sidebar-card .au-btn--primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Dark "Quick Facts" card */
.faq-sidebar-card--dark {
  background: linear-gradient(135deg, var(--gs-navy) 0%, var(--gs-navy2) 100%) !important;
  border: 1px solid rgba(254, 148, 2, .18) !important;
  color: rgba(255, 255, 255, .8) !important;
}

.faq-sidebar-card--dark:hover {
  border-color: rgba(254, 148, 2, .35) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25) !important;
}

.faq-sidebar-card--dark h4 {
  color: #fff !important;
}

/* Sidebar icon box */
.faq-sidebar-card__icon {
  width: 54px !important;
  height: 54px !important;
  background: linear-gradient(135deg, rgba(254, 148, 2, .14) 0%, rgba(245, 53, 72, .12) 100%) !important;
  border: 1px solid rgba(254, 148, 2, .28) !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 16px !important;
}

.faq-sidebar-card__icon i {
  font-size: 1.4rem !important;
  background: var(--gs-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.faq-sidebar-card h4 {
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  color: var(--gs-navy) !important;
  margin-bottom: 10px !important;
}

.faq-sidebar-card p {
  font-size: .875rem !important;
  color: var(--gs-muted) !important;
  margin-bottom: 18px !important;
  line-height: 1.7 !important;
}

/* Quick facts list items */
.faq-facts li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: .88rem !important;
  color: rgba(255, 255, 255, .7) !important;
  padding: 9px 12px !important;
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 9px !important;
  margin-bottom: 8px !important;
  transition: var(--gs-trans) !important;
}

.faq-facts li:hover {
  background: rgba(254, 148, 2, .1) !important;
  border-color: rgba(254, 148, 2, .22) !important;
}

.faq-facts li i {
  background: var(--gs-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  flex-shrink: 0 !important;
}

.faq-facts li strong {
  color: #fff !important;
}

/* Contact details list */
.faq-contact li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: .875rem !important;
  color: var(--gs-muted) !important;
  padding: 10px !important;
  border-radius: 10px !important;
  transition: var(--gs-trans) !important;
}

.faq-contact li:hover {
  background: linear-gradient(135deg, rgba(254, 148, 2, .04) 0%, rgba(245, 53, 72, .04) 100%) !important;
}

.faq-contact li i {
  background: var(--gs-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.faq-contact a {
  color: var(--gs-muted) !important;
  transition: var(--gs-trans) !important;
}

.faq-contact a:hover {
  background: var(--gs-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}