/* AutomationOffice.ai — shared tokens & components
   Used by every page so the nav/footer/buttons/cards stay consistent. */

:root {
  --teal: #0BA88A;
  --teal-light: #E6F7F4;
  --teal-mid: #0D8F77;
  --teal-deep: #085E4D;
  --coral: #FF6B4A;
  --coral-light: #FFF0EC;
  --navy: #0F2A3F;
  --navy-mid: #1A3D57;
  --navy-deep: #07192A;
  --gray-50: #FAFBFC;
  --gray-100: #F4F6F9;
  --gray-200: #EEF0F4;
  --gray-300: #DBE0E8;
  --gray-400: #9BA5B4;
  --gray-600: #5A6478;
  --gray-700: #3A4352;
  --white: #FFFFFF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 3px rgba(15,42,63,0.05);
  --shadow-sm: 0 2px 12px rgba(15,42,63,0.06);
  --shadow-md: 0 8px 32px rgba(15,42,63,0.09);
  --shadow-lg: 0 20px 60px rgba(15,42,63,0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 em, h2 em, h3 em { color: var(--teal); font-style: italic; font-weight: 400; }

/* ───────── Nav ───────── */
.ao-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,42,63,0.06);
}
.ao-nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 2rem;
}
.ao-logo {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--navy);
  font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em;
}
.ao-logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--navy); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem;
}
.ao-logo-dot { color: var(--teal); }
.ao-nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.ao-nav-links > a {
  text-decoration: none; color: var(--gray-700);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.ao-nav-links > a:hover { color: var(--navy); background: var(--gray-100); }
.ao-nav-links > a.active { color: var(--teal-mid); }
.ao-nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 0.6rem 1.1rem !important; border-radius: 100px !important;
  font-weight: 600 !important; margin-left: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.ao-nav-cta:hover { background: var(--navy-mid) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,42,63,0.18); }
.ao-dropdown { position: relative; }
.ao-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.ao-dropdown-trigger::after { content: '▾'; font-size: 0.7rem; opacity: 0.7; }
.ao-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(-4px) scale(0.98); pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ao-dropdown:hover .ao-dropdown-menu,
.ao-dropdown:focus-within .ao-dropdown-menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.ao-dropdown-menu a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.65rem 0.75rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.ao-dropdown-menu a:hover { background: var(--teal-light); color: var(--teal-deep); }
.ao-dropdown-menu a .ao-dot {
  width: 8px; height: 8px; border-radius: 2px; background: var(--teal);
}

.ao-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; width: 44px; height: 44px;
  align-items: center;
}
.ao-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.ao-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ao-hamburger.open span:nth-child(2) { opacity: 0; }
.ao-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ao-mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 2rem 1.75rem; z-index: 99;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(15,42,63,0.08);
  max-height: calc(100vh - 68px); overflow-y: auto;
}
.ao-mobile-nav.open { display: flex; }
.ao-mobile-nav a {
  text-decoration: none; color: var(--gray-700); font-size: 1rem; font-weight: 500;
  padding: 0.9rem 0; border-bottom: 1px solid var(--gray-200);
}
.ao-mobile-nav .ao-mobile-sub {
  padding-left: 1rem; font-size: 0.92rem; color: var(--gray-600);
}
.ao-mobile-nav .ao-mobile-cta {
  margin-top: 1rem; background: var(--navy); color: white !important;
  padding: 0.85rem 1.5rem; border-radius: 100px; font-weight: 600 !important;
  text-align: center; border-bottom: none !important;
}
.ao-mobile-nav-heading {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400);
  padding: 1rem 0 0.25rem; border-bottom: none;
  display: block;
}

@media (max-width: 1024px) {
  .ao-nav-links { display: none; }
  .ao-hamburger { display: flex; }
}

