/* SaveJar Official Landing Page Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Color Tokens */
  --color-save-green: #00D084;
  --color-save-green-hover: #00b874;
  --color-save-green-glow: rgba(0, 208, 132, 0.2);
  --color-amber-gold: #ECC94B;
  --color-amber-gold-glow: rgba(236, 201, 75, 0.25);
  --color-deep-teal-header: #1A2533;
  --color-steel-muted: #8E9DAF;
  --color-steel-dark: #4A5568;
  --color-error: #E53E3E;

  /* Theme Dependent Variables (Dark Mode Default) */
  --bg-main: #111A24;
  --bg-surface: #1A2634;
  --bg-surface-elevated: #213042;
  --border-color: #263545;
  --border-color-highlight: rgba(0, 208, 132, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.70);
  --text-muted: #8E9DAF;

  --nav-bg: rgba(17, 26, 36, 0.85);
  --hero-glow-green: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, rgba(17, 26, 36, 0) 70%);
  --hero-glow-gold: radial-gradient(circle, rgba(236, 201, 75, 0.10) 0%, rgba(17, 26, 36, 0) 70%);
  --card-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  --card-shadow-hover: 0 20px 40px rgba(0, 208, 132, 0.12);

  /* Fonts & Radius */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg-main: #F7F9FC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F0F4F8;
  --border-color: #E2E8F0;
  --border-color-highlight: rgba(0, 208, 132, 0.4);
  --text-primary: #1A2533;
  --text-secondary: #4A5568;
  --text-muted: #8E9DAF;

  --nav-bg: rgba(247, 249, 252, 0.88);
  --hero-glow-green: radial-gradient(circle, rgba(0, 208, 132, 0.12) 0%, rgba(247, 249, 252, 0) 70%);
  --hero-glow-gold: radial-gradient(circle, rgba(236, 201, 75, 0.12) 0%, rgba(247, 249, 252, 0) 70%);
  --card-shadow: 0 8px 24px rgba(26, 37, 51, 0.06);
  --card-shadow-hover: 0 16px 36px rgba(0, 208, 132, 0.15);
}

/* 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);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, #00D084 0%, #ECC94B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-green-text {
  background: linear-gradient(135deg, #FFFFFF 30%, #00D084 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .gradient-green-text {
  background: linear-gradient(135deg, #1A2533 30%, #00D084 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 208, 132, 0.1);
  border: 1px solid rgba(0, 208, 132, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-save-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-badge.gold {
  background: rgba(236, 201, 75, 0.1);
  border-color: rgba(236, 201, 75, 0.3);
  color: var(--color-amber-gold);
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px auto;
}

/* Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Premium Dark Theme Logo Background Capsule */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 208, 132, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.brand-logo:hover {
  box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
  transform: translateY(-1px);
}

.brand-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

[data-theme="light"] .brand-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: none;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-save-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--color-save-green);
  color: var(--color-save-green);
}

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-save-green);
  color: #111A24;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px var(--color-save-green-glow);
}

.btn-primary:hover {
  background: var(--color-save-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 208, 132, 0.35);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Official Google Play Badge Style Button */
.btn-google-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #0A0F16;
  color: #FFFFFF;
  border: 1px solid #263545;
  border-radius: 12px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .btn-google-play {
  background: #1A2533;
  color: #FFFFFF;
}

.btn-google-play:hover {
  border-color: var(--color-save-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 208, 132, 0.2);
}

.btn-google-play svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-google-play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.1;
}

.btn-google-play-text .subtext {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-steel-muted);
  font-weight: 600;
}

.btn-google-play-text .maintext {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  z-index: 999;
  padding: 100px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-google-play {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg-glow-green {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: var(--hero-glow-green);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow-gold {
  position: absolute;
  top: 200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--hero-glow-gold);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-badge svg {
  color: var(--color-save-green);
}

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

.phone-mockup {
  width: 320px;
  height: 640px;
  background: #0B131D;
  border-radius: 44px;
  border: 8px solid #233244;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #233244;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #111A24;
  color: #FFFFFF;
  overflow: hidden;
}

.phone-screen img.app-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.dhanlaxmi-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-amber-gold);
  box-shadow: 0 0 12px rgba(236, 201, 75, 0.4);
}

/* Floating Elements around Mockup */
.floating-card-1 {
  position: absolute;
  top: 40px;
  left: -40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 20;
}

.floating-card-2 {
  position: absolute;
  bottom: 80px;
  right: -30px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite 2s;
  z-index: 20;
}

.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(0, 208, 132, 0.15);
  color: var(--color-save-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon.gold {
  background: rgba(236, 201, 75, 0.15);
  color: var(--color-amber-gold);
}

.floating-text .title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.floating-text .sub { font-size: 0.75rem; color: var(--text-secondary); }

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .floating-card-1, .floating-card-2 {
    display: none;
  }
}

/* SECTION 2: THE PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 62, 62, 0.4);
  box-shadow: 0 12px 28px rgba(229, 62, 62, 0.08);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229, 62, 62, 0.1);
  color: var(--color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.problem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.solution-banner {
  background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(26, 38, 52, 0.8) 100%);
  border: 1px solid var(--border-color-highlight);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.solution-text h3 {
  font-size: 1.6rem;
  color: var(--color-save-green);
  margin-bottom: 6px;
}

.solution-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .solution-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* SECTION 3: HOW SAVEJAR WORKS */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--color-save-green);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 2px solid var(--color-save-green);
  color: var(--color-save-green);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}

