/* ==========================================
   ABOUT US PAGE — /about-us
   au- prefix for all about-us specific classes
========================================== */

/* ── PAGE HERO ─────────────────────────── */
.au-page-hero {
  --au-soft: rgba(var(--theme-color-rgb), 0.08);
  --au-surface-alt: linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.07) 0%, var(--white) 100%);
  --au-shadow: 0 14px 30px rgba(31, 23, 38, 0.08);
}

.au-page-hero .page-heading .page-header-left {
  max-width: 62%;
}

.au-page-hero .page-heading h1 {
  max-width: 720px;
}

.au-page-hero .page-heading .breadcrumb-description {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
}

.au-page-hero .breadcrumb-cta-group {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.au-page-hero .breadcrumb-cta-group .breadcrumb-cta {
  margin-top: 0;
  border-radius: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-page-hero .breadcrumb-cta-group .breadcrumb-cta::before {
  background-color: var(--theme2);
}

.au-page-hero .breadcrumb-cta-secondary {
  border-radius: 10px;
  min-width: 0;
  min-height: 48px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-page-hero .breadcrumb-trust-line {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.au-page-hero .breadcrumb-image {
  width: 36%;
  min-width: 300px;
  max-width: 390px;
  height: 280px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(31, 23, 38, 0.12);
  backdrop-filter: blur(4px);
}

.au-page-hero .breadcrumb-image img {
  display: none;
}

/* ── HERO VISUAL — Systems Thinking Cycle ─ */
.au-systems-diagram {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
}

.au-systems-diagram__title {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.au-sys-cycle {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  grid-template-rows: auto 36px auto;
  gap: 0;
  width: 100%;
  max-width: 260px;
  align-items: center;
  justify-items: center;
}

.au-sys-step {
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 8px;
  text-align: center;
  letter-spacing: 0.02em;
}

.au-sys-step--accent {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.46);
}

.au-sys-arr {
  color: rgba(255, 255, 255, 0.44);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
}

.au-sys-arr--v-up {
  grid-column: 1;
  grid-row: 2;
  flex-direction: column;
}

.au-sys-arr--v-down {
  grid-column: 3;
  grid-row: 2;
  flex-direction: column;
}

.au-sys-center {
  grid-column: 2;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.28);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BASE SECTION ───────────────────────── */
.au-section {
  position: relative;
  padding: 96px 0;
}

.au-section[id] {
  scroll-margin-top: 120px;
}

.au-section--tint {
  background: linear-gradient(180deg, rgba(var(--theme-color-rgb), 0.05) 0%, var(--white) 100%);
}

.au-section--white {
  background: var(--white);
}

.au-section--soft {
  background: rgba(var(--theme-color-rgb), 0.04);
}

/* ── EYEBROW LABEL ──────────────────────── */
.au-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.22);
  background: rgba(var(--theme-color-rgb), 0.08);
  color: var(--theme);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 7px 14px;
  margin-bottom: 16px;
}

/* ── 3/4 : 1/4 SPLIT LAYOUT ────────────── */
.au-split {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: start;
}

.au-main h2 {
  margin: 0 0 22px;
}

.au-main > p,
.au-main .au-lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.76;
  color: var(--text);
  max-width: 820px;
}

.au-main > p:last-child {
  margin-bottom: 0;
}

.au-aside {
  position: sticky;
  top: 110px;
}

.au-section-head {
  max-width: 860px;
  margin: 0 auto 42px;
}

.au-section-head h2 {
  margin: 0;
}

/* ── STORY SECTION ──────────────────────── */
.au-story-body {
  display: grid;
  gap: 18px;
}

.au-story-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.76;
  color: var(--text);
}

/* Quote callout */
.au-quote {
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.14);
  background: rgba(var(--theme-color-rgb), 0.04);
  padding: 30px 24px 24px;
  position: relative;
  overflow: hidden;
}

.au-quote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 16px;
  font-size: 72px;
  line-height: 1;
  color: rgba(var(--theme-color-rgb), 0.15);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

