/* ========================================
   DESIGN SYSTEM
   Course Fusion Website Styles
======================================== */

:root {
  --color-black: #000000;
  --color-gray-900: #1a1a1a;
  --color-gray-800: #2d2d2d;
  --color-gray-700: #404040;
  --color-gray-600: #525252;
  --color-gray-500: #737373;
  --color-gray-400: #a3a3a3;
  --color-gray-300: #d4d4d4;
  --color-gray-200: #e5e5e5;
  --color-gray-100: #f5f5f5;
  --color-gray-50: #fafafa;
  --color-white: #ffffff;
  
  --color-success: #16a34a;
  --color-success-bg: #dcfce7;
  --color-error: #dc2626;
  --color-error-bg: #fee2e2;
  
  --color-brand-start: #60a5fa;
  --color-brand-end: #6d28d9;
  --gradient-brand: linear-gradient(135deg, var(--color-brand-start) 0%, var(--color-brand-end) 100%);
  
  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Sora', sans-serif;
  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --content-width: 1120px;
  --narrow-width: 720px;

  /* Type scale (~1.2 minor third) */
  --text-xs:   0.75rem;   /* 12px  — eyebrows, badges, overlines */
  --text-sm:   0.875rem;  /* 14px  — captions, labels, meta */
  --text-base: 1rem;      /* 16px  — body */
  --text-lg:   1.125rem;  /* 18px  — large body, card headings */
  --text-xl:   1.25rem;   /* 20px  — lead / subtitle text */
  --text-2xl:  1.5rem;    /* 24px  — h4, about-quote */
  --text-3xl:  2rem;      /* 32px  — h2 */
  --text-4xl:  2.5rem;    /* 40px  — stat values, pricing amounts */
  --text-5xl:  3rem;      /* 48px  — hero / display */
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-900);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

/* Display font for headings & key text */
h1, h2, h3, h4, h5, h6,
.hero-title,
.split-title,
.cards-title,
.section-title,
.cta-title,
.cta-banner-title,
.stat-value,
.pricing-amount,
.pricing-name,
.nav-logo,
.card-title,
.comparison-title,
.timeline-title,
.testimonial-name,
.contact-info-title {
  font-family: var(--font-display);
}

/* ========================================
   NAVIGATION
======================================== */

.nav-bar {
  position: sticky;
  top: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  z-index: 100;
}

.nav-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}

.nav-link:hover {
  color: var(--color-gray-900);
  background: var(--color-gray-100);
}

.nav-link.active {
  color: var(--color-black);
  background: #e7edf8;
}

.nav-dropdown {
  display:inline-flex;
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--space-2);
  z-index: 101;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  color: var(--color-gray-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-dropdown-link:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

.nav-cta {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  background: var(--gradient-brand);
  border: none;
  border-radius: 500px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(109, 40, 217, 0.2);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.3);
  filter: brightness(1.08);
}

/* ========================================
   SECTIONS
======================================== */

.section {
  padding: var(--space-9) var(--space-5);
}

.section-alt {
  background: var(--color-gray-50);
}

.section-dark {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: var(--space-9) 0;
}

.stats-gradient {
  background: var(--gradient-brand);
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--narrow-width);
  margin: 0 auto;
}

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

.hero {
  padding: var(--space-10) var(--space-5);
  text-align: center;
}

/* 25% white overlay — softens background images */
.white-overlay {
  position: relative;
}

.white-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 0;
}

.white-overlay > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin-bottom: var(--space-5);
  max-width: 800px !important;
  margin: 0 auto;
  margin-bottom: 24px;
  text-align: center;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}


.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -20px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 500px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.25), 0 1px 3px rgba(109, 40, 217, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.3), 0 2px 6px rgba(109, 40, 217, 0.15);
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-gray-900);
  border: 1.5px solid var(--color-gray-200);
  position: relative;
}

/* Gradient border overlay — fades via opacity so there's no snap/flicker */
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient-brand);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15), 0 0 30px rgba(109, 40, 217, 0.1);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: 1rem;
}

/* ========================================
   SPLIT SECTIONS
======================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-content {
  max-width: 480px;
}

.split-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-gray-900);
}

.split-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.split-text {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  margin-bottom: var(--space-5);
}

.split-image {
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
}

/* ========================================
   CARDS
======================================== */

