/* ============================================
   GrowBy.me — Design System
   Aesthetic: Editorial Botanical · Premium Wellness
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --cream:        #F8F4ED;
  --cream-2:      #EEE9DF;
  --cream-3:      #E3DDD3;
  --green-950:    #0E1A11;
  --green-900:    #162419;
  --green-800:    #1F3325;
  --green-700:    #2C4A34;
  --green-600:    #3A6144;
  --green-500:    #4E7E5A;
  --green-400:    #6EA07A;
  --green-200:    #A8C9B0;
  --green-100:    #D4E8D8;
  --gold:         #B8860B;
  --gold-light:   #D4A843;
  --gold-muted:   #C9A55A;
  --text-dark:    #1A211C;
  --text-mid:     #3D5244;
  --text-light:   #7A9482;
  --text-faint:   #A8B8AC;
  --white:        #FFFFFF;
  --shadow-soft:  0 4px 32px rgba(20,40,24,0.08);
  --shadow-mid:   0 8px 48px rgba(20,40,24,0.14);
  --shadow-deep:  0 24px 80px rgba(20,40,24,0.22);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    48px;
  --transition:   0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.6rem; line-height: 1.2; }
p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); }

.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 6vw, 6rem);
}

section { position: relative; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(248,244,237,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(44,74,52,0.1);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green-700); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--cream-2);
  border-radius: 100px;
  padding: 3px;
}

.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  color: var(--text-light);
  transition: all 0.25s ease;
}
.lang-btn.active {
  background: var(--green-700);
  color: var(--cream);
}
.lang-btn:hover:not(.active) {
  color: var(--text-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-800);
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--green-700) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-800);
  transition: all 0.3s;
  transform-origin: center;
}

/* ============================================
   HERO (old split layout — kept for reference)
   ============================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-left {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

/* ============================================
   HERO SIMPLE (centered, no mockup)
   ============================================ */
.hero-simple {
  padding: 10rem 0 7rem;
  text-align: center;
}

.hero-simple .hero-tag {
  display: inline-flex;
  margin-bottom: 2.5rem;
}

.hero-simple .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--green-900);
  margin-bottom: 1.8rem;
}

.hero-simple .hero-tagline {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-simple .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.hero-simple .hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  padding-top: 0;
  border-top: none;
}

.hero-simple .stat { padding: 0 2.5rem; }

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-3);
  flex-shrink: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-100);
  color: var(--green-700);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}
.hero-title .dot { color: var(--gold); }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-600);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-900);
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(14,26,17,0.25);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,26,17,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border: 1.5px solid var(--cream-3);
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--green-200);
  color: var(--green-700);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-3);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.2rem;
}

/* Hero Right — Phone Visual */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 600px;
}

.hero-bg-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--green-100) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-deco-quote {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: var(--green-100);
  line-height: 0.7;
  top: 40px;
  right: -20px;
  pointer-events: none;
  user-select: none;
}

/* CSS Phone Mockup */
.phone-mockup {
  position: relative;
  width: 260px;
  height: 530px;
  background: var(--green-900);
  border-radius: 42px;
  padding: 50px 18px 30px;
  box-shadow:
    0 0 0 8px var(--green-800),
    0 0 0 10px rgba(255,255,255,0.06),
    0 40px 80px rgba(14,26,17,0.4),
    0 4px 8px rgba(14,26,17,0.2);
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(-1deg); }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--green-950);
  border-radius: 100px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-950) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1rem;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.phone-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
}
.phone-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.phone-icons span {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
}
.phone-icons span:nth-child(1) { width: 3px; height: 6px; }
.phone-icons span:nth-child(2) { width: 3px; }
.phone-icons span:nth-child(3) { width: 10px; height: 5px; border-radius: 1px; }

.phone-app-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.8rem;
}

.phone-quote-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5rem;
}

.phone-big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(168,201,176,0.3);
  line-height: 0.7;
  margin-bottom: 0.8rem;
}

.phone-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-bottom: 0.8rem;
}

.phone-quote-author {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

.phone-bottom {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}
.phone-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s;
}
.phone-dot.active { background: var(--gold-light); width: 16px; border-radius: 3px; }

.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.6rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.8rem;
}
.phone-tab-icon {
  font-size: 1rem;
  opacity: 0.35;
}
.phone-tab-icon.active { opacity: 1; }

/* Floating badge */
.phone-badge {
  position: absolute;
  right: -40px;
  top: 120px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-mid);
  min-width: 140px;
  animation: phoneFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}
.phone-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.phone-badge-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.phone-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
}
.phone-badge-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 400;
}

.phone-badge-2 {
  position: absolute;
  left: -50px;
  bottom: 140px;
  background: var(--green-800);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  box-shadow: 0 8px 32px rgba(14,26,17,0.3);
  min-width: 130px;
  animation: phoneFloat 6s ease-in-out infinite;
  animation-delay: 2s;
}
.phone-badge-2 .phone-badge-text { color: var(--green-100); }
.phone-badge-2 .phone-badge-sub { color: var(--green-300); }

