/* ============================================================================
   SABRE WGATEWAY - MARKETING WEBSITE STYLES
   ============================================================================
   WhatsApp-inspired theme with Sabre design language
   Dark theme with WhatsApp green accent
   ============================================================================ */

:root {
  /* Primary Colors - WhatsApp Green */
  --primary: #25d366;
  --primary-dark: #128c7e;
  --primary-light: #34e879;

  /* Secondary - Sabre Red */
  --secondary: #e53935;
  --secondary-dark: #b71c1c;

  /* Accent */
  --accent: #7c3aed;
  --accent-light: #a78bfa;

  /* Status */
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;

  /* Dark Theme */
  --dark: #1a1a2e;
  --darker: #0f0f1e;
  --darkest: #080812;

  /* Text */
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  /* Borders */
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);

  /* Glows */
  --glow: rgba(37, 211, 102, 0.4);
  --glow-strong: rgba(37, 211, 102, 0.6);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================================
   BACKGROUND EFFECTS
   ============================================================================ */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%,
      rgba(37, 211, 102, 0.12) 0%,
      transparent 50%),
    radial-gradient(ellipse at 80% 100%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 50%),
    radial-gradient(ellipse at 50% 50%,
      rgba(37, 211, 102, 0.04) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4em;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
}

.logo-text .highlight {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-light);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--darker);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95em;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow-strong);
}

.btn-whatsapp {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
}

.btn-outline {
  border: 2px solid var(--border);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(37, 211, 102, 0.1);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1em;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85em;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9em;
  margin-bottom: 24px;
  color: var(--primary-light);
}

/* Animated Ping Badge */
.ping-dot {
  position: relative;
  display: flex;
  width: 12px;
  height: 12px;
}

.ping-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-core {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15em;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.9em;
}

/* Trust Avatars */
.trust-avatars {
  display: flex;
  margin-right: 8px;
}

.trust-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border: 2px solid var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75em;
  margin-left: -8px;
}

.trust-avatars .avatar:first-child {
  margin-left: 0;
}

/* Hero Visual - Code Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.code-mockup {
  width: 100%;
  max-width: 550px;
  background: linear-gradient(145deg, #1e1e2e 0%, #151520 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-light);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27ca40;
}

.code-title {
  color: var(--text-muted);
  font-size: 0.85em;
}

.code-content {
  padding: 20px;
  overflow-x: auto;
}

.code-content code {
  font-family: "SF Mono", "Monaco", "Consolas", monospace;
  font-size: 0.85em;
  line-height: 1.7;
  color: var(--text);
}

.code-comment {
  color: #6b7280;
}

.code-keyword {
  color: #c792ea;
}

.code-string {
  color: var(--primary);
}

.code-property {
  color: #82aaff;
}

.code-function {
  color: #82aaff;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-light);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5em;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95em;
  margin-top: 4px;
}

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   PROBLEM/SOLUTION SECTION
   ============================================================================ */

.problem-solution {
  padding: 100px 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(37, 211, 102, 0.03) 50%,
      transparent 100%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px;
}

