/* ==========================================================================
   VANJOUR — NATURE-INSPIRED DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* Core Nature Palette */
  --bg-night: #0a130e;
  --bg-deep-forest: #0f1f14;
  --bg-pine-card: rgba(22, 43, 29, 0.75);
  --bg-pine-card-hover: rgba(29, 56, 38, 0.85);
  --bg-glass: rgba(18, 36, 25, 0.65);
  --border-subtle: rgba(64, 145, 108, 0.22);
  --border-highlight: rgba(141, 163, 153, 0.35);

  /* Accents */
  --pine-dark: #132a13;
  --pine-mid: #1f3d2b;
  --pine-light: #2d6a4f;
  --pine-emerald: #40916c;
  --sage-mist: #8da399;
  --sand-cream: #f5efe6;
  --sand-muted: #d5cdc3;
  --campfire-amber: #d97706;
  --campfire-ember: #e07a5f;
  --alps-blue: #38bdf8;
  --danger-crimson: #ef4444;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(64, 145, 108, 0.15);
  --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-night);
  color: var(--sand-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Atmosphere */
.topo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(45, 106, 79, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 85% 65%, rgba(217, 119, 6, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(31, 61, 43, 0.35) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 C30 15 60 45 90 25 C105 15 115 20 120 25 M0 60 C35 40 70 80 100 55 C110 47 115 50 120 55 M0 90 C25 75 55 105 85 85 C100 75 110 80 120 85' stroke='rgba(64,145,108,0.06)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, 240px 240px;
}

.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  pointer-events: none;
  background-image: radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
                    radial-gradient(1.5px 1.5px at 140px 80px, rgba(245,239,230,0.8), rgba(0,0,0,0)),
                    radial-gradient(1px 1px at 280px 190px, #ffffff, rgba(0,0,0,0)),
                    radial-gradient(2px 2px at 450px 70px, rgba(224,122,95,0.7), rgba(0,0,0,0)),
                    radial-gradient(1px 1px at 620px 220px, #ffffff, rgba(0,0,0,0)),
                    radial-gradient(1.5px 1.5px at 800px 110px, rgba(245,239,230,0.9), rgba(0,0,0,0)),
                    radial-gradient(1px 1px at 980px 260px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 1000px 350px;
  opacity: 0.65;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 145, 108, 0.2) 0%, rgba(19, 42, 19, 0) 70%);
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(15, 31, 20, 0) 70%);
  bottom: 10%;
  left: -150px;
}

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

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 19, 14, 0.7);
  border-bottom: 1px solid rgba(64, 145, 108, 0.12);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10, 19, 14, 0.92);
  border-bottom-color: rgba(64, 145, 108, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sand-cream);
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-icon.sm {
  width: 32px;
  height: 32px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sand-cream);
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--sage-mist);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--sand-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pine-emerald);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: var(--bg-pine-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--sand-cream);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2d6a4f 0%, #1f3d2b 100%);
  color: var(--sand-cream);
  border: 1px solid var(--pine-emerald);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #40916c 0%, #2d6a4f 100%);
  box-shadow: 0 6px 24px rgba(64, 145, 108, 0.45), 0 0 15px rgba(217, 119, 6, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--sand-cream);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--bg-pine-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.icon-van, .icon-compass {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero-section {
  padding: 70px 0 60px;
  position: relative;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31, 61, 43, 0.6);
  border: 1px solid rgba(64, 145, 108, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--pine-emerald);
  box-shadow: 0 0 10px var(--pine-emerald);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand-cream);
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}

.gradient-text {
  background: linear-gradient(135deg, #f5efe6 20%, #40916c 60%, #e07a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.serif-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--sand-muted);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--sand-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.stat-icon {
  font-size: 1.4rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-info strong {
  font-size: 0.92rem;
  color: var(--sand-cream);
}

.stat-info small {
  font-size: 0.78rem;
  color: var(--sage-mist);
}

/* Hero Mockup Showcase */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 1050px;
  position: relative;
  margin-top: 10px;
}

.mockup-nature-backdrop {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 280px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.mountain-vector {
  width: 100%;
  height: 100%;
}

.app-glass-frame {
  position: relative;
  z-index: 1;
  background: rgba(15, 31, 20, 0.88);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  text-align: left;
}

.app-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 19, 14, 0.95);
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.close { background-color: #ef4444; }
.dot.min { background-color: #f59e0b; }
.dot.max { background-color: #10b981; }

.app-trip-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(31, 61, 43, 0.7);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.active-trip-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sand-cream);
}

.trip-status-badge {
  font-size: 0.68rem;
  background: #10b981;
  color: #064e3b;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.app-sync-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--sage-mist);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.sync-dot {
  width: 6px;
  height: 6px;
  background-color: var(--pine-emerald);
  border-radius: 50%;
}

.mockup-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 480px;
}

.mockup-col {
  padding: 24px;
}

.schedule-col {
  border-right: 1px solid var(--border-subtle);
  background: rgba(15, 31, 20, 0.4);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.panel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sand-cream);
}

