/* ==========================================================================
   Industries — Automation Consulting
   Builds on the global design system defined in ac-homepage.css
   Covers: Industries Index + 6 Individual Industry Landing Pages
   ========================================================================== */

/* ==========================================================================
   SECTION LABEL (inherited, local override for safety)
   ========================================================================== */
.ac-section-label {
  display: block;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ac-primary);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   INDUSTRIES INDEX — HERO
   ========================================================================== */
.ac-ind-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--ac-bg);
}

.ac-ind-hero__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-ind-hero > .wp-block-group,
.ac-ind-hero > .wp-block-heading,
.ac-ind-hero > .wp-block-paragraph,
.ac-ind-hero__badge-wrap,
.ac-ind-hero__title,
.ac-ind-hero__body {
  position: relative;
  z-index: 1;
}

.ac-ind-hero__badge-wrap {
  margin-bottom: 1.75rem !important;
}

.ac-ind-hero__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 1.25rem !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ac-ind-hero__body {
  max-width: 640px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
}

/* ==========================================================================
   INDUSTRIES INDEX — FEATURED GRID (Tier 1)
   6 large visual cards in 3x2 grid
   ========================================================================== */
.ac-ind-featured {
  position: relative;
  overflow: hidden;
}

.ac-ind-featured__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 0.5rem !important;
}

.ac-ind-featured__intro {
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
}

.ac-ind-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ac-ind-feat-card {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.12);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition), border-color var(--ac-transition);
  position: relative;
  overflow: hidden;
}

.ac-ind-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ac-primary), rgba(6, 207, 195, 0.8));
  opacity: 0;
  transition: opacity var(--ac-transition);
}

.ac-ind-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 169, 209, 0.15);
  border-color: rgba(7, 169, 209, 0.25);
}

.ac-ind-feat-card:hover::before {
  opacity: 1;
}

.ac-ind-feat-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(7, 169, 209, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ac-ind-feat-card__icon svg {
  width: 32px;
  height: 32px;
}

.ac-ind-feat-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.75rem;
}

.ac-ind-feat-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5A6B75;
  margin: 0 0 1.5rem;
  flex: 1;
}

.ac-ind-feat-card__link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ac-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap var(--ac-transition);
}

.ac-ind-feat-card:hover .ac-ind-feat-card__link {
  gap: 0.75rem;
}

.ac-ind-feat-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--ac-transition);
}

.ac-ind-feat-card:hover .ac-ind-feat-card__link svg {
  transform: translateX(3px);
}

/* Stagger delays for featured cards */
.ac-ind-featured__grid .ac-ind-feat-card.ac-fade-in:nth-child(2) { transition-delay: 0.08s; }
.ac-ind-featured__grid .ac-ind-feat-card.ac-fade-in:nth-child(3) { transition-delay: 0.16s; }
.ac-ind-featured__grid .ac-ind-feat-card.ac-fade-in:nth-child(4) { transition-delay: 0.24s; }
.ac-ind-featured__grid .ac-ind-feat-card.ac-fade-in:nth-child(5) { transition-delay: 0.32s; }
.ac-ind-featured__grid .ac-ind-feat-card.ac-fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   INDUSTRIES INDEX — DIRECTORY (Tier 2)
   Searchable full directory grouped by category
   ========================================================================== */
.ac-ind-directory {
  position: relative;
  overflow: hidden;
}

.ac-ind-directory__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 0.5rem !important;
}

.ac-ind-directory__intro {
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
}

/* Search box */
.ac-ind-search {
  max-width: 540px;
  margin: 0 auto 3rem;
  position: relative;
}

.ac-ind-search__input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  background: #FFFFFF;
  border: 2px solid rgba(7, 169, 209, 0.2);
  border-radius: 100px;
  outline: none;
  transition: border-color var(--ac-transition), box-shadow var(--ac-transition);
  box-sizing: border-box;
}

.ac-ind-search__input::placeholder {
  color: #8899A4;
}

.ac-ind-search__input:focus {
  border-color: var(--ac-primary);
  box-shadow: 0 0 0 4px rgba(7, 169, 209, 0.12);
}

.ac-ind-search__icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8899A4;
  pointer-events: none;
  transition: color var(--ac-transition);
}

.ac-ind-search__input:focus ~ .ac-ind-search__icon {
  color: var(--ac-primary);
}

/* No results message */
.ac-ind-no-results {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}

.ac-ind-no-results p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #5A6B75;
  margin: 0;
}

/* Directory grid */
.ac-ind-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Category card */
.ac-ind-dir-category {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.1);
  padding: 1.75rem;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}

.ac-ind-dir-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(7, 169, 209, 0.08);
}

.ac-ind-dir-category[hidden] {
  display: none;
}

.ac-ind-dir-category__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ac-primary);
}

