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

:root {
  /* Color Palette - Green Eco Theme */
  --background: #fcfcfc;
  --foreground: #262626;
  --card: #ffffff;
  --card-foreground: #262626;
  --primary: #2d7a5f;
  --primary-foreground: #fcfcfc;
  --secondary: #ebf5f0;
  --secondary-foreground: #262626;
  --muted: #f2f2f2;
  --muted-foreground: #737373;
  --accent: #3d9970;
  --accent-foreground: #fcfcfc;
  --border: #e0e0e0;
  --ring: #2d7a5f;

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 5rem 0;

  /* Border Radius */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(224, 224, 224, 0.4);
  background-color: rgba(252, 252, 252, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-lg);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #256650;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: #d9ede3;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--secondary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--background), rgba(235, 245, 240, 0.2));
  padding: 5rem 0 8rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(45, 122, 95, 0.1);
  border: 1px solid rgba(45, 122, 95, 0.2);
  border-radius: 9999px;
}

.badge-pulse {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
}

.text-primary {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background-color: var(--border);
}

.hero-image {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(45, 122, 95, 0.2), rgba(61, 153, 112, 0.2));
  filter: blur(60px);
  border-radius: 50%;
}

.hero-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: rgba(235, 245, 240, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background-color: var(--card);
  border: 1px solid rgba(224, 224, 224, 0.5);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
}

.feature-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(45, 122, 95, 0.1);
  color: var(--primary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-card {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.step-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
}

/* Security Section */
.security-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.security-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-card {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-color: rgba(224, 224, 224, 0.5);
  transition: border-color 0.3s;
}

.security-card:hover {
  border-color: rgba(45, 122, 95, 0.5);
}

.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background-color: rgba(45, 122, 95, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
}

.security-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.security-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.security-image {
  position: relative;
}

.security-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(45, 122, 95, 0.2), rgba(61, 153, 112, 0.2));
  filter: blur(60px);
  border-radius: 50%;
}

.security-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Rewards Section */
.rewards-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.rewards-card {
  padding: 2rem;
}

.rewards-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.material-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: rgba(235, 245, 240, 0.5);
  border-radius: var(--radius);
}

.material-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.material-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(45, 122, 95, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
}

.material-name {
  font-weight: 500;
  color: var(--foreground);
}

.material-coins {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coins-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.coins-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reward-item {
  padding: 1rem;
  background-color: rgba(235, 245, 240, 0.5);
  border-radius: var(--radius);
}

.reward-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.reward-name {
  font-weight: 600;
  color: var(--foreground);
}

.reward-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 0.5rem;
}

.reward-coins {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.collective-goals {
  padding: 3rem;
  background: linear-gradient(to bottom right, rgba(45, 122, 95, 0.1), rgba(61, 153, 112, 0.1));
  border-color: rgba(45, 122, 95, 0.2);
  text-align: center;
}

.collective-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.collective-description {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 2rem;
}

.pricing-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-color: rgba(224, 224, 224, 0.5);
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  background: linear-gradient(to bottom, var(--card), rgba(45, 122, 95, 0.05));
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-foreground);
  background-color: var(--primary);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.price-period {
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-feature svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-feature span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Impact Section */
.impact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.impact-card {
  padding: 2rem;
}

.impact-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.impact-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.impact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background-color: rgba(45, 122, 95, 0.1);
  color: var(--primary);
  border-radius: var(--radius-lg);
}

.impact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.impact-description {
  color: var(--muted-foreground);
}

.impact-stats-wrapper {
  margin-top: 4rem;
}

.impact-stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.impact-stats-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.impact-stats-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.impact-stats-grid {
  display: grid;
  gap: 2rem;
}

.stat-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8fffe);
  border: 2px solid rgba(45, 122, 95, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(45, 122, 95, 0.3);
  border-color: rgba(45, 122, 95, 0.3);
}

.stat-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 122, 95, 0.08), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: all 0.4s;
}

.stat-card:hover .stat-card-bg {
  transform: translate(20%, -20%) scale(1.2);
  background: radial-gradient(circle, rgba(45, 122, 95, 0.15), transparent 70%);
}

.stat-card-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.stat-card:hover .stat-card-glow {
  transform: scaleX(1);
}

.stat-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px -5px rgba(45, 122, 95, 0.4);
  transition: all 0.4s;
}

.stat-card:hover .stat-icon-large {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 15px 35px -5px rgba(45, 122, 95, 0.5);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.7;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-progress {
  width: 100%;
  height: 8px;
  background-color: rgba(45, 122, 95, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.stat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9999px;
  width: 0;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.stat-comparison {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(45, 122, 95, 0.05), rgba(61, 153, 112, 0.05));
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.stat-comparison svg {
  color: var(--primary);
  flex-shrink: 0;
}

.stat-comparison strong {
  color: var(--primary);
  font-weight: 600;
}

/* Stat card color variations */
.stat-card-1 .stat-icon-large {
  background: linear-gradient(135deg, #2d7a5f, #3d9970);
}

.stat-card-2 .stat-icon-large {
  background: linear-gradient(135deg, #3d9970, #4db380);
}

.stat-card-3 .stat-icon-large {
  background: linear-gradient(135deg, #4db380, #5dc990);
}

.stat-card-1:hover {
  border-color: rgba(45, 122, 95, 0.4);
}

.stat-card-2:hover {
  border-color: rgba(61, 153, 112, 0.4);
}

.stat-card-3:hover {
  border-color: rgba(77, 179, 128, 0.4);
}

/* Animation for stats when they come into view */
.stat-card.animate-in {
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.stat-card-1.animate-in {
  animation-delay: 0.1s;
}

.stat-card-2.animate-in {
  animation-delay: 0.2s;
}

.stat-card-3.animate-in {
  animation-delay: 0.3s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Download Section */
.download-section {
  background: linear-gradient(to bottom, rgba(235, 245, 240, 0.3), var(--background));
  position: relative;
  overflow: hidden;
}

.download-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(45, 122, 95, 0.1);
  border: 1px solid rgba(45, 122, 95, 0.2);
  border-radius: 9999px;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
}

.download-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.download-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
}

.download-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.download-stores {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--foreground);
  color: var(--background);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--foreground);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.store-button.google-play {
  background-color: #000000;
  border-color: #000000;
}

.store-button.app-store {
  background-color: #000000;
  border-color: #000000;
}

.store-button svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.store-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.download-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: rgba(45, 122, 95, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.download-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

.download-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.phone-mockup {
  position: relative;
  z-index: 10;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background-color: #1a1a1a;
  border-radius: 0 0 1rem 1rem;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px -5px rgba(45, 122, 95, 0.4);
  animation: float 3s ease-in-out infinite;
}

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

.floating-2 {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
}

.floating-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* CTA Section */
.cta-card {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://cdn.pixabay.com/photo/2017/08/30/01/05/milky-way-2695569_1280.jpg");
  background-size: cover;
  background-position: center;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(252, 252, 252, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.cta-footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(252, 252, 252, 0.8);
}

.cta-link {
  color: var(--primary-foreground);
  text-decoration: underline;
}

.cta-link:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 3rem 0 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--foreground);
}

/* Responsive Design */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .nav-desktop {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

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

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

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

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

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

  .download-stores {
    flex-direction: row;
  }

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

  .cta-buttons {
    flex-direction: row;
  }

  .cta-title {
    font-size: 2.5rem;
  }

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

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

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
