/* ==========================================================================
   ATYPIA.AI — Brand Design System (Cyber-Obsidian & Neon-Glow Redesign)
   Premium AI Consulting & Implementation
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Core Tech Palette */
  --color-primary-red: #e24c4a;
  --color-primary-blue: #386bb7;
  --color-hover-red: #f14f44;
  --color-hover-blue: #4078c8;
  
  /* Deep Dark Space Colors (Obsidian Theme) */
  --color-dark: #07080d;
  --color-dark-alt: #0a0b12;
  --color-surface: rgba(13, 16, 28, 0.45);
  --color-surface-hover: rgba(20, 24, 42, 0.7);
  --color-surface-card: rgba(18, 22, 38, 0.6);
  --color-surface-card-hover: rgba(26, 32, 54, 0.8);
  
  /* Text & Contrast */
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-white: #ffffff;
  --color-near-black: #030408;
  
  /* Borders */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(226, 76, 74, 0.15);
  --color-border-light: rgba(255, 255, 255, 0.04);
  
  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #e24c4a 0%, #386bb7 100%);
  --gradient-brand-hover: linear-gradient(135deg, #f14f44 0%, #4078c8 100%);
  --gradient-dark: linear-gradient(180deg, #07080d 0%, #0c0d16 100%);
  --gradient-glow-red: radial-gradient(circle, rgba(226, 76, 74, 0.12) 0%, transparent 70%);
  --gradient-glow-blue: radial-gradient(circle, rgba(56, 107, 183, 0.09) 0%, transparent 70%);
  --gradient-card: linear-gradient(135deg, rgba(226, 76, 74, 0.06) 0%, rgba(56, 107, 183, 0.06) 100%);
  --gradient-tech: linear-gradient(90deg, rgba(226, 76, 74, 0.1) 0%, rgba(56, 107, 183, 0.1) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes — Fluid Clamp */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --text-3xl: clamp(1.6rem, 1.3rem + 1.5vw, 2.2rem);
  --text-4xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-5xl: clamp(2.5rem, 1.8rem + 4vw, 4rem);
  --text-6xl: clamp(2.8rem, 1.8rem + 5.5vw, 4.8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout Widths */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --header-height: 80px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Premium Depth Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 24px rgba(226, 76, 74, 0.15);
  --shadow-glow-blue: 0 0 24px rgba(56, 107, 183, 0.12);
  --shadow-glow-accent: 0 0 32px rgba(226, 76, 74, 0.2);

  /* Easing and Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
  --transition-slower: 850ms var(--ease-out);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-dark);
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-dark);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary-blue);
  box-shadow: var(--shadow-glow-blue);
}

::selection {
  background: rgba(226, 76, 74, 0.35);
  color: var(--color-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-wrap: balance;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h3 {
  font-size: var(--text-2xl);
  letter-spacing: -0.015em;
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: -0.01em;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-red);
  margin-bottom: var(--space-6);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
}

/* ==========================================================================
   LAYOUT GRID & CONTAINER
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

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

.container--wide {
  max-width: var(--max-width-wide);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

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

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

/* Overriding section types to maintain obsidian dark theme consistency */
.section--dark {
  background: var(--color-dark);
}

.section--light {
  background-color: var(--color-dark-alt);
}

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

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-16);
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-5);
}

.section-header p {
  font-size: var(--text-lg);
}

/* Subtle tech grids for sections */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  pointer-events: none;
  z-index: 0;
}

/* Custom glow overlay behind sections */
.section::after {
  content: '';
  position: absolute;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(56, 107, 183, 0.03) 0%, transparent 70%);
  top: -25vw;
  right: -10vw;
  pointer-events: none;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-6) 0;
  transition: all var(--transition-base);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header .container {
  max-width: var(--max-width-wide);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-base);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