.ac-ind-dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ac-ind-dir-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5A6B75;
  padding: 0.3rem 0;
  transition: color var(--ac-transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ac-ind-dir-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ac-primary);
  flex-shrink: 0;
  opacity: 0.5;
}

.ac-ind-dir-list li[hidden] {
  display: none;
}

.ac-ind-dir-list li:hover {
  color: var(--ac-primary);
}

/* ==========================================================================
   INDUSTRIES INDEX — CTA
   ========================================================================== */
.ac-ind-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 62, 76, 1) 0%, rgba(4, 32, 40, 1) 42%, rgba(1, 13, 18, 1) 85%);
  border-radius: 40px 40px 0 0;
}

.ac-ind-cta__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-ind-cta__title,
.ac-ind-cta__buttons,
.ac-ind-cta > .wp-block-paragraph,
.ac-ind-cta > .wp-block-group,
.ac-ind-cta > .wp-block-heading {
  position: relative;
  z-index: 2;
}

.ac-ind-cta__title {
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.25rem !important;
}

.ac-ind-cta__buttons {
  gap: 1rem;
}

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — HERO
   ========================================================================== */
.ac-indp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--ac-bg);
}

.ac-indp-hero__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-indp-hero > .wp-block-group,
.ac-indp-hero > .wp-block-heading,
.ac-indp-hero > .wp-block-paragraph,
.ac-indp-hero__badge-wrap,
.ac-indp-hero__title,
.ac-indp-hero__body,
.ac-indp-hero__ctas {
  position: relative;
  z-index: 1;
}

.ac-indp-hero__badge-wrap {
  margin-bottom: 1.75rem !important;
}

.ac-indp-hero__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 1.25rem !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ac-indp-hero__body {
  max-width: 640px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2.5rem !important;
}

.ac-indp-hero__ctas {
  gap: 1rem !important;
}

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — STATS (4 stat cards)
   Accenture-style horizontal stat strip
   ========================================================================== */
.ac-indp-stats {
  position: relative;
  overflow: hidden;
}

.ac-indp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ac-indp-stat-card {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.12);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition);
  position: relative;
  overflow: hidden;
}

.ac-indp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ac-primary);
  opacity: 0;
  transition: opacity var(--ac-transition);
}

.ac-indp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.12);
}

.ac-indp-stat-card:hover::before {
  opacity: 1;
}

.ac-indp-stat-card__number {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ac-primary);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.ac-indp-stat-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5A6B75;
  margin: 0;
}

/* Stat card icon */
.ac-indp-stat-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 169, 209, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ac-indp-stat-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Stagger delays */
.ac-indp-stats__grid .ac-indp-stat-card.ac-fade-in:nth-child(2) { transition-delay: 0.08s; }
.ac-indp-stats__grid .ac-indp-stat-card.ac-fade-in:nth-child(3) { transition-delay: 0.16s; }
.ac-indp-stats__grid .ac-indp-stat-card.ac-fade-in:nth-child(4) { transition-delay: 0.24s; }

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — CHALLENGES (6 cards)
   ========================================================================== */
.ac-indp-challenges {
  position: relative;
  overflow: hidden;
}

.ac-indp-challenges__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 0.5rem !important;
}

.ac-indp-challenges__intro {
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
}

.ac-indp-challenges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ac-indp-challenge-card {
  background: var(--ac-dark-card);
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.08);
  padding: 2rem 1.75rem;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition), border-color var(--ac-transition);
}

.ac-indp-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.1);
  border-color: rgba(7, 169, 209, 0.2);
}

.ac-indp-challenge-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(7, 169, 209, 0.08);
  border: 1px solid rgba(7, 169, 209, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ac-indp-challenge-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--ac-primary);
}

.ac-indp-challenge-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.65rem;
}

.ac-indp-challenge-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ac-text-muted);
  margin: 0;
}

/* Stagger delays */
.ac-indp-challenges__grid .ac-indp-challenge-card.ac-fade-in:nth-child(2) { transition-delay: 0.08s; }
.ac-indp-challenges__grid .ac-indp-challenge-card.ac-fade-in:nth-child(3) { transition-delay: 0.16s; }
.ac-indp-challenges__grid .ac-indp-challenge-card.ac-fade-in:nth-child(4) { transition-delay: 0.24s; }
.ac-indp-challenges__grid .ac-indp-challenge-card.ac-fade-in:nth-child(5) { transition-delay: 0.32s; }
.ac-indp-challenges__grid .ac-indp-challenge-card.ac-fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — HOW WE HELP (Capabilities, 6 cards)
   ========================================================================== */
.ac-indp-capabilities {
  position: relative;
  overflow: hidden;
}

.ac-indp-capabilities__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 0.5rem !important;
}

.ac-indp-capabilities__intro {
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 3rem !important;
}

