/* ============================================================
   BOWL DELIVERY SELECTION GUIDE — Main Stylesheet
   Style: Clean Wellness | Colors: White + Green + Light Gray
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --green-dark:    #2d6a4f;
  --green-main:    #40916c;
  --green-mid:     #52b788;
  --green-light:   #95d5b2;
  --green-pale:    #d8f3dc;
  --green-tint:    #f0faf4;
  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-300:      #d1d5db;
  --gray-400:      #9ca3af;
  --gray-500:      #6b7280;
  --gray-600:      #4b5563;
  --gray-700:      #374151;
  --gray-800:      #1f2937;
  --gray-900:      #111827;

  --font-body:     'Inter', sans-serif;
  --font-heading:  'Playfair Display', serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.10);

  --transition:    0.25s ease;
  --max-width:     1180px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green-main); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* --- Grid Utilities --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- 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: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* --- Text Utilities --- */
.text-center { text-align: center; }
.text-green  { color: var(--green-main); }
.text-muted  { color: var(--gray-500); }
.text-sm     { font-size: 0.9rem; }
.text-xs     { font-size: 0.8rem; }
.text-lg     { font-size: 1.125rem; }
.text-xl     { font-size: 1.25rem; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}
.nav-logo-text span { color: var(--green-main); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle svg { width: 14px; height: 14px; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
}
.nav-dropdown-menu a:hover { background: var(--green-tint); color: var(--green-dark); }

.nav-cta {
  background: var(--green-main) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(64,145,108,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
}
.btn-outline:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.btn-ghost {
  background: var(--green-tint);
  color: var(--green-dark);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-pale) 50%, var(--white) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 32px; }
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge .icon { font-size: 1.6rem; }
.hero-image-badge .label { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }
.hero-image-badge .value { font-size: 1rem; font-weight: 700; color: var(--gray-900); }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-pale) 100%);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: var(--green-main); }
.page-hero-breadcrumb span { color: var(--gray-400); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 16px auto 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card h3, .card h4 { margin-bottom: 10px; }
.card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 16px; }

/* Feature Card */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Step Card */
.step-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* Ingredient / Info Card */
.info-card {
  background: var(--green-tint);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card h4 { color: var(--green-dark); margin-bottom: 12px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  color: var(--green-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
}
.section-header.centered p { margin: 0 auto; }

/* ============================================================
   TAGS / PILLS
   ============================================================ */
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.tag-outline {
  background: transparent;
  border: 1px solid var(--green-light);
  color: var(--green-main);
}
.tag-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 48px 0;
}
.divider-green {
  border-color: var(--green-light);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-main); }
.breadcrumb a:hover { color: var(--green-dark); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover { background: var(--green-pale); border-color: var(--green-pale); }
.cta-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: var(--green-tint);
  border-left: 4px solid var(--green-main);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p { color: var(--gray-700); margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-tint); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question { background: var(--green-tint); color: var(--green-dark); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 16px 24px 20px;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.83rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-meta .author { color: var(--green-main); font-weight: 500; }

.blog-content h2 { margin: 36px 0 14px; }
.blog-content h3 { margin: 28px 0 10px; }
.blog-content p  { margin-bottom: 20px; color: var(--gray-600); line-height: 1.8; }
.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
  color: var(--gray-600);
}
.blog-content li { margin-bottom: 8px; line-height: 1.75; }
.blog-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}
.sidebar-links li {
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}
.sidebar-links li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-links a { color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.sidebar-links a:hover { color: var(--green-main); }
.sidebar-links a::before { content: '→'; color: var(--green-main); font-size: 0.8rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-main);
  display: block;
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.comparison-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table tr:hover td { background: var(--green-tint); }

/* ============================================================
   DISCLAIMER / NOTICE
   ============================================================ */
.disclaimer-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 14px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.notice-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span { color: var(--green-light); }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item .icon { color: var(--green-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--gray-500);
  font-size: 0.8rem;
}
.footer-legal-links a:hover { color: var(--green-light); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { height: 280px; }
  .hero-cta-group { flex-direction: column; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    padding-left: 16px;
    display: block;
  }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.85rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Intersection observer utility */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-nav, .site-footer, .disclaimer-bar { display: none; }
  body { font-size: 12pt; }
}