:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #A7C957;
  --cream: #FEFAE0;
  --cream-dark: #F5F0D0;
  --coral: #E76F51;
  --coral-dark: #C45A3E;
  --brown: #8B5E3C;
  --text-dark: #1a2e22;
  --text-mid: #3d5a47;
  --success: #40916C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== FIXED HEADER (announcement + nav) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 0.1px;
}
.announcement-bar a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.announcement-bar a:hover { opacity: 0.8; }
.announcement-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== NAV ===== */
nav {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(254, 250, 224, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--coral); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  transition: transform 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 155px 40px 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.13;
  pointer-events: none;
}
.hero-bg-blob.one   { width: 640px; height: 640px; background: var(--green-light); top: -120px; left: -220px; }
.hero-bg-blob.two   { width: 520px; height: 520px; background: var(--coral); bottom: -120px; right: -160px; }
.hero-bg-blob.three { width: 360px; height: 360px; background: var(--green-pale); top: 35%; right: 8%; }

.hero-content {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 67, 50, 0.08);
  color: var(--green-deep);
  border: 1px solid rgba(27, 67, 50, 0.15);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: 'Outfit', sans-serif;
  animation: fadeSlideUp 0.5s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--green-deep);
  margin-bottom: 22px;
  letter-spacing: -2.5px;
  animation: fadeSlideUp 0.5s ease 0.08s both;
}
.hero-title .accent { color: var(--coral); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 490px;
  margin-bottom: 38px;
  animation: fadeSlideUp 0.5s ease 0.16s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.5s ease 0.24s both;
}

/* Apple App Store badge */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--text-dark);
  color: white;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26, 46, 34, 0.25);
}
.appstore-badge:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 8px 28px rgba(26, 46, 34, 0.3);
}
.appstore-badge-text span {
  display: block;
  font-size: 0.62rem;
  opacity: 0.7;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-bottom: 2px;
}
.appstore-badge-text strong {
  display: block;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1;
}

.btn-secondary {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-secondary:hover { gap: 10px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
  animation: fadeSlideUp 0.5s ease 0.32s both;
}
.trust-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.95rem; }
.trust-sep { opacity: 0.3; }

/* ===== MASCOT ===== */
.hero-mascot {
  flex: 0 0 520px;
  animation: mascotBounce 3.5s ease-in-out infinite, fadeSlideUp 0.7s ease 0.2s both;
}
.hero-mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(27, 67, 50, 0.18));
  display: block;
}
@keyframes mascotBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-14px) rotate(-1deg); }
  55% { transform: translateY(-14px) rotate(1deg); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 40px;
  background: var(--cream-dark);
  border-top: 1px solid rgba(27, 67, 50, 0.07);
  border-bottom: 1px solid rgba(27, 67, 50, 0.07);
}
.trust-chip {
  padding: 7px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.trust-vsep {
  width: 1px;
  height: 18px;
  background: rgba(27, 67, 50, 0.18);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  background: var(--green-deep);
  position: relative;
}
.features-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
}
.features-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  transform: scaleY(-1);
}

.section-label {
  text-align: center;
  color: var(--green-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-title .accent { color: var(--coral); }
.section-sub {
  text-align: center;
  color: rgba(254, 250, 224, 0.55);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 26px;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(82, 183, 136, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-card h3 {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.3;
}
.feature-card p {
  color: rgba(254, 250, 224, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}
.pro-badge {
  background: var(--coral);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 6px;
  font-family: 'Outfit', sans-serif;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 110px 40px;
  background: var(--cream);
}
.how-label {
  text-align: center;
  color: var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.how-title {
  text-align: center;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.how-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 72px;
  line-height: 1.6;
}

.steps {
  display: flex;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--coral));
  border-radius: 2px;
}
.step { flex: 1; text-align: center; position: relative; }
.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.22);
}
.step h3 {
  color: var(--green-deep);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 40px;
  background: var(--cream-dark);
}
.pricing-label {
  text-align: center;
  color: var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pricing-title {
  text-align: center;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.pricing-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 420px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.pricing-card {
  flex: 1;
  max-width: 350px;
  background: white;
  border-radius: 24px;
  padding: 38px 30px;
  border: 1.5px solid rgba(27, 67, 50, 0.09);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}
.pricing-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.28);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 28px 72px rgba(27, 67, 50, 0.34);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  padding: 5px 18px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
}
.featured .plan-name { color: rgba(254, 250, 224, 0.55); }

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0;
}
.featured .plan-price { color: var(--cream); }
.featured .plan-price .period { color: rgba(254, 250, 224, 0.45); }

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  margin-top: 8px;
}
.featured .plan-desc { color: rgba(254, 250, 224, 0.45); }

