/* ============================================================
   SANDWICH DELIVERY LIFESTYLE PLANNER — Main Stylesheet
   Colors: Soft Green (#6B9E6B, #A8C5A0), White (#FFFFFF), Beige (#F5F0E8, #EDE8DC)
   ============================================================ */

/* ---------- CSS RESET & ROOT VARIABLES ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark:    #4A7C59;
  --green-mid:     #6B9E6B;
  --green-light:   #A8C5A0;
  --green-pale:    #D6E8D0;
  --green-wash:    #EEF5EB;
  --beige-dark:    #C8B89A;
  --beige-mid:     #D9CCBA;
  --beige-light:   #EDE8DC;
  --beige-pale:    #F5F0E8;
  --white:         #FFFFFF;
  --text-dark:     #2C3A2E;
  --text-body:     #4A5548;
  --text-muted:    #7A8A78;
  --shadow-sm:     0 2px 8px rgba(74,124,89,0.10);
  --shadow-md:     0 4px 20px rgba(74,124,89,0.13);
  --shadow-lg:     0 8px 40px rgba(74,124,89,0.16);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --radius-xl:     40px;
  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
  --font-main:     'Nunito', 'Segoe UI', Arial, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
  --max-width:     1180px;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-mid); }

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

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-main); font-weight: 700; }
h5 { font-size: 1rem; font-family: var(--font-main); font-weight: 700; }

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(74,124,89,0.30);
}
.btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,124,89,0.36);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-secondary:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline-beige {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--beige-dark);
}
.btn-outline-beige:hover {
  background: var(--beige-light);
  color: var(--text-dark);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-light);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-logo span { color: var(--green-dark); }

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

.navbar-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

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

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--beige-light);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--beige-pale);
}

.mobile-menu a:hover { background: var(--green-pale); color: var(--green-dark); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--beige-pale) 0%, var(--green-wash) 60%, var(--green-pale) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  opacity: 0.7;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--beige-light) 0%, transparent 70%);
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before { content: '🥗'; font-size: 0.9rem; }

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}

.hero-title .highlight {
  color: var(--green-dark);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition);
}

.hero-card:hover { transform: translateY(-4px); }

.hero-card:nth-child(1) { margin-top: 24px; }
.hero-card:nth-child(3) { margin-top: 24px; }

.hero-card-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }

.section-alt { background: var(--beige-pale); }
.section-green { background: var(--green-wash); }
.section-dark { background: var(--text-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-label { background: rgba(255,255,255,0.15); color: var(--green-light); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ---------- CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 28px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--beige-light);
}

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

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

.card-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--green-wash), var(--beige-pale));
}

.card-body {
  padding: 24px;
}

.card-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; color: var(--text-muted); }

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- FEATURE BLOCKS ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-visual {
  background: linear-gradient(135deg, var(--green-wash), var(--beige-pale));
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-emoji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.feature-emoji-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature-emoji-card span { font-size: 2rem; display: block; margin-bottom: 6px; }
.feature-emoji-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; font-weight: 600; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h5 { margin-bottom: 4px; color: var(--text-dark); }
.feature-text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--green-dark);
  padding: 40px 0;
}

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

.stat-item { padding: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--green-light);
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- PROCESS STEPS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: steps;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-light);
  position: relative;
  transition: all var(--transition);
  counter-increment: steps;
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- TESTIMONIALS / QUOTES ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-light);
  position: relative;
}

.quote-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.quote-text { font-size: 0.97rem; color: var(--text-body); margin-bottom: 20px; padding-top: 24px; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: var(--green-pale);
  flex-shrink: 0;
}
.quote-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.quote-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: 0 24px;
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1.05rem; }

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

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--beige-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ---------- BLOG CARDS ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-light);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-light); }

.blog-card-header {
  padding: 36px 28px 24px;
  background: linear-gradient(135deg, var(--green-wash), var(--beige-pale));
  font-size: 3rem;
  text-align: center;
}

.blog-card-body { padding: 24px 28px; }
.blog-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.blog-date { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.blog-read { font-size: 0.8rem; color: var(--green-dark); font-weight: 700; background: var(--green-pale); padding: 2px 10px; border-radius: 50px; }
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 20px; }

/* ---------- CATEGORY PILLS / FILTER ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--beige-mid);
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ---------- ACCORDION / FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige-light);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.open { border-color: var(--green-light); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-dark);
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-dark); color: var(--white); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-dark); font-weight: 600; }
.breadcrumb span { color: var(--text-muted); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--beige-pale) 0%, var(--green-wash) 100%);
  padding: 60px 0 56px;
  border-bottom: 1px solid var(--beige-light);
}

.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.08rem; color: var(--text-muted); max-width: 620px; margin: 0; }

/* ---------- SIDEBAR LAYOUT ---------- */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--beige-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--beige-light); }

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

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green-mid); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- CONTACT INFO ---------- */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--text-dark); font-size: 0.97rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.83rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--green-light); }

/* ---------- NOTICE / DISCLAIMER BAR ---------- */
.notice-bar {
  background: var(--beige-pale);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice-bar::before { content: 'ℹ️'; flex-shrink: 0; }

/* ---------- TAG CLOUD ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--green-dark); color: var(--white); }

/* ---------- DIVIDERS ---------- */
.divider { width: 60px; height: 4px; background: var(--green-dark); border-radius: 4px; margin: 16px 0; }
.divider-center { margin: 16px auto; }

/* ---------- BANNER ---------- */
.info-banner {
  background: var(--green-pale);
  border-left: 5px solid var(--green-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.info-banner h4 { color: var(--green-dark); margin-bottom: 6px; }
.info-banner p { font-size: 0.92rem; color: var(--text-body); margin: 0; }

/* ---------- TABLE ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.styled-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.styled-table td { padding: 13px 18px; border-bottom: 1px solid var(--beige-light); }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: var(--green-wash); }

/* ---------- PROGRESS / TIMELINE ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--green-pale);
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  background: var(--green-dark);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light);
}
.timeline-label { font-size: 0.78rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ---------- PLANNING TIMELINE VISUAL ---------- */
.day-planner {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-light);
}
.day-planner-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.day-planner-header h4 { color: var(--white); font-size: 1rem; margin: 0; }
.day-planner-body { padding: 0; }
.planner-row {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--beige-pale);
  gap: 16px;
  transition: background var(--transition);
}
.planner-row:hover { background: var(--green-wash); }
.planner-row:last-child { border-bottom: none; }
.planner-time { font-size: 0.8rem; font-weight: 800; color: var(--green-dark); min-width: 70px; }
.planner-icon { font-size: 1.4rem; flex-shrink: 0; }
.planner-text h5 { font-size: 0.9rem; margin-bottom: 2px; }
.planner-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.planner-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--green-pale);
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 12px; color: var(--text-dark); }
.legal-content h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 8px; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.legal-date { background: var(--beige-pale); padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); display: inline-block; margin-bottom: 28px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
  .feature-block { gap: 48px; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 60px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse { direction: ltr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .cta-band { padding: 40px 24px; margin: 0 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card:nth-child(1),
  .hero-card:nth-child(3) { margin-top: 0; }
}

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