@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --primary: #7000FF;
  --primary-hover: #5500D6;
  --primary-light: #F3EBFF;
  --primary-accent: #8E33FF;
  --secondary: #008A5E;
  --secondary-light: #E1F7EE;
  --dark: #0B0B1E;
  --dark-slate: #15152A;
  --dark-gray: #4B4B60;
  --light-gray: #F6F6FA;
  --border-color: #E6E6EE;
  --white: #FFFFFF;
  --font-sans: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;
  
  --shadow-sm: 0 2px 8px rgba(11, 11, 30, 0.04);
  --shadow-md: 0 10px 30px rgba(112, 0, 255, 0.06);
  --shadow-lg: 0 20px 48px rgba(11, 11, 30, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(112, 0, 255, 0.04);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-full: 9999px;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(135deg, var(--dark) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(112, 0, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 0, 255, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--light-gray);
  border-color: var(--dark-gray);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

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

.btn-link:hover svg {
  transform: translateX(4px);
}

.btn-link svg {
  transition: var(--transition-fast);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
}

.badge-policy {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.badge-purple {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* --- PROMO BANNER --- */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-accent) 100%);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  z-index: 101;
}

.promo-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 600;
}

.promo-banner a:hover {
  opacity: 0.9;
}

/* --- NAVBAR --- */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-base);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}

.logo span {
  color: var(--dark);
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-left: 1px;
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mobile-menu-actions {
  display: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-base);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
}

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

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.lang-selector:hover {
  background-color: var(--light-gray);
}

.lang-flag {
  width: 20px;
  height: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}

/* Burger menu button for mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  transition: var(--transition-base);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-color: #FAF9FD;
  overflow: hidden;
  padding: 80px 0 100px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge-g2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.hero-stars {
  color: #FFA800;
  display: flex;
  gap: 2px;
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-gray);
  margin-top: -10px;
}

/* Tab/Selector CSS Logic */
.hero-selectors {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-selector-row {
  display: flex;
  gap: 12px;
}

.selector-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
  user-select: none;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--dark);
}

.selector-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.selector-icon {
  width: 36px;
  height: 36px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
  transition: var(--transition-base);
}

/* Hidden inputs for pure CSS interactivity */
.hidden-radio {
  display: none;
}

/* Active styles based on radio checking */
#intent-travel:checked ~ .hero-grid .selector-card[for="intent-travel"],
#intent-expense:checked ~ .hero-grid .selector-card[for="intent-expense"],
#intent-team:checked ~ .hero-grid .selector-card[for="intent-team"],
#intent-admin:checked ~ .hero-grid .selector-card[for="intent-admin"],
#intent-personal:checked ~ .hero-grid .selector-card[for="intent-personal"] {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(112, 0, 255, 0.08);
}

#intent-travel:checked ~ .hero-grid .selector-card[for="intent-travel"] .selector-icon,
#intent-expense:checked ~ .hero-grid .selector-card[for="intent-expense"] .selector-icon,
#intent-team:checked ~ .hero-grid .selector-card[for="intent-team"] .selector-icon,
#intent-admin:checked ~ .hero-grid .selector-card[for="intent-admin"] .selector-icon,
#intent-personal:checked ~ .hero-grid .selector-card[for="intent-personal"] .selector-icon {
  background-color: var(--primary);
  color: var(--white);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}

.hero-video-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
}

.hero-video-link:hover {
  color: var(--primary);
}

.play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  transition: var(--transition-base);
}

.hero-video-link:hover .play-icon {
  transform: scale(1.1);
  background-color: var(--primary-light);
}