.cards-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.cards-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.cards-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

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

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: box-shadow 0.25s ease;
}

/* Gradient border overlay — same technique as .btn-secondary */
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-brand);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(96, 165, 250, 0.12), 0 0 40px rgba(109, 40, 217, 0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
  transition: color 0.25s ease, background 0.25s ease;
}

.card:hover .card-icon {
  color: var(--color-brand-end);
  background: rgba(109, 40, 217, 0.08);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.card-text {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ========================================
   COMPARISON
======================================== */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.comparison-col {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.comparison-col-highlight {
  background: url('https://cdn.midjourney.com/70cd2a5c-0058-4507-9f03-0a5af916737a/0_0.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.comparison-title {
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-5);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
}

.comparison-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-icon-positive {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.comparison-icon-negative {
  background: var(--color-error-bg);
  color: var(--color-error);
}

/* ========================================
   STATS
======================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
  position: relative;
  z-index: 1;
}


.stat-value {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

/* Colours for stats when inside the dark section */
.section-dark .stat-value {
  color: var(--color-white);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

/* ========================================
   TIMELINE
======================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.timeline-step {
  text-align: center;
}

.timeline-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto var(--space-4);
}

.timeline-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.timeline-text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-gray-200);
  border-radius: 50%;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

/* ========================================
   PRICING
======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.pricing-card-popular {
  border: 2px solid var(--color-gray-900);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gray-900);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 20px;
}

.pricing-name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin-bottom: var(--space-5);
}

.pricing-price {
  margin-bottom: var(--space-5);
}

.pricing-amount {
  font-size: var(--text-4xl);
  font-weight: 700;
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--color-gray-700);
}

.pricing-feature i {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  text-align: center;
}

/* ========================================
   FAQ
======================================== */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========================================
   CTA BANNER
======================================== */

.cta-banner {
  text-align: center;
  padding: var(--space-9) var(--space-5);
  background: var(--color-gray-900);
  color: var(--color-white);
  border-radius: var(--radius-xl);
}

.cta-banner-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.cta-banner-text {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
}

/* ========================================
   PILLS
======================================== */

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.pill {
  padding: 6px 14px;
  background: var(--color-gray-100);
  border-radius: 20px;
  font-size: var(--text-sm);
  color: var(--color-gray-700);
}

/* ========================================
   FOOTER
======================================== */

.footer {
  padding: 0;
  border-top: 1px solid var(--color-gray-200);
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-gray-700);
}

.footer-main {
  padding: var(--space-8) var(--space-5);
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.6;
}

.footer-newsletter {
  margin-top: var(--space-5);
}

.footer-newsletter-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
}

.footer-newsletter-row {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: 500px;
  padding: 4px 4px 4px var(--space-4);
  transition: border-color 0.2s ease;
}

.footer-newsletter-row:focus-within {
  border-color: var(--color-brand-start);
}

.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: none;
  background: transparent;
  color: var(--color-gray-900);
  outline: none;
}

.footer-newsletter-btn {
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-gray-500);
  transition: all 0.15s ease;
}

.footer-social a:hover {
  color: var(--color-gray-900);
  background: var(--color-gray-100);
}

.footer-group + .footer-group {
  margin-top: var(--space-6);
}

.footer-group {
  margin-bottom: 24px;
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 8px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col-links a {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col-links a:hover {
  color: var(--color-gray-900);
}

.footer-bottom {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-gray-100);
}

.footer-bottom-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

.footer-legal a {
  color: var(--color-gray-500);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-gray-700);
}

.footer-legal .separator {
  color: var(--color-gray-300);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray-300);
  flex-shrink: 0;
}

.status-dot.operational {
  background: var(--color-success);
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.4);
}

.status-dot.down {
  background: var(--color-error);
  box-shadow: 0 0 6px rgba(220, 38, 38, 0.4);
}

/* ========================================
   ABOUT SPECIFIC
======================================== */

.about-photo {
  width: 200px;
  height: 200px;
  background: var(--color-gray-200);
  border-radius: 50%;
  margin: 0 auto var(--space-6);
}

.about-quote {
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-gray-700);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}

