/* SEALonDEAL - Main Stylesheet with Lime Theme and Glowing Effects */

/* CSS Variables for Lime Color Scheme with Glowing Effects */
:root {
  --primary-lime: #32CD32;
  --secondary-lime: #90EE90;
  --accent-lime: #ADFF2F;
  --dark-lime: #228B22;
  --light-lime: #F0FFF0;
  --glow-lime: #00FF00;
  --background-lime: #f0fff0;
  --accent-bg: #f5fffa;
  --text-dark: #000000;
  --text-light: #ffffff;
  --link-color: #32CD32;
  --link-hover: #228B22;
  --glow-shadow: 0 0 20px rgba(50, 205, 50, 0.6);
  --glow-shadow-strong: 0 0 30px rgba(50, 205, 50, 0.8);
  --glow-shadow-subtle: 0 0 10px rgba(50, 205, 50, 0.4);
}

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

body {
  font-family: 'Manrope', 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--light-lime) 0%, var(--background-lime) 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.875rem; /* 62px */
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
}

h2 {
  font-size: 2.625rem; /* 42px */
  line-height: 1.4;
  text-align: center;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem; /* 24px */
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section */
.section {
  padding: 80px 0;
}

/* Header & Navigation */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(50, 205, 50, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(50, 205, 50, 0.5));
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 0 15px rgba(50, 205, 50, 0.8));
  transform: scale(1.05);
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-lime);
  text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-lime), var(--accent-lime));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
}

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

.btn-login {
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--glow-shadow-subtle);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-lime);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
}

/* Mobile App Showcase Slider Styles */
.mobile-showcase {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.mobile-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(144, 238, 144, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 70%;
  transform: translateX(-50%);
}

.mobile-slider-wrapper {
  overflow: visible;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  perspective: 1200px;
  margin: 0 auto;
}

.mobile-slide {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  transform-origin: center center;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-slide:nth-child(1) { /* Blueprint - Far Left */
  left: calc(50% - 120px);
  transform: translateX(-50%) scale(0.5) rotateY(25deg);
  z-index: 1;
  opacity: 0.5;
}

.mobile-slide:nth-child(2) { /* Dashboard - Second Left */
  left: calc(50% - 60px);
  transform: translateX(-50%) scale(0.7) rotateY(15deg);
  z-index: 2;
  opacity: 0.7;
}

.mobile-slide:nth-child(3) { /* Welcome - Center */
  left: 50%;
  transform: translateX(-50%) scale(1) rotateY(0deg);
  z-index: 5;
  opacity: 1;
}

.mobile-slide:nth-child(4) { /* Overview - Second Right */
  left: calc(50% + 60px);
  transform: translateX(-50%) scale(0.7) rotateY(-15deg);
  z-index: 2;
  opacity: 0.7;
}

.mobile-slide:nth-child(5) { /* Settings - Far Right */
  left: calc(50% + 120px);
  transform: translateX(-50%) scale(0.5) rotateY(-25deg);
  z-index: 1;
  opacity: 0.5;
}

.mobile-slide.active {
  z-index: 5;
  opacity: 1;
}

.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.phone-mockup:hover {
  filter: drop-shadow(0 0 20px rgba(50, 205, 50, 0.4));
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f8f9fa;
  font-size: 14px;
  font-weight: 600;
}

.time {
  color: #000;
}

.battery {
  font-size: 16px;
}

.app-content {
  height: calc(100% - 40px);
  padding: 20px;
  overflow-y: auto;
}

/* Welcome Screen */
.welcome-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.welcome-icon {
  margin-bottom: 2rem;
}

.seal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
  box-shadow: var(--glow-shadow);
  animation: pulse 2s infinite;
}

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

.welcome-screen h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.welcome-screen p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 2rem;
}

