/* ═══════════════════════════════════════════════════
   DEUCE MARKETING SITE — styles.css
   Brand: #e23d3f | Font: Poppins | Tagline: Game On. Love On.
═══════════════════════════════════════════════════ */

/* —— Reset & Base —— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0f;
  color: #f0f0f0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* —— CSS Variables —— */
:root {
  --red: #e23d3f;
  --red-dark: #c0392b;
  --red-light: #ff6b6b;
  --red-glow: rgba(226, 61, 63, 0.35);
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a27;
  --card: #16161f;
  --card-border: rgba(255, 255, 255, 0.06);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #aaa;
  --white: #ffffff;
  --grad-brand: linear-gradient(135deg, var(--red), #ff6b35);
  --max-width: 1200px;
}

/* —— Utility —— */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--red);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

.nav-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.btn-nav {
  background: var(--grad-brand);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px var(--red-glow);
}

.nav-container .btn-nav {
  padding: 10px 16px;
}

.mobile-menu .btn-nav {
  padding: 10px 22px;
  margin-top: 8px;
  display: inline-block;
  width: auto;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 61, 63, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.mobile-menu a {
  display: block;
  padding: 12px 8px;
  color: var(--text-dim);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:last-child {
  border: none;
  margin-top: 8px;
  text-align: center;
}

.mobile-menu.open {
  display: block;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 130px 24px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(226, 61, 63, 0.18);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.12);
  bottom: 100px;
  left: -80px;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(226, 61, 63, 0.1);
  top: 40%;
  left: 35%;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 61, 63, 0.12);
  border: 1px solid rgba(226, 61, 63, 0.3);
  color: var(--red-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtext {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(226, 61, 63, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* —— Phone Visual —— */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrapper {
  position: relative;
  width: 280px;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(226, 61, 63, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.floating-card {
  position: absolute;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: float-card 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 25%;
  left: -40px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: -20px;
  animation-delay: 2s;
  font-weight: 600;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.fc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fc-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.fc-info {
  display: flex;
  flex-direction: column;
}

.fc-info strong {
  font-size: 0.8rem;
}

.fc-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.heart-pulse {
  font-size: 1.1rem;
  animation: pulse-heart 1.2s ease-in-out infinite;
}

@keyframes pulse-heart {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 40px;
  max-width: var(--max-width);
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

/* ═══════════════════════════════════════════════════
   SPORTS TICKER
═══════════════════════════════════════════════════ */
.sports-ticker {
  background: rgba(226, 61, 63, 0.08);
  border-top: 1px solid rgba(226, 61, 63, 0.15);
  border-bottom: 1px solid rgba(226, 61, 63, 0.15);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(226, 61, 63, 0.12);
  border: 1px solid rgba(226, 61, 63, 0.25);
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS / STEPS
═══════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 61, 63, 0.3);
  box-shadow: 0 20px 60px rgba(226, 61, 63, 0.12);
}

.featured-step {
  background: linear-gradient(135deg, rgba(226, 61, 63, 0.12), rgba(255, 107, 53, 0.05));
  border-color: rgba(226, 61, 63, 0.3);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(226, 61, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red-light);
  stroke: var(--red-light);
}

.featured-icon {
  background: var(--grad-brand);
  box-shadow: 0 8px 24px var(--red-glow);
}

.featured-icon svg {
  color: white;
  stroke: white;
}

.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   SPORTS SECTION
═══════════════════════════════════════════════════ */
.sports-section {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.sports-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.sports-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 30%, transparent 70%, var(--bg2) 100%);
}

.sports-content {
  position: relative;
  z-index: 1;
}

.section-header.light h2 {
  color: white;
}

.light-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.sports-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.sport-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s;
  cursor: default;
}

.sport-bubble:hover {
  background: rgba(226, 61, 63, 0.12);
  border-color: rgba(226, 61, 63, 0.3);
  color: var(--red-light);
}

.sport-bubble.active {
  background: rgba(226, 61, 63, 0.15);
  border-color: rgba(226, 61, 63, 0.4);
  color: var(--red-light);
}

.sports-more {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card.big-card {
  grid-row: span 2;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 61, 63, 0.25);
  box-shadow: 0 16px 48px rgba(226, 61, 63, 0.08);
}

.feature-card-inner {
  padding: 32px;
  height: 100%;
}

.big-card .feature-card-inner {
  display: flex;
  flex-direction: column;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(226, 61, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--red-light);
  stroke: var(--red-light);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.feature-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ftag {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-dim);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ftag-match {
  background: rgba(226, 61, 63, 0.15);
  color: var(--red-light);
  border-color: rgba(226, 61, 63, 0.3);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg2);
}

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

.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 61, 63, 0.25);
}

.featured-testi {
  border-color: rgba(226, 61, 63, 0.35);
  background: linear-gradient(135deg, rgb(226 61 63 / 10%), rgba(255, 107, 53, 0.04));
  box-shadow: 0 20px 60px rgba(226, 61, 63, 0.15);
}

.testi-quote-mark {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(226, 61, 63, 0.15);
  font-family: Georgia, serif;
}

.testi-stars {
  color: #ffd700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testi-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
}

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

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 61, 63, 0.25);
}

.pricing-popular {
  border-color: rgba(226, 61, 63, 0.4);
  background: linear-gradient(160deg, rgba(226, 61, 63, 0.08), rgba(255, 107, 53, 0.03));
  box-shadow: 0 24px 80px rgba(226, 61, 63, 0.18);
  transform: scale(1.04);
}

.pricing-popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-yes {
  color: var(--text-dim);
  font-size: 0.87rem;
}

.pf-no {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.87rem;
}

.pf-yes::marker,
.pf-no::marker {
  content: '';
}

.btn-pricing-free,
.btn-pricing-pro {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}

.btn-pricing-free {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-pricing-free:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn-pricing-pro {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 8px 28px var(--red-glow);
}

.btn-pricing-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(226, 61, 63, 0.5);
}

/* ═══════════════════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════════════════ */
.download-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.download-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-d1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(226, 61, 63, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  top: -200px;
  left: -200px;
}

.orb-d2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -100px;
  right: -100px;
}