/* ───────── Buttons ───────── */
.ao-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.9rem 1.6rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.ao-btn-primary {
  background: var(--teal); color: white;
  box-shadow: 0 6px 20px rgba(11,168,138,0.28);
}
.ao-btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,168,138,0.35); }
.ao-btn-dark {
  background: var(--navy); color: white;
}
.ao-btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.ao-btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.ao-btn-ghost:hover { border-color: var(--teal); color: var(--teal-mid); }
.ao-btn-light {
  background: white; color: var(--navy); box-shadow: var(--shadow-sm);
}
.ao-btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ao-btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ───────── Sections ───────── */
section { padding: 6rem 2rem; }
.ao-section-inner { max-width: 1240px; margin: 0 auto; }
.ao-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 1rem;
}
.ao-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
.ao-section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 1rem;
}
.ao-section-sub {
  font-size: 1.08rem; color: var(--gray-600);
  max-width: 640px; line-height: 1.65;
}
.ao-section-header { margin-bottom: 3rem; }
.ao-section-header.center { text-align: center; }
.ao-section-header.center .ao-section-sub { margin: 0 auto; }

/* ───────── Cards ───────── */
.ao-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  position: relative;
}
.ao-card-top-accent { overflow: hidden; }
.ao-card-top-accent::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.ao-card-top-accent:hover::before { transform: scaleX(1); }
.ao-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(11,168,138,0.25); }

.ao-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.4rem 0.95rem; border-radius: 100px;
  background: var(--teal-light); color: var(--teal-deep);
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(11,168,138,0.18);
}
.ao-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: ao-pulse 2s infinite; }
@keyframes ao-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(1.35)} }

/* Trust band (shared) */
.ao-trust-band { padding: 2.5rem clamp(1.5rem,4vw,2.5rem); background: white; border-bottom: 1px solid var(--border); }
.ao-trust-band-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.ao-trust-band-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); margin-bottom: 1.25rem; font-weight: 600;
}
.ao-trust-band .ao-logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem;
}

/* How we work (shared) */
.ao-how { background: var(--navy); color: white; position: relative; overflow: hidden; }
.ao-how::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,168,138,0.15), transparent 70%);
  pointer-events: none;
}
.ao-how .ao-section-inner { position: relative; z-index: 1; }
.ao-how h2, .ao-how .ao-section-title { color: white; }
.ao-how .ao-section-sub { color: rgba(255,255,255,0.65); }
.ao-how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative; margin-top: 3rem;
}
.ao-how-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  text-align: center;
}
.ao-how-num {
  font-family: 'Fraunces', serif; font-size: 2.8rem;
  color: var(--teal); font-weight: 600; line-height: 1;
  display: block; margin-bottom: 0.75rem;
}
.ao-how-step h3 { color: white; font-size: 1.2rem; margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.ao-how-step p { color: rgba(255,255,255,0.65); font-size: 0.94rem; line-height: 1.6; margin: 0; }
.ao-how-meta {
  margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; color: var(--teal); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 960px) {
  .ao-how-steps { grid-template-columns: 1fr; }
}

/* CTA block (shared) */
.ao-cta { background: var(--navy); padding: clamp(4rem, 7vw, 6rem) 2rem; position: relative; overflow: hidden; }
.ao-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(11,168,138,0.15), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,107,74,0.1), transparent 50%); }
.ao-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.ao-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; color: white; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1.2rem; }
.ao-cta h2 em { font-style: italic; color: var(--teal); font-weight: 500; }
.ao-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 2rem; line-height: 1.55; }
.ao-cta-sub { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; align-items: center; width: 100%; }
.ao-cta-sub span { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); display: inline-block; }

/* ───────── Footer ───────── */
.ao-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 4rem 2rem 2rem;
}
.ao-footer-inner { max-width: 1280px; margin: 0 auto; }

/* Footer top: brand column (wider) + 6 link columns */
.ao-footer-top { display: grid; grid-template-columns: 1.7fr repeat(6, 1fr); column-gap: 3rem; row-gap: 2.5rem; margin-bottom: 2.5rem; align-items: start; }
.ao-footer-col { min-width: 0; }
.ao-footer-col h4 { color: white; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 1rem; font-size: 0.88rem; letter-spacing: 0.02em; }
.ao-footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.2s; }
.ao-footer-col a:hover { color: var(--teal); }