.plan-divider {
  height: 1px;
  background: rgba(27, 67, 50, 0.08);
  margin-bottom: 24px;
}
.featured .plan-divider { background: rgba(254, 250, 224, 0.1); }

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}
.plan-features li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.featured .plan-features li { color: rgba(254, 250, 224, 0.82); }
.plan-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.featured .plan-features li::before { color: var(--green-light); }

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-btn:hover { transform: translateY(-2px); }
.plan-btn.outline {
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.plan-btn.outline:hover { box-shadow: 0 4px 16px rgba(27, 67, 50, 0.15); }
.plan-btn.filled {
  background: var(--coral);
  color: white;
  border: none;
  box-shadow: 0 4px 18px rgba(231, 111, 81, 0.32);
}
.plan-btn.filled:hover { box-shadow: 0 8px 28px rgba(231, 111, 81, 0.45); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 110px 40px;
  background: var(--green-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--green-light);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.07;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  bottom: -150px;
  right: 10%;
  pointer-events: none;
}

.cta-avo {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
  animation: ctaBounce 3s ease-in-out infinite;
}
@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.cta-sub {
  color: rgba(254, 250, 224, 0.55);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: white;
  color: var(--text-dark);
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.cta-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
}
.cta-badge-text span {
  display: block;
  font-size: 0.62rem;
  opacity: 0.55;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-bottom: 2px;
}
.cta-badge-text strong {
  display: block;
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1;
}
.cta-note {
  color: rgba(254, 250, 224, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

/* ===== LEGAL ===== */
.legal-links {
  text-align: center;
  padding: 22px 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.legal-links a {
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.legal-links a:hover { color: var(--coral); }
.legal-links span { color: var(--text-mid); opacity: 0.3; }

/* ===== FOOTER ===== */
footer {
  padding: 40px;
  background: #0d1e14;
  text-align: center;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--coral); }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(254, 250, 224, 0.35);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(254, 250, 224, 0.75); }

.footer-tagline {
  color: rgba(254, 250, 224, 0.2);
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.footer-copy {
  color: rgba(254, 250, 224, 0.18);
  font-size: 0.77rem;
}

/* ===== HERO TYPED TEXT ===== */
.hero-typed {
  display: inline-block;
  min-width: 2px;
  border-right: 3px solid var(--coral);
  padding-right: 4px;
  animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
  0%, 100% { border-color: var(--coral); }
  50%       { border-color: transparent; }
}

/* ===== MEET OUR USERS ===== */
.users-section {
  padding: 110px 40px;
  background: var(--cream);
}
.users-label {
  text-align: center;
  color: var(--coral);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.users-title {
  text-align: center;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.users-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.6;
}
.users-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.user-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid rgba(27, 67, 50, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}
.user-avatar {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.user-info {
  margin-bottom: 14px;
}
.user-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.3px;
}
.user-kcal {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 2px;
}
.user-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.user-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}
.user-tag.goal    { background: rgba(27, 67, 50, 0.07); color: var(--green-deep); }
.user-tag.likes   { background: rgba(82, 183, 136, 0.12); color: var(--green-mid); }
.user-tag.dislikes { background: rgba(231, 111, 81, 0.1); color: var(--coral-dark); }
.user-tag.prep    { background: rgba(167, 201, 87, 0.15); color: #5a6e1c; }
.user-quote {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--green-light);
  padding-left: 12px;
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 110px 40px;
  background: var(--cream-dark);
}
.faq-label {
  text-align: center;
  color: var(--green-mid);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-title {
  text-align: center;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(27, 67, 50, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--coral); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--coral); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-a p strong { color: var(--green-deep); }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-content { flex-direction: column-reverse; text-align: center; gap: 36px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mascot { flex: 0 0 340px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 0 auto; }
  .steps { flex-direction: column; gap: 28px; }
  .steps::before { display: none; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  nav { padding: 12px 20px; }
  .nav-links { gap: 16px; }
  .trust-bar { gap: 4px; }
  .users-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .announcement-bar { display: none; }
  .hero { padding: 110px 20px 64px; }
  .features, .how-it-works, .pricing, .cta-section { padding: 72px 20px; }
  .users-section, .faq-section { padding: 72px 20px; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; }
  .users-grid { grid-template-columns: 1fr; max-width: 420px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-links .hide-mobile { display: none; }
  .trust-bar { padding: 14px 16px; }
  .trust-vsep { display: none; }
  .trust-chip { padding: 5px 12px; font-size: 0.82rem; }
}