.au-quote__text {
  margin: 0 0 14px;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.au-quote__attr {
  margin: 0;
  color: var(--theme);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── PRINCIPLES SECTION ─────────────────── */
.au-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.au-principle {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.au-principle__icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(var(--theme-color-rgb), 0.09);
  border: 1px solid rgba(var(--theme-color-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.au-principle__icon-wrap i {
  color: var(--theme);
  font-size: 18px;
}

.au-principle__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  line-height: 1.3;
}

.au-principle__text {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.68;
}

/* ── DIFFERENT SECTION CARDS ───────────── */
.au-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.au-diff-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.03) 0%, var(--white) 100%);
  border: 1px solid rgba(var(--theme-color-rgb), 0.08);
  box-shadow: 0 10px 30px rgba(31, 23, 38, 0.04);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.au-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 23, 38, 0.08);
  border-color: rgba(var(--theme-color-rgb), 0.16);
}

.au-diff-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(var(--theme-color-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-color-rgb), 0.12);
}

.au-diff-icon i {
  color: var(--theme);
  font-size: 20px;
}

.au-diff-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  color: var(--header);
  line-height: 1.35;
}

.au-diff-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.66;
}

/* ── EXPERIENCE DOMAIN GRID ───────────── */
.au-exp-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.76;
}

.au-exp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.au-exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
  box-shadow: 0 10px 30px rgba(31, 23, 38, 0.04);
  padding: 30px 20px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.au-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 23, 38, 0.08);
  border-color: rgba(var(--theme-color-rgb), 0.2);
}

.au-exp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(var(--theme-color-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-rgb), 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.au-exp-icon i {
  color: var(--theme);
  font-size: 22px;
}

.au-exp-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  line-height: 1.35;
}

.au-exp-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

/* ── COMPETENCIES STRIP ──────────────── */
.au-comp-strip {
  border-radius: 18px;
  background: linear-gradient(135deg, #1e1529 0%, #2d1f3d 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.au-comp-strip__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.au-comp-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.au-comp-strip__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.au-comp-strip__tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.au-comp-strip__tag i {
  color: var(--theme2);
  font-size: 10px;
}

/* ── FOUNDER SECTION ──────────────────── */
.au-founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}

.au-founder__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 23, 38, 0.12);
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
}

.au-founder__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 60%, rgba(var(--theme-color-rgb), 0.08) 100%);
  pointer-events: none;
}

.au-founder__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 4.5;
}

.au-founder__content h2 {
  margin: 0 0 6px;
  font-size: 32px;
}

.au-founder__role {
  margin: 0 0 20px !important;
  color: var(--theme) !important;
  font-size: 15px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.au-founder__content > p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.76;
  color: var(--text);
}

.au-founder__content > p:last-of-type {
  margin-bottom: 28px;
}

.au-founder__highlights {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(var(--theme-color-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--theme-color-rgb), 0.1);
}

.au-founder__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.au-founder__stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme);
  line-height: 1.2;
}

.au-founder__stat-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.au-founder__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.au-founder__links .theme-btn {
  border-radius: 10px;
  min-height: 48px;
  padding: 14px 28px;
}

.au-founder__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.18);
  background: rgba(var(--theme-color-rgb), 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.au-founder__social:hover {
  background: rgba(var(--theme-color-rgb), 0.1);
  border-color: rgba(var(--theme-color-rgb), 0.3);
  color: var(--header);
}

.au-founder__social i {
  font-size: 16px;
}

/* ── TAG PANEL ─────────────────────────── */
.au-tag-panel {
  border-radius: 20px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.14);
  background: var(--au-surface-alt, linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.06) 0%, var(--white) 100%));
  box-shadow: 0 12px 34px rgba(31, 23, 38, 0.06);
  padding: 24px 22px;
}

.au-tag-panel__title {
  margin: 0 0 16px;
  color: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.au-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.au-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.15);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  box-shadow: 0 3px 10px rgba(31, 23, 38, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.au-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(31, 23, 38, 0.06);
  border-color: rgba(var(--theme-color-rgb), 0.24);
  color: var(--header);
}

/* ── ICON CLUSTER (aside) ───────────────── */
.au-icon-cluster {
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.14);
  background: var(--au-surface-alt, linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.06) 0%, var(--white) 100%));
  box-shadow: 0 8px 24px rgba(31, 23, 38, 0.06);
  padding: 22px 18px;
  display: grid;
  gap: 16px;
}