.about-text {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

/* ========================================
   CONTACT
======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.contact-form {
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: 16px;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
}

.form-input,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
}

.contact-info-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-gray-700);
}

.contact-info-item i {
  color: var(--color-gray-500);
  margin-top: 2px;
}

/* ========================================
   USE CASE HERO
======================================== */

.use-case-hero {
  padding: var(--space-9) var(--space-5);
  background: var(--color-gray-900);
  color: var(--color-white);
}

.use-case-hero .hero-eyebrow {
  color: rgba(255,255,255,0.5);
}

.use-case-hero .hero-title {
  color: var(--color-white);
}

.use-case-hero .hero-subtitle {
  color: rgba(255,255,255,0.7);
}

/* Use-case hero gradient variants */
.use-case-hero--coaches {
  background: linear-gradient(135deg, #1a1035 0%, #1e1145 35%, #15103a 65%, #0f1a3d 100%);
}

.use-case-hero--creators {
  position: relative;
  background-size: cover;
  background-position: center;
}

.use-case-hero--creators::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,26,61,0.88) 0%, rgba(30,17,69,0.82) 40%, rgba(21,16,58,0.85) 70%, rgba(26,16,53,0.9) 100%);
  pointer-events: none;
}

.use-case-hero--creators > * {
  position: relative;
  z-index: 1;
}

.use-case-hero--corporate {
  position: relative;
  background-size: cover;
  background-position: center;
}

.use-case-hero--corporate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,40,0.9) 0%, rgba(22,20,50,0.85) 40%, rgba(15,20,45,0.88) 70%, rgba(20,16,42,0.92) 100%);
  pointer-events: none;
}

.use-case-hero--corporate > * {
  position: relative;
  z-index: 1;
}

.use-case-hero--education {
  background: linear-gradient(120deg, #0f1a3d 0%, #161440 35%, #1a1045 65%, #1e1248 100%);
}

/* ========================================
   SECTION TITLES
======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   MOBILE HAMBURGER MENU
======================================== */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 99;
  padding: var(--space-5);
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay .nav-link {
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.nav-mobile-overlay .nav-dropdown-content {
  position: static;
  display: block;
  box-shadow: none;
  border: none;
  padding-left: var(--space-4);
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}

.nav-mobile-overlay .nav-cta {
  margin-top: var(--space-4);
  text-align: center;
}

/* ========================================
   FEATURE LIST
======================================== */

.feature-list {
  list-style: none;
  margin-bottom: var(--space-5);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.feature-list li i {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

/* ========================================
   CTA SHOWCASE SECTION
======================================== */

.cta-section {
  position: relative;
  width: 100%;
  padding: 100px 60px;
  border-radius: 32px;
  overflow: hidden;
  cursor: default;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #eef4ff 0%,
    #efe8ff 20%,
    #f0ecff 40%,
    #ebe4ff 60%,
    #f3ebff 80%,
    #f0f5ff 100%
  );
}

.cta-spots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.spot-1 {
  width: 500px;
  height: 500px;
  background: rgba(96, 165, 250, 0.2);
  top: -15%;
  left: -10%;
}

.spot-2 {
  width: 450px;
  height: 450px;
  background: rgba(244, 114, 182, 0.15);
  top: 10%;
  right: -12%;
}

.spot-3 {
  width: 400px;
  height: 400px;
  background: rgba(109, 40, 217, 0.18);
  bottom: -20%;
  left: 25%;
}

.spot-4 {
  width: 350px;
  height: 350px;
  background: rgba(192, 132, 252, 0.2);
  bottom: 0%;
  right: 15%;
}

.spot-5 {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.15);
  top: 40%;
  left: 10%;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.95) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mask-image: radial-gradient(
    circle 180px at var(--mouse-x, -200px) var(--mouse-y, -200px),
    black 0%, transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle 180px at var(--mouse-x, -200px) var(--mouse-y, -200px),
    black 0%, transparent 100%
  );
}

.cta-section.hovering .cta-grid-glow {
  opacity: 1;
}

.cursor-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: var(--mouse-x, -200px);
  top: var(--mouse-y, -200px);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(28px);
}

.cta-section.hovering .cursor-glow {
  opacity: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-end);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.cta-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

.cta-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: var(--text-xl);
  color: #64648a;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pill-shaped buttons inside CTA */
.cta-section .btn {
  border-radius: 100px;
  font-weight: 600;
}

.cta-section .btn-secondary {
  backdrop-filter: blur(8px);
}

