:root {
  --primary: #4a7c6f;
  --primary-light: #a4c3b2;
  --primary-lighter: #cce3de;
  --primary-pale: #eaf4f4;
  --primary-dark: #3d5a50;
  --accent-mint: #b7d4c8;
  --accent-sage: #7a9e8e;
  --accent-coral: #e8a598;
  --accent-peach: #f5d5c8;
  --accent-warm: #d4a574;
  --accent-cream: #faf6f1;
  --background: #fafbfa;
  --background-white: #ffffff;
  --text-dark: #2d3332;
  --text-secondary: #5a6363;
  --text-light: #8a9494;
  --border-color: #e5e8e7;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --card-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
}

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

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

/* Header */
header {
  background: transparent;
  /* padding: 16px 0; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--text-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

header nav a {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

header nav a:hover {
  color: var(--primary-dark);
  text-decoration: none !important;
  transform: translateY(-2px);
}

.nav-cta {
  background: #000000;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 165, 152, 0.4);
}

/* Hero Section with Waves */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
}

.hero-waves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 140px 0px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 450;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-warm) 100%);
  color: white;
  padding: 20px 32px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 165, 152, 0.4);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 165, 152, 0.5);
}

.btn-secondary {
  color: var(--text-secondary);
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-secondary:hover {
  color: var(--accent-warm);
}

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

.hero-image-main {
  max-width: 52vw;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 1;
}

/* Floating Clouds */
.hero-illustration {
  position: relative;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.8;
  filter: blur(1px);
  z-index: 0;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-1 {
  width: 80px;
  height: 30px;
  top: 10%;
  left: -12%;
  animation: cloudFloat1 6s ease-in-out infinite;
}

.cloud-1::before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 10px;
}

.cloud-1::after {
  width: 30px;
  height: 30px;
  top: -15px;
  left: 40px;
}

.cloud-2 {
  width: 100px;
  height: 35px;
  top: 5%;
  right: 5%;
  animation: cloudFloat2 8s ease-in-out infinite;
}

.cloud-2::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 15px;
}

.cloud-2::after {
  width: 35px;
  height: 35px;
  top: -18px;
  left: 55px;
}

.cloud-3 {
  width: 60px;
  height: 22px;
  bottom: 20%;
  left: 0%;
  animation: cloudFloat3 7s ease-in-out infinite;
}

.cloud-3::before {
  width: 30px;
  height: 30px;
  top: -15px;
  left: 8px;
}

.cloud-3::after {
  width: 22px;
  height: 22px;
  top: -10px;
  left: 30px;
}

.cloud-4 {
  width: 70px;
  height: 25px;
  bottom: 15%;
  right: -2%;
  animation: cloudFloat4 5s ease-in-out infinite;
}

.cloud-4::before {
  width: 35px;
  height: 35px;
  top: -18px;
  left: 10px;
}

.cloud-4::after {
  width: 25px;
  height: 25px;
  top: -12px;
  left: 38px;
}

@keyframes cloudFloat1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -10px);
  }
}

@keyframes cloudFloat2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 8px);
  }
}

@keyframes cloudFloat3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -15px);
  }
}

@keyframes cloudFloat4 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-12px, -8px);
  }
}

.cloud-5 {
  width: 50px;
  height: 18px;
  top: 25%;
  left: 5%;
  opacity: 0.6;
  animation: cloudFloat5 9s ease-in-out infinite;
}

.cloud-5::before {
  width: 25px;
  height: 25px;
  top: -12px;
  left: 6px;
}

.cloud-5::after {
  width: 18px;
  height: 18px;
  top: -8px;
  left: 25px;
}

.cloud-6 {
  width: 90px;
  height: 32px;
  top: 35%;
  right: -8%;
  animation: cloudFloat6 7s ease-in-out infinite;
}

.cloud-6::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 12px;
}

.cloud-6::after {
  width: 32px;
  height: 32px;
  top: -16px;
  left: 48px;
}

