/* ==========================================================================
   AI PAGE - Apple-Inspired Marketing Layout
   Ground-up rebuild with product showcases, scrolling logos, and trust signals
   ========================================================================== */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.ai-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--page-bg);
  padding: 0;
  padding-top: 72px; /* Account for fixed nav */
  padding-bottom: var(--space-6xl);
  position: relative;
  margin-top: -72px; /* Pull gradient behind navbar */
  overflow: hidden;
}

.ai-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.ai-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.ai-hero .container {
  position: relative;
  z-index: 2;
}

.ai-hero__content {
  text-align: left;
  max-width: 700px;
}

.ai-hero .eyebrow {
  color: var(--moss);
  margin-bottom: var(--space-md);
}

.ai-hero__title {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: var(--type-h1-display-hero-weight);
  font-family: var(--type-display-family);
  line-height: 1.15;
  letter-spacing: var(--type-h1-display-hero-track);
  color: #ffffff;
  margin-bottom: var(--type-band-title-to-body-gap);
}

.ai-hero__lead {
  font-size: var(--type-lead-size);
  line-height: var(--type-lead-line);
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 0 var(--type-band-lede-to-cta-gap);
}

.ai-hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.ai-hero__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.ai-hero__actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Dark Mode Hero */
html[data-theme="dark"] .ai-hero {
  background: var(--page-bg);
}

html[data-theme="dark"] .ai-hero .eyebrow {
  color: var(--dew);
}

html[data-theme="dark"] .ai-hero__title {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-hero__lead {
  color: rgba(var(--rgb-eggshell-sky), 0.7);
}

/* ==========================================================================
   AI RESOURCES - Card Grid (Meta-inspired)
   ========================================================================== */

.ai-resources {
  padding: var(--space-6xl) 0;
  background: var(--page-bg);
}

.ai-resources__header {
  text-align: center;
  margin-bottom: 64px;
}

.ai-resources__header .ai-section-title {
  /* Uses .display-title--lg from components.css */
  margin-bottom: 16px;
}

.ai-resources__intro {
  font-size: var(--type-lead-size);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.5;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.ai-resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
}

.ai-resource-item {
  background: var(--glass-marketing-gradient);
  backdrop-filter: var(--glass-marketing-filter);
  -webkit-backdrop-filter: var(--glass-marketing-filter);
  border: var(--glass-marketing-border);
  border-radius: var(--radius-card);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  box-shadow: var(--glass-marketing-shadow-stacked);
  transition: var(--transition-card);
}

.ai-resource-item:hover {
  box-shadow: var(--glass-marketing-shadow-hover);
  transform: translateY(-4px);
}

.ai-resource-item__icon {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f8fa 0%, #e8e9eb 100%);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.ai-resource-item__icon img {
  max-width: 120px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Convert to moss color using filters */
  filter: brightness(0) saturate(100%) invert(44%) sepia(11%) saturate(1089%) hue-rotate(116deg) brightness(94%) contrast(88%);
  opacity: 0.8;
}

.ai-resource-item__title {
  font-size: 24px;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.3;
  color: var(--bark);
  margin: 0;
}

.ai-resource-item__description {
  font-size: var(--type-body-size);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex-grow: 1;
}

.ai-resource-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  color: var(--moss);
  text-decoration: none;
  transition: gap 200ms ease;
  margin-top: auto;
}

.ai-resource-item__link:hover {
  gap: 10px;
}

/* Dark Mode */
html[data-theme="dark"] .ai-resources {
  background: var(--page-bg);
}

html[data-theme="dark"] .ai-resources__header .ai-section-title {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-resources__intro {
  color: var(--dew);
}

html[data-theme="dark"] .ai-resource-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(147, 177, 166, 0.15);
}

