/* ============================================
   GLP-1 Wellness Hub — Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: #fff;
}

/* Custom Properties */
:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #99f6e4;
  --primary-xlight: #f0fdfa;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --text-dark: #1e293b;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 24px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(1.9rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul { padding-left: 1.25rem; }
li { color: var(--text-mid); margin-bottom: .35rem; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-light); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; transition: all .2s ease; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: var(--primary-xlight); color: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.logo-name { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.logo-name span { color: var(--primary); }
.logo-tagline { font-size: .62rem; font-weight: 500; color: var(--text-light); letter-spacing: .05em; display: block; margin-top: .1rem; }

/* Nav */
.nav-list { display: flex; align-items: center; gap: .15rem; list-style: none; padding: 0; margin: 0; }
.nav-list a { padding: .45rem .9rem; border-radius: var(--radius-sm); font-weight: 500; font-size: .9rem; color: var(--text-mid); transition: all .15s; display: block; }
.nav-list a:hover, .nav-list a.active { background: var(--primary-xlight); color: var(--primary); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .75em; }
.dropdown {
  display: none; position: absolute; top: calc(100% + .5rem);
  left: 50%; transform: translateX(-50%); background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1rem; min-width: 700px; z-index: 300;
  grid-template-columns: repeat(3, 1fr); gap: .25rem;
}
.has-dropdown:hover .dropdown { display: grid; }
.dropdown a { display: flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: var(--radius-sm); font-size: .875rem; color: var(--text-mid); white-space: nowrap; }
.dropdown a:hover { background: var(--primary-xlight); color: var(--primary); }

/* Breadcrumb */
.breadcrumb { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: .65rem 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: .5rem; font-size: .825rem; color: var(--text-light); }
.breadcrumb-inner a { color: var(--text-mid); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { color: var(--border); user-select: none; }

/* Homepage Hero */
.hero-home {
  background: linear-gradient(135deg, #0c4a6e 0%, var(--primary-dark) 45%, var(--primary) 100%);
  color: #fff; padding: 6rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 55%; height: 160%;
  background: rgba(255,255,255,.03); border-radius: 50%; pointer-events: none;
}
.hero-home h1 { color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 2rem; }
.hero-pills { display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-pill {
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  padding: .3rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
}
.hero-btns { display: flex; justify-content: center; gap: .85rem; flex-wrap: wrap; }

/* Category Page Hero */
.hero-cat {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0891b2 100%);
  color: #fff; padding: 3.5rem 0 3rem;
}
.hero-cat .cat-icon { font-size: 2.75rem; display: block; margin-bottom: .75rem; }
.hero-cat h1 { color: #fff; margin-bottom: .85rem; }
.hero-cat .hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 780px; line-height: 1.75; margin: 0; }
.hero-meta { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.78); font-size: .875rem; }

/* Stats bar */
.stats-bar { background: var(--primary-dark); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .2rem; }

/* Section headers */
.section-hdr { text-align: center; margin-bottom: 3rem; }
.section-hdr h2 { margin-bottom: .6rem; }
.section-hdr p { font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)); gap: 1.4rem; }
.cat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.65rem; display: flex; flex-direction: column; text-decoration: none;
  transition: all .2s ease; position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), #0891b2); opacity: 0; transition: opacity .2s;
}
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }
.cat-card:hover::after { opacity: 1; }
.cat-card .c-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.cat-card .c-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; }
.cat-card .c-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.cat-card .c-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.c-tag { background: var(--primary-xlight); color: var(--primary-dark); border-radius: 100px; padding: .18rem .6rem; font-size: .72rem; font-weight: 500; }
.cat-card .c-arrow { margin-top: 1rem; color: var(--primary); font-size: .85rem; font-weight: 600; }

/* Content sections (category pages) */
.sub-section { padding: 3.5rem 0; }
.sub-section:nth-child(even) { background: var(--bg-light); }

.sub-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 2px solid var(--primary-light); }
.sub-icon { font-size: 2.25rem; flex-shrink: 0; line-height: 1; }
.sub-header h2 { margin-bottom: .35rem; }
.sub-header p { margin: 0; font-size: .97rem; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.15rem; margin-top: 1.25rem; }
.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem; transition: all .2s;
}
.sub-section:nth-child(even) .svc-card { background: #fff; }
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-2px); }
.svc-card h4 { color: var(--primary-dark); margin-bottom: .4rem; font-size: 1rem; }
.svc-card p { font-size: .875rem; margin: 0; line-height: 1.65; }
.svc-tag { display: inline-block; margin-top: .65rem; font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; }

