/* ============================================
   CLIENTIST INFO WEBSITE - DESIGN SYSTEM
   Premium, Modern, Glassmorphism Aesthetic
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
  /* Primary Colors */
  --primary-purple: #8B5CF6;
  --primary-purple-dark: #7C3AED;
  --primary-purple-light: #A78BFA;
  --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);

  /* Accent Colors */
  --accent-amber: #F59E0B;
  --accent-amber-dark: #D97706;
  --accent-amber-light: #FCD34D;
  --accent-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

  /* Neutral Colors */
  --dark: #1F2937;
  --dark-light: #374151;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --light: #F3F4F6;
  --light-darker: #E5E7EB;
  --white: #FFFFFF;

  /* Status Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', 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: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(139, 92, 246, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(139, 92, 246, 0.1), 0 2px 4px -1px rgba(139, 92, 246, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.1), 0 4px 6px -2px rgba(139, 92, 246, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(139, 92, 246, 0.1), 0 10px 10px -5px rgba(139, 92, 246, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-amber {
  color: var(--accent-amber);
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
}

/* Logo image styling */
.navbar-brand .logo-icon-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Phone screen logo */
.hero-phone-screen .phone-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-nav a {
  font-weight: 500;
  color: var(--dark-light);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-base);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

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

.navbar-cta {
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary-gradient);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.navbar-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple-light);
}

.btn-secondary:hover {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

.btn-amber {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  padding-bottom: 12px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: 12px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-purple);
}

.hero-badge::before {
  content: '✨';
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-darker);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--primary-purple);
  margin-bottom: var(--space-xs);
}

.hero-stat p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--dark);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  /* Perfectly straight - no rotation */
}

.hero-phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 25px;
  background: var(--dark);
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: var(--space-xl);
}

.hero-phone-screen .logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.hero-phone-screen h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.hero-phone-screen p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

/* Floating elements */
.floating-card {
  position: absolute;
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -15%;
  animation-delay: 1s;
}

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

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-purple);
}

.floating-card-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
}

.floating-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.floating-card-text h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.floating-card-text p {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

@keyframes float {

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

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.feature-icon.freelancer {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary-purple);
}

.feature-icon.travel {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

.feature-icon.service {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.feature-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.feature-card>p {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--dark-light);
}

.feature-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Coming Soon Banner */
.coming-soon-banner {
  margin-top: var(--space-2xl);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 2px dashed var(--primary-purple-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-2xl);
}

.coming-soon-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: center;
}

.coming-soon-icon {
  font-size: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.coming-soon-text {
  text-align: left;
}

.coming-soon-text h4 {
  font-size: 1.25rem;
  color: var(--primary-purple);
  margin-bottom: var(--space-xs);
}

.coming-soon-text p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .coming-soon-content {
    flex-direction: column;
    text-align: center;
  }

  .coming-soon-text {
    text-align: center;
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--light-darker);
}

.pricing-card.featured .pricing-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.pricing-card.featured .pricing-header h3 {
  color: var(--white);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
}

.pricing-card.featured .pricing-price .currency {
  color: var(--accent-amber);
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
  color: var(--white);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-card.featured .pricing-price .period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  background: rgba(16, 185, 129, 0.2);
}

.pricing-features li.disabled {
  color: var(--gray-light);
}

.pricing-features li.disabled::before {
  content: '✕';
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   DOWNLOAD / QR CODE SECTION
   ============================================ */
.download-section {
  background: var(--primary-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.download-section .container {
  position: relative;
  z-index: 1;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.download-text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.download-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.store-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  color: var(--dark);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  font-weight: 600;
  transition: all var(--transition-base);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.store-badge-icon {
  font-size: 1.5rem;
}

.store-badge-text small {
  display: block;
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}

.store-badge-text span {
  display: block;
  font-size: 1.125rem;
}

.qr-code-wrapper {
  display: flex;
  justify-content: center;
}

.qr-code-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-2xl);
}

.qr-code-placeholder {
  width: 200px;
  height: 200px;
  background: var(--light);
  border: 3px dashed var(--light-darker);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--gray);
}

.qr-code-placeholder .icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.qr-code-placeholder p {
  font-size: 0.875rem;
  margin: 0;
}

/* If QR code image is added */
.qr-code-card img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.qr-code-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.qr-code-card p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .navbar-brand {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

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

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.legal-header h1 {
  margin-bottom: var(--space-md);
}

.legal-header .last-updated {
  color: var(--gray);
  font-size: 0.9375rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--light);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--gray);
}

.legal-content ul li::before {
  content: '•';
  color: var(--primary-purple);
  font-weight: bold;
  margin-right: var(--space-sm);
}

.legal-content a {
  color: var(--primary-purple);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-purple-dark);
}

.contact-box {
  background: var(--light);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-top: var(--space-2xl);
}

.contact-box h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.contact-box p {
  margin-bottom: var(--space-sm);
}

.contact-box a {
  color: var(--primary-purple);
  font-weight: 500;
}

/* ============================================
   DOWNLOAD PAGE
   ============================================ */
.download-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.download-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.download-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.download-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.download-hero .subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-qr-large {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  display: inline-block;
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-2xl);
}

.download-qr-large .qr-placeholder {
  width: 280px;
  height: 280px;
  background: var(--light);
  border: 3px dashed var(--light-darker);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--gray);
}

.download-qr-large .qr-placeholder .icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.download-qr-large h4 {
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.download-qr-large p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin: 0;
}

.download-stores {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.download-features {
  background: var(--white);
}

.download-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.download-feature-item {
  text-align: center;
  padding: var(--space-xl);
}

.download-feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
  color: var(--white);
}

.download-feature-item h4 {
  margin-bottom: var(--space-sm);
}

.download-feature-item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

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

  .hero-content {
    max-width: 100%;
  }

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

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

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .store-badges {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-base);
  }

  .navbar-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

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

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
  }

  .pricing-price .amount {
    font-size: 2.5rem;
  }

  .qr-code-placeholder,
  .qr-code-card img {
    width: 180px;
    height: 180px;
  }

  .download-qr-large .qr-placeholder {
    width: 220px;
    height: 220px;
  }
}
/* ============================================
   UNIVERSAL DOWNLOAD BUTTON
   ============================================ */
.btn-universal {
  position: relative;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 40%, #F59E0B 100%);
  background-size: 200% auto;
  border-radius: var(--radius-2xl);
  color: var(--white);
  font-family: var(--font-heading);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: none;
  overflow: hidden;
  animation: gradientShift 6s ease infinite;
}

.btn-universal:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4), 0 0 25px rgba(245, 158, 11, 0.2);
  background-position: right center;
}

.btn-universal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-universal:hover::before {
  left: 100%;
}

.btn-universal .btn-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-universal .btn-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  font-family: var(--font-body);
}

.btn-universal .btn-icons {
  display: flex;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