.budget-badge {
  font-size: 0.75rem;
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* Timeline Components */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-node {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-glass);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.timeline-node.active {
  background: rgba(45, 106, 79, 0.35);
  border-color: var(--pine-emerald);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.node-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.node-body h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--sand-cream);
}

.node-body p {
  font-size: 0.8rem;
  color: var(--sand-muted);
}

.highlight-p {
  color: #a7f3d0 !important;
  font-weight: 500;
}

.spot-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.spot-tags .tag {
  font-size: 0.7rem;
  background: rgba(64, 145, 108, 0.25);
  color: var(--sand-cream);
  padding: 2px 7px;
  border-radius: 4px;
}

.node-time {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--sage-mist);
  font-weight: 600;
}

.timeline-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 28px;
}

.connector-line {
  width: 2px;
  height: 20px;
  background: var(--pine-emerald);
  border-radius: 1px;
}

.timeline-connector.dashed .connector-line {
  background: repeating-linear-gradient(to bottom, var(--sage-mist) 0, var(--sage-mist) 4px, transparent 4px, transparent 8px);
}

.route-info {
  font-size: 0.74rem;
  color: var(--sage-mist);
  font-family: var(--font-display);
}

/* Journal Preview Mockup */
.journal-col {
  background: rgba(10, 19, 14, 0.5);
  display: flex;
  flex-direction: column;
}

.journal-card-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.journal-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journal-date {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.day-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sand-cream);
  line-height: 1;
}

.month-txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-mist);
  letter-spacing: 0.05em;
}

.mood-badge {
  font-size: 0.75rem;
  background: rgba(224, 122, 95, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(224, 122, 95, 0.4);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.journal-media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #193322;
  border: 1px solid var(--border-subtle);
  height: 170px;
}

.nature-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31,61,43,0.3) 0%, rgba(10,19,14,0.95) 100%),
              url("data:image/svg+xml,%3Csvg width='400' height='200' viewBox='0 0 400 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200L60 110L140 160L230 70L320 150L400 90V200H0Z' fill='%232D6A4F'/%3E%3Ccircle cx='320' cy='60' r='24' fill='%23D97706' opacity='0.7'/%3E%3C/svg%3E");
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.photo-overlay {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.photo-source-badge {
  font-size: 0.68rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--sand-cream);
  padding: 2px 6px;
  border-radius: 4px;
  align-self: flex-start;
}

.photo-caption {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--sand-cream);
}

.soundtrack-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.disc-spin {
  font-size: 1.2rem;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

.song-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.song-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sand-cream);
}

.song-artist {
  font-size: 0.72rem;
  color: var(--sage-mist);
}

.audio-waves {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}

.audio-waves span {
  width: 3px;
  background: var(--pine-emerald);
  border-radius: 2px;
  animation: wave-motion 1.2s infinite ease-in-out alternate;
}

.audio-waves span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.audio-waves span:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.audio-waves span:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.audio-waves span:nth-child(4) { height: 16px; animation-delay: 0.4s; }
.audio-waves span:nth-child(5) { height: 8px; animation-delay: 0.15s; }

@keyframes wave-motion {
  0% { height: 4px; }
  100% { height: 18px; }
}

.journal-notes {
  font-size: 0.82rem;
  color: var(--sand-muted);
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--pine-emerald);
}