html[data-theme="dark"] .ai-resource-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(147, 177, 166, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .ai-resource-item__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

html[data-theme="dark"] .ai-resource-item__icon img {
  /* Convert to dew color for dark mode */
  filter: brightness(0) saturate(100%) invert(73%) sepia(8%) saturate(729%) hue-rotate(107deg) brightness(93%) contrast(86%);
  opacity: 0.9;
}

html[data-theme="dark"] .ai-resource-item__title {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-resource-item__description {
  color: var(--dew);
}

html[data-theme="dark"] .ai-resource-item__link {
  color: var(--dew);
}

/* ==========================================================================
   FEATURE HERO - Meta "Latest AI Advancements" Style
   ========================================================================== */

.ai-feature-hero {
  padding: var(--space-6xl) 0;
  background: var(--page-bg);
}

.ai-feature-hero__title {
  font-size: 56px;
  font-weight: 400;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.1;
  color: var(--bark);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.ai-feature-hero__card {
  background: var(--glass-warm-sage);
  backdrop-filter: var(--glass-marketing-filter);
  -webkit-backdrop-filter: var(--glass-marketing-filter);
  border: var(--glass-marketing-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6xl) var(--space-5xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-marketing-shadow);
}

.ai-feature-hero__card::before {
  content: '60';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  font-size: 280px;
  font-weight: 700;
  font-family: "Libre Baskerville", Georgia, serif;
  color: rgba(92, 131, 116, 0.08);
  line-height: 1;
  pointer-events: none;
}

.ai-feature-hero__content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.ai-feature-hero__subtitle {
  font-size: 32px;
  font-weight: 400;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.3;
  color: var(--bark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ai-feature-hero__description {
  font-size: 18px;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.ai-feature-hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Dark Mode */
html[data-theme="dark"] .ai-feature-hero__title {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-feature-hero__card {
  background: linear-gradient(135deg, rgba(92, 131, 116, 0.15) 0%, rgba(92, 131, 116, 0.08) 100%);
}

html[data-theme="dark"] .ai-feature-hero__card::before {
  color: rgba(147, 177, 166, 0.05);
}

html[data-theme="dark"] .ai-feature-hero__subtitle {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-feature-hero__description {
  color: var(--dew);
}

/* ==========================================================================
   PRODUCT SHOWCASE (Asymmetric Grid)
   ========================================================================== */

.ai-product-showcase {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(
    180deg,
    rgba(var(--rgb-moss), 0.02) 0%,
    rgba(var(--rgb-moss), 0.04) 100%
  );
}

.ai-product-showcase:first-of-type {
  background: linear-gradient(
    180deg,
    rgba(var(--rgb-moss), 0.02) 0%,
    rgba(var(--rgb-moss), 0.03) 100%
  );
}

.ai-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* Reverse layout for alternating sections */
.ai-product-showcase--reverse .ai-showcase-grid {
  grid-template-columns: 1.2fr 1fr;
}

.ai-showcase__label {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(var(--rgb-moss), 0.12);
  color: var(--moss);
  border-radius: var(--radius-pill);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.ai-showcase__content h2 {
  font-size: var(--type-h2-display-md-size);
  font-weight: var(--type-h2-weight);
  font-family: var(--type-display-family);
  line-height: var(--type-h2-line-display);
  letter-spacing: var(--type-h2-track);
  color: var(--text);
  margin-bottom: var(--type-band-title-to-body-gap);
}

.ai-showcase__content p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.ai-stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
}

.ai-stats-list li {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.ai-stats-list li strong {
  color: var(--moss);
  font-weight: var(--type-weight-black);
  font-size: 1.125rem;
}

.ai-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--type-body-size);
  font-weight: var(--type-strong-weight);
  color: var(--moss);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-soft);
}

.ai-showcase__cta:hover {
  color: var(--text);
}

.ai-showcase__media {
  position: relative;
  border-radius: var(--radius-media-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-elevated);
}

.ai-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dark Mode Product Showcase */
html[data-theme="dark"] .ai-showcase__label {
  background: rgba(var(--rgb-dew), 0.12);
  color: var(--dew);
}

html[data-theme="dark"] .ai-showcase__content h2 {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-stats-list li strong {
  color: var(--dew);
}

html[data-theme="dark"] .ai-showcase__cta {
  color: var(--dew);
}

html[data-theme="dark"] .ai-showcase__cta:hover {
  color: var(--eggshell-sky);
}

/* ==========================================================================
   CAPABILITIES SECTION (Card-in-card carousel)
   ========================================================================== */

.ai-capabilities {
  padding: var(--space-6xl) 0;
  background: var(--page-bg);
}

.ai-section-title {
  /* Match .ai-feature-hero__title styling */
  font-size: 56px;
  font-weight: 400;
  font-family: var(--type-display-family);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-3xl);
}

html[data-theme="dark"] .ai-section-title {
  color: var(--eggshell-sky);
}

/* Note: Carousel styles now handled by global .carousel component in components.css */

/* ==========================================================================
   FULL-WIDTH VISUAL BREAK
   ========================================================================== */

.ai-visual-break {
  padding: var(--space-5xl) 0;
  background: rgba(var(--rgb-moss), 0.02);
}

.container-wide {
  max-width: var(--content-wide-max);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

.ai-visual-break img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-media-lg);
  box-shadow: var(--shadow-8);
}

html[data-theme="dark"] .ai-visual-break {
  background: rgba(var(--rgb-dew), 0.02);
}

/* ==========================================================================
   WHERE AI DOESN'T BELONG SECTION (Meta sticky 2-column pattern)
   ========================================================================== */

.ai-boundaries {
  padding: var(--space-6xl) 0;
  background: var(--web-wash);
}

/* 2-Column Layout: Sticky left, scrolling right */
.ai-boundaries__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-6xl);
  align-items: start;
}

/* Left Sidebar - Sticky */
.ai-boundaries__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-3xl));
}

