/* ============================================================
   SHAMASHBERY SUSTAINABLE SOLUTIONS & SERVICES LLP
   Premium Design System — style.css
   ============================================================ */

/* ── Google Fonts Loaded Via PHP Header ─────────────────── */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  --deep:       #042B1E;
  --forest:     #0A4D35;
  --mid:        #0E6644;
  --bright:     #17A96B;
  --teal:       #3DBFA3;
  --mint:       #EAF7F0;
  --gold:       #C8971F;
  --gold-light: #E8B84B;
  --gold-pale:  #FDF5E0;
  --warm:       #FAFDF8;
  --white:      #FFFFFF;
  --ink:        #060F0A;
  --body:       #2A3D32;
  --muted:      #5A7265;
  --border:     #D0DDD4;
  --line:       #E8EEEA;
  --shadow-sm:  0 2px 12px rgba(4,43,30,0.07);
  --shadow-md:  0 8px 32px rgba(4,43,30,0.12);
  --shadow-lg:  0 20px 60px rgba(4,43,30,0.18);
  --shadow-xl:  0 32px 80px rgba(4,43,30,0.22);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'Space Grotesk', monospace;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--deep);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1.1em; color: var(--body); }

ul { list-style: none; padding: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

::selection { background: var(--gold); color: var(--white); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── Custom Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--line); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Typography Utilities ───────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white-75 { color: rgba(255,255,255,0.75); }
.text-white-90 { color: rgba(255,255,255,0.9); }
.section-title { margin-bottom: 0.5em; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(200,151,31,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,31,0.45);
  color: var(--deep);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.btn-forest:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--deep);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-family: var(--ff-mono);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.78);
}
.topbar-item a { color: rgba(255,255,255,0.78); }
.topbar-item a:hover { color: var(--gold-light); }
.topbar-item i { color: var(--gold); font-size: 0.7rem; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0;
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep);
  display: block;
  letter-spacing: -0.01em;
}
.nav-logo-tag {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--body);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--forest); background: var(--mint); }
.nav-link i.caret { font-size: 0.6rem; transition: var(--transition); }
.nav-item:hover .caret { transform: rotate(180deg); }
/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 680px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  color: var(--body);
}
.dropdown-item:hover { background: var(--mint); color: var(--forest); }
.dropdown-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-item:hover .dropdown-item-icon {
  background: var(--forest);
  color: var(--white);
}
.dropdown-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 1px;
}
.dropdown-item-text span {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}
.dropdown-item:hover .dropdown-item-text strong { color: var(--forest); }
.dropdown-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Nav CTA */
.nav-cta { flex-shrink: 0; }
/* Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--deep);
  font-size: 1.4rem;
}
/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 16px 0 24px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-weight: 600;
  color: var(--body);
  border-radius: 0;
  font-size: 0.95rem;
}
.mobile-nav-link:hover { color: var(--forest); background: var(--mint); }
.mobile-nav-services { padding: 0 24px; display: none; }
.mobile-nav-services.open { display: block; }
.mobile-nav-sub {
  display: block;
  padding: 10px 16px;
  font-size: 0.86rem;
  color: var(--muted);
  border-left: 2px solid var(--border);
  margin: 2px 0;
}
.mobile-nav-sub:hover { color: var(--forest); border-color: var(--forest); }

@media (max-width: 991px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 50%, var(--mid) 100%);
  overflow: hidden;
  padding: 80px 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M30 0C13.4 0 0 13.4 0 30s13.4 30 30 30 30-13.4 30-30S46.6 0 30 0zm0 54c-13.2 0-24-10.8-24-24S16.8 6 30 6s24 10.8 24 24-10.8 24-24 24z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-leaves {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 700px;
  height: 700px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}
.hero-visual { position: relative; z-index: 2; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge i { color: var(--gold-light); }
/* Wave bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── Page Banner (inner pages) ──────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner h1 { color: var(--white); margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.72); max-width: 580px; margin-bottom: 16px; font-size: 1.05rem; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-size: 0.78rem; }
.breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: var(--gold-light); }
.page-banner-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
/* Wave after banner */
.banner-wave { line-height: 0; }
.banner-wave svg { display: block; width: 100%; }

