/* =============================================================================
   fastracc Landing Page Styles
   Brand Colors: Teal #6AABAA, Orange #EDA748, Dark #383232
   Font: ClashDisplay Bold
   ============================================================================= */

/* CSS Variables - Brand Colors */
:root {
  /* Primary Brand Colors */
  --color-teal: #6AABAA;
  --color-teal-light: #8BC4C3;
  --color-teal-dark: #529291;
  --color-orange: #EDA748;
  --color-orange-light: #F4C17A;
  --color-orange-dark: #D4923A;

  /* Background Colors */
  --color-bg-primary: #383232;
  --color-bg-secondary: #2E2929;
  --color-bg-tertiary: #453E3E;
  --color-bg-card: #423B3B;

  /* Text Colors */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #E8E8E8;
  --color-text-muted: #A8A0A0;

  /* Utility Colors */
  --color-success: #4CAF50;
  --color-error: #F44336;

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-glow-teal: 0 0 40px rgba(106, 171, 170, 0.3);
  --shadow-glow-orange: 0 0 40px rgba(237, 167, 72, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* =============================================================================
   Navigation
   ============================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(56, 50, 50, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-fast {
  color: var(--color-teal);
}

.logo-racc {
  color: var(--color-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-cta {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-orange);
  color: var(--color-bg-primary) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--color-orange-light);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(56, 50, 50, 0.98);
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    padding: var(--space-sm) 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: var(--space-sm);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  background: var(--color-orange-light);
  color: var(--color-bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(106, 171, 170, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(237, 167, 72, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(106, 171, 170, 0.15);
  border: 1px solid rgba(106, 171, 170, 0.3);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
}

.highlight-teal {
  color: var(--color-teal);
}

.highlight-orange {
  color: var(--color-orange);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--color-bg-secondary);
  border-radius: 40px;
  border: 4px solid var(--color-bg-tertiary);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--color-bg-tertiary);
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106, 171, 170, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Scan Animation */
.scan-animation {
  position: relative;
  width: 200px;
  padding: var(--space-md);
}

.receipt {
  background: #F5F5F5;
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: #333;
  position: relative;
}

.receipt-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.receipt-logo {
  width: 32px;
  height: 32px;
  background: var(--color-teal);
  border-radius: var(--radius-sm);
}

.receipt-title {
  width: 80px;
  height: 12px;
  background: #DDD;
  border-radius: 4px;
}

.receipt-line {
  height: 8px;
  background: #E5E5E5;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.receipt-line.short {
  width: 60%;
}

.receipt-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg-primary);
  text-align: center;
  padding: var(--space-md) 0;
}

.receipt-ref {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
  animation: scanMove 2s ease-in-out infinite;
}

@keyframes scanMove {
  0%, 100% { top: 10%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 80%; opacity: 1; }
  60% { opacity: 0; }
}

.scan-result {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--color-success);
  opacity: 0;
  animation: resultShow 2s ease-in-out infinite;
}

.result-check {
  font-size: 1rem;
}

@keyframes resultShow {
  0%, 50% { opacity: 0; transform: translateY(10px); }
  60%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.card-icon {
  font-size: 1.25rem;
}

.card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -30px;
  animation-delay: -2s;
}

.card-3 {
  bottom: 15%;
  left: 0;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto var(--space-xl);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: var(--space-2xl);
  }

  .floating-cards {
    display: none;
  }
}

/* =============================================================================
   Social Proof
   ============================================================================= */

.social-proof {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
  text-align: center;
}

.social-proof-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.payment-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.payment-logo:hover {
  opacity: 1;
}

.payment-logo.gcash {
  color: #007DFE;
  opacity: 0.8;
}

.payment-logo.maya {
  color: #00D563;
  opacity: 0.8;
}

/* =============================================================================
   Section Common Styles
   ============================================================================= */

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(106, 171, 170, 0.15);
  color: var(--color-teal);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================================
   Features Section
   ============================================================================= */

.features {
  padding: var(--space-4xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 171, 170, 0.3);
  box-shadow: var(--shadow-glow-teal);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106, 171, 170, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-teal);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   How It Works Section
   ============================================================================= */

.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-bg-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.step-content {
  padding: 0 var(--space-md);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.step-content h3 {
  margin-bottom: var(--space-sm);
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  padding-top: 22px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .step-connector {
    display: none;
  }
}

/* =============================================================================
   Pricing Section
   ============================================================================= */

.pricing {
  padding: var(--space-4xl) 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.pricing-tab {
  padding: var(--space-sm) var(--space-xl);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing-tab:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.pricing-tab.active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid.hidden {
  display: none;
}

#business-plans {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-glow-orange);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-orange);
  color: var(--color-bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price .currency {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.price .period {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: var(--space-sm) 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 968px) {
  .pricing-grid,
  #business-plans {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* =============================================================================
   Download Section
   ============================================================================= */

.download {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.download-content h2 {
  margin-bottom: var(--space-md);
}

.download-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.store-btn:hover {
  background: var(--color-bg-card);
  border-color: var(--color-teal);
  transform: translateY(-2px);
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.store-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  color: var(--color-teal) !important;
  font-style: italic;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Utility Classes
   ============================================================================= */

.hidden {
  display: none !important;
}

/* Smooth reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .pricing-card,
  .step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }
  .feature-card:nth-child(5) { animation-delay: 0.5s; }
  .feature-card:nth-child(6) { animation-delay: 0.6s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
