/* ============================================================================
   SABRE QED - MARKETING WEBSITE STYLES
   ============================================================================
   Matching Sabre Products design language
   Premium dark theme with purple accent
   ============================================================================ */

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --accent: #10b981;
  --accent-light: #34d399;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #1a1a2e;
  --darker: #0f0f1e;
  --darkest: #080812;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --glow: rgba(124, 58, 237, 0.4);
  --glow-strong: rgba(124, 58, 237, 0.6);
  --qed-blue: #667eea;
  --qed-purple: #764ba2;
}

* {
  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;
}

/* LOCALHOST MODE Floating Button */
.localhost-floating-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  z-index: 10000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.localhost-floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Promotional Banner */
.promo-banner {
  background: linear-gradient(
    135deg,
    var(--qed-blue) 0%,
    var(--qed-purple) 100%
  );
  color: white;
  padding: 12px 20px;
  text-align: center;
  z-index: 1100;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-banner p {
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.promo-banner strong {
  font-weight: 700;
}

.promo-banner span {
  opacity: 0.9;
}

/* ============================================================================
   BACKGROUND EFFECTS
   ============================================================================ */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(124, 58, 237, 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(124, 58, 237, 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.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 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
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  padding: 16px 0;
}

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(--qed-blue) 0%,
    var(--qed-purple) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  color: white;
  font-weight: 800;
}

.logo-text .highlight {
  background: linear-gradient(
    135deg,
    var(--qed-blue) 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(--qed-blue) 0%,
    var(--qed-purple) 100%
  );
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-accent {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  border: 2px solid var(--border);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--qed-blue);
  background: rgba(102, 126, 234, 0.1);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85em;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  min-height: 80vh;
  padding: 60px 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: 8px;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9em;
  margin-bottom: 24px;
  color: var(--primary-light);
}

.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(--qed-blue) 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);
  color: var(--text-dim);
  font-size: 0.9em;
}

/* Hero Visual — App Preview */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, #1e1e32 0%, #12122a 100%);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-mockup:hover {
  transform: scale(1.02);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(102, 126, 234, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mockup-title {
  font-weight: 700;
  font-size: 1.1em;
  color: var(--text);
}

.mockup-badges {
  display: flex;
  gap: 8px;
}

.mockup-badge {
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7em;
  color: var(--primary-light);
  font-weight: 600;
}

.mockup-badge.green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--accent-light);
}

.mockup-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s;
}

.mockup-product:hover {
  border-color: var(--qed-blue);
  background: rgba(102, 126, 234, 0.05);
}

.mockup-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-product-thumb {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.2),
    rgba(118, 75, 162, 0.2)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
}

.mockup-product-name {
  font-weight: 600;
  font-size: 0.85em;
  color: var(--text);
}

.mockup-product-sku {
  font-size: 0.7em;
  color: var(--text-dim);
}

.mockup-product-price {
  font-weight: 700;
  font-size: 0.9em;
  color: var(--accent-light);
}

.mockup-totals {
  margin-top: 16px;
  padding: 14px;
  background: rgba(102, 126, 234, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
}

.mockup-total-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.85em;
  color: var(--text-muted);
}

.mockup-total-row.grand {
  font-weight: 800;
  font-size: 1.1em;
  color: var(--qed-blue);
  border-top: 2px solid rgba(102, 126, 234, 0.3);
  padding-top: 10px;
  margin-top: 6px;
}

/* 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(--qed-blue) 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(124, 58, 237, 0.03) 50%,
    transparent 100%
  );
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.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: 20px;
}

.card-header .icon {
  font-size: 1.5em;
}

.card-header h3 {
  font-size: 1.2em;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card li {
  padding: 8px 0;
  padding-left: 8px;
  font-size: 0.95em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.comparison-card li:last-child {
  border-bottom: none;
}

/* ============================================================================
   FEATURES GRID
   ============================================================================ */

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--qed-blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15em;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92em;
  line-height: 1.6;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(102, 126, 234, 0.03) 50%,
    transparent 100%
  );
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--qed-blue);
  transform: translateY(-5px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--qed-blue), var(--qed-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 800;
  margin: 0 auto 20px;
  color: white;
}