/* Header States */
.header.scrolled {
  padding: var(--space-4) 0;
  background: rgba(7, 8, 13, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  position: relative;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 40%;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 1001;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 13, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: calc(var(--header-height) + var(--space-8)) var(--space-8) var(--space-8);
  flex-direction: column;
  gap: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  background: none !important;
}

.mobile-menu .nav-link.active {
  color: var(--color-primary-red);
}

.mobile-menu .btn {
  margin-top: var(--space-8);
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  white-space: nowrap;
}

/* Primary Button (Gradient + Shimmer + Shadow Glow) */
.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(226, 76, 74, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s var(--ease-out);
}

.btn-primary:hover::after {
  left: 150%;
}

/* Secondary Button (Outline Gradient Border) */
.btn-secondary {
  background: rgba(13, 16, 28, 0.6);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Ghost Button (Text link with moving line indicator) */
.btn-ghost {
  padding: var(--space-2) 0;
  background: none;
  color: var(--color-primary-red);
  font-weight: 600;
  border-radius: 0;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-ghost:hover {
  color: var(--color-white);
}

/* Nav specific */
.btn-nav {
  padding: 0.65rem 1.6rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: var(--text-lg);
}

.btn .arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

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

.card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card:hover {
  background: var(--color-surface-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
  border-color: rgba(56, 107, 183, 0.25);
}

/* Glassmorphism Card Spec */
.card-glass {
  background: rgba(13, 16, 28, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.card-glass:hover {
  background: rgba(18, 22, 38, 0.6);
  transform: translateY(-5px);
  border-color: rgba(226, 76, 74, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
}

/* Dark themed card */
.card-dark {
  background: rgba(8, 9, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: rgba(13, 16, 28, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(0, 0, 0, 0.6);
}

/* Accent Card (top stripe indicator) */
.card-accent {
  position: relative;
  overflow: hidden;
}

.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

/* Card Icon Box */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: var(--space-6);
  font-size: 1.35rem;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.card:hover .card-icon,
.card-dark:hover .card-icon,
.card-glass:hover .card-icon {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 4px 16px rgba(226, 76, 74, 0.35);
}

.card h3, .card-dark h3, .card-glass h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-2xl);
}

.card p, .card-dark p, .card-glass p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-20);
  background: var(--color-dark);
  overflow: hidden;
}

/* Animated gradient orbs */
.hero .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero .glow-orb--red {
  width: clamp(400px, 50vw, 700px);
  height: clamp(400px, 50vw, 700px);
  background: rgba(226, 76, 74, 0.08);
  top: -15%;
  right: -5%;
  animation: float 15s ease-in-out infinite;
}

.hero .glow-orb--blue {
  width: clamp(350px, 45vw, 600px);
  height: clamp(350px, 45vw, 600px);
  background: rgba(56, 107, 183, 0.06);
  bottom: -10%;
  left: -5%;
  animation: float-reversed 12s ease-in-out infinite;
}

.hero .glow-orb--sm {
  width: 250px;
  height: 250px;
  background: rgba(226, 76, 74, 0.04);
  top: 50%;
  right: 35%;
  animation: float 18s ease-in-out infinite;
  animation-delay: -5s;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--space-12);
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
  font-size: var(--text-6xl);
  font-weight: 800;
}

.hero .lead {
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-12);
}

.hero-entity {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  max-width: 640px;
  line-height: 1.6;
}

/* Floating Image Frame in Hero */
.hero-visual-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  background: linear-gradient(135deg, rgba(226, 76, 74, 0.1), rgba(56, 107, 183, 0.1));
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-visual-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  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-composite: exclude;
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.hero-visual-frame:hover::before {
  opacity: 0.8;
}

.hero-visual-img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  height: auto;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
  transition: transform var(--transition-slow);
}

.hero-visual-frame:hover .hero-visual-img {
  transform: scale(1.015);
}

/* ==========================================================================
   PROCESS / CHRONOLOGY STEPS
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.15;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 16, 28, 0.8);
  border: 2px solid rgba(226, 76, 74, 0.4);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 16px rgba(226, 76, 74, 0.45);
}

.process-step h4 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  color: var(--color-white);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(13, 16, 28, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(13, 16, 28, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  background: rgba(13, 16, 28, 0.55);
  border-color: rgba(56, 107, 183, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: left;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-white);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: var(--space-4);
  color: var(--color-primary-red);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition-base);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 var(--space-8) var(--space-6);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer a {
  color: var(--color-primary-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--color-primary-blue);
}

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

.cta-section {
  text-align: center;
  position: relative;
  background: var(--color-dark-alt);
}

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

.cta-section h2 {
  margin-bottom: var(--space-5);
}

.cta-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-10);
  font-size: var(--text-lg);
}

.cta-section .cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

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

.footer {
  background: var(--color-dark);
  color: var(--color-text-muted);
  padding: var(--space-20) 0 var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 320px;
}

.footer-brand .logo-img {
  opacity: 0.9;
  margin-bottom: var(--space-6);
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(2px);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 76, 74, 0.35);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Float animation keyframes */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

@keyframes float-reversed {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, 30px); }
  66% { transform: translate(15px, -20px); }
}

