:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary: #f97316;
  --secondary-dark: #ea580c;
  --secondary-light: #fb923c;
  --accent: #06b6d4;
  --bg-dark: #0a0e17;
  --bg-darker: #060a12;
  --bg-card: #111827;
  --bg-card-hover: #1f2937;
  --bg-elevated: #1e293b;
  --white: #ffffff;
  --light: #1e293b;
  --light-gray: #374151;
  --gray: #4b5563;
  --dark-gray: #9ca3af;
  --dark: #f9fafb;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border: #374151;
  --border-glow: rgba(16, 185, 129, 0.3);
  --gradient-1: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --gradient-hero: linear-gradient(180deg, #0a0e17 0%, #111827 50%, #0a0e17 100%);
  --gradient-card: linear-gradient(145deg, #1e293b 0%, #111827 100%);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.3);
  --glow-orange: 0 0 30px rgba(249, 115, 22, 0.3);
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text,
.hero__title .gradient-text,
.hero__title--large .gradient-text,
h1 .gradient-text,
h1.hero__title--large .gradient-text {
  background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  filter: drop-shadow(4px 4px 3px rgba(30, 30, 30, 0.75));
  display: inline-block;
  text-shadow: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gradient-1);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: var(--shadow-md), var(--glow-green);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(16, 185, 129, 0.5);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
  gap: 0.5rem;
}

.btn--secondary:hover {
  background: var(--bg-card);
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--glow-orange);
}

.btn--secondary svg {
  flex-shrink: 0;
}

.btn--full {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 14, 23, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.logo-best { color: var(--text-primary); }
.logo-seat { color: var(--primary); }
.logo-360 { color: var(--secondary); text-shadow: var(--glow-orange); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link--cta {
  background: var(--gradient-1);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--glow-green);
}

.nav__link--cta:hover {
  color: white;
  transform: translateY(-1px);
}

.nav__toggle, .nav__close {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 2.25rem;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(249, 115, 22, 0.1), transparent),
              radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.08), transparent);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--glow-green);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
}

.hero__mockup {
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero__mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup__screen {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--glow-green);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mockup__dots {
  display: flex;
  gap: 0.5rem;
}

.mockup__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
}