/* Trust badges */
.cta-trust {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: #8b8ba3;
}

.trust-item i {
  color: var(--color-brand-end);
}

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

/* Tablet and below */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }
  
  .split {
    gap: var(--space-6);
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    gap: var(--space-4);
  }
  
  .pricing-card {
    padding: var(--space-5);
  }
  
  .stats {
    gap: var(--space-5);
  }
  
  .timeline {
    gap: var(--space-4);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.25rem;
    --text-xl:  1.125rem;
  }

  .nav-links {
    display: none;
  }

  .cta-section {
    padding: 72px 28px;
    border-radius: 24px;
  }

  .cta-trust {
    gap: 20px;
  }

  .comparison {
    grid-template-columns: 1fr;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .hero {
    padding: var(--space-8) 0;
  }
  
  .hero-title {
    line-height: 1.2;
  }
  
  .hero-title br {
    display: none;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: var(--space-7) 0;
  }
  
  .split {
    flex-direction: column;
    gap: var(--space-5);
    grid-template-columns: 1fr;
  }
  
  .split-reverse {
    flex-direction: column;
  }
  
  .split-content {
    flex: none;
    width: 100%;
  }
  
  .split-image {
    flex: none;
    width: 100%;
    min-height: 200px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    flex-direction: column;
    gap: var(--space-5);
    grid-template-columns: 1fr;
  }
  
  .timeline-step {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-step::after {
    display: none;
  }
  
  .stats {
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  
  .pricing-card {
    padding: var(--space-5);
  }
  
  .faq-question {
    padding: var(--space-4);
  }
  
  .faq-answer {
    padding: 0 var(--space-4) var(--space-4);
  }
  
  .cta-banner {
    padding: var(--space-6);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .about-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --space-5: 20px;
    --space-6: 28px;
    --space-7: 40px;
    --space-8: 56px;
    --text-5xl: 1.75rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: var(--text-base);
  }
  
  .card {
    padding: var(--space-4);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   AI AURA SECTION
======================================== */

.section-ai-aura {
  position: relative;
  padding: var(--space-9) var(--space-5);
  background: #06060f;
  color: var(--color-white);
  overflow: hidden;
}

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

.aura-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.aura-blob--purple {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 70%);
  top: -20%;
  right: -5%;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

.aura-blob--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation: auraPulse 8s ease-in-out infinite alternate-reverse;
}

.aura-blob--pink {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: auraPulse 7s ease-in-out 1s infinite alternate;
}

@keyframes auraPulse {
  0%   { opacity: 0.5; transform: scale(0.9) translate(0, 0); }
  50%  { opacity: 0.8; transform: scale(1.05) translate(10px, -8px); }
  100% { opacity: 1;   transform: scale(1.15) translate(-5px, 5px); }
}

.section-ai-aura .split-content {
  max-width: 480px;
}

.section-ai-aura .split-eyebrow {
  color: rgba(192,132,252,0.8);
  border-left-color: var(--color-brand-end);
}

.section-ai-aura .split-title {
  color: var(--color-white);
}

.section-ai-aura .split-text {
  color: rgba(255,255,255,0.6);
}

.section-ai-aura .split-image {
  background: transparent;
  color: inherit;
}

/* ========================================
   VOICE AI VISUALISATION
======================================== */

.voice-viz {
  aspect-ratio: 1 / 1;
  background: rgb(10,10,26);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(109,40,217,0.15);
  box-shadow:
    0 0 80px rgba(109,40,217,0.12),
    0 0 160px rgba(96,165,250,0.06),
    inset 0 0 60px rgba(109,40,217,0.04);
}

.voice-viz::before {
  content: '';
  position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.2) 0%, rgba(96,165,250,0.08) 50%, transparent 70%);
  pointer-events: none;
  animation: vizGlow 4s ease-in-out infinite alternate;
}

.voice-viz::after {
  content: '';
  position: absolute;
  width: 90%; height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: vizGlow 6s ease-in-out 1s infinite alternate-reverse;
}

@keyframes vizGlow {
  0%   { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.viz-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.viz-glow-ring--outer {
  width: 85%;
  height: 85%;
  border: 1px solid rgba(109,40,217,0.08);
  box-shadow: 0 0 40px rgba(109,40,217,0.06);
  animation: ringPulse 5s ease-in-out infinite alternate;
}

.viz-glow-ring--mid {
  width: 65%;
  height: 65%;
  border: 1px solid rgba(96,165,250,0.1);
  box-shadow: 0 0 30px rgba(96,165,250,0.05);
  animation: ringPulse 4s ease-in-out 0.5s infinite alternate-reverse;
}

.viz-glow-ring--inner {
  width: 45%;
  height: 45%;
  border: 1px solid rgba(192,132,252,0.12);
  box-shadow:
    0 0 20px rgba(192,132,252,0.06),
    inset 0 0 20px rgba(109,40,217,0.04);
  animation: ringPulse 3.5s ease-in-out 1s infinite alternate;
}

@keyframes ringPulse {
  0%   { opacity: 0.3; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

.viz-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.viz-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
  50%      { opacity: 0.5; box-shadow: 0 0 16px rgba(34,197,94,0.3); }
}

.viz-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.viz-bar {
  width: 6px;
  height: 64px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--color-brand-start) 0%, var(--color-brand-end) 100%);
  transform: scaleY(0.15);
  opacity: 0.35;
  animation: waveBar 1.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.07s);
  will-change: transform, opacity;
}

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.15); opacity: 0.35; }
  30%      { transform: scaleY(1);    opacity: 1; }
  60%      { transform: scaleY(0.28); opacity: 0.5; }
}