.next-arrow {
  font-size: 1.5rem;
  color: var(--primary-lime);
  font-weight: bold;
  text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

/* Dashboard Screen */
.dashboard-screen {
  background: #f8f9fa;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.logo {
  font-weight: bold;
  color: var(--text-dark);
}

.menu-icon {
  font-size: 1.2rem;
  color: #666;
}

.income-section {
  text-align: center;
  margin-bottom: 2rem;
}

.income-section h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.income-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.goal-progress {
  font-size: 0.8rem;
  color: var(--primary-lime);
  font-weight: 600;
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
}

.chart-section h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.chart-bar span {
  min-width: 120px;
  color: #666;
}

.bar-fill {
  height: 8px;
  background: linear-gradient(90deg, var(--primary-lime), var(--accent-lime));
  border-radius: 4px;
  flex: 1;
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.nav-item {
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-item.active {
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  color: white;
  box-shadow: var(--glow-shadow-subtle);
}

/* Overview Screen */
.overview-screen {
  background: #f8f9fa;
}

.metrics-section h4,
.settings-section h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.metric-item {
  font-size: 0.8rem;
  color: #666;
  padding: 0.2rem 0;
}

.metric-item.highlight {
  color: var(--primary-lime);
  font-weight: 600;
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.setting-item {
  font-size: 0.8rem;
  color: #666;
  padding: 0.2rem 0;
}

/* Blueprint Screen Styles */
.blueprint-screen {
  background: #f8f9fa;
}

.blueprint-content h4 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
}

.line-chart {
  margin-bottom: 1rem;
}

.chart-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.chart-months {
  font-size: 0.8rem;
  color: #999;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.table-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
  padding: 0.2rem 0;
}

/* Settings Screen Styles */
.settings-screen {
  background: #f8f9fa;
}

.settings-content h4 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.setting-item {
  font-size: 0.8rem;
  color: #666;
  padding: 0.2rem 0;
}

/* Mobile Slider Controls */
.mobile-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.mobile-slider-btn {
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  color: var(--text-light);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(50, 205, 50, 0.4);
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-slider-btn.prev-btn {
  left: -700px;
}

.mobile-slider-btn.next-btn {
  right: 350px;
}

.mobile-slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 30px rgba(50, 205, 50, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobile-slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}


/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--light-lime) 0%, var(--background-lime) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(144, 238, 144, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::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: left 0.5s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-lime), var(--accent-lime));
  color: var(--text-light);
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow-strong);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-lime);
  border: 2px solid var(--primary-lime);
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-lime);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Features Section */
.features {
  background: var(--text-light);
  position: relative;
}

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

.feature-card {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-lime), var(--accent-lime));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(50, 205, 50, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(50, 205, 50, 0.3));
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}


/* Footer */
.footer {
  background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  box-shadow: 0 -5px 20px rgba(50, 205, 50, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 4px;
  filter: drop-shadow(0 0 10px rgba(50, 205, 50, 0.5));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 15px rgba(50, 205, 50, 0.8));
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
  color: var(--text-light);
  margin: 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

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

.footer-column h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
}

.footer-column ul li a:hover {
  color: var(--primary-lime);
  text-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
  color: var(--text-light);
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Mobile App Download Section */
.mobile-download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-lime) 0%, var(--background-lime) 100%);
}

.download-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.download-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
}

.download-header p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.download-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(50, 205, 50, 0.3);
  border-color: var(--primary-lime);
}

.android-card:hover {
  border-color: #32CD32;
}

.ios-card:hover {
  border-color: #007AFF;
}

.card-icon {
  margin-bottom: 1rem;
}

.card-icon svg {
  filter: drop-shadow(0 0 10px rgba(50, 205, 50, 0.3));
}

.download-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.download-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.android-btn {
  background: linear-gradient(135deg, #32CD32, #228B22);
  color: white;
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.android-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
  color: white;
}

.ios-btn {
  background: linear-gradient(135deg, #007AFF, #0056CC);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.ios-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .mobile-slide {
    padding: 1rem;
  }
  
  .mobile-slider-controls {
    gap: 1rem;
  }
  
  .mobile-slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Mobile Responsive for Centered Slider */
@media (max-width: 1200px) {
  .mobile-slider-container {
    width: 90%;
  }
  
  .mobile-slide:nth-child(1) {
    left: calc(50% - 90px);
  }
  
  .mobile-slide:nth-child(2) {
    left: calc(50% - 45px);
  }
  
  .mobile-slide:nth-child(4) {
    left: calc(50% + 45px);
  }
  
  .mobile-slide:nth-child(5) {
    left: calc(50% + 90px);
  }
  
  .mobile-slider-btn.prev-btn {
    left: -120px;
  }
  
  .mobile-slider-btn.next-btn {
    right: -120px;
  }
}

@media (max-width: 768px) {
  .mobile-slider-container {
    width: 98%;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .mobile-slide:nth-child(1) {
    left: -120px;
    transform: scale(0.5) rotateY(25deg);
  }
  
  .mobile-slide:nth-child(2) {
    left: -60px;
    transform: scale(0.7) rotateY(15deg);
  }
  
  .mobile-slide:nth-child(4) {
    left: 60px;
    transform: scale(0.7) rotateY(-15deg);
  }
  
  .mobile-slide:nth-child(5) {
    left: 120px;
    transform: scale(0.5) rotateY(-25deg);
  }
  
  .mobile-slider-controls {
    gap: 1rem;
  }
  
  .mobile-slider-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .mobile-slider-btn.prev-btn {
    left: -60px;
  }
  
  .mobile-slider-btn.next-btn {
    right: -60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  .app-content {
    padding: 15px;
  }
  
  .welcome-screen h3 {
    font-size: 1.25rem;
  }
  
  .welcome-screen p {
    font-size: 0.8rem;
  }
  
  .income-amount {
    font-size: 1.5rem;
  }
}