.mockup__dots span:first-child { background: #ef4444; }
.mockup__dots span:nth-child(2) { background: #eab308; }
.mockup__dots span:last-child { background: #22c55e; }

.mockup__title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mockup__content {
  padding: 1rem;
  background: var(--bg-darker);
}

.mockup__main-view {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.view-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.camera-switch {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.camera-switch span {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  cursor: pointer;
}

.camera-switch span.active,
.camera-switch span:hover {
  background: var(--primary);
  color: white;
}

.mockup__thumbnails {
  display: flex;
  gap: 0.5rem;
}

.thumb {
  flex: 1;
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb.active {
  border-color: var(--primary);
}

.clients {
  padding: 3rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients__title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.clients__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.features {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow-green);
}

.feature-card--large {
  grid-column: span 1;
}

.feature-card--large:first-child,
.feature-card--large:nth-child(2) {
  grid-column: span 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.feature-card__icon--primary {
  background: var(--gradient-1);
  color: white;
}

.feature-card__icon--secondary {
  background: var(--gradient-2);
  color: white;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card__description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.feature-card__list {
  list-style: none;
}

.feature-card__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.feature-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.dashboard {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.dashboard__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dashboard__features {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.dashboard__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.dashboard__feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.dashboard__feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.dashboard__feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.dashboard__mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--glow-green);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dash-logo {
  font-weight: 700;
  color: var(--primary);
}

.dash-nav {
  display: flex;
  gap: 1.5rem;
}

.dash-nav span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dash-nav span.active,
.dash-nav span:hover {
  color: var(--text-primary);
}

.dash-content {
  display: flex;
}

.dash-sidebar {
  width: 160px;
  padding: 1rem;
  border-right: 1px solid var(--border);
  background: var(--bg-elevated);
}

.dash-menu-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.dash-menu-item.active,
.dash-menu-item:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
}

.dash-main {
  flex: 1;
  padding: 1.5rem;
  background: var(--bg-card);
}

.dash-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {
  flex: 1;
  background: var(--bg-elevated);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.dash-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dash-chart {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  height: 120px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  gap: 0.5rem;
}

.bar {
  flex: 1;
  background: var(--gradient-1);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: var(--transition);
}

.bar:hover {
  opacity: 0.8;
}

.use-cases {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.use-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow-green);
}

.use-case-card__image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-card__image--racing {
  background: url('attached_assets/Picture30_1766913381025.png') center/cover no-repeat;
}

.use-case-card__image--motorsports {
  background: url('attached_assets/Picture.25_1766912166877.png') center/cover no-repeat;
}

.use-case-card__image--stadium {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
}

.use-case-card__image--esports {
  background: url('attached_assets/Picture12_1766787389547.jpg') center/cover no-repeat;
}

.use-case-card__image--concerts {
  background: url('attached_assets/Picture13_1766787857931.png') center/cover no-repeat;
}

.use-case-card__image--action {
  background: url('attached_assets/image_37_1766914440864.png') center/cover no-repeat;
}

.use-case-card__image--reseller {
  background: url('attached_assets/Picture26_1766912484520.png') center/cover no-repeat;
}

.use-case-card__image--enterprise {
  background: url('attached_assets/Picture35_1766913849375.png') center/cover no-repeat;
}

.use-case-card--enterprise {
  border-color: rgba(139, 92, 246, 0.3);
}

.use-case-card--enterprise:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.use-case-overlay {
  display: none;
}

.use-case-card--featured {
  border-color: rgba(16, 185, 129, 0.3);
}

.use-case-card--featured:hover {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.use-case-card--reseller {
  border-color: rgba(59, 130, 246, 0.3);
}

.use-case-card--reseller:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.use-case-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.use-case-results {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.result-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.result-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Russo One', sans-serif;
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.use-case-card__content {
  padding: 1.5rem;
}

.use-case-card__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.use-case-card__content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.use-case-benefits {
  list-style: none;
}

.use-case-benefits li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.use-case-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.aws {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.aws__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.aws__badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.aws__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  border-radius: var(--radius-lg);
  color: white;
}

.aws__badge span {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #d97706;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aws__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.aws__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.aws__feature svg {
  color: var(--primary);
}

.resellers {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.resellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.reseller-benefit {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.reseller-benefit:hover {
  border-color: var(--secondary);
  box-shadow: var(--glow-orange);
}

.reseller-benefit__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-lg);
  color: var(--secondary);
  margin: 0 auto 1.25rem;
}

.reseller-benefit h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.reseller-benefit p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.resellers__cta {
  text-align: center;
}

.contact {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact__details {
  margin-top: 2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact__detail svg {
  color: var(--primary);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

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

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logo-text .logo-best { color: var(--white); }
.footer__logo-text .logo-seat { color: var(--primary-light); }
.footer__logo-text .logo-360 { color: var(--white); }

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__column h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__column ul {
  list-style: none;
}

.footer__column li {
  margin-bottom: 0.5rem;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero__visual {
    order: -1;
  }
  
  .hero__mockup {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .resellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100dvh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    padding: 3.5rem 1.5rem 1.5rem;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  
  .nav__menu.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
  }
  
  .nav__link {
    text-align: center;
    width: 100%;
    display: block;
  }
  
  .nav__toggle, .nav__close {
    display: block;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .hero {
    padding: 4.5rem 0 3rem;
  }
  
  .hero__buttons {
    flex-direction: column;
  }
  
  .hero__stats {
    gap: 2rem;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card--large {
    grid-column: span 1;
  }
  
  .use-cases__grid {
    grid-template-columns: 1fr;
  }
  
  .resellers__grid {
    grid-template-columns: 1fr;
  }
  
  .clients__logos {
    gap: 2rem;
  }
  
  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer__links {
    gap: 2rem;
  }
  
  .aws__features {
    flex-direction: column;
    align-items: center;
  }
  
  .dash-sidebar {
    display: none;
  }
  
  .page-hero {
    padding: 4.5rem 0 2.25rem;
  }
  
  .story__content {
    grid-template-columns: 1fr;
  }
  
  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .mission__content {
    grid-template-columns: 1fr;
  }
  
  .dashboard-section__content {
    grid-template-columns: 1fr;
  }
  
  .viewer-feature,
  .viewer-feature--reverse {
    grid-template-columns: 1fr;
  }
  
  .differentiators__grid {
    grid-template-columns: 1fr;
  }
  
  .tech-highlights__grid {
    grid-template-columns: 1fr;
  }
  
  .overview__content {
    grid-template-columns: 1fr;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  
  .featured-cases__grid {
    grid-template-columns: 1fr;
  }
  
  .featured-case {
    grid-template-columns: 1fr;
  }
}

.header--solid {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.nav__link--active {
  color: var(--primary);
}

.page-hero {
  padding: 10rem 0 4rem;
  background: var(--gradient-hero);
}

.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.story {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story__text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.story__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.story__card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.story__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--primary);
  margin-bottom: 1rem;
}

.story__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.story__card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.team {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.team-member__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member__initials {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member__role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.team-member__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.5rem;
  color: #0077b5;
  background: rgba(0, 119, 181, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-member__linkedin:hover {
  background: #0077b5;
  color: white;
  transform: scale(1.1);
}

.team-member__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.team-member__social .team-member__linkedin {
  margin-top: 0;
}

.team-member__video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #1ab7ea;
  background: rgba(26, 183, 234, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-member__video:hover {
  background: #1ab7ea;
  color: white;
  transform: scale(1.1);
}

.mission {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.mission__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission__values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission__value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mission__value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.mission__value h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mission__value p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cta-section {
  padding: 4.5rem 0;
  background: var(--gradient-2);
}

.cta-section__content {
  text-align: center;
  color: white;
}

.cta-section__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section__content p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__buttons .btn--primary {
  background: white;
  color: var(--secondary);
}

.cta-section__buttons .btn--secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-section__buttons .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.dashboard-section {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.dashboard-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dashboard-features__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.dashboard-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.dashboard-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.dashboard-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dashboard-feature p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.viewer-section {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.viewer-features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.viewer-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.viewer-feature--reverse {
  direction: rtl;
}

.viewer-feature--reverse > * {
  direction: ltr;
}

.viewer-feature__content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.viewer-feature__content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.viewer-feature__list {
  list-style: none;
}

.viewer-feature__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.viewer-feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.player-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-cyan);
}

.player-mockup__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.player-mockup__screen {
  background: var(--bg-darker);
}

.player-mockup__video {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.player-mockup__video--360 {
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.player-mockup__live {
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.player-mockup__telemetry {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.player-mockup__telemetry span {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.player-mockup__compass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-mockup__compass span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.player-mockup__cameras,
.player-mockup__controls-360 {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
}

.player-mockup__cameras span {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.player-mockup__cameras span.active {
  background: var(--primary);
  color: white;
}

.player-mockup__controls-360 span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.ui-tutorial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
}

.ui-tutorial__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ui-tutorial__header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ui-tutorial__header p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.tour-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.tour-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
}

.tour-start-btn.hidden {
  display: none;
}

.ui-tutorial.tour-mode .hotspot {
  opacity: 0.4;
  pointer-events: none;
}

.ui-tutorial.tour-mode .hotspot.tour-active {
  opacity: 1;
  pointer-events: auto;
}

.hotspot.tour-active .hotspot__dot {
  background: #06b6d4;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 40px rgba(6, 182, 212, 0.4);
  animation: tour-dot-glow 1.5s ease-in-out infinite;
}

.hotspot.tour-active .hotspot__pulse {
  background: rgba(6, 182, 212, 0.4);
  animation: tour-pulse 1.5s ease-out infinite;
}

@keyframes tour-dot-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 40px rgba(6, 182, 212, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(6, 182, 212, 1), 0 0 60px rgba(6, 182, 212, 0.6);
  }
}

@keyframes tour-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.ui-tutorial__container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ui-tutorial__image {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.hotspot__pulse {
  position: absolute;
  inset: 0;
  background: rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  animation: hotspot-pulse 2s ease-out infinite;
}

.hotspot__dot {
  position: absolute;
  inset: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot:hover .hotspot__dot {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.6);
}

.hotspot.active .hotspot__dot {
  background: var(--secondary);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.6);
}

.hotspot.active .hotspot__pulse {
  background: rgba(249, 115, 22, 0.3);
}

@keyframes hotspot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hotspot-tooltip {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1rem;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.3);
  pointer-events: none;
}

.hotspot-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hotspot-tooltip h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hotspot-tooltip p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.tooltip-step {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ui-tutorial.tour-mode .tooltip-step {
  display: block;
}

.tooltip-nav {
  display: none;
}

.tour-controls {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.tour-controls.active {
  display: flex;
}

.tour-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tour-progress__bar {
  flex: 1;
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}

.tour-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 16.67%;
}

.tour-progress__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tour-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tour-btn:hover:not(:disabled) {
  background: var(--bg-elevated);
  border-color: var(--accent);
}

.tour-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tour-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.tour-btn--primary:hover:not(:disabled) {
  background: #0891b2;
  border-color: #0891b2;
}

.tour-btn--secondary {
  color: var(--text-secondary);
}

.tour-btn--secondary:hover:not(:disabled) {
  color: var(--secondary);
  border-color: var(--secondary);
}

.ui-tutorial.tour-mode .ui-tutorial__legend {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .tour-controls {
    padding: 1rem;
  }
  
  .tour-progress {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tour-progress__text {
    text-align: center;
  }
  
  .tour-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tour-btn {
    flex: 1;
    justify-content: center;
    min-width: 100px;
  }
}

.mobile-tutorial {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mobile-tutorial__cards {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: transform 0.3s ease;
}

.mobile-tutorial__card {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-tutorial__card.active {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.mobile-tutorial__number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.mobile-tutorial__card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.mobile-tutorial__card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mobile-tutorial__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.mobile-tutorial__btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-tutorial__btn:hover:not(:disabled) {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-tutorial__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mobile-tutorial__dots {
  display: flex;
  gap: 0.5rem;
}

.mobile-tutorial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}

.mobile-tutorial__dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 767px) {
  .mobile-tutorial {
    display: flex;
  }
  
  .ui-tutorial__container {
    display: none;
  }
  
  .ui-tutorial__header p {
    display: none;
  }
  
  .tour-start-btn {
    display: none;
  }
  
  .tour-controls {
    display: none !important;
  }
  
  .ui-tutorial__legend {
    display: none;
  }
}

.ui-tutorial__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.legend-item:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent);
}

.legend-item.active {
  background: rgba(249, 115, 22, 0.1);
  color: var(--secondary);
}

.legend-num {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.legend-item.active .legend-num {
  background: var(--secondary);
}

@media (max-width: 768px) {
  .ui-tutorial {
    padding: 1rem;
  }
  
  .hotspot {
    width: 24px;
    height: 24px;
  }
  
  .hotspot__dot {
    font-size: 0.625rem;
  }
  
  .hotspot-tooltip {
    max-width: 200px;
    padding: 0.75rem;
  }
  
  .ui-tutorial__legend {
    gap: 0.5rem;
  }
  
  .legend-item {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

.device-support {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.device-support h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.device-support__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.device svg {
  color: var(--primary);
}

.device span {
  font-size: 0.875rem;
}

.differentiators {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

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

.differentiator {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.differentiator:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-cyan);
}

.differentiator__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-lg);
  color: var(--accent);
  margin: 0 auto 1.25rem;
}

.differentiator h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.differentiator p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.tech-highlights {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.tech-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.tech-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 1rem;
}

.tech-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.overview {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.overview__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.diagram {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.diagram__side {
  flex: 1;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.diagram__side h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.diagram__side ul {
  list-style: none;
}

.diagram__side li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
}

.diagram__side li:last-child {
  border-bottom: none;
}

.diagram__side--operator {
  border-left: 3px solid var(--secondary);
}

.diagram__side--fans {
  border-left: 3px solid var(--primary);
}

.diagram__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.diagram__logo {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.diagram__center span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.benefits {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.benefit-card__stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.benefit-stat__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.benefit-stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.featured-cases {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.featured-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.featured-case {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.featured-case:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.featured-case__image {
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.featured-case__image--melbourne {
  background: url('attached_assets/Picture1_1766366690236.png') center/cover no-repeat;
}

.featured-case__image--motorsports {
  background: url('attached_assets/Picture11_1766722888793.png') center/cover no-repeat;
}

.featured-case__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.featured-case__badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.featured-case__content {
  padding: 2rem;
}

.featured-case__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.featured-case__content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.featured-case__highlights {
  list-style: none;
  margin-bottom: 1.5rem;
}

.featured-case__highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.featured-case__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.aws-badge {
  padding: 3rem 0;
  background: var(--bg-darker);
}

.aws-badge__content {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.aws-badge__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  border-radius: var(--radius-lg);
  color: white;
  flex-shrink: 0;
}

.aws-badge__label {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #d97706;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.aws-badge__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.aws-badge__text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.aws-badge__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.aws-badge__features span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.aws-badge__features svg {
  color: var(--primary);
}

.hero--video {
  position: relative;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero);
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent);
}

.hero__animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.animated-view {
  position: absolute;
  width: 300px;
  height: 200px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  opacity: 0.3;
}

.animated-view--1 {
  top: 20%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.animated-view--2 {
  top: 40%;
  right: 15%;
  animation: float 8s ease-in-out infinite 1s;
}

.animated-view--3 {
  top: 60%;
  right: 8%;
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero--cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-wall .hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 14, 23, 0.5) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

.hero__scroll-container {
  display: flex;
  gap: 1rem;
  height: 100%;
  animation: scrollPanels 62.5s linear infinite;
  will-change: transform;
  width: max-content;
}

@keyframes scrollPanels {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * 10 - 10rem));
  }
}

.video-panel {
  flex-shrink: 0;
  width: 400px;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.video-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.video-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.video-panel--f1-saudi {
  background: url('attached_assets/F1_Saudi_Arabian_GP_2022_1766486079157.jpg') center/cover no-repeat;
}

.video-panel--melbourne-cup {
  background: url('attached_assets/Picture6_optimized.webp') center/cover no-repeat;
}

.video-panel--pegasus {
  background: url('attached_assets/Pegasus_World_Cup_optimized.webp') center/cover no-repeat;
}

.video-panel--formula-e {
  background: url('attached_assets/Formula_E_Demo_optimized.webp') center/cover no-repeat;
}

.video-panel--goodwood {
  background: url('attached_assets/RAC_TT_Celebration_optimized.webp') center/cover no-repeat;
}

.video-panel--skate {
  background: url('attached_assets/Isle_of_Man_Skate_Final_2024_optimized.webp') center/cover no-repeat;
}

.video-panel--good-friday {
  background: url('attached_assets/Good_Friday_Appeal_2023_1766486079155.webp') center/cover no-repeat;
}

.video-panel--luge {
  background: url('attached_assets/Luge_Final_optimized.webp') center/cover no-repeat;
}

.video-panel--indycar {
  background: url('attached_assets/Firestone_GP_optimized.webp') center/cover no-repeat;
}

.video-panel--horse-jockey {
  background: url('attached_assets/Picture8_1766718581347.png') center/cover no-repeat;
}

.video-panel--cycling {
  background: url('attached_assets/Picture10_1766719198433.png') center/cover no-repeat;
}

.video-panel--music {
  background: url('attached_assets/Picture23_1766802032823.jpg') center/cover no-repeat;
}

.video-panel__content {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 3;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.video-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: fit-content;
  animation: livePulse 2s ease-in-out infinite;
}

.video-panel__live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.video-panel__sport {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero--cinematic .hero__container {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
}

.hero__content--centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 6rem;
}

.hero__content--vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero__badge--glow {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

.hero__title--large {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(16, 185, 129, 0.3);
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem;
  text-align: center;
}

.hero__description--wide {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero__buttons--center {
  justify-content: center;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__buttons .btn--secondary {
  border-color: white;
  color: white;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
  gap: 0.75rem;
}

.hero__stats--glow {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.hero__stats--glow .stat {
  text-align: center;
}

.hero__stats--glow .stat__number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__stats--glow .stat__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
  .hero--cinematic {
    min-height: 100svh;
  }
  
  .video-panel {
    width: 280px;
  }
  
  .hero__content--centered {
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero__stats--glow {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .hero__stats--glow .stat__number {
    font-size: 1.5rem;
  }
  
  .hero__scroll-hint {
    display: none;
  }
}

.mockup__telemetry {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.mockup__telemetry span {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
}

.btn--aws {
  gap: 0.5rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__legal a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .featured-case {
    grid-template-columns: 1fr;
  }
  
  .aws-badge__content {
    flex-direction: column;
    text-align: center;
  }
  
  .aws-badge__features {
    justify-content: center;
  }
  
  .differentiators__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* AWS Marketplace Page Styles */
.page-hero--aws {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.aws-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.aws-benefits {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.aws-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.aws-benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.aws-benefit:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.aws-benefit__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-md);
  color: white;
  margin-bottom: 1.5rem;
}

.aws-benefit h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.aws-benefit p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.aws-benefit__features {
  list-style: none;
}

.aws-benefit__features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.aws-benefit__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Pricing Section */
.pricing-section {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-card__tagline {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Russo One', sans-serif;
}

.price-unit {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-card__features li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing__note {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-md);
}

.pricing__note p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pricing__note strong {
  color: var(--secondary);
}

/* AWS Integrations */
.aws-integrations {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.aws-integrations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.aws-service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.aws-service:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.aws-service__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin: 0 auto 1rem;
}

.aws-service h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.aws-service p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Express Interest Section */
.express-interest {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.express-interest__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.express-interest__text {
  padding-right: 2rem;
}

.express-interest__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.early-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.early-benefit svg {
  color: var(--primary);
}

.express-interest__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.express-interest__form .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive for AWS page */
@media (max-width: 1024px) {
  .aws-benefits__grid {
    grid-template-columns: 1fr;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  
  .aws-integrations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .express-interest__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .express-interest__text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .aws-integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Market Opportunity Section */
.market-opportunity {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.market-opportunity__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.market-stats {
  display: flex;
  gap: 2rem;
}

.market-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex: 1;
}

.market-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Russo One', sans-serif;
  margin-bottom: 0.5rem;
}

.market-stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.target-sectors {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.target-sectors h3 {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.sector:hover {
  background: rgba(16, 185, 129, 0.1);
}

.sector svg {
  color: var(--primary);
}

.sector span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Enhanced Resellers Section */
.reseller-benefit--featured {
  border-color: rgba(16, 185, 129, 0.3);
  position: relative;
}

.reseller-benefit--featured:hover {
  box-shadow: var(--glow-green);
}

.reseller-benefit__badge {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reseller-feature-list {
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.reseller-feature-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

.reseller-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.partner-cta {
  margin-top: 3rem;
}

.partner-cta__box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.partner-cta__box h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.partner-cta__box p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partner-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .market-opportunity__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .market-stats {
    flex-wrap: wrap;
  }
  
  .sectors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .market-stats {
    flex-direction: column;
  }
  
  .sectors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-cta__buttons {
    flex-direction: column;
  }
}

/* Enhanced Contact Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
}

.form-message--success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.cf-turnstile {
  margin: 0.5rem 0;
}

.contact__aws-link {
  margin-top: 1.5rem;
}

.contact__aws-link .btn {
  display: inline-flex;
}

/* Footer Social Icons */
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Enhanced Footer Copyright */
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__patent {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__legal {
    justify-content: center;
  }
}

/* Gallery Page Styles */
.gallery-section {
  padding: 3rem 0 4.5rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--gradient-1);
  border-color: var(--primary);
  color: var(--bg-dark);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-card.hidden {
  display: none !important;
}

.gallery-card.fade-in {
  animation: fadeIn 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--glow-green);
}

.gallery-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-elevated);
  transition: var(--transition);
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.02);
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card__image img {
  transform: scale(1.05);
}

.gallery-card__sport-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card__sport-icon {
  color: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-card__image--f1 {
  background: linear-gradient(135deg, #e10600 0%, #1e1e1e 50%, #ff1801 100%);
}

.gallery-card__image--fe {
  background: linear-gradient(135deg, #00d0ff 0%, #0a0e17 50%, #00a3cc 100%);
}

.gallery-card__image--horse {
  background: linear-gradient(135deg, #b8860b 0%, #1e3a1e 50%, #daa520 100%);
}

.gallery-card__image--motorsport {
  background: linear-gradient(135deg, #f97316 0%, #0a0e17 50%, #ea580c 100%);
}

.gallery-card__image--indycar {
  background: linear-gradient(135deg, #0033a0 0%, #c8102e 50%, #0033a0 100%);
}

.gallery-card__image--harness {
  background: linear-gradient(135deg, #8b4513 0%, #2d1810 50%, #cd853f 100%);
}

.gallery-card__image--events {
  background: linear-gradient(135deg, #8b5cf6 0%, #0a0e17 50%, #a78bfa 100%);
}

.gallery-card__image--action {
  background: linear-gradient(135deg, #06b6d4 0%, #1e3a5f 50%, #22d3ee 100%);
}

.gallery-card__image--skate {
  background: linear-gradient(135deg, #ec4899 0%, #1e1e2e 50%, #f472b6 100%);
}

.gallery-card__overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.gallery-card__category {
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary);
}

.gallery-card__content {
  padding: 1.5rem;
}

.gallery-card__content h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.gallery-card__content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.gallery-card__content .btn {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.gallery-card__content .btn svg {
  width: 16px;
  height: 16px;
}

.cta-section {
  padding: 3.75rem 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.cta-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-filters {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.gradient-text-orange {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.f1-showcase {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(249, 115, 22, 0.03) 50%, var(--bg-dark) 100%);
}

.f1-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.f1-showcase__proof {
  margin-top: 3rem;
  text-align: center;
}

.f1-proof__image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.f1-proof__image img {
  width: 100%;
  height: auto;
  display: block;
}

.f1-proof__caption {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.f1-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.f1-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-xl), var(--glow-orange);
}

.f1-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.f1-card__image {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.f1-card__image--saudi-2022 {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.3) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(0, 100, 0, 0.2) 100%), url('attached_assets/2022_Saudi_Arabian_Grand_Prix_1766557435473.jpg') center/cover no-repeat;
}

.f1-card__image--saudi-pkg1 {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.3) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(0, 100, 0, 0.2) 100%), url('attached_assets/2021_Saudi_Arabian_GP_Package_1_1766557435472.jpg') center/cover no-repeat;
}

.f1-card__image--saudi-pkg3 {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.3) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(0, 100, 0, 0.2) 100%), url('attached_assets/2021_Saudi_Arabian_GP_Package_3_1766557435472.jpg') center/cover no-repeat;
}

.f1-card__image--tuscan {
  background: linear-gradient(135deg, rgba(255, 45, 0, 0.3) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(0, 140, 60, 0.2) 100%), url('attached_assets/Tuscan_Grand_Prix_1766557435473.jpg') center/cover no-repeat;
}

.f1-card--featured .f1-card__image {
  aspect-ratio: auto;
  min-height: 280px;
}

.f1-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #e10600 0%, #ff1801 100%);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.f1-overlay {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.f1-card:hover .f1-overlay {
  color: var(--secondary);
  transform: scale(1.1);
}

.f1-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f1-card--featured .f1-card__content {
  padding: 2rem;
}

.f1-card__year {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.f1-card__content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.f1-card--featured .f1-card__content h3 {
  font-size: 1.5rem;
}

.f1-card__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.f1-card__content .btn {
  width: fit-content;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .f1-showcase__grid {
    grid-template-columns: 1fr;
  }
  
  .f1-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

.goodwood-showcase {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.goodwood-showcase__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.goodwood-showcase__text .section-tag {
  margin-bottom: 1rem;
}

.goodwood-features {
  list-style: none;
  margin-top: 2rem;
}

.goodwood-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.goodwood-features li:last-child {
  border-bottom: none;
}

.goodwood-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.goodwood-showcase__experiences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.goodwood-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.goodwood-card:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--glow-green);
}

.goodwood-card--featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, var(--bg-card) 100%);
  border-color: var(--primary);
}

.goodwood-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-1);
  color: var(--bg-dark);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.goodwood-card h4 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.goodwood-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.goodwood-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.goodwood-card:hover .goodwood-card__cta svg {
  transform: translateX(4px);
  transition: var(--transition);
}

@media (max-width: 992px) {
  .goodwood-showcase__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.production-services {
  padding: 4.5rem 0;
  background: var(--bg-dark);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.production-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.production-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.production-card--live:hover {
  border-color: #ef4444;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(239, 68, 68, 0.2);
}

.production-card--vod:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--glow-green);
}

.production-card--social:hover {
  border-color: #ec4899;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(236, 72, 153, 0.2);
}

.production-card--youtube:hover {
  border-color: #ef4444;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(239, 68, 68, 0.2);
}

.production-card__icon {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.production-card:hover .production-card__icon {
  color: var(--text-primary);
}

.production-live-badge {
  position: absolute;
  top: -4px;
  left: 40px;
  background: #ef4444;
  color: white;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.production-card h3 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.production-card > p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.production-features {
  list-style: none;
}

.production-features li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.production-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .production-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .production-grid {
    grid-template-columns: 1fr;
  }
}

.vr-extension {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(6, 182, 212, 0.05) 50%, var(--bg-dark) 100%);
}

.vr-extension__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vr-extension__video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.vr-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vr-video__overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.vr-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vr-extension__text .section-tag {
  margin-bottom: 1rem;
}

.vr-features {
  list-style: none;
  margin: 2rem 0;
}

.vr-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.vr-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .vr-extension__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vr-extension__video {
    order: -1;
  }
}

.global-events {
  padding: 4.5rem 0;
  background: var(--bg-darker);
}

.events-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.events-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.events-filters__label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
}

.events-filter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.events-filter:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.events-filter.active {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--bg-dark);
  font-weight: 600;
}

.events-filter[data-category="motorsport"].active {
  background: var(--gradient-2);
}

.events-filter[data-category="extreme-sports"].active {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.events-filter[data-category="music"].active {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.events-filter[data-category="esports"].active {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.events-time-filter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.events-time-filter:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.events-time-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
  font-weight: 600;
}

.events-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-item--produced .legend-dot {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.legend-item--opportunity .legend-dot {
  background: var(--text-muted);
  border: 2px solid var(--border);
}

.legend-item--live .legend-dot {
  background: #ef4444;
}

.legend-dot--pulse {
  animation: legendPulse 2s ease-in-out infinite;
}

@keyframes legendPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.events-map {
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 2rem;
}

.events-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.event-card--produced {
  border-left: 3px solid var(--primary);
}

.event-card--opportunity {
  border-left: 3px solid var(--text-muted);
}

.event-card--live {
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, var(--bg-card) 100%);
  animation: cardPulse 3s ease-in-out infinite;
}

.event-card--soon {
  border-color: #fbbf24;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, var(--bg-card) 100%);
}

.event-card--past {
  opacity: 0.75;
}

.event-card--past.event-card--has-demo {
  opacity: 1;
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, var(--bg-card) 100%);
}

.event-card--past.event-card--has-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

@keyframes cardPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 0 20px 0 rgba(239, 68, 68, 0.2); }
}

.event-card__badges {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.event-card__status {
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.event-card__status--live {
  background: #ef4444;
  color: white;
  animation: statusPulse 1.5s ease-in-out infinite;
}

.event-card__status--soon {
  background: #fbbf24;
  color: #1e293b;
}

.event-card__status--past {
  background: #374151;
  color: #9ca3af;
}

.event-card__status--upcoming {
  background: #1e293b;
  color: #9ca3af;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.event-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.event-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}

.event-card__category--motorsport { color: var(--secondary); }
.event-card__category--horse-racing { color: var(--primary); }
.event-card__category--extreme-sports { color: #8b5cf6; }
.event-card__category--music { color: #ec4899; }
.event-card__category--esports { color: var(--accent); }

.event-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
}

.event-card__badge--produced {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
}

.event-card__badge--opportunity {
  background: var(--bg-elevated);
  color: var(--text-muted);
}

.event-card h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.event-card__location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-card__date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.event-card__rights-holder {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 4px;
  font-style: italic;
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: var(--transition);
  text-decoration: none;
}

.event-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.event-card__demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .events-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  
  .events-legend {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .events-map {
    height: 350px;
  }
}

/* Custom Leaflet Zoom Controls */
.leaflet-control-zoom {
  border: none !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.leaflet-control-zoom a {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 34px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.leaflet-control-zoom a:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
  border-bottom: none !important;
}

.leaflet-control-zoom a:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--bg-elevated) !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3) !important;
}

.leaflet-control-zoom a:active {
  background: var(--primary) !important;
  color: var(--bg-dark) !important;
}

/* Custom Map Controls Container */
.map-custom-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-control-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.map-control-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.map-control-btn:active {
  background: var(--primary);
  color: var(--bg-dark);
}

.map-control-btn svg {
  width: 18px;
  height: 18px;
}

.map-control-btn--fit {
  width: auto;
  padding: 0 12px;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Leaflet Attribution Styling */
.leaflet-control-attribution {
  background: rgba(17, 24, 39, 0.8) !important;
  color: var(--text-muted) !important;
  font-size: 0.65rem !important;
  padding: 2px 6px !important;
  border-radius: var(--radius-sm) !important;
}

.leaflet-control-attribution a {
  color: var(--primary) !important;
}

.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
}

.leaflet-popup-content {
  color: var(--text-primary) !important;
  margin: 1rem !important;
}

.leaflet-popup-tip {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}

.map-popup {
  min-width: 200px;
}

.map-popup__category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.map-popup h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.map-popup__location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.map-popup__description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.map-popup .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
}

.map-popup__fanbase {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 10px;
}

.map-popup__fanbase svg {
  color: var(--primary);
  flex-shrink: 0;
}

.map-popup__fanbase span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.map-popup__fanbase strong {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
}

/* ============================================
   News Section
   ============================================ */
.news {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.news-card__image {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__image--melbourne {
  background: url('attached_assets/Picture1_1766914026127.png') center/cover no-repeat;
}

.news-card__image--melbourne::after {
  display: none;
}

.news-card__image--wtvision {
  background: url('attached_assets/Picture36_1766979862819.png') center/cover no-repeat;
}

.news-card__image--wtvision::after {
  display: none;
}

.news-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card__content {
  padding: 1.5rem;
}

.news-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.news-card__content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-card__content > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-card__highlights li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.news-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-card__link:hover {
  color: var(--secondary);
  gap: 0.75rem;
}

.news-card__link svg {
  transition: transform 0.2s ease;
}

.news-card__link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card__image {
    height: 220px;
  }
}

/* ============================================
   AI Horse Tracking Section
   ============================================ */
.ai-tracking {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1a0d 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.ai-tracking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.ai-tracking__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.ai-tracking__content {
  position: relative;
  z-index: 1;
}

.ai-tracking__stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.ai-tracking__stat {
  text-align: center;
}

.ai-tracking__stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.ai-tracking__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-tracking__visual {
  position: relative;
}

.ai-tracking__telemetry {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(251, 191, 36, 0.1);
}

.telemetry-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.telemetry-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.telemetry-dot:nth-child(1) { background: #ef4444; }
.telemetry-dot:nth-child(2) { background: #fbbf24; }
.telemetry-dot:nth-child(3) { background: #10b981; }

.telemetry-content {
  padding: 1.5rem;
}

.telemetry-horse {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: horseRun 2s ease-in-out infinite;
}

@keyframes horseRun {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.telemetry-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.telemetry-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.telemetry-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Monaco', 'Consolas', monospace;
}

.telemetry-value--speed {
  color: #10b981;
}

.telemetry-value--position {
  color: #fbbf24;
}

.telemetry-track {
  position: relative;
  height: 8px;
  background: var(--bg-dark);
  border-radius: 4px;
  overflow: visible;
}

.track-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981 0%, #fbbf24 50%, #10b981 100%);
  transform: translateY(-50%);
}

.track-marker {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-card);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.track-marker--1 { left: 10%; }
.track-marker--2 { left: 65%; }
.track-marker--3 { left: 85%; }

.track-marker--active {
  background: #fbbf24;
  border-color: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
  width: 16px;
  height: 16px;
}

.ai-tracking__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.ai-pillar {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.ai-pillar:hover {
  transform: translateY(-4px);
  border-color: #fbbf24;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
}

.ai-pillar__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
  border-radius: 50%;
  color: #fbbf24;
}

.ai-pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.ai-pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ai-tracking__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ai-benefits__column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.ai-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.ai-benefits__list li:last-child {
  border-bottom: none;
}

.ai-benefits__list svg {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.ai-benefits__list span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ai-tracking__integration {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

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

.ai-integration__content svg {
  flex-shrink: 0;
  color: #fbbf24;
}

.ai-integration__content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.ai-integration__content strong {
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .ai-tracking__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ai-tracking__pillars {
    grid-template-columns: 1fr;
  }
  
  .ai-tracking__benefits {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .ai-tracking__stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .telemetry-data {
    grid-template-columns: 1fr;
  }
  
  .ai-integration__content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Custom Map Markers
   ============================================ */
.custom-marker-container {
  background: transparent !important;
  border: none !important;
}

.custom-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.custom-marker--produced {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.custom-marker--opportunity {
  background: transparent;
  border: 3px solid var(--text-muted);
}

.custom-marker--pulse {
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
}

@media (max-width: 768px) {
  .events-filters__row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .events-filters__label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
  }
  
  .events-filters__row .filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .events-legend {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .events-legend .legend-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav__link--cta {
    display: inline-block;
    width: auto !important;
    background: var(--gradient-1);
    color: var(--bg-dark) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 0.75rem;
    text-align: center;
  }
}

/* Landscape styles for phones under 768px width */
@media (max-width: 768px) and (orientation: landscape) {
  .nav__menu {
    height: 100dvh;
    padding: 2.5rem 1.5rem 1rem;
    overflow-y: auto;
  }
  
  .nav__list {
    gap: 0.5rem;
    padding-top: 0.75rem;
    align-items: center;
    text-align: center;
  }
  
  .nav__link {
    display: inline-block;
    font-size: 0.8125rem;
    padding: 0.375rem 0;
    line-height: 1.2;
    text-align: center;
    width: auto;
  }
  
  .nav__link--cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .nav__close {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .nav__logo img {
    height: 28px;
  }
}

/* Landscape styles for larger phones (769-932px) like iPhone in landscape */
@media (min-width: 769px) and (max-width: 932px) and (orientation: landscape) {
  .nav__toggle {
    display: block;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100dvh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    padding: 2.5rem 1.5rem 1rem;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  
  .nav__menu.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
    align-items: center;
    text-align: center;
  }
  
  .nav__link {
    display: inline-block;
    font-size: 0.8125rem;
    padding: 0.375rem 0;
    line-height: 1.2;
    text-align: center;
    width: auto;
  }
  
  .nav__link--cta {
    display: inline-block;
    width: auto !important;
    background: var(--gradient-1);
    color: var(--bg-dark) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .nav__logo img {
    height: 28px;
  }
}

/* Featured use cases - keep side by side in landscape mobile */
@media (max-width: 932px) and (orientation: landscape) {
  .featured-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .featured-case {
    grid-template-columns: 1fr;
  }
  
  .featured-case__image {
    min-height: 150px;
  }
  
  .featured-case__content {
    padding: 1rem;
  }
  
  .featured-case__content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .featured-case__content p {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }
  
  .featured-case__highlights {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .featured-case__highlights li {
    padding: 0.25rem 0;
  }
}

/* ============================================
   Privacy Page Styles
   ============================================ */
.privacy-content {
  padding: 3rem 0;
}

.privacy-section {
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.privacy-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.privacy-section ul li strong {
  color: var(--text-primary);
}

.privacy-section a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.privacy-section a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.privacy-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  color: var(--text-secondary);
  font-style: italic;
}

/* FAQ Chat Widget Styles */
#faq-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-chat-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: white;
  animation: faqPulse 3s ease-in-out infinite;
}

@keyframes faqPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4), 0 0 0 8px rgba(16, 185, 129, 0); }
}

.faq-chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(16, 185, 129, 0.6);
  animation: none;
}

.faq-chat-toggle--active {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  animation: none;
  border-color: var(--primary);
}

.faq-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--accent) 0%, #0891b2 100%);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.faq-chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 400px;
  max-height: 580px;
  background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-chat-panel--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.faq-chat-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  position: relative;
}

.faq-chat-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
}

.faq-chat-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-avatar-container {
  position: relative;
  width: 52px;
  height: 52px;
}

.faq-avatar-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.faq-avatar-image.listening {
  border-color: #06b6d4;
  animation: avatarListening 1s ease-in-out infinite;
}

.faq-avatar-image.speaking {
  border-color: var(--primary);
  animation: avatarSpeaking 0.5s ease-in-out infinite;
}

.faq-avatar-image.thinking {
  border-color: var(--secondary);
  animation: avatarThinking 1.5s ease-in-out infinite;
}

@keyframes avatarListening {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
}

@keyframes avatarSpeaking {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes avatarThinking {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.faq-avatar-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #1a2332;
}

.faq-avatar-status.listening {
  background: #06b6d4;
  animation: statusPulse 1s ease-in-out infinite;
}

.faq-avatar-status.speaking {
  background: var(--primary);
  animation: statusPulse 0.5s ease-in-out infinite;
}

.faq-avatar-status.thinking {
  background: var(--secondary);
  animation: statusPulse 1s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.faq-avatar-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  pointer-events: none;
}

.faq-avatar-pulse.listening {
  animation: avatarPulseListening 1.5s ease-out infinite;
}

.faq-avatar-pulse.speaking {
  animation: avatarPulseSpeaking 0.8s ease-out infinite;
}

@keyframes avatarPulseListening {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  100% { box-shadow: 0 0 0 15px rgba(6, 182, 212, 0); }
}

@keyframes avatarPulseSpeaking {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}

.faq-header-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-language-selector {
  position: relative;
}

.faq-language-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.faq-language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-lang-flag {
  font-size: 16px;
  line-height: 1;
}

.faq-language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
}

.faq-language-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.faq-language-dropdown::-webkit-scrollbar {
  width: 6px;
}

.faq-language-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.faq-language-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.faq-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.faq-lang-option:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--text-primary);
}

.faq-lang-option.active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
}

.faq-lang-option-flag {
  font-size: 18px;
  line-height: 1;
}

.faq-lang-option-name {
  font-size: 13px;
  font-weight: 500;
}

.faq-voice-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.faq-voice-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.faq-voice-toggle--active {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--primary);
}

.faq-close-top {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.faq-close-top:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.faq-chat-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.faq-chat-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.faq-status {
  font-size: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: faqStatusPulse 2s ease-in-out infinite;
}

@keyframes faqStatusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.faq-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 320px;
  min-height: 200px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.02) 0%, transparent 100%);
}

.faq-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.faq-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.faq-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 3px;
}

.faq-chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.5);
}

.faq-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: faqMessageIn 0.3s ease-out;
}

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

.faq-message--user {
  align-items: flex-end;
}

.faq-message--assistant {
  align-items: flex-start;
}

.faq-message--user .faq-message-content {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  color: white;
  border-radius: 18px 18px 6px 18px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.faq-message--assistant .faq-message-content {
  background: linear-gradient(135deg, #1e293b 0%, #1a2332 100%);
  color: var(--text-primary);
  border-radius: 18px 18px 18px 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.faq-message-content {
  max-width: 88%;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
}

.faq-message-content p {
  margin: 0 0 10px 0;
}

.faq-message-content p:last-child {
  margin-bottom: 0;
}

.faq-message-content ul {
  margin: 10px 0;
  padding-left: 18px;
}

.faq-message-content li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.faq-message-content strong {
  color: var(--primary);
  font-weight: 600;
}

.faq-message-content h3,
.faq-message-content h4 {
  color: var(--primary);
  margin: 12px 0 8px 0;
  font-size: 14px;
}

.faq-typing .faq-message-content {
  padding: 18px;
}

.faq-typing-dots {
  display: flex;
  gap: 5px;
}

.faq-typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: faqTyping 1.4s infinite ease-in-out both;
}

.faq-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.faq-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes faqTyping {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.faq-suggested-questions {
  padding: 12px 20px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-suggestion {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-suggestion:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-1px);
}

.faq-chat-input {
  display: flex;
  gap: 10px;
  padding: 16px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px 18px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.faq-chat-input input:focus {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.faq-chat-input input::placeholder {
  color: var(--text-secondary);
}

.faq-chat-input button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.faq-chat-input button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

#faq-stop-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  animation: stopPulse 1.5s ease-in-out infinite;
}

#faq-stop-btn:hover {
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

@keyframes stopPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.faq-mic-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.faq-mic-btn:hover {
  background: rgba(6, 182, 212, 0.15) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
  color: #06b6d4 !important;
}

.faq-mic-btn .mic-icon {
  transition: all 0.2s ease;
}

.faq-mic-btn .mic-waves {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-mic-btn .mic-waves span {
  display: block;
  width: 4px;
  height: 12px;
  background: #06b6d4;
  border-radius: 2px;
  margin: 0 2px;
  animation: micWave 0.6s ease-in-out infinite;
}

.faq-mic-btn .mic-waves span:nth-child(1) { animation-delay: 0s; }
.faq-mic-btn .mic-waves span:nth-child(2) { animation-delay: 0.15s; }
.faq-mic-btn .mic-waves span:nth-child(3) { animation-delay: 0.3s; }

@keyframes micWave {
  0%, 100% { height: 8px; }
  50% { height: 20px; }
}

.faq-mic-btn.listening {
  background: rgba(6, 182, 212, 0.2) !important;
  border-color: #06b6d4 !important;
  animation: micPulse 1.5s ease-in-out infinite;
}

.faq-mic-btn.listening .mic-icon {
  display: none;
}

.faq-mic-btn.listening .mic-waves {
  display: flex;
}

@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
}

.faq-speak-btn {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-color: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}

.faq-speak-btn:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-color: rgba(6, 182, 212, 0.4);
}

@media (max-width: 480px) {
  #faq-chat-widget {
    bottom: 16px;
    right: 16px;
  }
  
  .faq-chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
    max-height: 75vh;
    border-radius: 16px;
  }
  
  .faq-chat-toggle {
    width: 56px;
    height: 56px;
  }
  
  .faq-chat-messages {
    max-height: 45vh;
  }
  
  .faq-share-menu {
    min-width: 140px;
  }
}

/* FAQ Persistent Actions Bar */
.faq-persistent-actions {
  display: none;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.95) 0%, #1a2332 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 20;
}

.faq-persistent-actions .faq-share-menu {
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;
}

/* FAQ Message Actions */
.faq-message-actions {
  display: none;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.faq-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.faq-action-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.faq-action-btn svg {
  flex-shrink: 0;
}

/* Share Menu */
.faq-share-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #1e293b 0%, #1a2332 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.faq-share-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.faq-share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.faq-share-option:hover {
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary);
}

.faq-share-option--success {
  background: rgba(16, 185, 129, 0.2) !important;
  color: var(--primary) !important;
}

.faq-share-option svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.faq-share-option:hover svg {
  opacity: 1;
}

/* Toast Notification */
.faq-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #1e293b 0%, #1a2332 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--text-primary);
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.15);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.faq-toast--success svg {
  color: var(--primary);
}

.faq-toast--error {
  border-color: rgba(239, 68, 68, 0.5);
}

.faq-toast--error svg {
  color: #ef4444;
}

/* ============================================
   MOBILE PORTRAIT - Consolidated Responsive Fixes
   Prevents horizontal scrolling, stacks all content vertically
   ============================================ */
@media (max-width: 768px) and (orientation: portrait) {
  /* Global overflow prevention */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-x: hidden;
  }
  
  /* Hero Section - Content centered vertically, stats below fold */
  .hero,
  .hero--cinematic {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: visible;
    padding-bottom: 4rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero__content,
  .hero__content--centered,
  .hero__content--vertical-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  /* Mobile Portrait Typography - Larger sizes closer to laptop view */
  .hero__badge {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
  }
  
  .hero__title {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.1;
  }
  
  .hero__title-line {
    display: block;
  }
  
  .hero__subtitle {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .hero__description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .hero__buttons .btn {
    width: auto;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Hero Stats - Positioned just below fold, first thing on scroll */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 3rem 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.95));
    z-index: 10;
  }
  
  .hero__stats .stat {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  
  .hero__stats .stat__number {
    font-size: 1.35rem;
  }
  
  .hero__stats .stat__label {
    font-size: 1.05rem;
  }
  
  .hero__visual {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Scroll hint - Show on portrait with positioning */
  .hero__scroll-hint {
    display: flex;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
  }
  
  /* Section Typography - Larger sizes for mobile portrait */
  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  
  .section-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .section-tag {
    font-size: 0.9rem;
  }
  
  .benefit-card h3,
  .feature-card h3,
  .use-case-card__title {
    font-size: 1.25rem;
  }
  
  .benefit-card p,
  .feature-card p,
  .use-case-card__description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .featured-case__title {
    font-size: 1.5rem;
  }
  
  .featured-case__description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .ai-tracking__title {
    font-size: 1.75rem;
  }
  
  .ai-tracking__description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Hero Video Wall - Fill remaining height, anchored top and bottom */
  .hero__video-wall {
    overflow: hidden;
    position: absolute;
    inset: 0;
  }
  
  .hero__scroll-track {
    overflow: hidden;
    height: 100%;
  }
  
  .hero__scroll-container {
    height: 100%;
  }
  
  /* Video panels fill the hero height */
  .video-panel {
    height: 100%;
    background-position: center center;
  }
  
  /* Video Panels - Stack vertically */
  .hero__video-panels {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Features Grid */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    max-width: 100%;
  }
  
  .feature-card--large {
    grid-column: span 1;
  }
  
  /* Benefits Grid */
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    max-width: 100%;
  }
  
  /* Featured Use Cases - Stack vertically */
  .featured-cases__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-case {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .featured-case__image {
    min-height: 200px;
    max-width: 100%;
  }
  
  .featured-case__content {
    padding: 1.5rem;
  }
  
  /* AI Tracking Section */
  .ai-tracking__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ai-tracking__stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .ai-tracking__visual {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Dashboard Section */
  .dashboard__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dashboard-section__content {
    grid-template-columns: 1fr;
  }
  
  .dash-main {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Use Cases Grid */
  .use-cases__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .use-case-card {
    max-width: 100%;
  }
  
  /* Results Grid */
  .results__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .result-card {
    max-width: 100%;
  }
  
  /* Resellers Grid */
  .resellers__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reseller-card {
    max-width: 100%;
  }
  
  /* Contact Section */
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__info,
  .contact__form {
    max-width: 100%;
  }
  
  /* Footer */
  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer__column {
    text-align: center;
  }
  
  /* Clients/Logos */
  .clients__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .clients__logos img {
    max-width: 120px;
  }
  
  /* Events Map Section */
  .events-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .events-filter {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .events-legend {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .section-description {
    max-width: 100%;
  }
  
  /* Goodwood Section */
  .goodwood__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .goodwood__visual {
    max-width: 100%;
    overflow: hidden;
  }
  
  /* AWS Section */
  .aws__features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Gallery Grid */
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery__filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Platform Page */
  .viewer-feature,
  .viewer-feature--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .differentiators__grid {
    grid-template-columns: 1fr;
  }
  
  .tech-highlights__grid {
    grid-template-columns: 1fr;
  }
  
  /* About Page */
  .story__content {
    grid-template-columns: 1fr;
  }
  
  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .mission__content {
    grid-template-columns: 1fr;
  }
  
  /* Overview Section */
  .overview__content {
    grid-template-columns: 1fr;
  }
  
  /* All images - prevent overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* All videos - prevent overflow */
  video {
    max-width: 100%;
    height: auto;
  }
  
  /* Tables - horizontal scroll wrapper */
  table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }
  
  /* Prevent any element from causing overflow */
  * {
    max-width: 100vw;
  }
  
  /* FAQ Chat Widget - Compact mobile portrait layout */
  #faq-chat-widget {
    bottom: 12px;
    right: 12px;
  }
  
  .faq-chat-toggle {
    width: 52px;
    height: 52px;
  }
  
  .faq-chat-panel {
    bottom: 70px;
    width: calc(100vw - 24px);
    max-width: 380px;
    max-height: 70vh;
    right: 0;
    border-radius: 16px;
  }
  
  .faq-chat-header {
    padding: 12px 16px;
  }
  
  .faq-avatar-container {
    width: 40px;
    height: 40px;
  }
  
  .faq-avatar-image {
    width: 40px;
    height: 40px;
  }
  
  .faq-chat-header h3 {
    font-size: 0.95rem;
  }
  
  .faq-chat-header p {
    font-size: 0.75rem;
  }
  
  .faq-chat-messages {
    padding: 12px;
    max-height: 45vh;
  }
  
  .faq-message {
    max-width: 90%;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .faq-chat-input {
    padding: 10px 12px;
  }
  
  .faq-chat-input input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .faq-chat-input button {
    width: 40px;
    height: 40px;
  }
}

/* Fallback for devices that don't report orientation */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
  }
  
  /* Hero video wall - keep animation, ensure container clips */
  .hero__video-wall,
  .hero__scroll-track {
    overflow: hidden;
  }
  
  .featured-cases__grid,
  .features__grid,
  .benefits__grid,
  .use-cases__grid,
  .results__grid,
  .resellers__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  
  .featured-case,
  .viewer-feature,
  .viewer-feature--reverse,
  .ai-tracking__hero,
  .dashboard__content,
  .goodwood__content,
  .story__content,
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE LANDSCAPE - Content centered, stats below fold
   ============================================ */
@media (max-width: 932px) and (orientation: landscape) {
  /* Hero Section - Content centered vertically, stats below fold */
  .hero,
  .hero--cinematic {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 3rem 0 0;
    position: relative;
    overflow: visible;
    padding-bottom: 4rem;
  }
  
  .hero__container {
    padding-top: 0;
    padding-bottom: 0;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Landscape Typography - Match portrait sizes */
  .hero__badge {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
  }
  
  .hero__title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.1;
  }
  
  .hero__title-line {
    display: inline;
  }
  
  .hero__title-line::after {
    content: ' ';
  }
  
  .hero__subtitle {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .hero__description {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
  
  .hero__buttons .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Hero Stats - Positioned just below fold, first thing on scroll */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 3rem 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.95));
    z-index: 10;
  }
  
  .hero__stats .stat {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  
  .hero__stats .stat__number {
    font-size: 1.35rem;
  }
  
  .hero__stats .stat__label {
    font-size: 1.05rem;
  }
  
  /* Video wall fills hero background */
  .hero__video-wall {
    overflow: hidden;
    position: absolute;
    inset: 0;
  }
  
  .hero__scroll-track {
    overflow: hidden;
    height: 100%;
  }
  
  .hero__scroll-container {
    height: 100%;
  }
  
  .video-panel {
    height: 100%;
    background-position: center center;
  }
  
  /* FAQ Chat Widget - Compact landscape layout */
  #faq-chat-widget {
    bottom: 10px;
    right: 10px;
  }
  
  .faq-chat-toggle {
    width: 48px;
    height: 48px;
  }
  
  .faq-chat-toggle svg {
    width: 22px;
    height: 22px;
  }
  
  .faq-badge {
    font-size: 8px;
    padding: 2px 5px;
  }
  
  .faq-chat-panel {
    bottom: 60px;
    width: 340px;
    max-height: 280px;
    border-radius: 14px;
  }
  
  .faq-chat-header {
    padding: 10px 14px;
  }
  
  .faq-avatar-container {
    width: 36px;
    height: 36px;
  }
  
  .faq-avatar-image {
    width: 36px;
    height: 36px;
  }
  
  .faq-avatar-status {
    width: 8px;
    height: 8px;
  }
  
  .faq-chat-header-info {
    gap: 10px;
  }
  
  .faq-chat-header h3 {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  /* Hide subtitle in landscape for compact view */
  .faq-chat-header p {
    display: none;
  }
  
  .faq-chat-header-actions button {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
  
  .faq-chat-header-actions svg {
    width: 14px;
    height: 14px;
  }
  
  .faq-chat-messages {
    padding: 10px 12px;
    max-height: 140px;
    min-height: 100px;
  }
  
  .faq-message {
    max-width: 88%;
    padding: 8px 12px;
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .faq-chat-input {
    padding: 8px 12px;
    gap: 8px;
  }
  
  .faq-chat-input input {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .faq-chat-input button {
    width: 36px;
    height: 36px;
  }
  
  .faq-chat-input button svg {
    width: 16px;
    height: 16px;
  }
  
  /* Hide suggested questions in landscape to save space */
  #faq-suggested-questions,
  .faq-suggestions {
    display: none !important;
  }
}

/* Live Experiences Section */
.live-experiences {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
}

.experience-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.experience-filter {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.experience-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
}

.experience-filter.active {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.experience-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.experience-card.hidden {
  display: none;
}

.experience-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  background-color: var(--bg-card);
}

.experience-card__image[data-bg] {
  background-image: none;
}

.experience-card__image.loaded {
  background-image: var(--lazy-bg);
}

.experience-card:hover .experience-card__image {
  transform: scale(1.05);
}

.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
}

.experience-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.experience-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.experience-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .experience-filters {
    gap: 0.5rem;
  }
  
  .experience-filter {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

/* Fade-in animation for filter transitions */
.experience-card.fade-in {
  animation: fadeIn 0.4s ease;
}

/* New Multiview Player Showcase */
.new-player-showcase {
  padding: 3.75rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 50%, var(--bg-primary) 100%);
}

.new-player-showcase__header {
  text-align: center;
  margin-bottom: 3rem;
}

.new-player-showcase__content {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.new-player-showcase__preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 2px solid var(--primary);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.new-player-showcase__preview:hover {
  transform: scale(1.02);
  border-color: var(--secondary);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.3);
}

.new-player-showcase__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

.new-player-showcase__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.new-player-showcase__play-icon svg {
  fill: var(--primary);
  margin-left: 5px;
}

.new-player-showcase__preview:hover .new-player-showcase__play-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.new-player-showcase__preview:hover .new-player-showcase__play-icon svg {
  fill: white;
}

.new-player-showcase__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: center;
}

.new-player-showcase__info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.new-player-showcase__info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.new-player-showcase__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.new-player-showcase__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.new-player-showcase__feature svg {
  color: var(--primary);
}

@media (max-width: 768px) {
  .new-player-showcase {
    padding: 3rem 0;
  }
  
  .new-player-showcase__preview {
    border-radius: 0.75rem;
  }
  
  .new-player-showcase__play-icon {
    width: 70px;
    height: 70px;
  }
  
  .new-player-showcase__play-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .new-player-showcase__info h3 {
    font-size: 1.2rem;
  }
  
  .new-player-showcase__features {
    gap: 1.5rem;
  }
  
  .new-player-showcase__feature {
    font-size: 0.85rem;
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-modal__content {
  position: relative;
  width: 98vw;
  max-width: none;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.video-modal__close:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: var(--glow-green);
}

.video-modal__wrapper {
  position: relative;
  width: 98vw;
  height: 85vh;
  overflow: visible;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(16, 185, 129, 0.2);
  border: 1px solid var(--border);
}

.video-modal__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 1280px;
  min-height: 720px;
  border: none;
}

.video-modal__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
}

.video-modal__loader svg {
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}

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

.video-modal__title {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .video-modal {
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    justify-content: center;
  }
  
  .video-modal__content {
    width: 100%;
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .video-modal__close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 10002;
  }
  
  .video-modal__wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
    border-radius: var(--radius-md);
  }
  
  .video-modal__wrapper iframe {
    min-width: unset;
    min-height: unset;
    width: 100%;
    height: 100%;
  }
  
  .video-modal__title {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* Orientation change transition - narrow scope to prevent jank without breaking animations */
body.orientation-changing,
body.orientation-changing .hero,
body.orientation-changing .hero__content,
body.orientation-changing .nav,
body.orientation-changing .faq-chat-panel {
  transition: none !important;
}

/* Prevent zoom during orientation change */
@media screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}