/* Fade in up animation */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay systems */
.stagger-children .animate:nth-child(1) { transition-delay: 0ms; }
.stagger-children .animate:nth-child(2) { transition-delay: 100ms; }
.stagger-children .animate:nth-child(3) { transition-delay: 200ms; }
.stagger-children .animate:nth-child(4) { transition-delay: 300ms; }
.stagger-children .animate:nth-child(5) { transition-delay: 400ms; }
.stagger-children .animate:nth-child(6) { transition-delay: 500ms; }

/* Hero anim entrance */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-enter 0.85s var(--ease-out) forwards;
}

.hero-animate:nth-child(1) { animation-delay: 0s; }
.hero-animate:nth-child(2) { animation-delay: 0.15s; }
.hero-animate:nth-child(3) { animation-delay: 0.3s; }
.hero-animate:nth-child(4) { animation-delay: 0.45s; }
.hero-animate:nth-child(5) { animation-delay: 0.6s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   USE-CASE CARDS
   ========================================================================== */

.use-case-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition-base);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
  border-color: rgba(226, 76, 74, 0.25);
  background: var(--color-surface-hover);
}

.use-case-card:hover::before {
  opacity: 1;
}

.use-case-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}

.use-case-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

/* ==========================================================================
   SERVICE TIERS
   ========================================================================== */

.tier-card {
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 16, 28, 0.5);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.tier-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0.7;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-accent);
  border-color: rgba(226, 76, 74, 0.35);
  background: rgba(18, 22, 38, 0.7);
}

.tier-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-primary-red);
  font-weight: 600;
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
  display: inline-block;
}

.tier-card h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.tier-tagline {
  font-size: var(--text-lg);
  color: var(--color-primary-red);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.tier-card h3 {
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   "SOLVE A PROBLEM" CARDS
   ========================================================================== */

.problem-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(13, 16, 28, 0.4);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow-red);
  border-color: rgba(226, 76, 74, 0.3);
  background: rgba(20, 24, 42, 0.6);
}

.problem-card .problem-quote {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  font-style: italic;
  line-height: 1.45;
}

.problem-card .problem-quote::before {
  content: '"';
  color: var(--color-primary-red);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 0;
  margin-right: var(--space-1);
  vertical-align: -0.35em;
}

.problem-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.problem-card .card-arrow {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-red);
  transition: all var(--transition-base);
}

.problem-card:hover .card-arrow {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(226, 76, 74, 0.4);
}

/* ==========================================================================
   SUCCESS STORIES SPECIFICS
   ========================================================================== */