/* ── Section Blocks ─────────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-warm    { background: var(--warm); }
.bg-mint    { background: var(--mint); }
.bg-deep    { background: var(--deep); }
.bg-forest  { background: var(--forest); }
.text-center { text-align: center; }
.mb-section { margin-bottom: 56px; }
.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 12px auto 0; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--forest); color: var(--white); }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.93rem; color: var(--muted); margin-bottom: 16px; }
.card-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; }
/* Stat card */
.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: 0.06em; }
/* Feature card (numbered) */
.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  -webkit-text-stroke: 2px var(--forest);
  text-stroke: 2px var(--forest);
  color: transparent;
}
/* Benefit card */
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.1rem;
  flex-shrink: 0;
}
/* Waste category pill */
.waste-pill {
  border-radius: var(--r-xl);
  padding: 28px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.waste-pill.wet  { background: linear-gradient(135deg, #0A6B3C, #0E8F50); }
.waste-pill.dry  { background: linear-gradient(135deg, #1A4F8A, #2970C5); }
.waste-pill.san  { background: linear-gradient(135deg, #8B1A2E, #C42040); }
.waste-pill.haz  { background: linear-gradient(135deg, #7A5000, #B07200); }
.waste-pill h4   { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.waste-pill p    { color: rgba(255,255,255,0.82); font-size: 0.86rem; margin: 0; }
.waste-pill i    { font-size: 1.6rem; margin-bottom: 12px; color: rgba(255,255,255,0.7); display: block; }
/* Process step */
.process-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14,102,68,0.4);
}
/* Why-choose strip */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: var(--transition);
}
.trust-badge:hover { box-shadow: var(--shadow-sm); border-color: var(--forest); }
.trust-badge i {
  font-size: 1.4rem;
  color: var(--forest);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
/* CTA Banner */
.cta-band {
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 60%, var(--mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,151,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; }

/* ── Waste Category Grid (homepage) ─────────────────────── */
.waste-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .waste-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .waste-grid { grid-template-columns: 1fr 1fr; } }

/* ── 5R Framework ────────────────────────────────────────── */
.r-track {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.r-step {
  flex: 1;
  min-width: 160px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.r-step::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 0.7rem;
  z-index: 1;
}
.r-step:last-child::after { display: none; }
.r-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--forest);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.r-step:hover .r-circle { background: var(--forest); color: var(--white); border-color: var(--forest); box-shadow: var(--shadow-md); }
.r-letter { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 2px; }
.r-step h4 { font-size: 0.95rem; margin-bottom: 6px; }
.r-step p  { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ── Coverage chips ─────────────────────────────────────── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  color: var(--body);
  font-family: var(--ff-mono);
  transition: var(--transition);
}
.chip:hover { border-color: var(--forest); color: var(--forest); background: var(--mint); }
.chip i { color: var(--gold); font-size: 0.72rem; }

/* ── Service page specific ───────────────────────────────── */
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .service-intro-grid { grid-template-columns: 1fr; } }
.service-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.service-check-list li:last-child { border-bottom: none; }
.service-check-list i { color: var(--forest); margin-top: 2px; flex-shrink: 0; }
.service-visual-box {
  background: linear-gradient(135deg, var(--mint) 0%, rgba(61,191,163,0.1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
}
.service-big-icon {
  font-size: 5rem;
  color: var(--forest);
  margin-bottom: 20px;
  display: block;
  opacity: 0.85;
}
/* FAQ accordion */
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-bottom: 12px; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--deep);
}
.faq-question:hover { background: var(--warm); }
.faq-question.open { background: var(--mint); color: var(--forest); }
.faq-question i { transition: var(--transition); color: var(--gold); font-size: 0.8rem; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease; }
.faq-answer.open { max-height: 300px; padding: 16px 22px; }
.faq-answer p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--forest), var(--teal)); border-radius: 1px; }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -39px; top: 4px; width: 16px; height: 16px; background: var(--gold); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px var(--gold); }
.tl-item h4 { margin-bottom: 6px; font-size: 1rem; }
.tl-tag { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; display: block; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--ff-mono);
}
.filter-btn:hover, .filter-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.gallery-thumb svg, .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-thumb svg,
.gallery-item:hover .gallery-thumb img { transform: scale(1.04); }
.gallery-info { padding: 16px 18px; }
.gallery-tag { font-family: var(--ff-mono); font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.gallery-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.gallery-info p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 1rem; flex-shrink: 0; }
.ci-label { font-size: 0.74rem; font-family: var(--ff-mono); text-transform: uppercase; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 2px; }
.ci-value { font-size: 0.95rem; font-weight: 500; color: var(--deep); }
.ci-value a { color: var(--deep); }
.ci-value a:hover { color: var(--forest); }
/* Form */
.form-group { margin-bottom: 20px; }
.form-label { font-size: 0.84rem; font-weight: 600; color: var(--deep); margin-bottom: 8px; display: block; }
.form-control, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--deep);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus, .form-select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(14,102,68,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.78rem; color: #d32f2f; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-sm); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--deep); color: rgba(255,255,255,0.72); }
.footer-top { padding: 72px 0 48px; }
.footer-brand { margin-bottom: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo-name { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: var(--white); display: block; }
.footer-logo-tag { font-family: var(--ff-mono); font-size: 0.6rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.58); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.58); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a i { font-size: 0.6rem; opacity: 0.6; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.58); }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.58); }
.footer-contact-item a:hover { color: var(--gold-light); }
.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;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.38); }
.footer-legal a:hover { color: var(--gold-light); }