.au-icon-cluster__title {
  margin: 0;
  color: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.au-icon-cluster__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.au-icon-cluster__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(var(--theme-color-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-rgb), 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-icon-cluster__icon i {
  color: var(--theme);
  font-size: 16px;
}

.au-icon-cluster__label {
  color: var(--header);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

/* ── APPROACH SECTION ───────────────────── */
.au-approach-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.au-approach-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.12);
  background: linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.04) 0%, var(--white) 100%);
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(31, 23, 38, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.au-approach-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--theme-color-rgb), 0.24);
  box-shadow: 0 10px 26px rgba(31, 23, 38, 0.06);
}

.au-approach-item__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.3);
}

.au-approach-item__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--header);
  line-height: 1.3;
}

.au-approach-item__text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.66;
}

/* ── LOOP DIAGRAM (aside) ───────────────── */
.au-diagram {
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.14);
  background: linear-gradient(145deg, rgba(var(--theme-color-rgb), 0.06) 0%, var(--white) 100%);
  box-shadow: 0 8px 24px rgba(31, 23, 38, 0.06);
  padding: 20px 18px;
}

.au-diagram__title {
  margin: 0 0 16px;
  color: var(--header);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.au-loop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.au-loop__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.au-loop__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.18);
  background: rgba(var(--theme-color-rgb), 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-loop__icon i {
  color: var(--theme);
  font-size: 17px;
}

.au-loop__label {
  margin-top: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.au-loop__arrow {
  color: rgba(var(--theme-color-rgb), 0.34);
  font-size: 14px;
  line-height: 1.5;
  margin: 2px 0;
}

/* ── AUDIENCE SECTION (centered) ───────── */
.au-section--audience {
  text-align: center;
}

.au-section--audience .au-eyebrow {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.au-section--audience h2 {
  margin: 0 0 34px;
}

.au-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.au-audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
  box-shadow: 0 10px 30px rgba(31, 23, 38, 0.04);
  padding: 34px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.au-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 23, 38, 0.08);
  border-color: rgba(var(--theme-color-rgb), 0.18);
}

.au-audience-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(var(--theme-color-rgb), 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.12);
}

.au-audience-icon i {
  color: var(--theme);
  font-size: 24px;
}

.au-audience-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  margin: 0 0 10px;
  line-height: 1.35;
}

.au-audience-card p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.au-audience-cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.au-audience-cta .au-cta-primary {
  min-height: 48px;
  border-radius: 10px;
  min-width: 0;
  padding: 14px 28px;
}

.au-audience-cta .au-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.2s ease;
}

.au-audience-cta .au-cta-link:hover {
  color: var(--header);
}

/* ── WHAT WE BUILD SECTION ──────────────── */
.au-build-header {
  margin-bottom: 44px;
}

.au-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 48px;
}

.au-build-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(var(--theme-color-rgb), 0.1);
}

.au-build-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.au-build-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 11px;
  background: rgba(var(--theme-color-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-rgb), 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.au-build-item__icon i {
  color: var(--theme);
  font-size: 16px;
}

.au-build-item__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  line-height: 1.3;
}

.au-build-item__text {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.58;
}

/* ── SERVICE GRID ──────────────────────── */
.au-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.au-service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.12);
  background: var(--white);
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(31, 23, 38, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.au-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 23, 38, 0.08);
  border-color: rgba(var(--theme-color-rgb), 0.2);
}

.au-service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(var(--theme-color-rgb), 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
}

.au-service-icon i {
  color: var(--theme);
  font-size: 22px;
}

.au-service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.au-service-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--header);
}

.au-service-content p {
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.66;
  flex: 1;
}

.au-service-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme);
  font-weight: 600;
  text-decoration: none;
}

.au-service-card__link:hover {
  color: var(--header);
}