.ai-boundaries__eyebrow {
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--space-md);
}

.ai-boundaries__intro {
  font-size: var(--type-body-size-lg);
  line-height: var(--type-body-line);
  color: var(--muted);
  margin-top: var(--space-lg);
}

/* Right Content - Scrolls */
.ai-boundaries__content {
  /* Content flows naturally */
}

/* Hero Image */
.ai-boundaries__hero {
  margin: 0 0 var(--space-2xl) 0;
}

.ai-boundaries__hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-media-lg);
}

/* Description header below image */
.ai-boundaries__description {
  font-size: var(--type-h3-size-fluid);
  font-weight: var(--type-h3-weight);
  font-family: var(--type-display-family);
  line-height: var(--type-h3-line);
  color: var(--text);
  margin: 0 0 var(--space-5xl) 0;
  max-width: 900px;
}

/* Philosophy eyebrow */
.ai-philosophy-eyebrow {
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 var(--space-xl) 0;
  opacity: 0.7;
}

/* Philosophy Cards (3-column grid) - Fully visible with borders */
.ai-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-5xl);
}

/* Philosophy Grid Mobile Responsive */
@media (max-width: 900px) {
  .ai-philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .ai-philosophy-card {
    padding: var(--space-2xl) var(--space-lg);
  }
}

.ai-philosophy-card {
  background: var(--glass-marketing-gradient);
  backdrop-filter: var(--glass-marketing-filter);
  -webkit-backdrop-filter: var(--glass-marketing-filter);
  border: var(--glass-marketing-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  transition: var(--transition-card);
  box-shadow: var(--glass-marketing-shadow);
}

.ai-philosophy-card:hover {
  box-shadow: var(--glass-marketing-shadow-hover);
  transform: translateY(-4px);
}

.ai-philosophy-card__label {
  display: inline-block;
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-track);
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--space-lg);
  opacity: 0.7;
}

.ai-philosophy-card h3 {
  font-size: var(--type-h4-size);
  font-weight: 600;
  font-family: var(--type-display-family);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.ai-philosophy-card p {
  font-size: var(--type-body-size);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Protection Areas Accordion - Clean rebuild */
.ai-protection-areas {
  margin-top: 80px;
}

.ai-protection-areas__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 32px;
  opacity: 0.7;
}

/* Note: Accordion styles now handled by global .accordion component in components.css */

/* ==========================================================================
   TRUST SECTION (Asymmetric layout with intro + grid)
   ========================================================================== */

.ai-trust {
  padding: var(--space-6xl) 0;
  background: var(--page-bg);
}

.ai-trust-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-5xl);
}

.ai-trust__intro {
  position: sticky;
  top: calc(72px + var(--space-2xl));
  align-self: start;
}