.cloud-7 {
  width: 55px;
  height: 20px;
  bottom: 35%;
  left: -10%;
  opacity: 0.7;
  animation: cloudFloat7 6s ease-in-out infinite;
}

.cloud-7::before {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 7px;
}

.cloud-7::after {
  width: 20px;
  height: 20px;
  top: -10px;
  left: 28px;
}

.cloud-8 {
  width: 45px;
  height: 16px;
  bottom: 40%;
  right: 10%;
  opacity: 0.5;
  animation: cloudFloat8 10s ease-in-out infinite;
}

.cloud-8::before {
  width: 22px;
  height: 22px;
  top: -11px;
  left: 5px;
}

.cloud-8::after {
  width: 16px;
  height: 16px;
  top: -8px;
  left: 22px;
}

@keyframes cloudFloat5 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -5px);
  }
}

@keyframes cloudFloat6 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 12px);
  }
}

@keyframes cloudFloat7 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, 8px);
  }
}

@keyframes cloudFloat8 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, -12px);
  }
}

.cloud-9 {
  width: 65px;
  height: 24px;
  top: 18%;
  left: 34%;
  opacity: 0.65;
  animation: cloudFloat9 8s ease-in-out infinite;
}

.cloud-9::before {
  width: 32px;
  height: 32px;
  top: -16px;
  left: 8px;
}

.cloud-9::after {
  width: 24px;
  height: 24px;
  top: -12px;
  left: 35px;
}

.cloud-10 {
  width: 40px;
  height: 14px;
  top: 45%;
  right: 15%;
  opacity: 0.5;
  animation: cloudFloat10 11s ease-in-out infinite;
}

.cloud-10::before {
  width: 20px;
  height: 20px;
  top: -10px;
  left: 5px;
}

.cloud-10::after {
  width: 14px;
  height: 14px;
  top: -7px;
  left: 20px;
}

.cloud-11 {
  width: 75px;
  height: 28px;
  bottom: 10%;
  left: 10%;
  opacity: 0.7;
  animation: cloudFloat11 9s ease-in-out infinite;
}

.cloud-11::before {
  width: 38px;
  height: 38px;
  top: -19px;
  left: 10px;
}

.cloud-11::after {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 42px;
}

.cloud-12 {
  width: 55px;
  height: 20px;
  bottom: 5%;
  right: 20%;
  opacity: 0.55;
  animation: cloudFloat12 7s ease-in-out infinite;
}

.cloud-12::before {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 7px;
}

.cloud-12::after {
  width: 20px;
  height: 20px;
  top: -10px;
  left: 30px;
}

.cloud-13 {
  width: 35px;
  height: 12px;
  top: 55%;
  left: -3%;
  opacity: 0.45;
  animation: cloudFloat13 12s ease-in-out infinite;
}

.cloud-13::before {
  width: 18px;
  height: 18px;
  top: -9px;
  left: 4px;
}

.cloud-13::after {
  width: 12px;
  height: 12px;
  top: -6px;
  left: 18px;
}

.cloud-14 {
  width: 85px;
  height: 30px;
  top: 60%;
  right: 0%;
  opacity: 0.6;
  animation: cloudFloat14 8s ease-in-out infinite;
}

.cloud-14::before {
  width: 42px;
  height: 42px;
  top: -21px;
  left: 12px;
}

.cloud-14::after {
  width: 30px;
  height: 30px;
  top: -15px;
  left: 48px;
}

.cloud-15 {
  width: 48px;
  height: 17px;
  top: 75%;
  left: 20%;
  opacity: 0.5;
  animation: cloudFloat15 10s ease-in-out infinite;
}

.cloud-15::before {
  width: 24px;
  height: 24px;
  top: -12px;
  left: 6px;
}

.cloud-15::after {
  width: 17px;
  height: 17px;
  top: -8px;
  left: 26px;
}

.cloud-16 {
  width: 42px;
  height: 15px;
  top: 20%;
  right: 25%;
  opacity: 0.4;
  animation: cloudFloat16 13s ease-in-out infinite;
}