/* ── FOCUS STATES ───────────────────────── */
.au-audience-cta .au-cta-primary:focus-visible,
.au-audience-cta .au-cta-link:focus-visible,
.au-service-card__link:focus-visible,
.au-approach-item:focus-visible,
.au-page-hero .breadcrumb-cta:focus-visible,
.au-page-hero .breadcrumb-cta-secondary:focus-visible {
  outline: 2px solid var(--theme2);
  outline-offset: 2px;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1199px) {
  .au-split {
    gap: 44px;
  }

  .au-diff-grid,
  .au-service-grid,
  .au-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .au-exp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .au-founder {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .au-page-hero .page-heading .page-header-left {
    max-width: 100%;
  }

  .au-page-hero .breadcrumb-image {
    width: 100%;
    max-width: 440px;
    min-width: 0;
    height: 210px;
  }

  .au-section {
    padding: 72px 0;
  }

  .au-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .au-aside {
    position: static;
  }

  .au-diff-grid,
  .au-service-grid {
    grid-template-columns: 1fr;
  }

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

  .au-comp-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .au-founder {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .au-founder__photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .au-founder__content .au-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 767px) {
  .au-section {
    padding: 60px 0;
  }

  .au-main > p,
  .au-main .au-lead,
  .au-story-body p {
    font-size: 16px;
  }

  .au-build-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .au-build-item {
    border-bottom: 1px solid rgba(var(--theme-color-rgb), 0.1) !important;
  }

  .au-build-item:last-child {
    border-bottom: none !important;
  }

  .au-principle__title,
  .au-approach-item__title {
    font-size: 17px;
  }

  .au-diff-card,
  .au-service-card {
    padding: 20px 18px;
  }

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

  .au-exp-card {
    padding: 24px 18px 22px;
  }

  .au-founder__highlights {
    gap: 18px;
  }

  .au-founder__stat-num {
    font-size: 20px;
  }

  .au-founder__links {
    flex-direction: column;
    align-items: stretch;
  }

  .au-founder__links .theme-btn,
  .au-founder__social {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .au-page-hero .breadcrumb-cta-group {
    gap: 10px;
  }

  .au-page-hero .breadcrumb-cta-group .breadcrumb-cta,
  .au-page-hero .breadcrumb-cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

  .au-audience-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .au-audience-cta .au-cta-primary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .au-sys-step {
    font-size: 11px;
    padding: 9px 6px;
  }
}

/* ══════════════════════════════════════════
   AI CONSULTATION SECTION
   ══════════════════════════════════════════ */

/* Section tint — distinct from the alternating white/tint pattern */
.au-section--ai {
  background: linear-gradient(
    180deg,
    rgba(var(--theme-color-rgb), 0.06) 0%,
    var(--white) 60%,
    var(--white) 100%
  );
}

/* Sub-labels within the left column
   e.g. "What an AI Consultation Covers" */
.au-ai-sublabel {
  display: block;
  margin: 28px 0 12px;
  color: var(--header);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.au-ai-sublabel:first-of-type {
  margin-top: 0;
}

/* Checklist — icon pill + text rows */
.au-ai-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.au-ai-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.au-ai-list li i {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(var(--theme-color-rgb), 0.12);
  color: var(--theme);
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Who-it's-for compact list */
.au-ai-who {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.au-ai-who li {
  position: relative;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  padding-left: 16px;
}

.au-ai-who li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme);
  position: absolute;
  left: 0;
  top: 10px;
}

/* CTA row at base of left column */
.au-ai-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.au-ai-cta .au-ai-btn-primary {
  min-height: 48px;
  border-radius: 10px;
  min-width: 0;
  padding: 14px 28px;
}

.au-ai-cta .au-ai-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.2s ease;
}

.au-ai-cta .au-ai-btn-secondary:hover {
  color: var(--header);
}

/* ── AI Opportunity Map diagram (aside) ── */
.au-opp-map {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.au-opp-step {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.16);
  background: rgba(var(--theme-color-rgb), 0.05);
  padding: 11px 14px;
  transition: background 0.2s ease;
}

.au-opp-step:hover {
  background: rgba(var(--theme-color-rgb), 0.1);
}

.au-opp-step__num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.au-opp-step__label {
  color: var(--header);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.au-opp-arrow {
  text-align: center;
  color: rgba(var(--theme-color-rgb), 0.34);
  font-size: 13px;
  line-height: 1.4;
  margin: 3px 0;
}

/* Focus states for new elements */
.au-ai-cta .au-ai-btn-primary:focus-visible,
.au-ai-cta .au-ai-btn-secondary:focus-visible {
  outline: 2px solid var(--theme2);
  outline-offset: 2px;
}

/* Responsive additions for AI section */
@media (max-width: 767px) {
  .au-ai-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .au-ai-cta .au-ai-btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .au-ai-sublabel {
    margin-top: 22px;
  }
}

@media (max-width: 575px) {
  .au-ai-cta .au-ai-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