.ai-trust__lead {
  font-size: var(--type-lead-size);
  line-height: var(--type-lead-line);
  color: var(--muted);
  margin-top: var(--space-lg);
}

.ai-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4xl);
}

.ai-trust-item h3 {
  font-size: var(--type-h3-size-fluid);
  font-weight: var(--type-h3-weight);
  font-family: var(--type-ui-family);
  line-height: var(--type-h-ui-line);
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.ai-trust-item p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  margin: 0;
}

/* Dark Mode */
html[data-theme="dark"] .ai-section-title {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-capability-item h3,
html[data-theme="dark"] .ai-boundary-item h3,
html[data-theme="dark"] .ai-trust-item h3 {
  color: var(--eggshell-sky);
}

html[data-theme="dark"] .ai-boundaries {
  background: rgba(var(--rgb-white), 0.03);
}

/* ==========================================================================
   CTA HERO - Meta Style (Text Overlay on Image)
   ========================================================================== */

.ai-cta {
  padding: var(--space-6xl) 0;
  background: var(--page-bg);
}

.ai-cta-hero {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.ai-cta-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ai-cta-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  padding: var(--space-5xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.ai-cta-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.ai-cta-hero__title {
  font-size: var(--type-h2-display-md-size);
  font-weight: var(--type-h2-weight);
  font-family: var(--type-display-family);
  line-height: var(--type-h2-line-tight);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  letter-spacing: var(--type-h2-track);
  max-width: 600px;
}

.ai-cta-hero__description {
  font-size: var(--type-lead-size);
  line-height: var(--type-lead-line);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Dark Mode CTA */
html[data-theme="dark"] .ai-cta-hero__overlay {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 900px) {
  .ai-hero {
    min-height: auto;
    padding: var(--space-5xl) 0 var(--space-4xl);
  }

  .ai-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Split stat section stacks */
  .ai-split-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .ai-split__media {
    order: -1; /* Image goes first on mobile */
  }

  /* Carousel stacks on tablet */
  .ai-carousel__card {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    min-height: auto;
  }

  .ai-carousel__media {
    min-height: 280px;
  }

  /* Full-width visual adjusts padding */
  .ai-visual-break {
    padding: var(--space-3xl) 0;
  }

  .container-wide {
    padding: 0 var(--space-lg);
  }

  /* Boundaries sidebar layout stacks */
  .ai-boundaries__layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .ai-boundaries__sidebar {
    position: static;
  }

  /* Trust section stacks */
  .ai-trust-layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .ai-trust__intro {
    position: static; /* Remove sticky on mobile */
  }

  .ai-cta-hero {
    height: 350px;
  }

  .ai-cta-hero__overlay {
    padding: 48px 40px;
  }

  .ai-cta-hero__title {
    font-size: 36px;
  }
}

/* AI Resources Grid Responsive */
@media (max-width: 900px) {
  .ai-resources__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .ai-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .ai-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .ai-resources__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-resource-item {
    padding: var(--space-2xl) var(--space-lg);
  }

  .ai-feature-hero__title {
    font-size: 40px;
  }

  .ai-feature-hero__card {
    padding: 56px 40px;
  }

  .ai-feature-hero__card::before {
    font-size: 180px;
    right: 5%;
  }

  .ai-feature-hero__subtitle {
    font-size: 28px;
  }

  /* Mobile carousel adjustments */
  .ai-carousel__card {
    padding: var(--space-lg);
  }

  .ai-carousel__media {
    min-height: 240px;
  }

  .ai-carousel__content-card {
    padding: var(--space-lg);
  }

  .ai-carousel__controls {
    justify-content: center;
  }

  .ai-cta-hero {
    height: 300px;
  }

  .ai-cta-hero__overlay {
    padding: 32px 24px;
  }

  .ai-cta-hero__title {
    font-size: 32px;
  }
}

/* Pause animation only for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ai-resources__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-feature-hero__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .ai-feature-hero__card {
    padding: 40px 24px;
  }

  .ai-feature-hero__card::before {
    font-size: 120px;
    right: -5%;
  }

  .ai-feature-hero__subtitle {
    font-size: 24px;
  }

  .ai-feature-hero__actions {
    flex-direction: column;
  }

  .ai-feature-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