.ao-footer-brand { max-width: 240px; margin-top: -6px; }
.ao-footer-brand .ao-logo { line-height: 1; }
.ao-footer-brand .ao-logo-mark { display: none; }
.ao-footer-brand p { font-size: 0.82rem; line-height: 1.65; margin-top: 0.8rem; max-width: 240px; color: rgba(255,255,255,0.55); }
.ao-footer-trust {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 1.1rem; line-height: 1.4;
  max-width: 240px; white-space: nowrap;
}
.ao-footer-cities {
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.6rem; align-items: center;
  margin-top: 0.5rem; max-width: 240px;
}
.ao-footer-city {
  display: inline-flex; align-items: center; gap: 0.28rem;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); white-space: nowrap;
}
.ao-footer-city .flag {
  width: 10px; height: 7px; border-radius: 1.5px; overflow: hidden;
  display: inline-block; box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.ao-footer-address {
  font-size: 0.7rem; line-height: 1.55; margin-top: 0.85rem;
  color: rgba(255,255,255,0.45); max-width: 240px;
  font-style: normal;
}
.ao-footer-cities .city { display: inline-flex; align-items: center; gap: 0.42rem; font-size: 0.86rem; color: rgba(255,255,255,0.62); white-space: nowrap; }
.ao-footer-cities .flag { width: 18px; height: 13px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.08); display: inline-block; flex-shrink: 0; }
.ao-brand-cities { margin-top: 1.1rem; }

@media (max-width: 1280px) {
  .ao-footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; column-gap: 2.5rem; }
  .ao-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) { .ao-footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .ao-footer-top { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; } }
@media (max-width: 420px) { .ao-footer-top { grid-template-columns: 1fr; } }
/* (footer-col styles consolidated above) */
.ao-soon {
  display: inline-block; margin-left: 4px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1px 6px; border-radius: 99px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  vertical-align: 2px;
}
.ao-footer-col a:hover .ao-soon { background: rgba(11,168,138,0.18); color: var(--teal); }
.ao-footer-mid {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}
.ao-footer-mid a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.ao-footer-mid a:hover { color: var(--teal); }
.ao-footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 1rem;
}
.ao-footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; margin-left: 1.25rem; }
.ao-footer-legal a:hover { color: var(--teal); }

/* ───────── Industries dropdown (header) ───────── */
.ao-nav-dd { position: relative; }
.ao-nav-dd-trigger {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: inherit; font-weight: 500; color: inherit;
  padding: 0; display: inline-flex; align-items: center; gap: 4px;
}
.ao-nav-dd-trigger::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.2s;
  opacity: 0.6;
}
.ao-nav-dd[data-open="true"] .ao-nav-dd-trigger::after { transform: rotate(225deg) translateY(0); }
.ao-nav-dd-panel {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(15,23,42,0.18);
  padding: 1.4rem; min-width: 920px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.ao-nav-dd[data-open="true"] .ao-nav-dd-panel {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.ao-nav-dd-col h5 {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-mid);
  margin-bottom: 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-200);
}
.ao-nav-dd-col a {
  display: flex; align-items: center; gap: 8px;
  padding: 0.45rem 0.5rem; margin: 0 -0.5rem;
  border-radius: 8px; color: var(--navy); font-size: 0.92rem; font-weight: 500;
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.ao-nav-dd-col a:hover { background: var(--gray-100); color: var(--teal-mid); }
.ao-nav-dd-col a .ao-soon {
  background: var(--gray-200); color: var(--gray-600); margin-left: auto;
}
.ao-nav-dd-col a .ao-icon {
  width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7;
}
@media (max-width: 980px) {
  .ao-nav-dd-panel { display: none; }
}

/* ───────── Logo marks (brand row) ───────── */
.ao-logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem 3rem;
  padding: 1.5rem 0;
}
.ao-logo-chip {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray-600); font-weight: 600;
  font-size: 0.98rem; letter-spacing: -0.01em;
  opacity: 0.78; transition: opacity 0.2s;
}
.ao-logo-chip:hover { opacity: 1; }
.ao-logo-chip svg { height: 26px; width: auto; }