/* ── Floating Buttons ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.12) translateY(-3px); color: var(--white); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.back-to-top {
  position: fixed; bottom: 92px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--deep); transform: translateY(-3px); }

/* ── Alert Messages ─────────────────────────────────────── */
.alert-success { background: #E6F9EE; border: 1px solid #34C97A; color: #0F5C3C; border-radius: var(--r-md); padding: 16px 20px; font-size: 0.93rem; }
.alert-error   { background: #FEE9E9; border: 1px solid #E74C3C; color: #7B0000; border-radius: var(--r-md); padding: 16px 20px; font-size: 0.93rem; }

/* ── 404 page ────────────────────────────────────────────── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-code { font-family: var(--ff-head); font-size: 8rem; font-weight: 700; line-height: 1; color: var(--mint); -webkit-text-stroke: 3px var(--forest); text-stroke: 3px var(--forest); color: transparent; }

/* ── About ───────────────────────────────────────────────── */
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-4px); }
.value-icon { font-size: 2rem; color: var(--forest); margin-bottom: 14px; display: block; }

/* ── Responsive grid helpers ─────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: center; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: center; }
@media (max-width: 991px) {
  .grid-2, .grid-3, .grid-4, .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; gap: 24px; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.flip-mobile { }
@media (max-width: 991px) { .flip-mobile { order: -1; } }

/* ── AOS custom ──────────────────────────────────────────── */
[data-aos] { pointer-events: auto !important; }

/* ================================================================
   MOBILE-FIRST RESPONSIVE OVERHAUL
   Full Safari / iOS / older iPhone compatibility
   ================================================================ */

