/* ============================================================
   Bowl Meal Planner - Main Stylesheet
   Colors: White + Soft Green + Blue
   Style: Planner / Structured / Card-based Grid
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --white: #ffffff;
  --off-white: #f8faf9;
  --light-gray: #f1f4f2;
  --border-gray: #e2e8e4;
  --text-dark: #1a2e25;
  --text-medium: #3d5248;
  --text-light: #6b8278;

  --green-50: #eef7f1;
  --green-100: #d4edda;
  --green-200: #a8d9b5;
  --green-300: #6cc083;
  --green-400: #4aaa62;
  --green-500: #2e8b4a;
  --green-600: #22703b;
  --green-700: #1a5a2f;

  --blue-50: #eef4fb;
  --blue-100: #d0e4f7;
  --blue-200: #9ec8ef;
  --blue-300: #5da5e0;
  --blue-400: #3589cc;
  --blue-500: #1a6db5;
  --blue-600: #145896;
  --blue-700: #0e4478;

  --accent-teal: #2ab8a0;
  --accent-teal-light: #e0f7f3;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.14);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-700);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p {
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

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

.section--bg {
  background-color: var(--off-white);
}

.section--green {
  background-color: var(--green-50);
}

.section--blue {
  background-color: var(--blue-50);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* --- Flex Utilities --- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* --- Text Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-green { color: var(--green-500); }
.text-blue { color: var(--blue-500); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }

/* --- Spacing Utilities --- */
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 40px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 40px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  height: var(--nav-height);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar__logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar__logo-text span {
  color: var(--green-500);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--green-600);
  background-color: var(--green-50);
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.navbar__dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.navbar__dropdown:hover .navbar__dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.navbar__dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-600);
}

.navbar__cta {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(46, 139, 74, 0.3);
  transition: all 0.2s ease !important;
}

.navbar__cta:hover {
  background: linear-gradient(135deg, var(--green-600), var(--green-700)) !important;
  box-shadow: 0 6px 18px rgba(46, 139, 74, 0.4) !important;
  transform: translateY(-1px);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 139, 74, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  box-shadow: 0 6px 20px rgba(46, 139, 74, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--secondary {
  background: var(--white);
  color: var(--green-600);
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  color: var(--green-700);
  transform: translateY(-1px);
}

.btn--blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 109, 181, 0.35);
}

.btn--blue:hover {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  box-shadow: 0 6px 20px rgba(26, 109, 181, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn--sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--green {
  background: var(--green-100);
  color: var(--green-700);
}

.badge--blue {
  background: var(--blue-100);
  color: var(--blue-700);
}

.badge--teal {
  background: var(--accent-teal-light);
  color: var(--accent-teal);
}

.badge--white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--light-gray);
}

.card__image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card__body {
  padding: 24px;
}

.card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.35;
}

.card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-gray);
  padding-top: 14px;
  margin-top: 14px;
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card--featured {
  border: 2px solid var(--green-200);
  background: linear-gradient(to bottom, var(--green-50), var(--white));
}

.card--blue {
  border-color: var(--blue-200);
  background: linear-gradient(to bottom, var(--blue-50), var(--white));
}

.card--horizontal {
  display: flex;
  flex-direction: row;
}

.card--horizontal .card__image {
  width: 200px;
  height: auto;
  flex-shrink: 0;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}

.hero--home {
  background: linear-gradient(135deg, #0e4478 0%, #1a6db5 40%, #2e8b4a 100%);
  color: var(--white);
}

.hero--green {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  color: var(--white);
}

.hero--light {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--blue-50) 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.05) 0%, transparent 35%);
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__content--center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero__eyebrow--dark {
  color: var(--green-600);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
}

.hero__title--dark {
  color: var(--text-dark);
}

.hero__title span {
  background: linear-gradient(90deg, #6cc083, #5da5e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__subtitle--dark {
  color: var(--text-medium);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions--center {
  justify-content: center;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__image-side {
  position: relative;
  z-index: 2;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-400);
}

.section-header__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-header__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   FEATURE BLOCKS
   ============================================================ */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-icon--green {
  background: var(--green-100);
  color: var(--green-600);
}

.feature-icon--blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.feature-icon--teal {
  background: var(--accent-teal-light);
  color: var(--accent-teal);
}

.feature-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
  transform: translateY(-3px);
}

.feature-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-item__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   PLAN CARDS
   ============================================================ */
.plan-card {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--blue-400));
  opacity: 0;
  transition: opacity 0.3s;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
  transform: translateY(-5px);
}

