/* Fútbol Plus — Azul Maracaná Theme */

:root {
  --bg-dark: #0B131F;
  --bg-card: rgba(18, 30, 47, 0.7);
  --bg-card-hover: rgba(28, 45, 69, 0.85);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(0, 210, 255, 0.3);

  --color-primary: #00D2FF;
  --color-primary-glow: rgba(0, 210, 255, 0.3);
  --color-primary-dark: #00A2C7;
  --color-on-primary: #002838;
  --color-text-main: #F3F4F6;
  --color-text-muted: #94A3B8;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Accessibility Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-to-content:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  clip: auto;
  width: auto;
  height: auto;
  box-shadow: 0 4px 14px rgba(0, 210, 255, 0.4);
}

/* Ambient Glow Background Effects */
.ambient-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  max-width: 100vw;
}

.glow-1 {
  top: -100px;
  left: 0;
  background: radial-gradient(circle, #00D2FF 0%, rgba(0, 210, 255, 0) 70%);
}

.glow-2 {
  top: 600px;
  right: 0;
  background: radial-gradient(circle, #3B82F6 0%, rgba(59, 130, 246, 0) 70%);
}

/* Utility Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00D2FF 0%, #00A2C7 100%);
  color: #002838;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 210, 255, 0.45);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 31, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #00D2FF 0%, #00A2C7 100%);
  color: #002838;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: #FFFFFF;
}

.logo-plus {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

/* Mobile Only Notice Bar */
.mobile-only-banner {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border-card);
  background: rgba(0, 210, 255, 0.04);
}

.banner-pill {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

.banner-pill i {
  color: var(--color-primary);
  font-size: 13px;
}

.banner-pill strong {
  color: var(--color-text-main);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 20px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #00D2FF 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

/* Store Download Buttons */
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.2);
}

.store-btn i {
  font-size: 28px;
  color: var(--color-primary);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text .sub {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.btn-text .main {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}

/* Hero Phone Mockup & Interactive Component */
.mockup-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 10px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(14, 23, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.1);
  z-index: 10;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.badge-top-right {
  top: 15px;
  right: -24px;
  animation: floatSlow1 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: 85px;
  left: -28px;
  animation: floatSlow2 6s ease-in-out infinite alternate;
}

.badge-bottom-right {
  bottom: 24px;
  right: -16px;
  animation: floatSlow3 5.5s ease-in-out infinite alternate;
}

@keyframes floatSlow1 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes floatSlow2 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(8px); }
}

@keyframes floatSlow3 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(1deg); }
}