/* ───────── Gemini-image placeholder frames ─────────
   These are used anywhere we'd drop a real Gemini-generated image later. */
.ao-gimg {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: linear-gradient(135deg, #E6F7F4 0%, #F4F6F9 100%);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.82rem; font-weight: 500;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.ao-gimg::after {
  /* The "star" Gemini watermark shape — we leave it in as a visual hint
     that this is where the cropped-watermark image would sit. Real images
     will be dropped in as a background-image. */
  content: ''; position: absolute; bottom: 14px; right: 14px;
  width: 20px; height: 20px;
  background: radial-gradient(closest-side, rgba(15,42,63,0.18), transparent 70%);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  opacity: 0.35;
}
.ao-gimg.no-star::after { display: none; }
.ao-gimg img { width: 100%; height: 100%; object-fit: cover; }

/* ───────── FAQ (AEO-friendly Q&A blocks) ───────── */
.ao-faq { border-top: 1px solid var(--gray-200); }
.ao-faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.ao-faq-q {
  display: flex; align-items: flex-start; gap: 1rem;
  background: none; border: none; padding: 0;
  width: 100%; text-align: left; cursor: pointer;
  font-family: 'Fraunces', serif; color: var(--navy);
  font-size: 1.1rem; font-weight: 500; line-height: 1.35;
}
.ao-faq-q .ao-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; font-weight: 700;
  transition: transform 0.25s;
}
.ao-faq-item.open .ao-faq-q .ao-faq-icon { transform: rotate(45deg); }
.ao-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease);
  color: var(--gray-600); font-size: 0.98rem; line-height: 1.7;
  padding-left: 2.75rem;
}
.ao-faq-item.open .ao-faq-a { max-height: 400px; padding-top: 0.75rem; }

/* ───────── Scroll-reveal utilities ───────── */
.ao-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.ao-fade.visible { opacity: 1; transform: translateY(0); }
.ao-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.ao-stagger.visible > *:nth-child(1){ opacity:1; transform:none; transition-delay:0s; }
.ao-stagger.visible > *:nth-child(2){ opacity:1; transform:none; transition-delay:0.08s; }
.ao-stagger.visible > *:nth-child(3){ opacity:1; transform:none; transition-delay:0.16s; }
.ao-stagger.visible > *:nth-child(4){ opacity:1; transform:none; transition-delay:0.24s; }
.ao-stagger.visible > *:nth-child(5){ opacity:1; transform:none; transition-delay:0.32s; }
.ao-stagger.visible > *:nth-child(6){ opacity:1; transform:none; transition-delay:0.4s; }
.ao-stagger.visible > *:nth-child(n+7){ opacity:1; transform:none; transition-delay:0.48s; }