.plan-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.plan-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--border-gray);
  line-height: 1;
  font-family: var(--font-serif);
}

.plan-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-card__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.plan-card__list {
  list-style: none;
  margin-bottom: 24px;
}

.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.plan-card__list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   STEP / PROCESS SECTIONS
   ============================================================ */
.steps {
  position: relative;
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.step-item__number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 139, 74, 0.3);
}

.step-item__content {}
.step-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green-400);
  background: var(--green-50);
  margin: 24px 0;
}

.info-box--blue {
  border-left-color: var(--blue-400);
  background: var(--blue-50);
}

.info-box--teal {
  border-left-color: var(--accent-teal);
  background: var(--accent-teal-light);
}

.info-box__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 6px;
}

.info-box--blue .info-box__title { color: var(--blue-700); }

.info-box__text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TABLE OF CONTENTS / SIDEBAR
   ============================================================ */
.toc {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.toc__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 14px;
}

.toc__list {
  list-style: none;
}

.toc__list li {
  border-left: 2px solid var(--border-gray);
  transition: border-color 0.2s;
}

.toc__list li.active {
  border-left-color: var(--green-400);
}

.toc__list a {
  display: block;
  padding: 7px 14px;
  font-size: 0.875rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.2s;
}

.toc__list a:hover {
  color: var(--green-600);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-500);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--green-700);
}

.breadcrumb__sep {
  color: var(--border-gray);
}

/* ============================================================
   BLOG / ARTICLE
   ============================================================ */
.article-content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-100);
}

.article-content h3 {
  font-size: 1.25rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--green-700);
}

.article-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 4px solid var(--green-300);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--green-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-medium);
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--blue-600) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero--light {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--blue-50) 100%);
  color: var(--text-dark);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.05) 0%, transparent 35%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero__title--dark {
  color: var(--text-dark);
}

.page-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 28px;
}

.page-hero__subtitle--dark {
  color: var(--text-medium);
}

/* ============================================================
   RELATED LINKS / NAVIGATION CARDS
   ============================================================ */
.nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
  transform: translateX(4px);
}

.nav-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: var(--green-100);
}

.nav-card__text {}
.nav-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.nav-card__desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.nav-card__arrow {
  margin-left: auto;
  color: var(--green-400);
  font-size: 1.2rem;
}

/* ============================================================
   STATS / HIGHLIGHTS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--green-600), var(--blue-600));
  color: var(--white);
  padding: 36px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-bar__item {}
.stats-bar__value {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-bar__divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--blue-600) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer__contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer__contact p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--green-300);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--green-300);
}

/* ============================================================
   BOWL VISUAL ELEMENT
   ============================================================ */
.bowl-visual {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f5e9, #e3f2fd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 4px 20px rgba(255,255,255,0.5);
  position: relative;
}

.bowl-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dashed rgba(46,139,74,0.2);
}

.bowl-placeholder {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--green-100), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TAG CLOUD / FILTERS
   ============================================================ */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.2s;
}

.tag:hover,
.tag.active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border-gray);
  color: var(--text-medium);
}

.pagination a:hover {
  background: var(--green-50);
  border-color: var(--green-300);
  color: var(--green-600);
}

.pagination .active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  background: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mobile-menu__nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu__nav a:hover {
  background: var(--green-50);
  color: var(--green-600);
}

.mobile-menu__nav .mobile-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 14px 16px 6px;
}

.mobile-menu__cta {
  margin-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .hero--split { grid-template-columns: 1fr; }
  .hero__image-side { display: none; }
}

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

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }

  .card--horizontal { flex-direction: column; }
  .card--horizontal .card__image { width: 100%; height: 180px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero { padding: 60px 0 52px; }
  .hero__stats { gap: 20px; }

  .plan-card { padding: 24px; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 16px; }
  .btn--lg { padding: 14px 26px; font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .footer, .mobile-menu { display: none; }
  .hero { padding: 20px 0; }
  * { box-shadow: none !important; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Scroll reveal (JS-triggered) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }