/* ===== RESONANT WORKS PROFESSIONAL REDESIGN ===== */
/* Using ONLY the 5 specified colors for professional, organic design */

/* Base System */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Stormy Twilight palette with softened saturation */
  --bright-blue: #0393EE;      /* Alias to maintain legacy var usage */
  --sage-blue: #527a9e;        /* Muted ocean blue */
  --highlight: #0393EE;        /* Vibrant highlight blue */
  --warm-stone: #d98b6a;       /* Soft sunset accent */
  --forest-sage: #324b61;      /* Deep sea navy */
  --warm-earth: #d6dce4;       /* Storm cloud grey */
  --pale-sage: #9aa9bb;        /* Fog grey */
  --light-earth: #f0f4f8;      /* Mist light */
  --cream: #fafbfc;            /* Soft white */

  /* Theme application colors */
  --bg-primary: var(--light-earth);     /* Primary background */
  --bg-secondary: var(--cream);         /* Secondary background */
  --bg-accent: rgba(82, 122, 158, 0.08); /* Subtle blue accent */
  --text-primary: #3a3a3a;              /* Standard text */
  --text-secondary: #5a5a5a;            /* Secondary text */
  --text-light: var(--cream);           /* Text on dark sections */
  --accent-primary: var(--highlight);
  --accent-secondary: var(--warm-stone);
  --accent-tertiary: var(--forest-sage);
  --accent-warm: var(--warm-stone);
  --accent-sage: var(--pale-sage);
  --surface-light: rgba(150, 170, 190, 0.08);
  --surface-bright: rgba(150, 170, 190, 0.12);

  /* Stormy Twilight gradients */
  --gradient-primary: linear-gradient(135deg, var(--highlight) 0%, var(--warm-stone) 100%);
  --gradient-accent: linear-gradient(135deg, var(--forest-sage) 0%, var(--pale-sage) 100%);
  --gradient-earth: linear-gradient(135deg, var(--warm-earth) 0%, var(--forest-sage) 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(82, 122, 158, 0.12) 0%, rgba(217, 139, 106, 0.08) 100%);
  --gradient-surface: linear-gradient(135deg, rgba(250, 251, 252, 0.95) 0%, rgba(240, 244, 248, 0.9) 100%);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(82, 122, 158, 0.25) 0%, rgba(50, 75, 97, 0.15) 40%, rgba(214, 220, 228, 0.08) 70%);

  /* About section gradients */
  --gradient-about-bg: linear-gradient(135deg, var(--cream) 0%, var(--light-earth) 100%);
  --gradient-about-values: linear-gradient(135deg, rgba(82, 122, 158, 0.12) 0%, rgba(154, 169, 187, 0.12) 100%);
  --gradient-service-card: linear-gradient(135deg, rgba(250, 251, 252, 1) 0%, rgba(240, 244, 248, 0.98) 100%);

  /* Professional Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Apple-inspired refined typography */
  --fluid-xs: clamp(0.75rem, 1.8vw, 0.875rem);
  --fluid-sm: clamp(0.875rem, 2.2vw, 1rem);
  --fluid-base: clamp(1rem, 2.5vw, 1.125rem);
  --fluid-md: clamp(1.125rem, 3vw, 1.25rem);
  --fluid-lg: clamp(1.25rem, 3.5vw, 1.5rem);
  --fluid-xl: clamp(1.5rem, 4vw, 1.75rem);
  --fluid-2xl: clamp(1.75rem, 4.5vw, 2.25rem);
  --fluid-3xl: clamp(2.25rem, 5.5vw, 3rem);
  --fluid-4xl: clamp(3rem, 7vw, 4rem);
  --fluid-5xl: clamp(4rem, 8vw, 5rem);
  
  /* Apple-inspired consistent spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;
  
  /* Organic shapes */
  --radius-soft: 16px;
  --radius-organic: 24px;
  --radius-round: 50px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px; /* Increased base font size */
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(-45deg, var(--highlight), var(--forest-sage), var(--warm-earth), var(--accent-secondary));
  animation: rotateGradient 60s linear infinite;
  z-index: -1;
  transform-origin: center;
  pointer-events: none;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== APPLE-INSPIRED STICKY HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 0.5px solid rgba(168, 181, 196, 0.2);
  z-index: 1000;
  padding: 1rem 2rem;
  --header-height: 72px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Simplified scroll progress indicator */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-primary);
  width: 0%;
  transition: width 0.3s ease;
  z-index: 1;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
  color: white;
}

.header.scrolled .nav-link:hover {
  color: var(--accent-primary);
  background: rgba(168, 181, 196, 0.15);
}

.header.scrolled .workshop-nav {
  background: var(--gradient-primary);
  color: white;
  border: 2px solid rgba(168, 181, 196, 0.4);
  box-shadow: 0 4px 12px rgba(168, 181, 196, 0.3);
}

.header.scrolled .workshop-nav:hover {
  background: var(--gradient-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 181, 196, 0.4);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-logo {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  height: 32px;
  line-height: 1;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(168, 181, 196, 0.2));
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.brand-logo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(27, 156, 219, 0.1), transparent);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 4px 8px rgba(168, 181, 196, 0.3)) drop-shadow(0 0 12px rgba(74, 144, 226, 0.2));
  transform: scale(1.05);
}

.brand-logo:hover::before {
  opacity: 1;
}

/* ===== COMPANY LOGO IN ABOUT SECTION ===== */
.company-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.company-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 12px rgba(27, 156, 219, 0.15));
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.3s ease;
  border-radius: var(--radius-soft);
}

.company-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 12px 24px rgba(10, 147, 184, 0.3));
}