.cloud-16::before {
  width: 21px;
  height: 21px;
  top: -10px;
  left: 5px;
}

.cloud-16::after {
  width: 15px;
  height: 15px;
  top: -7px;
  left: 22px;
}

@keyframes cloudFloat9 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(14px, -8px); }
}

@keyframes cloudFloat10 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 6px); }
}

@keyframes cloudFloat11 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, 10px); }
}

@keyframes cloudFloat12 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-14px, -6px); }
}

@keyframes cloudFloat13 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -10px); }
}

@keyframes cloudFloat14 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 5px); }
}

@keyframes cloudFloat15 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -7px); }
}

@keyframes cloudFloat16 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 8px); }
}

.hero-card {
  position: relative;
  background: var(--background-white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--card-shadow-lg);
  width: 340px;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-header h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.card-tabs {
  display: flex;
  gap: 4px;
}

.card-tab {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  background: transparent;
  color: var(--text-light);
  border: none;
  cursor: pointer;
}

.card-tab.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

.mini-chart {
  height: 120px;
  position: relative;
  margin-bottom: 20px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.balance-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.balance-change {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: var(--background-white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--card-shadow);
  z-index: 3;
}

.floating-stat.stat-1 {
  top: -20px;
  right: -30px;
}

.floating-stat.stat-2 {
  bottom: 40px;
  left: -40px;
}

.floating-stat .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1rem;
}

.floating-stat .stat-icon.green {
  background: var(--primary-pale);
}

.floating-stat .stat-icon.mint {
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-sage) 100%);
  color: white;
}

.floating-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.floating-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Features Section */
.features-section {
  position: relative;
  padding: 100px 24px;
  background: var(--background-white);
}

.features-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: var(--background);
  clip-path: ellipse(80% 100% at 50% 0%);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  background: var(--accent-peach);
  color: var(--accent-warm);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 450;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--background);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  background: var(--background-white);
  border-color: var(--border-color);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: var(--accent-cream);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 450;
}

/* Dashboard Section */
.dashboard-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--background-white) 0%, var(--background) 100%);
  overflow: hidden;
}

.dashboard-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}

.dashboard-blob.blob-1 {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--accent-mint) 100%);
}

.dashboard-blob.blob-2 {
  background: linear-gradient(135deg, var(--accent-peach) 0%, var(--accent-coral) 100%);
}

.dashboard-blob.blob-1 {
  top: -200px;
  left: -200px;
}

.dashboard-blob.blob-2 {
  bottom: -200px;
  right: -200px;
  background: linear-gradient(135deg, var(--accent-peach) 0%, var(--accent-coral) 100%);
}

.dashboard-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dashboard-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.dashboard-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 450;
}

.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dash-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

.dashboard-preview {
  position: relative;
}

.dash-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--card-shadow-lg);
}

.dash-card + .dash-card {
  margin-top: 20px;
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-card-header span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.category-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.category-bar .dot.green { background: var(--primary); }
.category-bar .dot.mint { background: var(--accent-mint); }
.category-bar .dot.teal { background: var(--accent-coral); }
.category-bar .dot.light { background: var(--accent-warm); }

.category-bar .name {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.category-bar .bar-wrapper {
  flex: 2;
  height: 8px;
  background: var(--accent-cream);
  border-radius: 4px;
  overflow: hidden;
}

.category-bar .bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-warm) 100%);
}

.category-bar .amount {
  width: 60px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Chart Card */
.chart-area {
  height: 160px;
  position: relative;
}

/* CTA Section */
.cta-section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-wave {
  position: absolute;
  width: 100%;
  height: 200px;
}

.cta-wave-1 {
  bottom: 0;
  background: var(--accent-peach);
  clip-path: ellipse(70% 100% at 30% 100%);
  opacity: 0.4;
}

.cta-wave-2 {
  bottom: 0;
  background: var(--accent-mint);
  clip-path: ellipse(60% 80% at 70% 100%);
  opacity: 0.25;
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--background-white);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  box-shadow: var(--card-shadow-lg);
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 450;
}