/* Animated quote cycling in phone */
.phone-quote-text {
  animation: quoteChange 8s ease-in-out infinite;
}
@keyframes quoteChange {
  0%, 40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100% { opacity: 1; }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 8rem 0;
  background: var(--cream);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.section-header-left { flex: 1; }
.section-header p {
  max-width: 380px;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

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

.feature-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
  border-color: var(--green-100);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--green-900);
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.feature-card-accent {
  background: var(--green-900);
}
.feature-card-accent h3 { color: var(--cream); }
.feature-card-accent p { color: var(--green-200); }
.feature-card-accent .feature-icon {
  background: rgba(255,255,255,0.08);
}
.feature-card-accent::before { display: none; }
.feature-card-accent:hover {
  box-shadow: 0 8px 40px rgba(14,26,17,0.3);
}

/* ============================================
   QUOTES SHOWCASE
   ============================================ */
.quotes-showcase {
  padding: 6rem 0;
  background: var(--cream-2);
  overflow: hidden;
}

.quotes-marquee-wrapper {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.quotes-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.quotes-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.quote-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(20,40,24,0.06);
  border: 1px solid rgba(20,40,24,0.05);
}

.quote-card-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-200);
  line-height: 0.8;
  margin-bottom: 0.8rem;
}

.quote-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.quote-card-author {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-card-dark {
  background: var(--green-900);
}
.quote-card-dark .quote-card-mark { color: var(--green-600); }
.quote-card-dark .quote-card-text { color: rgba(255,255,255,0.88); }
.quote-card-dark .quote-card-author { color: var(--gold-light); }

/* ============================================
   APP PREVIEW / HOW IT WORKS
   ============================================ */
.app-preview {
  padding: 8rem 0;
  background: var(--cream);
}

.preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.preview-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  cursor: default;
}
.preview-item:hover { background: var(--cream-2); }

.preview-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--green-200);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.preview-item-content h3 {
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 0.3rem;
}
.preview-item-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.preview-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.preview-phone-bg {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--green-100);
  filter: blur(60px);
  opacity: 0.6;
}

/* Second phone style for preview section */
.phone-mockup-alt {
  position: relative;
  width: 240px;
  height: 490px;
  background: var(--cream);
  border-radius: 40px;
  padding: 46px 16px 28px;
  box-shadow:
    0 0 0 7px var(--cream-2),
    0 0 0 9px var(--cream-3),
    0 32px 64px rgba(14,26,17,0.18);
  z-index: 2;
}

.phone-mockup-alt .phone-notch {
  background: var(--cream-3);
}

.phone-screen-alt {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: var(--cream-2);
  overflow: hidden;
  padding: 1rem;
}

.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.ps-date {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
}
.ps-streak {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--green-100);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green-700);
}

.ps-greeting {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.ps-sub {
  font-size: 0.62rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.ps-card {
  background: var(--green-800);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.ps-card-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 0.4rem;
}
.ps-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.ps-card-author {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

.ps-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ps-cat {
  background: var(--cream);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-mid);
  border: 1px solid var(--cream-3);
}
.ps-cat.active {
  background: var(--green-900);
  color: var(--cream);
  border-color: transparent;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
  padding: 8rem 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.download-bg-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-700) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  opacity: 0.3;
}
.download-bg-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-muted) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.12;
}

.download-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.download h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.download-sub {
  font-size: 1.1rem;
  color: var(--green-200);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.download-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--cream);
  color: var(--green-900);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.app-store-btn-icon { font-size: 1.6rem; }
.app-store-btn-text { text-align: left; }
.app-store-btn-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}
.app-store-btn-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.download-note {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--green-300);
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--green-950);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-200);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--gold-muted); }

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--green-300);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; }

.footer-copy {
  font-size: 0.72rem;
  color: var(--green-300);
  opacity: 0.4;
  text-align: right;
}

/* ============================================
   INNER PAGES (Privacy, Support)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-3);
}

.page-hero .label { margin-bottom: 1rem; display: block; }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--green-900);
  font-weight: 400;
  margin-bottom: 1rem;
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 540px;
}

.page-content {
  padding: 5rem 0 7rem;
}

.page-content-inner {
  max-width: 760px;
}

.page-content h2 {
  font-size: 1.6rem;
  color: var(--green-900);
  margin-top: 3rem;
  margin-bottom: 0.8rem;
}
.page-content h2:first-child { margin-top: 0; }

.page-content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.page-content ul li {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

.page-content a {
  color: var(--green-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-updated {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

/* Support page */
.faq-list { margin-top: 1rem; }

.faq-item {
  border-top: 1px solid var(--cream-3);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--cream-3); }

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-toggle {
  font-size: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--green-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }

.contact-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact-card h3 {
  font-size: 1.3rem;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.contact-card .btn-primary {
  font-size: 0.82rem;
  padding: 0.7rem 1.4rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 0 5rem; }
  .hero-title { font-size: clamp(3.5rem, 12vw, 6rem); }

  .preview-inner { grid-template-columns: 1fr; }
  .preview-phone-wrapper { display: none; }

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

  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }

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

  .hero-stats { gap: 1.5rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-copy { text-align: left; }

  .phone-badge, .phone-badge-2 { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .download-actions { flex-direction: column; }
}
