/* ===== CSS Variables ===== */
:root {
  --neon-green: #00FF00;
  --neon-green-dark: #00AA00;
  --neon-green-glow: rgba(0, 255, 0, 0.5);
  --bg-black: #0A0A0F;
  --bg-darker: #050508;
  --text-white: #FFFFFF;
  --text-gray: #888888;
  --text-light: #CCCCCC;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--neon-green);
}

.logo svg {
  stroke: var(--neon-green);
}

.logo img {
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green-dark) 0%, var(--neon-green) 100%);
  color: var(--bg-black);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3), 0 4px 20px rgba(0, 170, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 170, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.5), 0 8px 30px rgba(0, 170, 0, 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--neon-green);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: var(--neon-green);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-nav {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-nav i {
  margin-right: 6px;
  font-size: 14px;
}

.nav-cta-buttons {
  display: flex;
  gap: 8px;
}

.btn-full {
  width: 100%;
}

.btn-cta {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3), 0 4px 20px rgba(0, 170, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.5), 0 8px 30px rgba(0, 170, 0, 0.6);
  }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 0 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 170, 0, 0.15) 0%, transparent 50%);
  background-image:
    linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

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

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.text-glow {
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green-glow);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  margin-top: 20px;
  line-height: 1.6;
}

.tagline-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  font-size: 14px;
  color: var(--text-gray);
}

.badge::before {
  color: var(--neon-green);
  margin-right: 4px;
}

/* ===== Coming Soon Badges ===== */
.coming-soon-badges {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-gray);
}

.coming-soon-badge i {
  font-size: 16px;
}

.mobile-coming-soon {
  text-align: center;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-coming-soon i {
  font-size: 14px;
  margin: 0 2px;
}

/* ===== Coming Soon Badge Large ===== */
.coming-soon-badge-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 32px;
  background: var(--neon-green);
  border-radius: 50px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.coming-soon-badge-large i {
  font-size: 24px;
  color: var(--bg-black);
}

.coming-soon-badge-large h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-black);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ===== Hero Visual ===== */
.hero-visual {
  opacity: 1;
}

/* ===== Dashboard Mockup ===== */
.dashboard-mockup {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 30px 80px rgba(0, 255, 0, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 16px;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-gray);
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--neon-green);
}

.stat-value.active {
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.chart-preview {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 80px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--neon-green-dark), var(--neon-green));
  border-radius: 4px;
  animation: chart-grow 1s ease-out backwards;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes chart-grow {
  from {
    height: 0;
    opacity: 0;
  }
}

/* ===== App Preview Image ===== */
.app-preview-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== Copyright Line ===== */
.copyright-line {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.copyright-line p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

/* ===== Section Styles ===== */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
}

/* ===== Problem Section ===== */
.problem {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-darker) 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.problem-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-white);
}

.problem-card p {
  color: var(--text-gray);
  font-size: 16px;
}

/* ===== Solution & Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 170, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  stroke: var(--neon-green);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg-darker);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 170, 0, 0.05) 0%, rgba(0, 255, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-green);
  opacity: 0.2;
  margin-bottom: 16px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

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

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-white);
}

.step-content p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.15);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--neon-green);
}

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

/* ===== Pricing ===== */
.pricing {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 170, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-featured {
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.2);
}

.pricing-card-featured:hover {
  box-shadow: 0 0 60px rgba(0, 255, 0, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: var(--bg-black);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 24px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-green);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green-glow);
}

.price-note {
  font-size: 14px;
  color: var(--text-gray);
  margin-left: 8px;
}

.price-subtitle {
  color: var(--text-gray);
  margin-bottom: 32px;
  font-size: 16px;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-light);
}

.features-list li:last-child {
  border-bottom: none;
}

.trust-line {
  margin-top: 40px;
  color: var(--text-gray);
  font-size: 14px;
  text-align: center;
}

.browser-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.btn-browser {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  flex: 1;
}

.btn-browser svg {
  margin-right: 6px;
}

.users-count {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stars {
  color: var(--neon-green);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green-dark), var(--neon-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-black);
  border: 2px solid var(--neon-green);
}

.author-name {
  font-weight: 600;
  color: var(--text-white);
}

.author-title {
  font-size: 14px;
  color: var(--text-gray);
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-darker);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--neon-green);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-darker) 100%);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--neon-green);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 0 60px rgba(0, 255, 0, 0.2);
}

.cta-box h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.cta-box .price {
  margin-bottom: 32px;
  font-size: 20px;
  color: var(--text-light);
}

.cta-description {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-browser-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-browser-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-highlight {
  font-size: 48px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--neon-green);
  margin-left: 8px;
}

.guarantee {
  margin-top: 24px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-gray);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-gray);
}

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

.footer-column h4 {
  color: var(--text-white);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: var(--text-gray);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--neon-green);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-gray);
  font-size: 14px;
}

.footer-badges {
  color: var(--text-gray);
  font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0 40px;
  }

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

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .dashboard-mockup {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }

  .coming-soon-badges {
    justify-content: center;
  }

  .copyright-line {
    padding-top: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .copyright-line {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 48px;
    text-align: center;
  }

  .hero-title:first-child {
    font-size: 56px;
  }

  .hero-title:nth-child(2) {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .coming-soon-badge-large {
    gap: 12px;
    padding: 10px 28px;
    border-radius: 40px;
  }

  .coming-soon-badge-large i {
    font-size: 20px;
  }

  .coming-soon-badge-large h2 {
    font-size: 18px;
  }

  .dashboard-mockup {
    max-width: 100%;
  }

  .copyright-line {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    padding-top: 0;
  }
}

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

  .nav {
    padding: 12px 0;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 100px 0 30px;
  }

  .hero-title {
    font-size: 40px;
    text-align: center;
  }

  .hero-title:first-child {
    font-size: 56px;
  }

  .hero-title:nth-child(2) {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .coming-soon-badge-large {
    gap: 10px;
    padding: 8px 24px;
    border-radius: 35px;
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .coming-soon-badge-large i {
    font-size: 18px;
  }

  .coming-soon-badge-large h2 {
    font-size: 16px;
  }

  .dashboard-mockup {
    padding: 12px;
    overflow: hidden;
    max-height: 200px;
    position: relative;
  }

  .app-preview-img {
    object-fit: cover;
    object-position: bottom;
    height: 100%;
  }

  .copyright-line {
    margin-top: 40px;
    padding-top: 20px;
  }

  .copyright-line p {
    font-size: 12px;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.section-title,
.feature-card,
.benefit-card,
.testimonial-card {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-text { animation-delay: 0.1s; }