.app-store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.app-badge {
  height: 52px;
  transition: transform 0.2s;
}

.app-badge:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--background-white);
  padding: 60px 24px 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--accent-coral);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Policy Pages */
.page-header {
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--background) 100%);
  padding: 120px 24px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.page-header .last-updated {
  color: var(--text-secondary);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.container h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 40px 0 16px;
  color: var(--text-dark);
}

.container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text-dark);
}

.container p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.container ul, .container ol {
  color: var(--text-secondary);
  margin: 16px 0;
  padding-left: 24px;
  line-height: 1.8;
}

.container li {
  margin-bottom: 8px;
}

.container a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

/* OAuth Redirect */
.oauth-redirect {
  text-align: center;
  padding: 120px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--background) 100%);
}

.oauth-redirect .logo {
  margin-bottom: 40px;
}

.oauth-redirect h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.oauth-redirect p {
  color: var(--text-secondary);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-pale);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 32px 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */

/* XLarge screens (1440px and up) */
@media (min-width: 1440px) {

  header .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .logo {
    font-size: 1.6rem;
    gap: 12px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  nav {
    gap: 44px;
  }

  header nav a {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .hero-wrapper {
    min-height: 100vh;
  }

  .hero {
    max-width: 1400px;
    gap: 100px;
    padding: 160px 40px 120px;
    min-height: 100vh;
  }

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

  .hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .hero-description {
    font-size: 1.4rem;
    margin-bottom: 44px;
  }

  .hero-buttons {
    gap: 20px;
  }

  .btn-primary {
    padding: 17px 23px;
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .btn-secondary {
    padding: 18px 36px;
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .hero-image-main {
    max-width: 55vw;
  }

  .features-grid {
    max-width: 1300px;
  }

  .dashboard-content {
    max-width: 1300px;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .cta-card {
    max-width: 800px;
    padding: 80px;
  }

  .footer-grid {
    max-width: 1300px;
  }
}

/* Large laptops (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  header .container {
    max-width: 1140px;
    padding: 0 32px;
  }

  .logo {
    font-size: 1.4rem;
  }

  nav {
    gap: 36px;
  }

  header nav a {
    font-size: 0.95rem;
  }

  .nav-cta {
    padding: 10px 24px;
  }

  .hero-wrapper {
    min-height: 100vh;
  }

  .hero {
    max-width: 1100px;
    gap: 60px;
    padding: 140px 32px 100px;
    min-height: 100vh;
  }

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

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 36px;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .hero-image-main {
    max-width: 48vw;
  }
}

/* Laptops (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {

  header .container {
    max-width: 960px;
    padding: 0 24px;
  }

  .logo {
    font-size: 1.3rem;
    gap: 8px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  nav {
    gap: 28px;
  }

  header nav a {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 9px 20px;
    font-size: 0.9rem;
  }

  .hero-wrapper {
    min-height: 100vh;
  }

  .hero {
    max-width: 960px;
    gap: 40px;
    padding: 120px 24px 80px;
    min-height: 100vh;
  }

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

  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .btn-primary {
    padding: 18px 28px;
  }

  .btn-secondary {
    padding: 14px 28px;
  }

  .hero-image-main {
    max-width: 45vw;
  }

  .features-grid {
    max-width: 960px;
    gap: 20px;
  }

  .feature-card {
    padding: 28px;
  }

  .dashboard-content {
    max-width: 960px;
    gap: 50px;
  }

  .footer-grid {
    max-width: 960px;
    gap: 40px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  header .container {
    padding: 0 24px;
    margin: 0.5rem auto;
  }

  .logo {
    font-size: 1.3rem;
    gap: 8px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  nav {
    gap: 24px;
  }

  header nav a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 9px 18px;
    font-size: 0.88rem;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
    order: 2;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .btn-primary {
    padding: 18px 32px;
  }

  .btn-secondary {
    padding: 14px 28px;
  }

  .hero-illustration {
    order: 1;
  }

  .hero-image-main {
    max-width: 55vw;
  }

  .features-section {
    padding: 80px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .dashboard-section {
    padding: 80px 24px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-text {
    text-align: center;
  }

  .dashboard-text h2 {
    font-size: 2.2rem;
  }

  .dashboard-features {
    align-items: center;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .cta-card {
    padding: 50px 40px;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  header {
    padding: 14px 0;
  }

  header .container {
    padding: 0 20px;
    margin: 0 auto;
  }

  .logo {
    font-size: 1.25rem;
    gap: 8px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  nav {
    gap: 0;
  }

  header nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 100px 20px 50px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    order: 2;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .hero-content h1 span {
    display: block;
  }

  .hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-illustration {
    order: 1;
    padding: 0 10px;
  }

  .hero-image-main {
    max-width: 75vw;
  }

  .features-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .dashboard-section {
    padding: 60px 20px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dashboard-text {
    text-align: center;
  }

  .dashboard-text h2 {
    font-size: 1.8rem;
  }

  .dashboard-text p {
    font-size: 1rem;
  }

  .dashboard-features {
    align-items: center;
  }

  .dash-feature {
    gap: 12px;
  }

  .dash-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .dash-card {
    padding: 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta-card h2 {
    font-size: 1.6rem;
  }

  .cta-card p {
    font-size: 1rem;
  }

  .app-badge {
    height: 44px;
  }

  footer {
    padding: 50px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

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

  .page-header {
    padding: 100px 20px 50px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 40px 20px;
  }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
  header {
    padding: 12px 0;
  }

  header .container {
    padding: 0 16px;
    margin: 0 auto;
  }

  .logo {
    font-size: 1.15rem;
    gap: 6px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    border-radius: 7px;
  }

  nav {
    gap: 0;
  }

  header nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 40px;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 90px 16px 40px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    order: 2;
    padding: 0 4px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-content h1 span {
    display: block;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-illustration {
    order: 1;
    padding: 0;
  }

  .hero-image-main {
    max-width: 92vw;
  }

  .features-section {
    padding: 50px 16px;
  }

  .features-wave-top {
    height: 80px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 20px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .dashboard-section {
    padding: 50px 16px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dashboard-text {
    text-align: center;
  }

  .dashboard-text h2 {
    font-size: 1.6rem;
  }

  .dashboard-text p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .dashboard-features {
    align-items: center;
    gap: 14px;
  }

  .dash-feature {
    gap: 10px;
  }

  .dash-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .dash-feature span {
    font-size: 0.9rem;
  }

  .dashboard-preview {
    padding: 0;
  }

  .dash-card {
    padding: 16px;
    border-radius: 16px;
  }

  .dash-card + .dash-card {
    margin-top: 14px;
  }

  .dash-card-header h4 {
    font-size: 0.9rem;
  }

  .dash-card-header span {
    font-size: 0.75rem;
  }

  .category-bar .name {
    font-size: 0.8rem;
  }

  .category-bar .amount {
    font-size: 0.8rem;
    width: 50px;
  }

  .cta-section {
    padding: 50px 16px;
  }

  .cta-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .cta-card p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .app-store-badges {
    flex-direction: column;
    align-items: center;
  }

  .app-badge {
    height: 40px;
  }

  footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-column h4 {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .footer-column a {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
  }

  .page-header {
    padding: 80px 16px 40px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .container {
    padding: 32px 16px;
  }

  .container h2 {
    font-size: 1.25rem;
    margin: 32px 0 14px;
  }

  .container h3 {
    font-size: 1rem;
  }

  .container p {
    font-size: 0.95rem;
  }

  .oauth-redirect {
    padding: 80px 16px;
  }

  .oauth-redirect h1 {
    font-size: 1.4rem;
  }

  .spinner {
    width: 40px;
    height: 40px;
  }
}