/* ── iOS Safari fixes ─────────────────────────────── */
* { -webkit-box-sizing: border-box; box-sizing: border-box; }
body { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
input, select, textarea, button {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  border-radius: 0;
}
input[type="email"],
input[type="tel"],
input[type="text"] { border-radius: var(--r-sm); }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { -webkit-backface-visibility: hidden; backface-visibility: hidden; }
/* Fix Safari flexbox gap */
.hero-stats        { gap: 24px; }
.hero-actions      { gap: 12px; }
.hero-badge-row    { gap: 8px; }
/* Fix Safari sticky positioning */
.site-header { position: -webkit-sticky; position: sticky; }
/* Disable AOS on very small screens for performance */
@media (max-width: 480px) {
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* Fix iOS input zoom (keeps font-size ≥ 16px) */
input, select, textarea { font-size: 16px !important; }

/* ── Topbar mobile ────────────────────────────────── */
@media (max-width: 640px) {
  .topbar { display: none; }  /* hide on tiny screens – space saver */
}

/* ── Navbar mobile ────────────────────────────────── */
.navbar-inner {
  height: 64px;
  padding: 0 16px;
}
@media (max-width: 480px) {
  .nav-logo img  { height: 38px; }
  .nav-logo-name { font-size: .88rem; }
  .nav-logo-tag  { font-size: .54rem; }
}
.mobile-nav { max-height: 85vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* ── Hero responsive ──────────────────────────────── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.6rem); }
  .hero-lead { font-size: .95rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: .9rem; }
  .hero-stats { gap: 16px; padding-top: 28px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.7rem; }
  .hero-card { padding: 20px 16px; margin-top: 24px; }
  .hero-badge-row { gap: 6px; }
  .hero-badge { font-size: .65rem; padding: 4px 9px; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 1.65rem; line-height: 1.2; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: .65rem; }
  .hero-card { display: none; } /* hide card on tiny phones to save space */
}

/* ── Section padding mobile ───────────────────────── */
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 36px; }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  h3 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  section { padding: 40px 0; }
  .container { padding: 0 12px; }
}

/* ── Cards mobile ─────────────────────────────────── */
@media (max-width: 575px) {
  .card { padding: 22px 18px; }
  .card-icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 14px; }
  .card h3 { font-size: 1rem; }
  .card p  { font-size: .86rem; }
}

/* ── Waste grid mobile ────────────────────────────── */
@media (max-width: 575px) {
  .waste-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .waste-pill  { padding: 18px 14px; }
  .waste-pill h4 { font-size: .88rem; }
  .waste-pill p  { font-size: .75rem; }
}

/* ── 5R framework mobile ──────────────────────────── */
@media (max-width: 768px) {
  .r-track { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; overflow: visible; }
  .r-step::after { display: none; }
  .r-step { padding: 20px 14px; }
  .r-circle { width: 64px; height: 64px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .r-track { grid-template-columns: 1fr; }
  .r-step  { display: flex; gap: 16px; text-align: left; align-items: center; }
  .r-circle { flex-shrink: 0; width: 56px; height: 56px; margin: 0; }
}

/* ── Process steps mobile ─────────────────────────── */
@media (max-width: 767px) {
  .process-step { padding: 18px; }
  .step-circle  { width: 42px; height: 42px; font-size: 1rem; }
}

/* ── Gallery mobile ───────────────────────────────── */
@media (max-width: 575px) {
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 6px 12px; font-size: .72rem; }
  .gallery-info { padding: 12px 14px; }
  .gallery-info h4 { font-size: .88rem; }
  .gallery-info p  { font-size: .78rem; }
}

/* ── Contact form mobile ──────────────────────────── */
@media (max-width: 767px) {
  .form-card { padding: 24px 18px; }
  .contact-info-card { padding: 22px 18px; }
  .ci-item { gap: 10px; }
  .ci-icon { width: 38px; height: 38px; font-size: .88rem; }
}
@media (max-width: 480px) {
  .form-card { padding: 18px 14px; }
}