/* ===== PROFESSIONAL ICON STYLING ===== */
.badge-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A90E2;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.4));
  animation: subtle-pulse 3s ease-in-out infinite;
  opacity: 1;
  visibility: visible;
  width: 18px;
  height: 18px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  padding: 2px;
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

.info-icon svg,
.service-icon svg,
.value-icon svg {
  color: var(--accent-primary);
  filter: drop-shadow(0 2px 4px rgba(27, 156, 219, 0.15));
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 4.5rem;
  height: 4.5rem;
}

.info-card:hover .info-icon svg,
.service-card:hover .service-icon svg,
.value-item:hover .value-icon svg {
  color: var(--forest-green);
  filter: drop-shadow(0 2px 6px rgba(10, 122, 94, 0.2));
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(168, 181, 196, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 181, 196, 0.15);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(10, 147, 184, 0.1) 0%,
    rgba(26, 122, 168, 0.05) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg,
    var(--bright-blue) 0%,
    var(--deep-blue) 50%,
    var(--forest-green) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(10, 147, 184, 0.4);
}

.nav-link:hover::after {
  width: 90%;
}

/* ===== ACTIVE NAVIGATION STATES ===== */
.nav-link.active {
  color: var(--text-primary);
  background: rgba(10, 147, 184, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 147, 184, 0.2);
}

.nav-link.active::after {
  width: 100%;
  opacity: 1;
  box-shadow: 0 0 12px rgba(10, 147, 184, 0.6);
}

/* Special styling for active workshop nav */
.workshop-nav.active {
  background: linear-gradient(135deg, 
    var(--bright-blue) 0%, 
    var(--deep-blue) 50%,
    var(--forest-green) 100%);
  box-shadow: 0 4px 16px rgba(10, 147, 184, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.workshop-nav {
  background: var(--gradient-primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(168, 181, 196, 0.25);
}



.workshop-nav:hover {
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 147, 184, 0.4);
  border-color: rgba(236, 255, 238, 0.4);
}

.workshop-nav::after {
  display: none;
}

/* ===== APPLE-INSPIRED WORKSHOP HERO ===== */
.workshop-banner {
  background: linear-gradient(135deg, 
    var(--warm-earth) 0%, 
    var(--light-earth) 25%,
    rgba(168, 181, 196, 0.2) 50%,
    rgba(143, 166, 142, 0.15) 75%,
    rgba(168, 181, 196, 0.15) 100%);
  padding: calc(var(--header-height, 72px) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Simplified section divider */
.workshop-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--gradient-about-bg);
  clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0 100%);
}

/* Simplified background - static and stable */
.workshop-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--space-xl);
}

/* Apple-inspired Hero Title */
.hero-title {
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--cream);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-round);
  font-size: var(--fluid-sm);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
  box-shadow: 0 4px 20px rgba(10, 147, 184, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
/* Gentle shimmer through the badge */
.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 40%, rgba(255,255,255,0) 80%);
  transform: translateX(-150%) skewX(-20deg);
  animation: badgeShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeShimmer {
  0%, 40% { transform: translateX(-150%) skewX(-20deg); }
  60% { transform: translateX(150%) skewX(-20deg); }
  100% { transform: translateX(150%) skewX(-20deg); }
}

/* Simplified pulse animation */
@keyframes simple-pulse {
  0%, 100% { 
    opacity: 1;
  }
  50% { 
    opacity: 0.8;
  }
}

/* Removed complex flowing animation for stability */

.hero-heading {
  margin-bottom: var(--space-lg);
}