/* Right Mockup Graphic */
.hero-right {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container {
  width: 100%;
  max-width: 420px;
  height: 100%;
  position: relative;
}

/* Base phone frame */
.mockup-phone {
  width: 320px;
  height: 480px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 12px solid var(--dark);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  padding: 16px;
  background-color: #FAF9FC;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

/* Floating overlay cards */
.floating-widget {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition-slow);
}

.toast-widget {
  top: 15%;
  right: -20px;
  width: 220px;
  border-left: 4px solid var(--secondary);
}

.stats-widget {
  bottom: 12%;
  left: -40px;
  width: 200px;
}

.photo-decorator {
  position: absolute;
  top: -20px;
  right: 60px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  overflow: hidden;
}

.photo-decorator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pure CSS visibility toggle for right mockups based on selected tab */
.mockup-view {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn var(--transition-base) forwards;
}

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

#intent-travel:checked ~ .hero-grid .view-travel { display: block; }
#intent-expense:checked ~ .hero-grid .view-expense { display: block; }
#intent-team:checked ~ .hero-grid .view-team { display: block; }
#intent-admin:checked ~ .hero-grid .view-admin { display: block; }
#intent-personal:checked ~ .hero-grid .view-personal { display: block; }

/* Mockup Elements details */
.ticket-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.route-code {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.route-arrow {
  color: var(--primary);
  font-size: 18px;
}

.ticket-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-top: 1px dashed var(--border-color);
  padding-top: 8px;
}

.ticket-price {
  font-weight: 700;
  color: var(--dark);
}

.widget-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--dark-gray);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.widget-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.expense-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 13px;
}

.expense-row:last-child {
  border-bottom: none;
}

.expense-category {
  font-weight: 600;
  color: var(--dark);
}

.expense-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.status-approved {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.status-pending {
  background-color: #FFF2E0;
  color: #FFA800;
}

/* --- TRUSTED LOGOS SECTION --- */
.trusted-logos {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0 40px 0;
  background-color: var(--white);
  overflow: hidden;
  width: 100%;
}

.trusted-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.title-line {
  flex: 1;
  height: 1px;
  background-color: rgba(11, 11, 30, 0.1);
}

.trusted-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #1b365d;
  margin: 0 36px;
  white-space: nowrap;
  opacity: 0.6;
}

.logo-marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.logo-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  flex-shrink: 0;
}

.logo-marquee-track svg {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: grayscale(100%) opacity(50%);
  transition: filter 0.3s, opacity 0.3s;
}

.logo-marquee-track svg:hover {
  filter: grayscale(0%) opacity(100%);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .trusted-logos {
    padding: 20px 0 30px 0;
  }
  .trusted-title {
    font-size: 11px;
    margin: 0 16px;
  }
  .logo-marquee-track {
    gap: 50px;
    padding-right: 50px;
  }
  .logo-marquee-track svg {
    height: 22px;
  }
}