.download-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.download-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.download-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.download-text p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 12px 20px;
  border-radius: 14px;
  transition: all 0.25s;
  min-width: 160px;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(226, 61, 63, 0.35);
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.store-btn strong {
  display: block;
  font-size: 0.95rem;
}

/* —— Waitlist Forms —— */
.hero-waitlist-form,
.waitlist-form {
  width: 100%;
}

.waitlist-input-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.waitlist-input-wrap input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 13px 18px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-input-wrap input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-input-wrap input[type="email"]:focus {
  border-color: rgba(226, 61, 63, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-input-wrap input[type="email"].error {
  border-color: rgba(226, 61, 63, 0.7);
}

.waitlist-success {
  display: none;
  color: #7ee787;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(126, 231, 135, 0.1);
  border: 1px solid rgba(126, 231, 135, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 4px;
}

.waitlist-success.visible {
  display: block;
}

.waitlist-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* hero form keeps same sizing, no extra mb */
.hero-waitlist-form {
  margin-bottom: 0;
}

.download-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.download-img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  max-height: 420px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #060609;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red-light);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS (AOS-like)
═══════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtext {
    margin: 0 auto 36px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.big-card {
    grid-column: span 2;
    grid-row: span 1;
  }

  .download-content {
    grid-template-columns: 1fr;
  }

  .download-img-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-nav:not(.mobile-link) {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-popular {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-wrapper {
    width: 220px;
  }

  .card-1 {
    right: -10px;
  }

  .card-2 {
    left: -10px;
  }

  .card-3 {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════════════
   TOAST NOTIFICATION (DESKTOP ERROR)
═══════════════════════════════════════════════════ */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22, 22, 31, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 61, 63, 0.5);
  color: var(--white);
  padding: 20px 32px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(226, 61, 63, 0.2);
  display: flex;
  align-items: center;
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 90%;
  width: max-content;
}

.toast-notification.show {
  bottom: 40px;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-content svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
}

.toast-content span {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.toast-content b {
  color: var(--red-light);
}
.toast-success svg {
  color: #2ecc71;
}

/* ---------------------------------------------------
   WAITLIST FORM
--------------------------------------------------- */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  width: 100%;
}

.get-started-btn:not(.btn-nav) {
  width: 100%;
  max-width: 400px;
  justify-content: center;
  font-size: 1.1rem;
  padding: 16px 32px;
}

.waitlist-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-submit {
  flex-shrink: 0;
  min-width: 200px;
}

@media (max-width: 500px) {
  .waitlist-form {
    flex-direction: column;
  }
}
