:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #93c5fd;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --secondary-light: #6ee7b7;
  --dark: #1f2937;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Product Sans', 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  background-size: 400% 400%;
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  animation: rainbow-glow 6s ease-in-out infinite;
  opacity: 0.4;
  filter: blur(2px);
}

@keyframes rainbow-glow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
  25% {
    background-position: 100% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 100%;
    opacity: 0.4;
  }
  75% {
    background-position: 0% 100%;
    opacity: 0.6;
  }
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary:hover::before {
  animation-duration: 4s;
  opacity: 0.7;
  filter: blur(1.5px);
}

/* Navigation */
header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Product Sans', 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.logo-text:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.symbol-top-right {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.6rem;
}

.symbol-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.6rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
}

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

.nav-cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  background-size: 400% 400%;
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  animation: rainbow-glow 6s ease-in-out infinite;
  opacity: 0.4;
  filter: blur(2px);
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.nav-cta:hover::before {
  animation-duration: 4s;
  opacity: 0.6;
  filter: blur(1.5px);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* Beta Signup Section */
.beta-signup {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  text-align: center;
}

/* Social Proof */
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0 3rem 0;
  flex-wrap: wrap;
}

.beta-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

.counter-text {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.urgency-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  color: #dc2626;
  font-weight: 500;
  font-size: 0.9rem;
}

.urgency-note i {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.beta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 500;
  color: var(--dark);
}

.beta-form {
  margin-top: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group .btn {
  white-space: nowrap;
  min-width: 150px;
}

.beta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.privacy-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray);
  opacity: 0.8;
}

/* Login Access Section */
.login-access {
  padding: 2rem 0;
  background: var(--light-gray);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.login-text {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.login-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--primary-dark);
}

/* Responsive Design for Beta Section */
@media (max-width: 768px) {
  .beta-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-group .btn {
    min-width: auto;
  }
  
  .social-proof {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Text Section - Now Above Animation */
.hero-text-section {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--gray);
  line-height: 1.6;
}

.hero-text-section .btn {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Hero Animation Section */
.hero-animation {
  margin-top: 3rem;
}

.ai-categorization-demo {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.demo-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark);
}

/* Transaction Flow Animation */
.transaction-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

/* Raw Transactions Section */
.raw-transactions {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
}

.transaction-header {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: center;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.transaction-item:nth-child(1) { animation-delay: 0.5s; }
.transaction-item:nth-child(2) { animation-delay: 1s; }
.transaction-item:nth-child(3) { animation-delay: 1.5s; }
.transaction-item:nth-child(4) { animation-delay: 2s; }
.transaction-item:nth-child(5) { animation-delay: 2.5s; }

.bank-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
}

.bank-logo.gtbank { background: #ff6600; }
.bank-logo.access { background: #1e3a8a; }
.bank-logo.zenith { background: #dc2626; }
.bank-logo.uba { background: #16a34a; }

.transaction-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.merchant {
  color: var(--dark);
  font-weight: 500;
}

.amount {
  color: var(--danger);
  font-weight: 700;
}

/* AI Processor Section */
.ai-processor {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.ai-brain {
  position: relative;
  margin-bottom: 1rem;
}

.ai-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  animation: pulse 2s infinite;
}

.ai-core i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.ai-core span {
  font-size: 0.8rem;
  font-weight: 800;
}

.processing-indicators {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 3s infinite;
}

.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

.processing-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  animation: fadeInOut 2s infinite;
}

/* Categorized Results Section */
.categorized-results {
  background: #f0f9ff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid #0ea5e9;
}

.categories-header {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.category-buckets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-bucket {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid #0ea5e9;
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(20px);
}

.category-bucket:nth-child(1) { animation-delay: 3s; }
.category-bucket:nth-child(2) { animation-delay: 3.2s; }
.category-bucket:nth-child(3) { animation-delay: 3.4s; }
.category-bucket:nth-child(4) { animation-delay: 3.6s; }
.category-bucket:nth-child(5) { animation-delay: 3.8s; }

.category-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.category-label {
  flex: 1;
  color: var(--dark);
  font-weight: 500;
}

.category-total {
  color: var(--primary);
  font-weight: 700;
}

.demo-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Dashboard Flow Visualization - Remove old styles */
.dashboard-flow {
  display: none;
}

.flow-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.flow-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.flow-section {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 1rem;
  width: 28%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-header {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.account-item, .category-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.account-name, .category-name {
  color: var(--gray);
}

.account-amount, .category-amount {
  font-weight: 600;
  color: var(--dark);
}

/* AI Section */
.ai-section {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.ai-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-inner span {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.ai-inner::before, .ai-inner::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
}

.ai-inner::before {
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ai-inner::after {
  width: 2px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Category Colors */
.category-item {
  border-radius: 4px;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  color: white;
}

.food {
  background-color: rgba(16, 185, 129, 0.8);
}

.transport {
  background-color: rgba(245, 158, 11, 0.8);
}

.shopping {
  background-color: rgba(239, 68, 68, 0.8);
}

.utilities {
  background-color: rgba(139, 92, 246, 0.8);
}

.entertainment {
  background-color: rgba(236, 72, 153, 0.8);
}

.flow-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Arrows */
.ai-arrows {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-arrows {
  left: -125px;
}

.right-arrows {
  right: -125px;
  align-items: flex-end;
}

.arrow {
  width: 120px;
  height: 2px;
  background-color: var(--primary);
  position: relative;
}

.arrow::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.left-arrows .arrow::after {
  left: 0;
  top: -3px;
  transform: rotate(225deg);
}

.right-arrows .arrow::after {
  right: 0;
  top: -3px;
  transform: rotate(45deg);
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card.highlighted {
  border: 2px solid var(--primary);
  background-color: rgba(59, 130, 246, 0.05);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background-color: var(--light-gray);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step.highlighted {
  border: 2px solid var(--primary);
  background-color: rgba(59, 130, 246, 0.05);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Security Section */
.security {
  padding: 6rem 0;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: center;
}

.security-feature {
  padding: 2rem;
}

.security-feature i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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



.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  
  .security-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}