/* --- AI PLATFORM GRID --- */
.ai-section {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.section-title {
  font-size: 42px;
}

.section-desc {
  font-size: 18px;
  color: var(--dark-gray);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.ai-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ai-card {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.ai-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.ai-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.ai-card-desc {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* AI Demo interactive block (Chat mockup) */
.ai-interactive-mockup {
  background-color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.mockup-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.chat-name {
  font-weight: 600;
  font-size: 15px;
}

.chat-status {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-status-dot {
  width: 6px;
  height: 6px;
  background-color: #00FF66;
  border-radius: 50%;
}

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.msg-user {
  background-color: rgba(255,255,255,0.1);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.msg-bot {
  background-color: var(--primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-card-suggestion {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 8px;
  font-size: 13px;
}

.chat-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.chat-card-btn {
  background-color: var(--white);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* --- CORE VALUES (Alternating Blocks) --- */
.values-section {
  background-color: var(--light-gray);
}

.value-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.value-block:last-child {
  margin-bottom: 0;
}

.value-block.reverse {
  direction: rtl;
}

.value-block.reverse .value-content {
  direction: ltr;
}

.value-block.reverse .value-visual {
  direction: ltr;
}

.value-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-title {
  font-size: 32px;
}

.value-desc {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.value-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.value-feature-item svg {
  color: var(--secondary);
}

/* Value visual - mockups */
.value-visual {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.visual-inner {
  width: 100%;
  max-width: 380px;
}

/* Card Mockup */
.milly-card {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, #0B0B1E 0%, #1A1A3A 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.milly-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.card-logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.card-chip {
  width: 36px;
  height: 28px;
  background-color: #E2AD3A;
  border-radius: 4px;
  margin-bottom: 16px;
}

.card-number {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.card-holder {
  text-transform: uppercase;
}

/* --- VIDEO ACTION CTA --- */
.video-cta {
  background-color: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}

.video-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.video-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-content h2 {
  color: var(--white);
  font-size: 42px;
}

.video-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

.video-wrapper {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  object-fit: cover;
  background-color: #222;
}

.video-overlay {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(11, 11, 30, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.video-wrapper:hover .video-overlay {
  background: rgba(112, 0, 255, 0.4);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: var(--transition-base);
}

.video-wrapper:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(112, 0, 255, 0.5);
  color: var(--primary-hover);
}

/* --- AUDIENCE / SEGMENTS SECTION --- */
.audience-section {
  background-color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

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

.audience-img {
  height: 200px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.audience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: var(--transition-slow);
}

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

.audience-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.audience-title {
  font-size: 18px;
}

.audience-desc {
  font-size: 14.5px;
  color: var(--dark-gray);
  line-height: 1.5;
  flex: 1;
}

/* --- SKY-HIGH SAVINGS SECTION --- */
.savings-section {
  background-color: var(--light-gray);
}

.savings-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.savings-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.stat-desc {
  font-size: 13.5px;
  color: var(--dark-gray);
}

.savings-mockup {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- TECH + SUPPORT SECTION --- */
.tech-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tech-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-base);
}

.tech-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tech-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background-color: var(--light-gray);
  overflow: hidden;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.4;
  color: var(--dark);
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  margin-top: 24px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.author-role {
  font-size: 14px;
  color: var(--dark-gray);
}

.testimonial-logo {
  margin-bottom: 24px;
  height: 32px;
}

.testimonial-video-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--dark);
}

.testimonial-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition-base);
}

.testimonial-video-preview:hover .testimonial-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary);
  color: var(--white);
}

/* --- FINAL CTA SECTION --- */
.final-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-slate) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 138, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--white);
  font-size: 48px;
}

.final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--primary-accent);
}

.footer-column-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14.5px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-meta-links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
}

.footer-meta-link:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge-g2 {
    margin: 0 auto;
  }
  
  .hero-selectors {
    max-width: 560px;
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-right {
    height: 480px;
  }
  
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ai-interactive-mockup {
    order: -1;
  }
  
  .value-block {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .value-block.reverse {
    direction: ltr;
  }
  
  .value-features {
    align-items: center;
  }
  
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .savings-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .nav-menu {
    display: none; /* JS togglable in actual implementation, or slide-out menu */
  }
  
  .burger-menu {
    display: flex;
  }
  
  .header-actions .btn-primary,
  .header-actions .btn-outline,
  .header-actions .btn-login,
  .header-actions .lang-selector {
    display: none !important;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .btn-login-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .savings-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- DARK THEME & HERO V2 STYLES --- */
.theme-dark {
  background-color: #030308;
}

.theme-dark .header {
  background-color: rgba(3, 3, 8, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.theme-dark .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
}

.theme-dark .nav-link:hover {
  color: #fff !important;
}

.theme-dark .btn-login {
  color: rgba(255, 255, 255, 0.9) !important;
}

.theme-dark .btn-login:hover {
  color: #fff !important;
}

.theme-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}

.theme-dark .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.theme-dark .lang-selector {
  color: rgba(255, 255, 255, 0.8) !important;
}

.theme-dark .lang-selector:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.theme-dark .logo {
  color: #fff !important;
}

.theme-dark .logo span {
  color: #A880FF !important;
}

.theme-dark .logo-dot {
  background-color: #A880FF !important;
}

.theme-dark .burger-line {
  background-color: #fff !important;
}

@media (max-width: 768px) {
  .theme-dark .nav-menu {
    background-color: #030308 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .theme-dark .btn-login-mobile {
    color: #fff !important;
  }
}

/* --- HERO V2 LAYOUT --- */
.hero-dark-v2 {
  background-color: #030308 !important;
  color: #fff;
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

/* Ambient glow background effects */
.hero-dark-v2::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(112, 0, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-dark-v2::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(0, 211, 161, 0.08) 0%, rgba(0, 211, 161, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid-v2 {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .hero-grid-v2 {
    grid-template-columns: 1.2fr 1fr;
  }
  .hero-right-v2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-grid-v2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left-v2 {
    text-align: center;
    align-items: center;
  }
  .hero-badge-v2 {
    margin: 0 auto;
  }
  .hero-ctas-v2 {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas-v2 .btn {
    width: 100%;
  }
}

.hero-left-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge-v2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #A880FF;
  background: rgba(168, 128, 255, 0.1);
  border: 1px solid rgba(168, 128, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero-title-v2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -1.5px;
}

@media (max-width: 992px) {
  .hero-title-v2 {
    font-size: 42px;
  }
}

.text-purple-gradient {
  background: linear-gradient(135deg, #c0a3ff 0%, #8c3dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-ctas-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-demo-v2 {
  background-color: #3500FF !important;
  color: #fff !important;
  padding: 16px 32px !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(53, 0, 255, 0.3) !important;
}

.btn-demo-v2:hover {
  background-color: #5522FF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(53, 0, 255, 0.4) !important;
}

.btn-outline-v2 {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-outline-v2:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.play-icon-v2 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  padding-left: 2px; /* Center the triangle visually */
}

/* --- AI AGENT GLASS CARD --- */
.ai-agent-card {
  background: rgba(13, 13, 27, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7000FF 0%, #3500FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(112, 0, 255, 0.3);
}

.sparkle-icon {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.agent-title {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.agent-welcome h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.agent-welcome p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Alert block */
.agent-alert {
  background: rgba(227, 6, 19, 0.08);
  border: 1px solid rgba(227, 6, 19, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-icon {
  font-size: 16px;
  color: #ff4d4d;
  transform: rotate(-45deg);
  font-weight: bold;
}

.alert-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alert-title {
  font-size: 13px;
  font-weight: 700;
  color: #ff4d4d;
}

.alert-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* Alternatives list */
.agent-alternatives {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alternatives-heading {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: normal;
}

.alternative-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alternative-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.alternative-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.alternative-item.best-option {
  border-color: rgba(0, 211, 161, 0.35);
  background: rgba(0, 211, 161, 0.04);
}

.alternative-item.best-option:hover {
  background: rgba(0, 211, 161, 0.08);
  border-color: rgba(0, 211, 161, 0.5);
}

.best-badge {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00D3A1;
  background: rgba(0, 211, 161, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.option-left {
  display: flex;
  flex-direction: column;
}

.option-time {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.option-details {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.option-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.option-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  margin-right: -4px;
}

/* Agent Confirm Button */
.btn-confirm-agent {
  background: #3500FF;
  color: #fff;
  padding: 14px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
  width: 100%;
  border: none;
  box-shadow: 0 4px 15px rgba(53, 0, 255, 0.2);
}

.btn-confirm-agent:hover {
  background: #5522FF;
}

.btn-confirm-agent:active {
  transform: scale(0.98);
}

/* --- PLANE PORTHOLE WINDOW --- */
.porthole-window {
  position: relative;
  width: 320px;
  height: 480px;
  border-radius: 160px;
  background: #15151e;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7), 
    inset 0 0 20px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 35px rgba(112, 0, 255, 0.12);
  border: 14px solid #2a2a38;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.porthole-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 132px;
  overflow: hidden;
  box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.95);
  border: 5px solid #0d0d12;
}

.porthole-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.porthole-glass-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