.hero-main {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fluid-5xl);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.025em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-sub {
  display: block;
  font-size: var(--fluid-2xl);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.25;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== SIMPLIFIED DECORATIVE ICONS ===== */
.orbiting-icons {
  position: relative;
  height: 120px;
  width: 100%;
  margin: var(--space-2xl) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.orbit-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simplified static icon layout */
.orbit-ring {
  position: absolute;
}

.orbit-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.orbit-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-4 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.orbit-icon {
  position: relative;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 181, 196, 0.08);
  border: 1px solid rgba(168, 181, 196, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(168, 181, 196, 0.1);
}

/* SVG micro-interactions */
.orbit-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit-icon svg path,
.orbit-icon svg circle,
.orbit-icon svg polyline {
  transition: stroke-dashoffset 0.6s ease, transform 0.3s ease;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}

.orbit-icon:hover svg path,
.orbit-icon:hover svg circle,
.orbit-icon:hover svg polyline {
  stroke-dashoffset: 0;
}

/* Individual icon styling - simplified */
.icon-1 {
  color: var(--accent-primary);
}

.icon-2 {
  color: var(--accent-secondary);
}

.icon-3 {
  color: var(--accent-tertiary);
}

.icon-4 {
  color: var(--accent-primary);
}

/* Simple hover effects */
.orbit-icon:hover {
  transform: scale(1.1);
  background: rgba(168, 181, 196, 0.15);
  border-color: rgba(168, 181, 196, 0.4);
  box-shadow: 0 4px 12px rgba(168, 181, 196, 0.2);
}

/* Desktop-only ultra-light floating motion */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .orbit-icon {
    animation: floatY 7s ease-in-out infinite;
    will-change: transform;
  }
  .icon-1 { animation-duration: 6.5s; animation-delay: 0.2s; }
  .icon-2 { animation-duration: 7.5s; animation-delay: 0.4s; }
  .icon-3 { animation-duration: 8.5s; animation-delay: 0.1s; }
  .icon-4 { animation-duration: 7s;   animation-delay: 0.3s; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-description {
  max-width: 700px;
  margin: var(--space-xl) auto 0;
}

.description-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: var(--fluid-lg);
  color: var(--accent-primary);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(3, 147, 238, 0.08);
  border: 1px solid rgba(3, 147, 238, 0.25);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(3, 147, 238, 0.15);
  position: relative;
  overflow: hidden;
}

.description-highlight::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: workshopDot 2s ease-in-out infinite;
}

@keyframes workshopDot {
  0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70% { box-shadow: 0 0 0 8px rgba(3,147,238,0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(3,147,238,0); opacity: 1; }
}

.description-text {
  font-size: var(--fluid-lg);
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

/* ===== APPLE-INSPIRED WORKSHOP INFO ===== */
.workshop-info {
  margin: var(--space-3xl) auto var(--space-4xl);
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

/* Elegant Workshop Details Row */
.workshop-details-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-2xl);
  background: linear-gradient(180deg, rgba(248, 249, 245, 0.04) 0%, rgba(248, 249, 245, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-organic);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-wrap: wrap;
}

.workshop-details-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.workshop-details-row:hover::before {
  left: 100%;
}

.workshop-details-row:hover {
  background: linear-gradient(180deg, rgba(248, 249, 245, 0.06) 0%, rgba(248, 249, 245, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.workshop-details-row:hover .detail-separator { opacity: 0.9; }

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.detail-icon {
  color: var(--bright-blue);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.workshop-details-row:hover .detail-icon {
  color: var(--sage-green);
  transform: scale(1.1) rotate(5deg);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: var(--fluid-xs);
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(168, 181, 196, 0.2);
}

.detail-value {
  font-size: var(--fluid-base);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-separator {
  width: 2px;
  height: 24px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45) 0 2px,
    transparent 2px 6px
  );
  border-radius: 1px;
  flex-shrink: 0;
}

/* Apple-Style Pricing Button */
.pricing-section {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.apple-pricing-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-organic);
  padding: var(--space-xl) var(--space-2xl);
  color: var(--cream);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 8px 30px rgba(27, 156, 219, 0.4);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  transform-style: preserve-3d;
  will-change: transform, box-shadow, filter;
}

.apple-pricing-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.apple-pricing-button:hover::before {
  opacity: 1;
}

.apple-pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 156, 219, 0.4);
  filter: brightness(1.05);
}

.apple-pricing-button:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

.pricing-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.pricing-badge {
  font-size: var(--fluid-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pricing-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%) skewX(-20deg);
  animation: badgeSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeSweep {
  0%, 50% { transform: translateX(-120%) skewX(-20deg); }
  70% { transform: translateX(120%) skewX(-20deg); }
  100% { transform: translateX(120%) skewX(-20deg); }
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.pricing-highlight .price-current {
  font-size: var(--fluid-3xl);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-highlight .price-original {
  font-size: var(--fluid-lg);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-weight: 500;
}

.pricing-highlight .price-savings {
  font-size: var(--fluid-sm);
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 8px;
}

.pricing-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: var(--fluid-base);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.arrow-icon {
  color: var(--cream);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.apple-pricing-button:hover .arrow-icon {
  transform: translateX(4px) scale(1.1);
}

/* Legacy info-card styles - keeping for backward compatibility but updating for Transform Ideas section */
.info-card {
  background: var(--surface-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-soft);
  padding: var(--space-2xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
}

/* Removed complex tree sway animations for stability */

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: translateX(0);
}

/* Simplified hover animation */
.info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(27, 156, 219, 0.15);
  transform: translateY(-4px);
}

.info-card:hover .info-icon {
  transform: scale(1.15) rotateZ(10deg);
  filter: drop-shadow(0 4px 8px rgba(27, 156, 219, 0.3));
}

.info-card:hover .info-title {
  color: var(--bright-blue);
  transform: translateX(4px);
}

.info-card:hover .info-description {
  color: var(--text-primary);
  transform: translateX(2px);
}

.pricing-card {
  background: rgba(45, 93, 74, 0.12);
  border-color: rgba(156, 175, 136, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Removed complex glow animation for stability */

.pricing-card::before {
  background: var(--gradient-earth);
}

.pricing-card:hover {
  background: rgba(45, 93, 74, 0.18);
  border-color: rgba(156, 175, 136, 0.4);
  box-shadow: 0 6px 20px rgba(45, 93, 74, 0.15);
}

/* ===== PRICING BUTTON STYLES ===== */
.pricing-button {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.pricing-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  transition: left 0.6s ease;
}

.pricing-button:hover::after {
  left: 100%;
}

.pricing-button:hover {
  background: rgba(45, 93, 74, 0.2);
  box-shadow: 0 8px 20px rgba(45, 93, 74, 0.2);
}

.pricing-cta-text {
  font-size: var(--fluid-xs);
  color: var(--forest-green);
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.pricing-button:hover .pricing-cta-text {
  opacity: 1;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-content {
  flex: 1;
}

.info-title {
  font-size: var(--fluid-lg); /* Larger titles */
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.info-description {
  font-size: var(--fluid-base); /* Larger descriptions */
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-original {
  font-size: var(--fluid-base);
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-current {
  font-size: var(--fluid-2xl);
  font-weight: 800;
  color: var(--sage-green);
  line-height: 1;
}

.price-savings {
  font-size: var(--fluid-sm);
  color: var(--bright-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Clean Value Proposition */
.value-proposition {
  margin: var(--space-3xl) auto var(--space-3xl);
  padding: var(--space-xl) 0;
  position: relative;
  background: none;
}

.value-heading {
  text-align: center;
  font-size: var(--fluid-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  color: var(--text-primary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  padding: 0 var(--space-lg);
  position: relative;
}

.value-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 88px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 2px 8px rgba(10, 147, 184, 0.25);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(168, 181, 196, 0.2);
  border-radius: var(--radius-soft);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(168, 181, 196, 0.1);
  animation: riseFade 0.6s ease both;
}

/* Removed complex rotating background for stability */

.value-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(168, 181, 196, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(168, 181, 196, 0.2);
}

.value-grid .value-item:nth-child(1) { animation-delay: 0.05s; }
.value-grid .value-item:nth-child(2) { animation-delay: 0.12s; }
.value-grid .value-item:nth-child(3) { animation-delay: 0.19s; }

.value-icon {
  display: block;
  font-size: 4.5rem;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.value-item h3 {
  font-size: var(--fluid-xl); /* Larger headings */
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.value-item p {
  font-size: var(--fluid-base); /* Larger text */
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Clean Workshop Benefits */
.workshop-benefits {
  background: rgba(168, 181, 196, 0.05);
  border-radius: var(--radius-organic);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  border: 1px solid rgba(168, 181, 196, 0.15);
  position: relative;
  overflow: hidden;
}

/* Simplified background pattern */
.workshop-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 80, 67, 0.03);
  pointer-events: none;
}

.benefits-heading {
  font-size: var(--fluid-xl); /* Larger heading */
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.benefits-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  position: relative;
  padding-left: calc(var(--space-lg) + 6px);
  margin-bottom: var(--space-md);
  font-size: var(--fluid-base); /* Larger text */
  color: var(--text-primary);
  line-height: 1.6;
  background: linear-gradient(90deg, rgba(3, 147, 238, 0.12), rgba(3, 147, 238, 0) 28%);
  border: 0;
  border-radius: 8px;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--bright-blue);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
  transform: translate(4px, -50%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Subtle divider for clearer scan */
.benefit-list li + li {
  border-top: 1px dashed rgba(168, 181, 196, 0.3);
}

.benefit-list li:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(3, 147, 238, 0.18), rgba(3, 147, 238, 0) 35%);
  box-shadow: 0 6px 16px rgba(168, 181, 196, 0.18);
}

/* Subtle reveal animation for benefits */
@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-list li { animation: riseFade 0.6s ease both; }
.benefit-list li:nth-child(1) { animation-delay: 0.05s; }
.benefit-list li:nth-child(2) { animation-delay: 0.1s; }
.benefit-list li:nth-child(3) { animation-delay: 0.15s; }
.benefit-list li:nth-child(4) { animation-delay: 0.2s; }
.benefit-list li:nth-child(5) { animation-delay: 0.25s; }
.benefit-list li:nth-child(6) { animation-delay: 0.3s; }

/* Tasteful button shine on hover */
.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0) 90%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cta-button:hover::after {
  left: 150%;
}

@media (prefers-reduced-motion: reduce) {
  .benefit-list li { animation: none !important; }
  .cta-button::after { display: none; }
}

/* Clean Social Proof */
.social-proof {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
  background: rgba(168, 181, 196, 0.05);
  border-radius: var(--radius-soft);
}

.proof-item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 181, 196, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(168, 181, 196, 0.1);
  animation: riseFade 0.6s ease both;
}

.proof-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 181, 196, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.social-proof .proof-item:nth-child(1) { animation-delay: 0.05s; }
.social-proof .proof-item:nth-child(2) { animation-delay: 0.1s; }
.social-proof .proof-item:nth-child(3) { animation-delay: 0.15s; }

.proof-number {
  display: block;
  font-size: var(--fluid-3xl);
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.proof-label {
  font-size: var(--fluid-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Clean CTA Section */
.cta-section {
  margin-top: var(--space-3xl);
  text-align: center;
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, rgba(247, 243, 233, 0.4) 0%, rgba(247, 243, 233, 0.2) 100%);
  border-radius: var(--radius-organic);
}

.urgency-message {
  margin-bottom: var(--space-lg);
}

.urgency-text {
  font-size: var(--fluid-lg);
  color: var(--accent-primary);
  font-weight: 700;
  display: inline-block;
  padding: 0 var(--space-xs);
  background: none;
  border-radius: 0;
  border: 0;
  transition: color 0.3s ease;
  box-shadow: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}

.urgency-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: var(--space-sm);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes urgent-pulse {
  0%, 100% { 
    opacity: 1;
  }
  50% { 
    opacity: 0.9;
  }
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.cta-button {
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-soft);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border: none;
  text-decoration: none;
  font-size: var(--fluid-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-font-smoothing: antialiased;
}

.cta-primary {
  background: var(--gradient-primary);
  color: white;
  font-size: var(--fluid-lg);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 30px rgba(168, 181, 196, 0.4);
}

.cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(27, 156, 219, 0.4);
}

.cta-text {
  font-size: var(--fluid-lg);
  line-height: 1.2;
}

.cta-price {
  font-size: var(--fluid-base);
  opacity: 0.9;
  font-weight: 600;
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(236, 255, 238, 0.3);
  font-size: var(--fluid-base);
}

.cta-secondary:hover {
  background: rgba(236, 255, 238, 0.08);
  border-color: rgba(236, 255, 238, 0.5);
  transform: translateY(-2px);
}

.guarantee {
  margin-top: var(--space-lg);
}

.guarantee-text {
  font-size: var(--fluid-sm);
  color: var(--text-secondary);
}

/* ===== APPLE-INSPIRED ABOUT SECTION ===== */
.about-section {
  padding: var(--space-4xl) var(--space-xl);
  background: var(--gradient-about-bg);
  color: var(--text-dark);
  position: relative;
  border-top: 1px solid rgba(27, 156, 219, 0.1);
}

/* Simplified section divider */
.about-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-primary);
  clip-path: polygon(0 70%, 100% 50%, 100% 100%, 0 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== NEW SIDE-BY-SIDE ABOUT LAYOUT ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  min-height: 400px;
}

.about-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.about-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: var(--fluid-4xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--fluid-lg);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
}

.lead-text {
  font-size: var(--fluid-lg);
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.values-callout {
  margin-top: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 26px rgba(27, 156, 219, 0.12);
}

.values-text {
  font-size: var(--fluid-base);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  font-weight: 450;
}

/* White-on-dark variant for mission hero callout */
.mission-hero .values-callout {
  /* Blue-tinted glass, compact and centered */
  background: linear-gradient(180deg, rgba(3,147,238,0.18), rgba(3,147,238,0.10));
  border: 1px solid rgba(3,147,238,0.28);
  border-left: none;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) auto 0;
  box-sizing: border-box;
  /* Set a sensible default width so the box reads more square */
  width: clamp(280px, 60vw, 720px);
}

.mission-hero .values-text { color: #fff; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--gradient-service-card);
  border: 1px solid rgba(27, 156, 219, 0.2);
  border-radius: var(--radius-soft);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 2px 12px rgba(27, 156, 219, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform, box-shadow;
}

.service-card:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(27, 156, 219, 0.3);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.service-card h3 {
  font-size: var(--fluid-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.service-card p {
  font-size: var(--fluid-base);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* ===== APPLE-INSPIRED MEDIA SECTION ===== */
.media-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--media-bg-primary, #E8F4F8);
  position: relative;
  transition: background 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.media-clarity {
  margin: var(--space-md) auto var(--space-xl);
  max-width: 900px;
  text-align: center;
  font-size: var(--fluid-base);
}

.media-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-primary);
  clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0 100%);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.media-item {
  background: var(--surface-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-soft);
  border: 1px solid var(--media-accent-primary, rgba(72, 148, 148, 0.3));
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.media-item:hover {
  background: rgba(248, 249, 245, 0.15);
  border-color: rgba(27, 156, 219, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 156, 219, 0.15);
}

.media-item h3 {
  font-size: var(--fluid-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--media-accent-primary, #489494);
  transition: color 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.media-item p {
  font-size: var(--fluid-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.coming-soon-link {
  display: inline-block;
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fluid-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(27, 156, 219, 0.1);
  border: 1px solid rgba(27, 156, 219, 0.3);
  border-radius: var(--radius-soft);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-soon-link:hover {
  background: rgba(27, 156, 219, 0.2);
  border-color: rgba(27, 156, 219, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 156, 219, 0.2);
}

/* ===== DARK-THEMED CONSULTING SECTION ===== */
.consulting-section {
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.consulting-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(168, 181, 196, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(143, 166, 142, 0.08) 0%, transparent 45%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

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

.consulting-section .section-title {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consulting-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.consulting-section .consulting-item h3 {
  color: var(--accent-primary);
}

.consulting-section .consulting-item p {
  color: rgba(255, 255, 255, 0.7);
}

.consulting-section .cta-secondary {
  background: var(--gradient-primary);
  color: white;
  border: 2px solid rgba(168, 181, 196, 0.3);
}

.consulting-section .cta-secondary:hover {
  background: var(--gradient-accent);
  border-color: rgba(168, 181, 196, 0.5);
  transform: translateY(-2px);
}

/* ===== ELEGANT FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(168, 181, 196, 0.2);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  margin-top: 0;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(168, 181, 196, 0.15));
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(168, 181, 196, 0.25));
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fluid-sm);
  font-weight: 400;
  opacity: 0.8;
}

.footer-text p {
  margin: 0;
  line-height: 1.4;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.consulting-item {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--surface-light);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(156, 175, 136, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.consulting-item:hover {
  background: rgba(248, 249, 245, 0.12);
  border-color: rgba(156, 175, 136, 0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(45, 93, 74, 0.15);
}

.consulting-item h3 {
  font-size: var(--fluid-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--sage-green);
}

.consulting-item p {
  font-size: var(--fluid-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MOBILE-FIRST HEADER REDESIGN ===== */
@media (max-width: 768px) {
  .header {
    padding: var(--space-md) var(--space-md);
    --header-height: 80px;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
  }
  
  .brand-logo {
    height: 28px;
    flex-shrink: 0;
  }
  
  .brand-logo-img {
    height: 28px;
  }
  
  .company-logo {
    max-width: 240px;
  }
  
  .about-section {
    padding: var(--space-3xl) var(--space-md);
  }
  
  /* Mobile: Stack layout vertically */
  .about-hero {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    min-height: auto;
    text-align: center;
  }
  
  .about-logo-side {
    order: 1;
    padding: var(--space-md);
  }
  
  .about-content-side {
    order: 2;
    padding: var(--space-md);
  }
  
  .about-intro {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .values-callout {
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-lg);
  }
  
  /* Additional mobile UX improvements */
  .workshop-banner {
    padding: calc(var(--header-height, 80px) + var(--space-2xl)) var(--space-md) var(--space-3xl); /* Better mobile padding */
  }
  
  .hero-title {
    text-align: center; /* Center hero content on mobile */
  }
  
  .cta-container {
    flex-direction: column; /* Stack CTAs on mobile */
    align-items: center;
    gap: var(--space-md);
  }
  
  .cta-button {
    width: 100%; /* Full width on mobile for easier tapping */
    max-width: 300px; /* But not too wide */
    min-height: 48px; /* Minimum touch target size */
  }
  
  .nav {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
  }
  
  .nav-link {
    font-size: var(--fluid-xs);
    padding: var(--space-xs) var(--space-sm);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  
  .nav-link:not(.workshop-nav) {
    display: none;
  }
  
  .workshop-nav {
    font-size: var(--fluid-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-soft);
  }
  
  .workshop-banner {
    padding: calc(var(--header-height, 80px) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    min-height: 80vh;
  }
  
  .hero-main {
    font-size: var(--fluid-3xl);
  }
  
  .hero-sub {
    font-size: var(--fluid-xl);
  }
  
  .urgency-text {
    font-size: var(--fluid-xl);
    font-weight: 800;
    padding: var(--space-lg) var(--space-xl);
    margin: 0 auto var(--space-xl);
    max-width: 320px;
    animation: urgent-pulse 2s ease-in-out infinite;
  }
  
  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .cta-button {
    width: 100%;
    max-width: 350px;
    padding: var(--space-xl) var(--space-2xl);
    min-height: 64px;
  }
  
  .cta-primary {
    font-size: var(--fluid-xl);
    box-shadow: 0 10px 35px rgba(10, 147, 184, 0.5);
  }
  
  .workshop-details-row {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
  }
  
  .detail-separator {
    width: 60%;
    height: 2px;
    background-image: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.45) 0 8px,
      transparent 8px 16px
    );
  }
  
  .apple-pricing-button {
    min-width: auto;
    width: 100%;
    max-width: 320px;
    padding: var(--space-xl);
  }
  
  .detail-item {
    text-align: center;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .detail-content {
    align-items: center;
  }
  
  .services-grid,
  .media-grid,
  .consulting-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    justify-items: center; /* Center the 3 items on mobile */
  }
  
  .value-item {
    text-align: center;
    max-width: 280px; /* Constrain width for better readability */
  }
  
  .social-proof {
    gap: var(--space-lg);
  }
  
  /* Mobile-optimized section spacing */
  .media-section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .consulting-section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .footer {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }
  
  .footer-logo-img {
    height: 32px;
  }
  
  /* Mobile simplified icons */
  .orbiting-icons {
    height: 100px;
    margin: var(--space-lg) auto;
  }
  
  .orbit-container {
    width: 160px;
    height: 160px;
  }
  
  .orbit-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .orbit-2 {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  
  .orbit-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .orbit-4 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  
  .orbit-icon {
    padding: 8px;
  }
  
  .icon-1 svg { width: 18px; height: 18px; }
  .icon-2 svg { width: 16px; height: 16px; }
  .icon-3 svg { width: 14px; height: 14px; }
  .icon-4 svg { width: 12px; height: 12px; }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion preferences - enhanced for stability */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .info-card,
  .hero-badge,
  .urgency-text,
  .orbit-icon {
    animation: none !important;
    transform: none !important;
  }
  .hero-badge::after { display: none !important; }
  .urgency-text::before { animation: none !important; }
  .pricing-badge::after { display: none !important; }
  
  /* Simplify all hover effects for reduced motion */
  .info-card:hover,
  .value-item:hover,
  .service-card:hover,
  .media-item:hover,
  .consulting-item:hover {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-primary: #000000;
    --bg-secondary: #ffffff;
  }
}

/* Enhanced focus indicators for accessibility */
.cta-button:focus,
.nav-link:focus,
.info-card:focus,
.apple-pricing-button:focus {
  outline: 3px solid var(--bright-blue);
  outline-offset: 3px;
  border-radius: var(--radius-soft);
}

/* Simplified micro-interactions */
.hero-badge {
  animation: simple-pulse 4s ease-in-out infinite;
}

/* Simplified service card interactions */
.service-card,
.media-item,
.consulting-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.media-item:hover,
.consulting-item:hover {
  transform: translateY(-4px);
}

/* Premium button interactions */
.cta-button {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}

.cta-button:hover {
  filter: brightness(1.05) saturate(1.1);
}

/* Elegant text animations */
.hero-main,
.hero-sub {
  transition: all 0.3s ease;
}

.hero-title:hover .hero-main {
  transform: translateX(2px);
  text-shadow: 0 4px 8px rgba(27, 156, 219, 0.2);
}

.hero-title:hover .hero-sub {
  transform: translateX(4px);
  color: var(--text-primary);
}

/* Button interaction improvements */
.cta-button,
.apple-pricing-button {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.cta-button:active {
  transform: translateY(2px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Ensure proper scroll margin for navigation */
section {
  scroll-margin-top: calc(var(--header-height, 100px) + 2rem);
}

/* ===== CONTACT MODAL STYLES ===== */
.contact-modal .modal-content {
  background: var(--bg-secondary);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: var(--radius-organic);
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.contact-modal .modal-close:hover {
  color: var(--accent-primary);
}

.contact-modal .modal-header h3 {
  margin: 0 0 1rem 0;
  color: var(--accent-primary);
  font-family: var(--font-display);
}

.contact-modal .contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-modal .contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-soft);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.contact-modal .contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 147, 184, 0.3);
}

.contact-modal .contact-icon {
  font-size: 1.2rem;
}

/* ===== SIMPLIFIED DECORATIVE ELEMENTS ===== */
.about-section,
.media-section,
.consulting-section {
  position: relative;
}

/* ===== DYNAMIC HEADER STYLING FOR SECTIONS ===== */
.header.media-section-active {
  background: rgba(232, 244, 248, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: rgba(72, 148, 148, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header.media-section-active .nav-link {
  color: var(--media-text-primary, #2C4A4A);
}

.header.media-section-active .nav-link:hover {
  color: var(--media-accent-primary, #489494);
  background: rgba(72, 148, 148, 0.12);
}

/* Simple top decoration for about section */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(10, 147, 184, 0.06);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 50%);
  pointer-events: none;
}

/* ===== TABLET ENHANCEMENTS ===== */
@media (min-width: 769px) and (max-width: 1023px) {
  .about-hero {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
  }
  
  .company-logo {
    max-width: 200px;
  }
  
  .about-logo-side,
  .about-content-side {
    padding: var(--space-md);
  }
  
  /* Tablet-optimized section spacing */
  .media-section {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .consulting-section {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .workshop-banner {
    padding: calc(var(--header-height, 72px) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  }
}

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 1024px) {
  .header {
    padding: 0.8rem 2rem;
    --header-height: 70px;
  }
  
  .header-content {
    max-width: 1200px;
  }
  
  .brand-logo {
    height: 30px;
  }
  
  .brand-logo-img {
    height: 30px;
  }
  
  .nav {
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    position: relative;
  }
  
  /* Enhanced hover effects for desktop */
  .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 147, 184, 0.2);
  }
  
  .workshop-nav {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
  
  /* Better desktop layout balance */
  .workshop-details-row {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .apple-pricing-button {
    min-width: 320px;
    transform-origin: center;
  }
  
  .apple-pricing-button:hover {
    transform: translateY(-6px) rotateX(8deg) scale(1.02);
  }
  
  /* Enhanced desktop spacing for better visual hierarchy */
  .hero-title {
    margin-bottom: var(--space-3xl);
  }
  
  .value-proposition {
    margin: var(--space-4xl) auto;
    padding: var(--space-xl) 0;
  }
  
  /* Simplified header effects for stability */
  .header::after {
    height: 3px;
  }
  
  /* Desktop-optimized section spacing */
  .media-section {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .consulting-section {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .workshop-banner {
    padding: calc(var(--header-height, 70px) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  }
  
  /* Desktop CTA Section Enhancements */
  .cta-section {
    max-width: 800px;
    margin: var(--space-4xl) auto var(--space-3xl);
    padding: var(--space-3xl) var(--space-2xl);
    background: rgba(247, 243, 233, 0.6);
    border: 1px solid rgba(168, 181, 196, 0.2);
    box-shadow: 0 8px 32px rgba(168, 181, 196, 0.1);
  }
  
  .cta-container {
    margin-bottom: var(--space-xl);
  }
  
  .cta-button {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .urgency-message {
    margin-bottom: var(--space-xl);
  }
  
  .urgency-text {
    font-size: var(--fluid-xl);
    padding: var(--space-lg) var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .header-content {
    max-width: 1400px;
  }
  
  .brand-logo {
    height: 34px;
  }
  
  .brand-logo-img {
    height: 34px;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .workshop-nav {
    font-size: 0.95rem;
  }
  
  /* Ultra-wide desktop optimizations */
  .banner-container {
    max-width: 1400px;
  }
  
  .workshop-details-row {
    max-width: 1000px;
  }
  
  /* Ultra-wide CTA optimizations */
  .cta-section {
    max-width: 900px;
    padding: var(--space-4xl) var(--space-3xl);
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  .header::before,
  .header::after,
  .brand-name::after {
    animation: none;
  }
  
  .nav-link,
  .workshop-nav {
    transition-duration: 0.2s;
  }
}

/* Mobile performance optimizations */
@media (max-width: 768px) and (max-resolution: 150dpi) {
  /* Simplified background for better performance */
  .workshop-banner {
    background: var(--light-earth);
  }
  
  .workshop-banner::before {
    opacity: 0.2;
  }
  
  /* Reduce complex effects on mobile */
  .orbit-icon:hover {
    transform: none;
  }
}

/* ===== MISSION HERO ===== */
.mission-hero {
  background: radial-gradient(80% 60% at 50% 10%, rgba(9, 31, 56, 0.85) 0%, rgba(4, 23, 44, 0.8) 50%, rgba(3, 18, 36, 0.65) 100%),
              linear-gradient(135deg, rgba(3, 147, 238, 0.08), rgba(3, 147, 238, 0.02));
  padding: calc(var(--header-height, 72px) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-container {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-heading {
  font-family: var(--font-display);
  font-size: var(--fluid-4xl);
  margin-bottom: var(--space-lg);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Dynamic vibey gradient overlay */
.mission-hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg at 50% 40%, rgba(3,147,238,0.18), rgba(10, 122, 194, 0.15), rgba(3, 53, 97, 0.12), rgba(3,147,238,0.18));
  filter: blur(40px) saturate(1.2);
  animation: heroSpin 48s linear infinite;
  opacity: 0.9;
  pointer-events: none;
}

.mission-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 180px at var(--hero-mx,50%) var(--hero-my,50%), rgba(3,147,238,0.18), rgba(3,147,238,0) 60%);
  transition: background 160ms ease;
  pointer-events: none;
}

@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Tap/click ripple */
.hero-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,147,238,0.45) 0%, rgba(3,147,238,0.25) 35%, rgba(3,147,238,0) 70%);
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
  animation: heroRipple 800ms ease-out forwards;
}

@keyframes heroRipple {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.8); filter: blur(0px); }
  60% { opacity: 0.5; transform: translate(-50%, -50%) scale(16); filter: blur(1px); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(20); filter: blur(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .mission-hero::before { animation: none; }
  .mission-hero::after { transition: none; }
}

.mission-video-container {
  max-width: 800px;
  margin: var(--space-xl) auto;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Simple launcher wrapper (just a centered button) */
.mission-video-launcher {
  display: flex;
  justify-content: center;
  margin: var(--space-xl) auto;
}

.mission-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-soft);
}

/* Video launcher button overlay */
.video-play-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9));
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fluid-lg);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  --mx: 50%;
  --my: 50%;
  overflow: hidden;
  border-radius: var(--radius-soft);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.video-play-icon { font-size: 22px; line-height: 1; }

.video-play-label {
  font-family: var(--font-display);
}

/* pulse ring removed per request */

/* Reactive glow and orbit accents */
.video-play-button::before,
.video-play-button::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Cursor-follow glow */
.video-play-button::before {
  background:
    radial-gradient(120px 120px at var(--mx) var(--my), rgba(3,147,238,0.35), rgba(3,147,238,0) 60%),
    radial-gradient(200px 200px at calc(var(--mx)) calc(var(--my) - 20%), rgba(255,255,255,0.12), rgba(255,255,255,0) 70%);
  transition: background 220ms ease;
}

/* Subtle orbiting arcs */
.video-play-button::after {
  background:
    conic-gradient(from 0deg, rgba(255,255,255,0.0) 0 80deg, rgba(255,255,255,0.25) 90deg, rgba(255,255,255,0.0) 100%),
    conic-gradient(from 180deg, rgba(3,147,238,0.0) 0 80deg, rgba(3,147,238,0.25) 90deg, rgba(3,147,238,0.0) 100%);
  mix-blend-mode: screen;
  opacity: 0.65;
  transform-origin: 50% 50%;
  animation: orbitSpin 12s linear infinite;
  filter: blur(10px);
  will-change: transform, filter;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.video-play-button:hover { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .video-play-button::after { animation: none; }
}

.mission-text {
  font-size: var(--fluid-xl);
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  color: #fff;
}

/* Show a deliberate line break in media callout only on larger screens */
br.desktop-only-break { display: none; }
@media (min-width: 992px) {
  br.desktop-only-break { display: inline; }
}

/* Mobile responsiveness for mission video */
@media (max-width: 768px) {
  .mission-video-container {
    max-width: 95%;
    margin: var(--space-lg) auto;
  }

  .mission-text {
    font-size: var(--fluid-base);
    margin: var(--space-lg) auto 0;
    padding: 0 var(--space-md);
  }
}

/* ===== ABGI EXPERIENCE ===== */
.abgi-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-secondary);
  text-align: center;
}

.abgi-experience {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.abgi-line {
  font-size: var(--fluid-lg);
  min-height: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  color: var(--text-primary);
  white-space: pre-line;
}

.abgi-line.show {
  animation: abgi-fade 0.6s ease forwards;
}

/* ABGI modal */
.abgi-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  z-index: 2000;
}

.abgi-modal[hidden] {
  display: none;
}

.abgi-modal-content {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-soft);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-wrap: break-word;
}

/* Mobile responsiveness for ABGI modal */
@media (max-width: 768px) {
  .abgi-modal-content {
    max-width: 90vw;
    padding: var(--space-lg);
    margin: var(--space-md);
  }

  .abgi-input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .abgi-input {
    max-width: 100%;
    margin-bottom: var(--space-sm);
  }

  .abgi-choices {
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
  }

  .abgi-choices .cta-button {
    width: auto;
    min-width: 220px;
    align-self: center;
  }
}

.abgi-choices {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.abgi-choices .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.abgi-input-group {
  margin-top: var(--space-md);
  gap: var(--space-sm);
  justify-content: center;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.abgi-input-group.show {
  display: flex;
}

.abgi-input {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid rgba(168, 181, 196, 0.4);
  border-radius: var(--radius-soft);
  font-size: var(--fluid-base);
  color: var(--text-primary);
  background: var(--bg-secondary);
  flex: 1;
  min-width: 0;
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.abgi-input:focus {
  outline: 2px solid var(--brand-blue-bright);
  outline-offset: 2px;
  border-color: var(--brand-blue-bright);
  box-shadow: 0 0 0 6px rgba(3,147,238,0.12), 0 8px 24px rgba(3,147,238,0.15);
}

.abgi-send-icon {
  width: 20px;
  height: 20px;
  margin-right: var(--space-xs);
}

/* Refined send button style (no icon) */
.abgi-input-group .cta-button {
  padding: var(--space-sm) var(--space-xl);
  min-width: 140px;
  background: linear-gradient(180deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 6px 20px rgba(3,147,238,0.25);
}

.abgi-input-group .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(3,147,238,0.35);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.abgi-choice-icon {
  width: 20px;
  height: 20px;
  margin-right: var(--space-xs);
}

/* Connect CTA on final panel */
.abgi-connect {
  margin-top: var(--space-lg);
  text-align: center;
}

.abgi-connect[hidden] { display: none; }

.abgi-connect-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.abgi-socials {
  display: inline-flex;
  gap: var(--space-lg);
}

.abgi-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #0ea5e9, #0284c7);
  box-shadow: 0 8px 20px rgba(3,147,238,0.25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.abgi-social svg { display: block; }

.abgi-social:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(3,147,238,0.35); }

@keyframes abgi-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#abgi-start {
  animation: abgi-float 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes abgi-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #abgi-start {
    animation: none;
    transition: none;
  }
  .abgi-line {
    opacity: 1;
  }
  .abgi-line.show {
    animation: none;
  }
}

/* ===== WORKSHOP TEASER ===== */
.workshop-teaser {
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  background: var(--bg-secondary);
}

.workshop-teaser a {
  color: var(--accent-primary);
  font-weight: 600;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: var(--space-lg);
  bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-round);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