.viz-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}

.viz-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.viz-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(6px);
  animation: checkIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(1.5s + var(--d) * 1.8s);
}

.viz-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  display: grid; place-items: center;
  flex-shrink: 0;
}

@keyframes checkIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .voice-viz {
    max-width: 400px;
    margin: 0 auto;
  }

  .section-ai-aura {
    padding: var(--space-7) var(--space-4);
  }

  .aura-blob {
    filter: blur(80px);
  }

  .aura-blob--purple {
    width: 350px;
    height: 350px;
  }

  .aura-blob--blue {
    width: 300px;
    height: 300px;
  }

  .aura-blob--pink {
    width: 200px;
    height: 200px;
  }
}

/* ─── AI Orb (Marketing) ─────────────────────────────────────── */

.ai-orb-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  aspect-ratio: 1 / 1;
  position: relative;
  padding: 32px;
}

.ai-orb {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ai-orb-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.25), rgba(109,40,217,0.15), transparent 70%);
  opacity: 0.4;
  filter: blur(20px);
  animation: aiOrbBreathe 4s ease-in-out infinite;
  pointer-events: none;
}

.ai-orb-gradient {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #7db4f7,
    #93a3f8,
    #a893f3,
    #b57eed,
    #8b5cf6,
    #7c4fe0,
    #6d28d9,
    #7e42e0,
    #9162ec,
    #7d9cf5,
    #60a5fa,
    #7db4f7
  );
  animation: aiOrbSpin 8s linear infinite;
}

.ai-orb-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.06) 40%,
    transparent 65%
  );
  z-index: 1;
}

@keyframes aiOrbSpin {
  to { transform: rotate(360deg); }
}

@keyframes aiOrbBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 0.55; }
}

.ai-orb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

.ai-orb-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.ai-orb-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(6px);
  animation: checkIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(1.5s + var(--d) * 1.8s);
}

.ai-orb-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ai-orb-showcase {
    max-width: 400px;
    margin: 0 auto;
  }

  .ai-orb {
    width: 140px;
    height: 140px;
  }

  .ai-orb-glow {
    width: 200px;
    height: 200px;
  }
}

/* ─── Legal pages ──────────────────────────── */

.legal-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.legal-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  color: var(--color-gray-900);
}

.legal-text p {
  margin-bottom: var(--space-3);
  line-height: 1.75;
  color: var(--color-gray-600);
}

.legal-text ul {
  margin: 0 0 var(--space-3) var(--space-4);
  padding: 0;
  list-style: disc;
}

.legal-text ul li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
  color: var(--color-gray-600);
}

.legal-text a {
  color: var(--color-brand);
  text-decoration: underline;
}

.legal-text table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-3) 0 var(--space-4);
  font-size: 0.9rem;
}

.legal-text th,
.legal-text td {
  text-align: left;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-600);
}

.legal-text th {
  font-weight: 600;
  color: var(--color-gray-900);
  background: var(--color-gray-50);
}