/* Info & warning boxes */
.info-box {
  background: var(--primary-xlight); border: 1px solid var(--primary-light);
  border-left: 4px solid var(--primary); border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem; margin: 1.75rem 0;
}
.info-box h4 { color: var(--primary-dark); margin-bottom: .35rem; font-size: .97rem; }
.info-box p { margin: 0; font-size: .9rem; }

.warn-box {
  background: #fff7ed; border: 1px solid #fed7aa;
  border-left: 4px solid var(--accent); border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem; margin: 1.75rem 0;
}
.warn-box h4 { color: var(--accent-dark); margin-bottom: .35rem; font-size: .97rem; }
.warn-box p { margin: 0; font-size: .9rem; }

/* Related section */
.related-section { padding: 3.5rem 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .9rem; margin-top: 1.4rem; }
.rel-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.15rem; text-decoration: none; display: flex;
  align-items: center; gap: .7rem; transition: all .2s;
}
.rel-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-2px); }
.rel-card .r-icon { font-size: 1.4rem; flex-shrink: 0; }
.rel-card .r-name { font-size: .875rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* Geo callout */
.geo-strip {
  background: linear-gradient(90deg, var(--primary-xlight), #eff6ff);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 2rem 0;
  border: 1px solid var(--primary-light);
}
.geo-strip h4 { color: var(--primary-dark); margin-bottom: .4rem; font-size: .97rem; }
.geo-strip p { margin: 0; font-size: .875rem; }

/* Footer */
.site-footer { background: #0f172a; color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-disclaimer {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 2.5rem; font-size: .78rem;
  line-height: 1.65; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.08);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: .75rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .15s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ============================================
   Sub-page enhancements: images, video, stats
   ============================================ */

/* Page images */
.page-image {
  border-radius: var(--radius); overflow: hidden;
  margin: 2rem 0; box-shadow: var(--shadow-md);
}
.page-image img {
  width: 100%; height: 340px; object-fit: cover; display: block;
}
.page-image figcaption {
  background: var(--bg-light); padding: .55rem 1rem; font-size: .8rem;
  color: var(--text-light); border-top: 1px solid var(--border);
}

/* Image + text side-by-side */
.img-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center; margin: 2rem 0;
}
.img-split img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.img-split-text h3 { margin-bottom: .6rem; color: var(--primary-dark); }
.img-split-text p { font-size: .92rem; }

/* YouTube embed */
.video-embed { margin: 2.5rem 0; }
.video-embed h3 {
  margin-bottom: .9rem; font-size: 1.1rem; color: var(--text-dark);
  display: flex; align-items: center; gap: .5rem;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* Key stats */
.key-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0;
}
.key-stat {
  background: var(--primary-xlight); border: 1px solid var(--primary-light);
  border-radius: var(--radius); padding: 1.35rem; text-align: center;
}
.key-stat .stat-number {
  font-size: 2rem; font-weight: 800; color: var(--primary-dark);
  display: block; line-height: 1; margin-bottom: .35rem;
}
.key-stat .stat-label { font-size: .82rem; color: var(--text-mid); line-height: 1.4; }

/* Sub-page pill nav (sibling pages) */
.sibling-nav {
  background: var(--bg-light); border-bottom: 1px solid var(--border); padding: .8rem 0;
}
.sibling-nav-inner {
  display: flex; gap: .45rem; flex-wrap: wrap; align-items: center;
}
.sibling-nav-label { font-size: .78rem; color: var(--text-light); margin-right: .3rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.sibling-nav-inner a {
  padding: .35rem .85rem; border-radius: 100px; font-size: .82rem; font-weight: 500;
  color: var(--text-mid); border: 1px solid var(--border); background: #fff; transition: all .15s;
}
.sibling-nav-inner a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sibling-nav-inner a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   Blog Styles */

/* Blog listing page */
.blog-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, #134e4a 100%); color: #fff; padding: 4rem 0 3rem; text-align: center; }
.blog-hero h1 { color: #fff; margin-bottom: .75rem; }
.blog-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; flex-wrap: wrap; }
.blog-card-date { font-size: .75rem; color: var(--text-light); }
.blog-card-tag { font-size: .72rem; font-weight: 600; background: var(--primary-xlight); color: var(--primary-dark); padding: .2rem .6rem; border-radius: 100px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.3; }
.blog-card-excerpt { font-size: .88rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 1rem; flex: 1; }
.blog-card-link { font-size: .85rem; font-weight: 600; color: var(--primary); }
.blog-card-link:hover { color: var(--primary-dark); }

/* Blog article page */
.blog-post-hero { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 2.5rem 0 0; }
.blog-post-meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-post-tag { font-size: .75rem; font-weight: 700; background: var(--primary); color: #fff; padding: .25rem .75rem; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }
.blog-post-date { font-size: .82rem; color: var(--text-light); }
.blog-post-title { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: .75rem; }
.blog-post-subtitle { font-size: 1.1rem; color: var(--text-mid); line-height: 1.6; max-width: 780px; margin-bottom: 1.5rem; }
.blog-post-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* Article body */
.blog-article { max-width: 780px; margin: 0 auto; padding: 2.5rem 1.5rem 3rem; }
.blog-section { margin-bottom: 2.5rem; }
.blog-section-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); background: var(--primary-xlight); border: 1px solid var(--primary-light); padding: .3rem .85rem; border-radius: 100px; margin-bottom: .9rem; }
.blog-section h2 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: .85rem; }
.blog-section p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: .85rem; }
.blog-section ul { margin: .75rem 0 .75rem 1.25rem; }
.blog-section li { font-size: .96rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .5rem; }