.step-content h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.6;
}

.demo-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
}

.demo-cta h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
}

.demo-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ============================================================================
   RESOURCES
   ============================================================================ */

.resources {
  padding: 100px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}

.resource-card:hover {
  border-color: var(--qed-blue);
  transform: translateY(-5px);
}

.resource-icon {
  font-size: 3em;
  margin-bottom: 16px;
}

.resource-card h3 {
  margin-bottom: 8px;
  font-size: 1.15em;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.92em;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Responsive YouTube video embed */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ============================================================================
   PRICING
   ============================================================================ */

.pricing {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(102, 126, 234, 0.03) 50%,
    transparent 100%
  );
}

.pricing-controls {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.billing-toggle {
  display: inline-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;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 0.9em;
}

.billing-btn.active {
  background: linear-gradient(135deg, var(--qed-blue), var(--qed-purple));
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.discount-badge {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 700;
  margin-left: 4px;
}

.currency-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9em;
  cursor: pointer;
}

.currency-select option {
  background: var(--darker);
  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.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--qed-blue);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15) 0%,
    rgba(118, 75, 162, 0.15) 100%
  );
  border-color: var(--qed-blue);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--qed-blue), var(--qed-purple));
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 1.2em;
  font-weight: 600;
  vertical-align: super;
}

.pricing-price .amount {
  font-size: 3em;
  font-weight: 800;
  line-height: 1;
}

.pricing-price .period {
  color: var(--text-muted);
  font-size: 0.9em;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.85em;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.92em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Pricing note section */
.pricing-info-box {
  margin-top: 40px;
  padding: 24px;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 16px;
  text-align: center;
}

.pricing-info-box p {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.6;
}

.pricing-info-box strong {
  color: var(--text);
}

/* ============================================================================
   RESELLER SECTION
   ============================================================================ */

.resellers {
  padding: 100px 0;
}

.reseller-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reseller-text {
  max-width: 560px;
}

.reseller-text h2 {
  font-size: 2em;
  margin-bottom: 16px;
}

.reseller-text > p {
  color: var(--text-muted);
  font-size: 1.05em;
  margin-bottom: 30px;
  line-height: 1.7;
}

.reseller-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 1.5em;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h4 {
  margin-bottom: 4px;
  font-size: 1.05em;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.92em;
}

/* Reseller visual — mock dashboard */
.reseller-visual {
  display: flex;
  justify-content: center;
}

.reseller-mockup {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, #1e1e32, #12122a);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.reseller-mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.reseller-mockup-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 800;
  color: white;
}

.reseller-mockup-title {
  font-weight: 700;
  font-size: 0.95em;
}

.reseller-mockup-subtitle {
  font-size: 0.75em;
  color: var(--text-dim);
}

.reseller-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.reseller-stat {
  text-align: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.reseller-stat .value {
  font-size: 1.6em;
  font-weight: 800;
  color: var(--qed-blue);
  display: block;
}

.reseller-stat .label {
  font-size: 0.7em;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reseller-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reseller-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.85em;
}

.reseller-tier .tier-name {
  font-weight: 600;
}

.reseller-tier .tier-discount {
  color: var(--accent-light);
  font-weight: 700;
}

/* ============================================================================
   CONTACT
   ============================================================================ */

.contact {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(102, 126, 234, 0.03) 50%,
    transparent 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05em;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.3em;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.92em;
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--qed-blue);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95em;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--qed-blue);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-control option {
  background: var(--darker);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background: var(--darkest);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand > p {
  color: var(--text-dim);
  font-size: 0.9em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact h4 {
  color: var(--primary-light);
  margin-bottom: 10px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9em;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85em;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    text-align: center;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reseller-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reseller-text {
    max-width: 100%;
  }

  .reseller-benefits {
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: 2em;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-value {
    font-size: 2em;
  }

  .promo-banner {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7em;
  }

  .hero p {
    font-size: 1em;
  }

  .pricing-controls {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