.ac-indp-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ac-indp-cap-card {
  background: #FFFFFF;
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.12);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}

.ac-indp-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.12);
}

.ac-indp-cap-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(7, 169, 209, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ac-indp-cap-card__icon svg {
  width: 28px;
  height: 28px;
}

.ac-indp-cap-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.65rem;
}

.ac-indp-cap-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5A6B75;
  margin: 0;
  flex: 1;
}

/* Stagger delays */
.ac-indp-capabilities__grid .ac-indp-cap-card.ac-fade-in:nth-child(2) { transition-delay: 0.08s; }
.ac-indp-capabilities__grid .ac-indp-cap-card.ac-fade-in:nth-child(3) { transition-delay: 0.16s; }
.ac-indp-capabilities__grid .ac-indp-cap-card.ac-fade-in:nth-child(4) { transition-delay: 0.24s; }
.ac-indp-capabilities__grid .ac-indp-cap-card.ac-fade-in:nth-child(5) { transition-delay: 0.32s; }
.ac-indp-capabilities__grid .ac-indp-cap-card.ac-fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — CASE STUDY
   ========================================================================== */
.ac-indp-case {
  position: relative;
  overflow: hidden;
}

.ac-indp-case__card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--ac-dark-card);
  border-radius: var(--ac-radius-lg);
  border: 1px solid rgba(7, 169, 209, 0.12);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}

.ac-indp-case__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7, 169, 209, 0.1);
}

.ac-indp-case__logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: rgba(7, 169, 209, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(7, 169, 209, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.ac-indp-case__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ac-indp-case__content {
  flex: 1;
}

.ac-indp-case__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ac-primary);
  margin-bottom: 0.5rem;
}

.ac-indp-case__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ac-text-light);
  margin: 0 0 0.75rem;
}

.ac-indp-case__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ac-text-muted);
  margin: 0 0 1.25rem;
}

.ac-indp-case__metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ac-indp-case__metric {
  text-align: left;
}

.ac-indp-case__metric-value {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ac-primary);
  line-height: 1.2;
}

.ac-indp-case__metric-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ac-text-muted);
}

/* ==========================================================================
   INDIVIDUAL INDUSTRY PAGE — CTA
   ========================================================================== */
.ac-indp-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 62, 76, 1) 0%, rgba(4, 32, 40, 1) 42%, rgba(1, 13, 18, 1) 85%);
  border-radius: 40px 40px 0 0;
}

.ac-indp-cta__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ac-indp-cta__title,
.ac-indp-cta__buttons,
.ac-indp-cta > .wp-block-paragraph,
.ac-indp-cta > .wp-block-group,
.ac-indp-cta > .wp-block-heading {
  position: relative;
  z-index: 2;
}

.ac-indp-cta__title {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  margin-bottom: 1.25rem !important;
}

.ac-indp-cta__buttons {
  gap: 1rem !important;
  margin-top: 1.5rem !important;
}

/* ==========================================================================
   INDUSTRY INDEX — STATS LABEL (used above stat sections)
   ========================================================================== */
.ac-indp-stats__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ac-primary);
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE — Tablet (1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .ac-ind-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .ac-indp-case__card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .ac-indp-case__metrics {
    justify-content: center;
  }

  .ac-indp-case__metric {
    text-align: center;
  }
}

/* ==========================================================================
   RESPONSIVE — Small tablet / large phone (768px)
   ========================================================================== */
@media (max-width: 768px) {
  .ac-ind-hero {
    min-height: auto;
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
  }

  .ac-ind-featured__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-ind-dir-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-indp-hero {
    min-height: auto;
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
  }

  .ac-indp-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .ac-indp-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ac-indp-challenges__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-indp-capabilities__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ac-indp-case__card {
    padding: 2rem;
  }
}

/* ==========================================================================
   RESPONSIVE — Phone (480px)
   ========================================================================== */
@media (max-width: 480px) {
  .ac-ind-cta,
  .ac-indp-cta {
    border-radius: 24px 24px 0 0;
  }

  .ac-ind-cta__buttons,
  .ac-indp-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .ac-indp-stats__grid {
    grid-template-columns: 1fr;
  }

  .ac-indp-stat-card {
    padding: 1.5rem;
  }

  .ac-indp-challenge-card {
    padding: 1.5rem;
  }

  .ac-indp-cap-card {
    padding: 1.5rem;
  }

  .ac-ind-feat-card {
    padding: 1.5rem;
  }

  .ac-indp-case__card {
    padding: 1.5rem;
  }

  .ac-indp-case__logo {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .ac-ind-feat-card,
  .ac-indp-stat-card,
  .ac-indp-challenge-card,
  .ac-indp-cap-card,
  .ac-indp-case__card {
    transition: none;
  }
}