.comparison-card.problem {
  border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.solution {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.card-header .icon {
  font-size: 1.5em;
}

.card-header h3 {
  font-size: 1.3em;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-card.solution li {
  color: var(--text);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.6;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(37, 211, 102, 0.03) 50%,
      transparent 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.step-card {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-content h3 {
  font-size: 1.3em;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.demo-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.demo-cta h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
}

.demo-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================================================
   USE CASES SECTION
   ============================================================================ */

.use-cases {
  padding: 100px 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}

.use-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.use-case-icon {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 0.95em;
  margin-bottom: 16px;
}

.use-case-example {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.85em;
}

.use-case-example code {
  color: var(--primary);
  font-family: "SF Mono", monospace;
}

/* ============================================================================
   INTEGRATION SECTION
   ============================================================================ */

.integration {
  padding: 100px 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(124, 58, 237, 0.03) 50%,
      transparent 100%);
}

.code-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 0.9em;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.tab-content {
  background: linear-gradient(145deg, #1e1e2e 0%, #151520 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow-x: auto;
}

.tab-content.hidden {
  display: none;
}

.tab-content pre {
  margin: 0;
}

.tab-content code {
  font-family: "SF Mono", "Monaco", "Consolas", monospace;
  font-size: 0.9em;
  line-height: 1.7;
}

.integration-cta {
  text-align: center;
  margin-top: 40px;
}

.integration-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: rgba(37, 211, 102, 0.05);
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8em;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-badge.free-badge {
  background: linear-gradient(135deg,
      var(--accent) 0%,
      var(--accent-light) 100%);
}

.pricing-tier {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-separator {
  color: var(--text-dim);
  font-weight: 400;
  margin: 0 4px;
}

.pricing-price .currency {
  font-size: 0.9em;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-price .amount {
  font-size: 2.5em;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.9em;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95em;
}

.pricing-requirement {
  font-size: 0.85em;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
}

.pricing-note-box {
  text-align: center;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
}

.pricing-note-box p {
  margin: 0;
  color: var(--text);
}

/* ============================================================================
   DOWNLOAD SECTION
   ============================================================================ */

.download {
  padding: 100px 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(37, 211, 102, 0.03) 50%,
      transparent 100%);
}

.download-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px;
}

.download-content h2 {
  font-size: 2em;
  margin-bottom: 16px;
}

.download-content>p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.download-info {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.download-spec {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.85em;
  color: var(--text-dim);
}

.spec-value {
  font-weight: 600;
  color: var(--primary);
}

.download-note {
  color: var(--text-dim);
  font-size: 0.85em;
  margin-top: 16px;
}

/* App Preview */
.app-preview {
  background: linear-gradient(145deg, #1e1e2e 0%, #151520 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.preview-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}

.preview-content {
  padding: 30px;
  text-align: center;
}

.preview-logo {
  font-size: 3em;
  margin-bottom: 12px;
}

.preview-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Ping Badge */
.ping-dot {
  position: relative;
  display: flex;
  height: 12px;
  width: 12px;
  margin-right: 8px;
}

.ping-ring {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--primary);
  opacity: 0.75;
}

.ping-core {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 12px;
  width: 12px;
  background-color: var(--primary);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Hero Video Styling */
.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  background: var(--darkest);
}

.hero-video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Custom Video Controls */
.custom-video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.video-container:hover .custom-video-controls {
  opacity: 1;
}

.video-btn {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
}

.video-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.manual-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 25px var(--glow);
  z-index: 20;
  transition: all 0.3s;
}

.manual-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 15px 35px var(--glow);
}

.manual-play-btn.hidden {
  display: none;
}

/* Comparison Visual */
.comparison-visual {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.comparison-img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.comparison-visual:hover .comparison-img {
  transform: scale(1.02);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Trust Avatars */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.trust-avatars {
  display: flex;
  margin-right: -8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--darkest);
  border: 2px solid var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: -8px;
  color: var(--text-muted);
}

.hero-trust span {
  font-size: 0.9em;
  color: var(--text-muted);
}

/* Currency Selector */
.currency-controls {
  text-align: center;
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.currency-select {
  background: var(--darkest);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1.1em;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 250px;
  text-align: center;
}

.currency-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--glow);
}

.preview-status {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85em;
  margin-bottom: 24px;
}

.preview-status.connected::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.preview-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.preview-stat {
  display: flex;
  flex-direction: column;
}

.preview-stat .stat-num {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primary);
}

.preview-stat .stat-lbl {
  font-size: 0.8em;
  color: var(--text-dim);
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item .icon {
  font-size: 1.5em;
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95em;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1em;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-control::placeholder {
  color: var(--text-dim);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background: var(--darkest);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.95em;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1em;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.95em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.9em;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-dev {
  margin-top: 12px;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .features-grid,
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .download-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-info {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tab-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2em;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .download-box {
    padding: 30px;
  }

  .contact-form {
    padding: 24px;
  }
}

.resource-card.highlight {
  border: 1px solid var(--primary);
  background: linear-gradient(145deg, var(--bg-card), rgba(124, 58, 237, 0.05));
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.badge-sm {
  font-size: 0.7rem;
}

/* Resources Section */
.resources {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.resource-card {
  background: var(--darkest);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.resource-icon {
  font-size: 2em;
}

.resource-info h4 {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.resource-info p {
  color: var(--text-muted);
  font-size: 0.9em;
  margin-bottom: 20px;
}

.resource-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85em;
}