/* Top story card */
.blog-story { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.4rem; margin-bottom: 1rem; background: #fff; box-shadow: var(--shadow-sm); }
.blog-story-headline { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.3; }
.blog-story-body { font-size: .93rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .5rem; }
.blog-story-why { font-size: .85rem; font-weight: 600; color: var(--primary-dark); background: var(--primary-xlight); padding: .4rem .75rem; border-radius: var(--radius-sm); margin-bottom: .5rem; display: block; }
.blog-story-source { font-size: .78rem; color: var(--text-light); }
.blog-story-source a { color: var(--primary); font-weight: 500; }

/* Deep dive */
.blog-deep-dive { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 2rem; }
.blog-deep-dive h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: .75rem; }
.blog-pull-quote { border-left: 4px solid var(--primary); padding: .75rem 1.25rem; background: var(--primary-xlight); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.25rem 0; }
.blog-pull-quote p { font-size: 1.05rem; font-style: italic; color: var(--primary-dark); font-weight: 500; margin: 0; line-height: 1.6; }

/* Quick hits */
.blog-quick-hits { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.blog-quick-hits li { font-size: .93rem; padding: .45rem 0; border-bottom: 1px solid var(--border); }
.blog-quick-hits li:last-child { border-bottom: none; margin-bottom: 0; }

/* By the numbers */
.blog-stat { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border-radius: var(--radius); padding: 2rem 1.75rem; text-align: center; margin: 2rem 0; }
.blog-stat-number { font-size: 3.5rem; font-weight: 900; display: block; line-height: 1; margin-bottom: .4rem; }
.blog-stat-label { font-size: 1rem; opacity: .9; line-height: 1.5; }
.blog-stat-context { font-size: .88rem; opacity: .75; margin-top: .5rem; }

/* Ask community */
.blog-community { background: var(--accent); border-radius: var(--radius); padding: 1.5rem 1.75rem; color: #fff; }
.blog-community h3 { color: #fff; margin-bottom: .5rem; font-size: 1.1rem; }
.blog-community p { color: rgba(255,255,255,.9); margin: 0; font-size: .97rem; line-height: 1.6; }

/* Tomorrow preview */
.blog-preview { border: 2px dashed var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.blog-preview h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: .4rem; }
.blog-preview p { margin: 0; font-size: .93rem; }

/* Divider */
.blog-divider { border: none; border-top: 2px solid var(--border); margin: 2rem 0; }

/* ============================================
   Cookie / GDPR Banner */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1e293b;
  color: #e2e8f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  font-size: .88rem;
  line-height: 1.5;
}
#cookie-banner p { margin: 0; flex: 1 1 300px; }
#cookie-banner a { color: var(--primary-light); text-decoration: underline; }
#cookie-banner .cookie-btns { display: flex; gap: .65rem; flex-shrink: 0; flex-wrap: wrap; }
#cookie-banner button {
  padding: .5rem 1.25rem;
  border-radius: 100px;
  border: none;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
}
#cookie-banner button:hover { opacity: .85; }
#cookie-accept { background: var(--primary); color: #fff; }
#cookie-decline { background: transparent; color: #94a3b8; border: 1px solid #475569 !important; }

/* ============================================
   Responsive */
@media (max-width: 1024px) {
  .dropdown { min-width: 500px; grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-list, .hdr-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .img-split { grid-template-columns: 1fr; }
  .key-stats { grid-template-columns: 1fr; }
  .page-image img { height: 220px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .related-grid { grid-template-columns: 1fr; }
}