/* ── Footer mobile ────────────────────────────────── */
@media (max-width: 767px) {
  .footer-top { padding: 48px 0 32px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal  { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-top { padding: 36px 0 24px; }
  .footer-heading { margin-bottom: 12px; }
  .footer-links li { margin-bottom: 8px; }
}

/* ── CTA band mobile ──────────────────────────────── */
@media (max-width: 767px) {
  .cta-band { padding: 52px 0; }
  .cta-band h2 { font-size: 1.6rem; }
}
@media (max-width: 575px) {
  .cta-band    { padding: 40px 0; }
  .cta-band h2 { font-size: 1.35rem; }
  .cta-band .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
}

/* ── Dropdown – disable on mobile (menu handles it) ── */
@media (max-width: 991px) {
  .dropdown-menu { display: none !important; }
}

/* ── Page banner mobile ───────────────────────────── */
@media (max-width: 767px) {
  .page-banner { padding: 52px 0 40px; }
  .page-banner h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .page-banner p  { font-size: .92rem; }
  .page-banner-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 14px; }
}

/* ── Waste journey (homepage grid) mobile ─────────── */
@media (max-width: 767px) {
  .journey-step-wrap { flex-direction: column !important; align-items: center; }
  .journey-arrow     { transform: rotate(90deg); }
}

/* ── Chip grid mobile ─────────────────────────────── */
@media (max-width: 480px) {
  .chip-grid { gap: 6px; }
  .chip { padding: 6px 10px; font-size: .72rem; }
}

/* ── Benefit / trust cards mobile ────────────────── */
@media (max-width: 480px) {
  .benefit-card { padding: 18px 14px; gap: 12px; }
  .benefit-icon { width: 40px; height: 40px; font-size: .9rem; }
  .trust-badge  { padding: 14px 16px; gap: 10px; }
}

/* ── Service intro grid mobile ────────────────────── */
@media (max-width: 991px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-visual-box { padding: 28px 20px; }
  .service-big-icon   { font-size: 3.5rem; }
}

/* ── Timeline mobile ──────────────────────────────── */
@media (max-width: 575px) {
  .timeline { padding-left: 22px; }
  .tl-dot   { left: -29px; width: 14px; height: 14px; }
  .tl-item  { padding-bottom: 26px; }
}

/* ── WtE technology grid mobile ───────────────────── */
@media (max-width: 767px) {
  .wte-grid { grid-template-columns: 1fr !important; }
}

/* ── Hero wave fix for Safari ─────────────────────── */
.hero-wave svg, .banner-wave svg {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ── Back-to-top & WhatsApp float mobile ──────────── */
@media (max-width: 480px) {
  .wa-float      { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }
  .back-to-top   { bottom: 74px; right: 16px; width: 38px; height: 38px; }
}

/* ── Stat cards mobile ────────────────────────────── */
@media (max-width: 575px) {
  .stat-card { padding: 22px 16px; }
  .stat-num  { font-size: 2rem; }
}

/* ── Fix rows/cols on mobile (Bootstrap override) ──── */
@media (max-width: 575px) {
  .row { --bs-gutter-x: 14px; --bs-gutter-y: 14px; }
}

/* ── Smooth scroll (Safari) ───────────────────────── */
html { scroll-behavior: smooth; -webkit-scroll-behavior: smooth; }

/* ── Fix overflow on mobile ───────────────────────── */
.site-header, section, footer, .page-banner {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Photo gallery items ──────────────────────────── */
.gallery-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-photo { transform: scale(1.04); }

/* ── WtE tech card ────────────────────────────────── */
.wte-tech-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.wte-tech-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-4px); }
.wte-tech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--forest), var(--teal));
}
.wte-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--forest);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wte-output-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  margin: 2px;
  border: 1px solid rgba(200,151,31,.25);
}

/* ── Deliverables grid ────────────────────────────── */
.deliverable-card {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
  transition: var(--transition);
}
.deliverable-card:hover { box-shadow: var(--shadow-sm); border-color: var(--forest); background: var(--white); }
.deliverable-card i { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.deliverable-card strong { font-size: .85rem; display: block; margin-bottom: 3px; color: var(--deep); }
.deliverable-card span  { font-size: .75rem; color: var(--muted); }