/* PILLARS SECTION */
.pillars-section {
  padding: 100px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 60px;
}

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

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine-emerald);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sand-cream);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--sand-muted);
  max-width: 650px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.pillar-card {
  background: var(--bg-pine-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  background: var(--bg-pine-card-hover);
  border-color: var(--pine-emerald);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(45, 106, 79, 0.35);
  border: 1px solid var(--pine-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-cream);
  margin-bottom: 24px;
}

.pillar-icon-box svg {
  width: 28px;
  height: 28px;
}

.pillar-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(141, 163, 153, 0.2);
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--sand-cream);
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--sand-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.pillar-bullets li {
  font-size: 0.85rem;
  color: var(--sage-mist);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* DRIVING BUDGET SIMULATOR SECTION */
.budget-tool-section {
  padding: 90px 0;
}

.budget-tool-card {
  background: linear-gradient(135deg, rgba(22, 43, 29, 0.9) 0%, rgba(10, 19, 14, 0.95) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  box-shadow: var(--shadow-lg);
}

.tool-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sand-cream);
  margin-bottom: 14px;
}

.tool-desc {
  font-size: 1rem;
  color: var(--sand-muted);
  margin-bottom: 32px;
}

.slider-control-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-header label {
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--campfire-amber);
}

.custom-range {
  width: 100%;
  height: 8px;
  background: #1f3d2b;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sand-cream);
  border: 3px solid var(--campfire-amber);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--sage-mist);
  margin-top: 8px;
}

.pace-insights {
  display: flex;
  gap: 16px;
  background: rgba(64, 145, 108, 0.15);
  border: 1px solid var(--pine-emerald);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.insight-icon {
  font-size: 1.6rem;
}

.insight-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--sand-cream);
  margin-bottom: 4px;
}

.insight-text p {
  font-size: 0.84rem;
  color: var(--sand-muted);
}

/* Gauge Display */
.gauge-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
}

.gauge-circle {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 24px;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.gauge-progress {
  fill: none;
  stroke: var(--pine-emerald);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease, stroke 0.3s ease;
}

.gauge-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gauge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand-cream);
}

.gauge-lbl {
  font-size: 0.72rem;
  color: var(--sage-mist);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gauge-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row span {
  color: var(--sage-mist);
}

.metric-row strong {
  color: var(--sand-cream);
}

.risk-low {
  color: #34d399 !important;
}

/* PRIVACY SECTION */
.privacy-section {
  padding: 70px 0;
}

.privacy-card {
  background: var(--bg-deep-forest);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.privacy-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.shield-badge {
  font-size: 2.5rem;
  background: rgba(45, 106, 79, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--pine-emerald);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.privacy-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.p-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.privacy-item h4 {
  font-size: 1.05rem;
  color: var(--sand-cream);
  margin-bottom: 8px;
}

.privacy-item p {
  font-size: 0.88rem;
  color: var(--sand-muted);
  line-height: 1.5;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-pine-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-highlight);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--sand-cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--sage-mist);
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--pine-emerald);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--sand-muted);
  line-height: 1.6;
}

.faq-answer.open {
  display: block;
}

/* CTA / LAUNCH ACCESS SECTION */
.cta-section {
  padding: 90px 0 110px;
  position: relative;
}

.cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(45, 106, 79, 0.4) 0%, rgba(10, 19, 14, 0.95) 75%);
  border: 1px solid var(--pine-emerald);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  max-width: 860px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--sand-cream);
  margin-bottom: 16px;
}

.cta-lead {
  font-size: 1.1rem;
  color: var(--sand-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}

.cta-launch-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto 24px;
}

.btn-launch-app {
  padding: 16px 36px;
  font-size: 1.15rem;
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.5), 0 0 20px rgba(217, 119, 6, 0.3);
}

.cta-footnote {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--sage-mist);
}

/* FOOTER */
.site-footer {
  background: #060e09;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--sage-mist);
  margin: 14px 0;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(141, 163, 153, 0.6);
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 0.85rem;
  color: var(--sand-cream);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--sage-mist);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--sand-cream);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .mockup-content-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule-col {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .budget-tool-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 19, 14, 0.98);
    border-bottom: 1px solid var(--border-highlight);
    padding: 24px;
    gap: 16px;
  }

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-stats-row {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-pill {
    justify-content: center;
  }

  .app-header-bar {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .btn-launch-app {
    width: 100%;
  }

  .budget-tool-card {
    padding: 24px 16px;
  }

  .privacy-card {
    padding: 28px 16px;
  }
}