.badge-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.icon-green {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.icon-cyan {
  background: rgba(0, 210, 255, 0.15);
  color: #00D2FF;
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.icon-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.badge-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.badge-sub {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Smartphone Device Shell */
.phone-device {
  width: 100%;
  max-width: 360px;
  background: #0D1624;
  border: 9px solid #1E293B;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(0, 210, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-device:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 60px rgba(0, 210, 255, 0.25), inset 0 0 0 1px rgba(0, 210, 255, 0.3);
}

/* Screen */
.phone-screen {
  background: #090F1A;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  user-select: none;
}

/* Status Bar */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 0;
  font-size: 11px;
  color: #94A3B8;
}

.status-notch {
  width: 90px;
  height: 18px;
  background: #1E293B;
  border-radius: 12px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 6px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-mini-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #00D2FF 0%, #0077B6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002838;
  font-size: 16px;
  box-shadow: 0 0 12px var(--color-primary-glow);
}

.app-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.text-cyan {
  color: var(--color-primary);
}

.app-subtitle {
  font-size: 11px;
  color: var(--color-text-muted);
}

.app-header-action {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

.notif-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: #00D2FF;
  border-radius: 50%;
  box-shadow: 0 0 6px #00D2FF;
}

/* Mockup Cards */
.mockup-card {
  background: rgba(18, 30, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.match-featured {
  border: 1px solid rgba(0, 210, 255, 0.35);
  background: linear-gradient(180deg, rgba(20, 36, 58, 0.95) 0%, rgba(13, 24, 40, 0.95) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.1);
}

.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.match-time-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 5px;
}

.match-status-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-confirmed {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.match-venue-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.match-meta-row {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

/* Cupos Section */
.cupos-section {
  background: rgba(9, 15, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.cupos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
}

.cupos-title strong {
  color: var(--color-primary);
  font-size: 13px;
}

.cupos-state {
  color: #F59E0B;
  font-weight: 600;
  font-size: 10px;
  background: rgba(245, 158, 11, 0.12);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.cupos-progress-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.cupos-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00D2FF 0%, #3B82F6 100%);
  border-radius: 10px;
  transition: width 0.5s ease, background 0.5s ease;
}

.avatar-stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #090F1A;
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #FFFFFF;
}

.avatar:first-child {
  margin-left: 0;
}

.av-1 { background: #3B82F6; }
.av-2 { background: #10B981; }
.av-3 { background: #8B5CF6; }
.av-4 { background: #F59E0B; }
.av-5 { background: #EC4899; }
.av-more { background: #1E293B; color: var(--color-primary); font-size: 8px; border-color: #090F1A; }

.elo-badge-small {
  font-size: 10px;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.elo-badge-small i {
  color: #00D2FF;
}

/* Mockup Join Button */
.mockup-join-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00D2FF 0%, #0099CC 100%);
  color: #002838;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px var(--color-primary-glow);
}

.mockup-join-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.45);
}

.mockup-join-btn.joined {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

/* Secondary Mini Card */
.match-secondary {
  padding: 10px 12px;
  opacity: 0.85;
}

.match-format-pill {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.mini-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-venue-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 2px;
}

.mini-venue-meta {
  font-size: 10px;
  color: var(--color-text-muted);
}

.mini-card-action {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* App Bottom Nav */
.app-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 4px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2px;
}

.app-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #64748B;
}

.app-bottom-nav .nav-item i {
  font-size: 13px;
}

.app-bottom-nav .nav-item.active {
  color: var(--color-primary);
}

.app-bottom-nav .nav-item.active i {
  color: var(--color-primary);
}

.screenshot-caption {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: rgba(12, 16, 24, 0.5);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 6px;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-top: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Venues Section */
.venues-section {
  padding: 100px 0;
}

.venues-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 24px;
  border-radius: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.venue-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
}

.venue-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.12);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.venue-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.venue-addr {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 6px 0 16px;
}

.venue-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.venue-chips span {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  color: #D1D5DB;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: rgba(12, 16, 24, 0.4);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Download CTA Box */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.9) 0%, rgba(10, 30, 20, 0.9) 100%);
  border: 1px solid var(--border-card-hover);
  padding: 60px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 210, 255, 0.1);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
}

.cta-sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 12px 0 32px;
}

/* Footer */
.footer {
  background: #060B14;
  border-top: 1px solid var(--border-card);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 360px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Modal Overlay & QR */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #121824;
  border: 1px solid var(--border-card-hover);
  border-radius: 24px;
  padding: 36px;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none;
  color: var(--color-text-muted);
  font-size: 20px;
  cursor: pointer;
}

.modal-close:hover { color: #FFFFFF; }

.modal-icon {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.qr-box {
  background: #0B131F;
  border: 1px dashed var(--border-card-hover);
  padding: 24px;
  border-radius: 16px;
  margin: 20px 0;
}

.qr-placeholder {
  font-size: 120px;
  color: var(--color-primary);
}

.qr-text {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* Responsive Breakpoints */
/* Problem vs Solution Comparison */
.solution-section {
  padding: 100px 0;
  background: rgba(12, 16, 24, 0.6);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.comparison-card {
  padding: 36px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.card-old {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.card-old .card-header i {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
}

.card-new {
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 210, 255, 0.08);
}

.card-new .card-header i {
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-header i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #D1D5DB;
}

.card-old .comparison-list i { color: #EF4444; margin-top: 4px; }
.card-new .comparison-list i { color: var(--color-primary); margin-top: 4px; }

/* 3 Steps Section */
.steps-section {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 36px 28px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-6px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00D2FF 0%, #00A2C7 100%);
  color: #002838;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Competitive Plus Section */
.competitive-plus-section {
  padding: 60px 0 100px;
}

.plus-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px dashed rgba(0, 210, 255, 0.4);
  border-radius: 28px;
  padding: 50px;
}

.plus-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.plus-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
}

.plus-header p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-top: 8px;
  max-width: 650px;
}

.plus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plus-item {
  display: flex;
  gap: 16px;
}

.plus-item i {
  font-size: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}

.plus-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
}

.plus-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(11, 19, 31, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* QR badge overlay */
.qr-placeholder {
  position: relative;
  display: inline-flex;
}

.qr-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  background: #0B131F;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-primary);
}

/* Footer social icons */
.footer-social h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  color: var(--color-primary);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.contact-hero .section-badge {
  margin-bottom: 12px;
  display: inline-block;
}

.contact-hero .hero-title {
  font-size: 46px;
  margin-bottom: 16px;
}

.contact-hero .hero-description {
  max-width: 620px;
  margin: 0 auto 30px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-text-main);
}

.contact-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-whatsapp {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.icon-venue {
  background: rgba(0, 210, 255, 0.15);
  color: #00D2FF;
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.icon-mail {
  background: rgba(147, 51, 234, 0.15);
  color: #A855F7;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.icon-schedule {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.contact-card-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.contact-card-info p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-card-action i {
  transition: transform 0.2s ease;
}

.contact-card:hover .contact-card-action i {
  transform: translateX(4px);
}

/* Contact Form Card */
.contact-form-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label span.required {
  color: #EF4444;
}

.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  box-sizing: border-box;
  background: rgba(9, 15, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #F3F4F6;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}

.form-select option {
  background: #0D1726;
  color: #FFFFFF;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
  background: rgba(14, 23, 38, 0.95);
}

.form-control::placeholder {
  color: #64748B;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  justify-content: center;
  margin-top: 8px;
}

.contact-alert {
  display: none;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 14px;
  align-items: center;
  gap: 12px;
}

.contact-alert.success {
  display: flex;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
}

.contact-alert.success i {
  font-size: 20px;
}

.nav-links a.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .comparison-grid,
  .steps-grid,
  .plus-grid,
  .contact-grid,
  .features-grid,
  .venues-cards {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 100%;
    gap: 32px;
    overflow: hidden;
  }

  .hero-media {
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
  }

  .mockup-container {
    max-width: 360px;
    padding: 10px 0;
    overflow: hidden;
  }

  .contact-hero .hero-title {
    font-size: 38px;
  }
}

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

  .hero-section {
    padding: 30px 0 50px;
    overflow: hidden;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 16px;
    word-break: break-word;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .store-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
  }

  .store-btn {
    flex: 1 1 140px;
    justify-content: center;
    padding: 10px 16px;
  }

  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }

  .banner-pill {
    flex-wrap: wrap;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
  }

  .plus-box { padding: 28px 16px; }
  .comparison-card { padding: 24px 16px; }
  .step-card { padding: 24px 16px; }
  .cta-title { font-size: 32px; }
  .cta-box { padding: 36px 16px; }
  .venue-card { padding: 20px 16px; }
  .contact-form-card { padding: 24px 16px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }

  .mockup-container {
    max-width: 320px;
    padding: 10px 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .phone-device {
    max-width: 280px;
    margin: 0 auto;
  }

  .floating-badge {
    padding: 7px 10px;
    border-radius: 12px;
    max-width: 220px;
    box-sizing: border-box;
  }

  .badge-top-right {
    right: 4px;
    top: 4px;
    left: auto;
    animation: none;
  }

  .badge-bottom-left {
    left: 4px;
    bottom: 45px;
    right: auto;
    animation: none;
  }

  .badge-bottom-right { display: none; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-section {
    padding: 20px 0 32px;
    overflow: hidden;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
    word-break: break-word;
  }

  .section-title { font-size: 26px; }
  .hero-description { font-size: 15px; margin-bottom: 20px; }
  .store-buttons { gap: 10px; margin-bottom: 20px; }
  .store-btn { flex: 1 1 100%; width: 100%; justify-content: center; }
  .plus-header h2 { font-size: 22px; }

  .mockup-container {
    max-width: 290px;
    padding: 6px 0;
    margin: 6px auto 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .phone-device {
    max-width: 260px;
    margin: 0 auto;
    border-width: 6px;
    border-radius: 26px;
  }

  .floating-badge {
    padding: 5px 8px;
    border-radius: 10px;
    max-width: 200px;
    box-sizing: border-box;
  }

  .badge-icon-wrap { width: 24px; height: 24px; font-size: 10px; border-radius: 6px; }
  .badge-label { font-size: 10px; }
  .badge-sub { font-size: 8px; }
  .badge-top-right {
    right: 2px;
    top: 2px;
    left: auto;
  }

  .badge-bottom-left {
    left: 2px;
    bottom: 38px;
    right: auto;
  }

  .screenshot-caption { font-size: 11px; margin-top: 8px; }

  .contact-hero .hero-title { font-size: 28px; }
  .contact-card { padding: 16px 14px; }
  .contact-card-icon { width: 38px; height: 38px; font-size: 16px; }
}