.story-section {
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  background: rgba(13, 16, 28, 0.4);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.story-section h3 {
  font-size: var(--text-sm);
  color: var(--color-primary-red);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.story-section p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* Visual Delivered List */
.use-case-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.use-case-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(13, 16, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.use-case-list-item:hover {
  background: rgba(18, 22, 38, 0.6);
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
  border-color: rgba(56, 107, 183, 0.2);
  transform: translateX(5px);
}

.use-case-list-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.use-case-list-item strong {
  display: block;
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.use-case-list-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   INSIGHTS PREVIEW
   ========================================================================== */

.insight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(13, 16, 28, 0.4);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  backdrop-filter: blur(12px);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  background: rgba(18, 22, 38, 0.6);
  border-color: rgba(56, 107, 183, 0.2);
}

.insight-card-body {
  padding: var(--space-8);
}

.insight-category {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-red);
  margin-bottom: var(--space-4);
}

.insight-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  line-height: 1.35;
  color: var(--color-white);
}

.insight-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.insight-card--coming-soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.insight-card--coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-border);
  background: rgba(13, 16, 28, 0.4);
}

.insight-card--coming-soon .insight-card-body::after {
  content: 'Coming soon';
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-primary-blue);
  margin-top: var(--space-4);
  font-weight: 500;
}

/* ==========================================================================
   PARTNERS SPECIFIC STYLING
   ========================================================================== */

.partner-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: rgba(13, 16, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.partner-step:hover {
  background: rgba(18, 22, 38, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-step .step-number {
  margin: 0;
  flex-shrink: 0;
}

.partner-step h3 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.partner-step p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: var(--text-base);
}

/* ==========================================================================
   BOOK A CALL PAGE SPECIFICS
   ========================================================================== */

.booking-embed {
  max-width: 800px;
  margin: 0 auto;
  min-height: 520px;
  background: rgba(13, 16, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  backdrop-filter: blur(16px);
}

.booking-embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: var(--radius-lg);
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

.booking-feature {
  text-align: center;
  background: rgba(13, 16, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.booking-feature:hover {
  background: rgba(18, 22, 38, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.booking-feature .icon {
  font-size: 1.65rem;
  margin-bottom: var(--space-4);
  display: inline-block;
}

.booking-feature h4 {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.booking-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

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

/* Laptop / Desktop Small */
@media (max-width: 1200px) {
  .hero-grid {
    gap: var(--space-8);
  }
}

/* Tablet Landscape/Portrait */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-entity {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-visual-frame {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .process-steps::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .booking-features {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* Mobile Landscape & Large Portrait */
@media (max-width: 768px) {
  .nav-links,
  .btn-nav-wrapper {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-10));
    padding-bottom: var(--space-12);
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

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

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

  .partner-step {
    flex-direction: column;
  }

  .tier-card {
    padding: var(--space-8);
  }
}

/* Small Mobile Viewports */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-5);
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: var(--text-sm);
  }

  .btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: var(--text-base);
  }

  .card,
  .card-glass,
  .card-dark {
    padding: var(--space-6);
  }

  .story-section {
    padding: var(--space-6);
  }
}

/* ==========================================================================
   UTILITY HELPER CLASSES
   ========================================================================== */

.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;
}

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.pt-0 { padding-top: 0; }

.w-full { width: 100%; }
.max-w-narrow { max-width: var(--max-width-narrow); }

/* --- Redesign Utilities & Layout Fixes --- */
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.section-header-spacing {
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 7rem)) !important;
}
.sticky-top {
  position: sticky !important;
  top: 120px !important;
}
.link-red-underline {
  color: var(--color-primary-red) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  transition: color var(--transition-fast) !important;
}
.link-red-underline:hover {
  color: var(--color-primary-blue) !important;
}

/* Margin Utilities */
.mt-4 { margin-top: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mt-10 { margin-top: var(--space-10) !important; }
.mb-3 { margin-bottom: var(--space-3) !important; }

/* Booking specific */
.booking-placeholder {
  padding: 4rem 2rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  width: 100%;
}
.booking-placeholder span {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-4);
}

.tier-subtitle {
  font-size: var(--text-lg) !important;
  margin-top: var(--space-8) !important;
  margin-bottom: var(--space-3) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