/* SECTION 4: THREE WAYS TO SAVE */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.way-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.way-card:hover {
  border-color: var(--border-color-highlight);
  box-shadow: var(--card-shadow-hover);
}

.way-header {
  margin-bottom: 24px;
}

.way-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-save-green);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.way-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.way-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Interactive Demos inside Way Cards */
.way-demo-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}

.one-tap-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tap-btn {
  flex: 1;
  padding: 10px 4px;
  background: rgba(0, 208, 132, 0.12);
  border: 1px solid rgba(0, 208, 132, 0.3);
  color: var(--color-save-green);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.tap-btn:hover, .tap-btn.active {
  background: var(--color-save-green);
  color: #111A24;
}

.voice-mic-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mic-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(236, 201, 75, 0.15);
  border: 1px solid var(--color-amber-gold);
  color: var(--color-amber-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.mic-btn.recording {
  animation: pulse-ring 1.5s infinite;
  background: var(--color-amber-gold);
  color: #111A24;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(236, 201, 75, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(236, 201, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 201, 75, 0); }
}

.voice-preview-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.notification-visual {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.notif-body {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.notif-actions {
  display: flex;
  gap: 8px;
}

.btn-notif-add {
  flex: 1;
  padding: 6px;
  background: var(--color-save-green);
  color: #111A24;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.btn-notif-ignore {
  flex: 1;
  padding: 6px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 6px;
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 5: SAVINGS GOALS */
.goals-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.goal-card:hover {
  border-color: var(--color-save-green);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.goal-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.goal-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.goal-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

.goal-card-progress {
  height: 6px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  margin-top: 10px;
  overflow: hidden;
}

.goal-card-progress-bar {
  height: 100%;
  background: var(--color-save-green);
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .goals-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .goals-showcase {
    grid-template-columns: 1fr;
  }
}

/* SECTION 6: DHANLAXMI AI COACHING */
.ai-coach-wrapper {
  background: linear-gradient(135deg, rgba(26, 38, 52, 0.9) 0%, rgba(17, 26, 36, 0.95) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.dhanlaxmi-profile-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.dhanlaxmi-large-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--color-amber-gold);
  box-shadow: 0 0 24px rgba(236, 201, 75, 0.35);
  margin-bottom: 16px;
}

.dhanlaxmi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(236, 201, 75, 0.15);
  border: 1px solid var(--color-amber-gold);
  color: var(--color-amber-gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ai-chat-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chat-bubble-wrapper.user {
  justify-content: flex-end;
}

.chat-avatar-thumb {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1px solid var(--color-amber-gold);
  flex-shrink: 0;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--color-save-green);
  color: #111A24;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
  align-self: flex-start;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.chat-ai-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-amber-gold);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ai-query-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip-btn {
  padding: 6px 12px;
  background: rgba(236, 201, 75, 0.1);
  border: 1px solid rgba(236, 201, 75, 0.3);
  color: var(--color-amber-gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.chip-btn:hover {
  background: var(--color-amber-gold);
  color: #111A24;
}

@media (max-width: 900px) {
  .ai-coach-wrapper {
    grid-template-columns: 1fr;
  }
}

/* SECTION 7: BEHAVIOR INSIGHTS */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insight-metric-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.insight-metric-card:hover {
  border-color: var(--color-amber-gold);
  transform: translateY(-4px);
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-amber-gold);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 8: RECURRING SAVING PLANS */
.routine-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.routine-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.routine-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.routine-item:hover {
  border-color: var(--color-save-green);
}

.routine-freq {
  font-weight: 700;
  font-size: 1.05rem;
}

.routine-amount {
  color: var(--color-save-green);
  font-weight: 800;
  font-size: 1.1rem;
}

.encouragement-card {
  background: rgba(0, 208, 132, 0.08);
  border: 1px dashed var(--color-save-green);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.encouragement-card h4 {
  color: var(--color-save-green);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.encouragement-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .routine-box {
    grid-template-columns: 1fr;
  }
}

/* SECTION 9: PREMIUM / FREE PLAN */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.premium {
  border: 2px solid var(--color-amber-gold);
  box-shadow: 0 12px 40px var(--color-amber-gold-glow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--color-amber-gold);
  color: #111A24;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.trial-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-save-green);
  background: rgba(0, 208, 132, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-tag span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.feature-list li svg {
  color: var(--color-save-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card.premium .feature-list li svg {
  color: var(--color-amber-gold);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 10: PRIVACY AND TRUST */
.trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-item-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(0, 208, 132, 0.15);
  color: var(--color-save-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.shield-graphic {
  display: flex;
  justify-content: center;
}

.shield-graphic svg {
  width: 220px;
  height: 220px;
  color: var(--color-save-green);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .trust-card {
    grid-template-columns: 1fr;
  }
  .shield-graphic {
    display: none;
  }
}

/* SECTION 11: APP PREVIEW GALLERY SCREENSHOT FRAMES */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--color-save-green);
  color: #111A24;
  border-color: var(--color-save-green);
}

.preview-display {
  display: flex;
  justify-content: center;
}

.preview-screen-box {
  width: 320px;
  background: #0B131D;
  border-radius: 40px;
  border: 8px solid #233244;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.preview-screen-box.active {
  display: block;
}

.preview-screen-box img.screenshot-preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.preview-caption-box {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 16px;
  text-align: center;
}

.preview-caption-box h4 {
  font-size: 1rem;
  color: var(--color-save-green);
  margin-bottom: 4px;
}

.preview-caption-box p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

/* SECTION 12: CALL TO ACTION */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(236, 201, 75, 0.1) 100%);
  border: 1px solid var(--border-color-highlight);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-save-green);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
