/* ============================================================================
   SABRE CLOUD - MARKETING WEBSITE STYLES
   ============================================================================
   Matching Sabre Products design language
   Premium dark theme with blue-purple cloud accent
   ============================================================================ */

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --primary-glow: rgba(59, 130, 246, 0.4);
  --primary-glow-strong: rgba(59, 130, 246, 0.6);
  --accent: #10b981;
  --accent-light: #34d399;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #0f172a;
  --darker: #020617;
  --darkest: #000;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --radius-lg: 20px;
  --radius-md: 12px;
}

* {
  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(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(59, 130, 246, 0.05) 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;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-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-light) 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: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93em;
  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-light) 100%
  );
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow-strong);
}

.btn-outline {
  border: 2px solid var(--border);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
}

.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);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85em;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9em;
  margin-bottom: 24px;
  color: var(--primary-light);
}

/* Animated Ping Badge */
.ping-container {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-flex;
}

.ping-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.ping-ring {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Trust Avatars */
.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 {
  display: flex;
}

.trust-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 2px solid var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: -8px;
}

.trust-avatars .avatar:first-child {
  margin-left: 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;
}

/* Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 560px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(59, 130, 246, 0.05);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-mockup:hover {
  transform: scale(1.02);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(59, 130, 246, 0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #10b981;
}

.mockup-title {
  font-size: 0.75em;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 140px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid var(--border-light);
  padding: 8px 0;
}

.sidebar-item {
  padding: 8px 12px;
  font-size: 0.7em;
  color: var(--text-muted);
  cursor: default;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.sidebar-item.active {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
  border-left-color: var(--primary);
}

.mockup-content {
  flex: 1;
  padding: 16px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.m-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.m-stat.green {
  border-color: rgba(16, 185, 129, 0.3);
}

.m-stat.amber {
  border-color: rgba(245, 158, 11, 0.3);
}

.m-stat.red {
  border-color: rgba(239, 68, 68, 0.3);
}

.m-stat-val {
  font-size: 1.3em;
  font-weight: 800;
  line-height: 1;
}

.m-stat.green .m-stat-val {
  color: var(--accent);
}

.m-stat.amber .m-stat-val {
  color: var(--warning);
}

.m-stat.red .m-stat-val {
  color: var(--danger);
}

.m-stat-label {
  font-size: 0.6em;
  color: var(--text-muted);
  margin-top: 4px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.6),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
  min-height: 10px;
}

.chart-bar.active {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

/* 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;
}

/* ============================================================================
   PROBLEM/SOLUTION SECTION
   ============================================================================ */

.problem-solution {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.03) 50%,
    transparent 100%
  );
}

.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;
}

.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(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 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;
}

/* ============================================================================
   REPORTS SECTION
   ============================================================================ */

.reports-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.03) 50%,
    transparent 100%
  );
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.report-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.report-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.report-card.featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.08);
}

.report-icon {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.report-card h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.report-card p {
  color: var(--text-muted);
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works {
  padding: 100px 0;
}

.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-light) 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;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.03) 50%,
    transparent 100%
  );
}

.pricing-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.billing-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--border);
}

.billing-btn {
  padding: 10px 24px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95em;
  transition: all 0.3s;
}

.billing-btn.active {
  background: var(--primary);
  color: white;
}

.discount-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 700;
}

.currency-select {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95em;
  cursor: pointer;
  appearance: auto;
}

.currency-select option {
  background: var(--dark);
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.07);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 1.5em;
  font-weight: 700;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3.5em;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price .period {
  font-size: 0.9em;
  color: var(--text-dim);
}

.pricing-note {
  color: var(--text-dim);
  font-size: 0.85em;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95em;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ============================================================================
   RESELLER SECTION
   ============================================================================ */

.resellers {
  padding: 100px 0;
}

.reseller-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.reseller-text h2 {
  font-size: 2em;
  margin-bottom: 16px;
  font-weight: 700;
}

.reseller-text > p {
  color: var(--text-muted);
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.7;
}

.reseller-benefits {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.95em;
}

/* Brand Mockup */
.brand-mockup {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.brand-mockup:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.brand-header {
  background: rgba(59, 130, 246, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9em;
}

.brand-header span {
  color: var(--text-dim);
  font-size: 0.8em;
}

.brand-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.brand-stat {
  background: rgba(15, 23, 42, 0.9);
  padding: 24px;
  text-align: center;
}

.brand-stat .value {
  display: block;
  font-size: 1.8em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-stat .label {
  display: block;
  color: var(--text-dim);
  font-size: 0.8em;
  margin-top: 4px;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.03) 50%,
    transparent 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-light);
  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;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95em;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-control option {
  background: var(--dark);
}

textarea.form-control {
  resize: vertical;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.85em;
}

.footer-credit a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .dashboard-mockup {
    max-width: 500px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .reseller-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-value {
    font-size: 2em;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================================================
   RESOURCES / MEDIA SECTION
   ============================================================================ */

.resources-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.03) 30%,
    rgba(59, 130, 246, 0.03) 70%,
    transparent 100%
  );
}

/* Ecosystem Showcase */
.ecosystem-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s;
}

.ecosystem-showcase:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.resource-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.ecosystem-label h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ecosystem-label p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95em;
}

.ecosystem-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ecosystem-image-wrapper:hover {
  transform: scale(1.02);
}

.ecosystem-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.media-icon {
  font-size: 2.2em;
  margin-bottom: 16px;
}

.media-card h3 {
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-card p {
  color: var(--text-muted);
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Video Wrapper */
.video-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: auto;
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

/* Audio Wrapper */
.audio-wrapper {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.audio-wrapper audio {
  width: 100%;
  height: 42px;
  filter: invert(1) hue-rotate(180deg);
}

.audio-meta {
  margin-top: 10px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8em;
}

/* PDF Preview */
.pdf-preview {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pdf-icon-large {
  color: var(--primary-light);
  opacity: 0.8;
}

.pdf-filename {
  font-size: 0.8em;
  color: var(--text-muted);
  font-family: monospace;
  word-break: break-all;
}

.pdf-size {
  font-size: 0.75em;
  color: var(--text-dim);
}

/* Media card accent borders */
.media-card-video:hover {
  border-color: var(--primary-light);
}

.media-card-audio:hover {
  border-color: var(--accent);
}

.media-card-pdf:hover {
  border-color: var(--warning);
}