/* ───────── Sticky CTA bar (ICP pages) ───────── */
.ao-sticky-cta {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%) translateY(150%);
  background: var(--navy); color: white;
  border-radius: 100px; padding: 0.65rem 0.65rem 0.65rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 18px 40px rgba(15,42,63,0.3);
  z-index: 90; transition: transform 0.4s var(--ease);
  max-width: calc(100vw - 2rem);
}
.ao-sticky-cta.show { transform: translateX(-50%) translateY(0); }
.ao-sticky-cta-text { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.ao-sticky-cta-text b { color: white; font-weight: 700; }
.ao-sticky-cta a { text-decoration: none; }
@media (max-width: 640px) {
  .ao-sticky-cta { flex-direction: row; padding: 0.5rem 0.5rem 0.5rem 1rem; font-size: 0.85rem; }
  .ao-sticky-cta-text { font-size: 0.82rem; }
}

/* ───────── Mobile (best-practice responsive) ───────── */

/* Tablet & below */
@media (max-width: 1024px) {
  .ao-nav-inner { padding: 0 1.25rem; height: 64px; }
  .ao-mobile-nav { top: 64px; padding: 1rem 1.25rem 1.5rem; }
  .ao-logo { font-size: 1rem; }
}

/* Phone landscape & tablet portrait */
@media (max-width: 900px) {
  section { padding: 3.5rem 1.25rem; }
  .ao-section-header { margin-bottom: 2rem; }
  .ao-section-title { font-size: clamp(1.7rem, 5vw, 2.3rem) !important; }

  /* Trust band */
  .ao-trust-band { padding: 2rem 1.25rem; }
  .ao-trust-band .ao-logo-row { gap: 1.5rem 2rem; }
  .ao-trust-band .ao-logo-chip svg,
  .ao-trust-band .ao-logo-chip img { height: 22px !important; }

  /* How */
  .ao-how-step { padding: 1.5rem 1.25rem; }
  .ao-how-num { font-size: 2.2rem; }

  /* CTA block */
  .ao-cta { padding: 4rem 1.25rem; }
  .ao-cta p { font-size: 1rem; }

  /* Footer */
  .ao-footer { padding: 3rem 1.25rem 2rem; }
  .ao-footer-brand p { max-width: 100%; }

  /* FAQ */
  .ao-faq-q { font-size: 1rem; gap: 0.75rem; }
  .ao-faq-a { padding-left: 2.25rem; font-size: 0.94rem; }
}

/* Small phones */
@media (max-width: 600px) {
  section { padding: 3rem 1rem; }
  .ao-nav-inner { padding: 0 1rem; }
  .ao-mobile-nav { padding: 0.75rem 1rem 1.25rem; }

  /* Pill — prevent overflow on long text */
  .ao-pill { font-size: 0.72rem; padding: 0.35rem 0.75rem; white-space: normal; text-align: center; }

  /* Buttons fill on small screens */
  .ao-page-hero-actions { flex-direction: column; align-items: stretch; }
  .ao-page-hero-actions .ao-btn { justify-content: center; width: 100%; }
  .ao-btn { padding: 0.85rem 1.4rem; font-size: 0.94rem; }

  /* Hero compresses */
  .ao-page-hero { padding: 2rem 1rem; }
  .ao-page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.3rem) !important; margin: 0.75rem 0 1rem; }
  .ao-page-hero .lead { font-size: 1rem; margin-bottom: 1.25rem; }

  /* Trust band — 2-row wrap on mobile */
  .ao-trust-band { padding: 1.5rem 1rem; }
  .ao-trust-band .ao-logo-row { gap: 1rem 1.5rem; }
  .ao-trust-band .ao-logo-chip svg,
  .ao-trust-band .ao-logo-chip img { height: 18px !important; }

  /* CTA buttons stack inside CTA block */
  .ao-cta-sub { font-size: 0.78rem; gap: 0.6rem; }

  /* FAQ */
  .ao-faq-q { font-size: 0.96rem; }
  .ao-faq-a { padding-left: 0; padding-top: 0.5rem !important; }

  /* Sticky CTA — keep tappable */
  .ao-sticky-cta { left: 0.75rem; right: 0.75rem; transform: translateY(150%); max-width: none; }
  .ao-sticky-cta.show { transform: translateY(0); }

  /* Footer */
  .ao-footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .ao-footer-legal a { margin: 0 0.5rem; }

  /* Section header sub-text */
  .ao-section-sub { font-size: 0.98rem; }
}

/* Touch targets — ensure WCAG 44×44 min */
@media (hover: none) and (pointer: coarse) {
  .ao-mobile-nav a { padding: 0.95rem 0; min-height: 44px; }
  .ao-footer-col a { padding: 0.4rem 0; }
  .ao-faq-q { min-height: 44px; padding: 0.4rem 0; }
  .ao-nav-cta, .ao-btn { min-height: 44px; }
  /* Prevent iOS zoom on form focus */
  input, select, textarea { font-size: 16px !important; }
}

/* Print: hide chrome */
@media print {
  .ao-nav, .ao-mobile-nav, .ao-sticky-cta, .ao-footer { display: none !important; }
}
