/* =====================================================
   EXPRESS SANDWICH DELIVERY GUIDE — MAIN STYLESHEET
   Design: Dynamic / Fast-Paced | Black + Bright Green
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --green:        #39FF14;
  --green-dark:   #28cc0e;
  --green-dim:    rgba(57, 255, 20, 0.12);
  --green-glow:   rgba(57, 255, 20, 0.35);
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --black-card:   #161616;
  --black-border: #222222;
  --grey:         #888888;
  --grey-light:   #aaaaaa;
  --white:        #f5f5f5;
  --white-dim:    rgba(245,245,245,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 4px 24px rgba(0,0,0,0.55);
  --shadow-green: 0 0 18px rgba(57,255,20,0.25);
  --transition:   0.25s ease;
  --max-width:    1200px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--grey-light); }
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 700; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   STICKY NAVIGATION
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--black-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 30px rgba(57,255,20,0.15); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo .logo-text span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--grey-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-dim);
}
.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--black) !important;
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  border: none;
  background: transparent;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--black-border);
  background: var(--black-soft);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--grey-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--green); background: var(--green-dim); }

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--black-soft);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 80% 50%, rgba(57,255,20,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(57,255,20,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.3);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--green); display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-light);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--black-border);
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--black);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green-dim);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--white-dim);
  color: var(--white);
  border-color: var(--black-border);
}
.btn-ghost:hover {
  background: rgba(245,245,245,0.14);
  color: var(--white);
}
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================================================
   SECTIONS
   ===================================================== */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title { color: var(--white); margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-dark { background: var(--black); }
.section-soft { background: var(--black-soft); }
.section-border-top { border-top: 1px solid var(--black-border); }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), transparent);
  margin: 0;
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(57,255,20,0.35);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }
.card-icon {
  width: 52px; height: 52px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.35rem; }
.card h4 { color: var(--white); margin-bottom: 10px; }
.card p { color: var(--grey-light); font-size: 0.92rem; line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 18px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--green); }

/* Card Image */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-wrap img { transition: transform 0.45s ease; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-img-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* =====================================================
   GRID LAYOUTS
   ===================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 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-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* =====================================================
   FEATURE / ICON ROWS
   ===================================================== */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--black-border);
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.feature-text h4 { color: var(--white); margin-bottom: 6px; }
.feature-text p { margin: 0; font-size: 0.9rem; }

/* =====================================================
   NUMBERED STEPS
   ===================================================== */
.steps { counter-reset: step; }
.step-item {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  position: relative;
}
.step-item::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), transparent);
}
.step-item:last-child::before { display: none; }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  z-index: 1;
}
.step-content h4 { color: var(--white); margin-bottom: 6px; }
.step-content p { font-size: 0.92rem; margin: 0; }

/* =====================================================
   HIGHLIGHT BOX / CALLOUT
   ===================================================== */
.callout {
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.3);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
}
.callout p { color: var(--white); margin: 0; font-size: 0.95rem; }
.callout strong { color: var(--green); }

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--grey);
  padding: 18px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--black-border); }
.breadcrumb .current { color: var(--green); }

/* =====================================================
   SPEED METER / ACCENT WIDGET
   ===================================================== */
.speed-bar-wrap { margin: 12px 0; }
.speed-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-bottom: 6px;
}
.speed-bar-track {
  height: 8px;
  background: var(--black-border);
  border-radius: 4px;
  overflow: hidden;
}
.speed-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 4px;
  transition: width 1.2s ease;
}

/* =====================================================
   TAGS / CHIPS
   ===================================================== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
  background: var(--white-dim);
  border: 1px solid var(--black-border);
  padding: 5px 12px;
  border-radius: 20px;
}
.tag.green { color: var(--green); background: var(--green-dim); border-color: rgba(57,255,20,0.25); }

/* =====================================================
   TABLE
   ===================================================== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--black-border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--green-dim); }
th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--black-border);
}
td {
  padding: 13px 18px;
  color: var(--grey-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--black-border);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--white-dim); }
td strong { color: var(--white); }
.td-green { color: var(--green) !important; font-weight: 700; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-item {
  border-bottom: 1px solid var(--black-border);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 14px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.93rem; margin: 0; }

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card .card-body p { flex: 1; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta .dot { width: 4px; height: 4px; background: var(--grey); border-radius: 50%; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--black-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 { color: var(--white); font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail p { margin: 0; font-size: 0.9rem; }
.contact-detail a { color: var(--green); }

/* =====================================================
   BANNER / CTA SECTION
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0d1a0d 0%, #0a120a 100%);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(57,255,20,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--grey-light); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 60px 0 50px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(57,255,20,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--green); }
.page-hero p { font-size: 1.05rem; max-width: 620px; }

/* =====================================================
   SIDEBAR LAYOUT
   ===================================================== */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black-border);
}
.sidebar-link-list li + li { border-top: 1px solid var(--black-border); }
.sidebar-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--grey-light);
  transition: color var(--transition);
}
.sidebar-link-list a:hover { color: var(--green); }
.sidebar-link-list a span { color: var(--green); font-size: 0.8rem; }

/* =====================================================
   INLINE ARTICLE CONTENT
   ===================================================== */
.article-body h2 { font-size: 1.8rem; margin: 36px 0 14px; color: var(--white); }
.article-body h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--white); }
.article-body p { font-size: 0.97rem; line-height: 1.8; color: var(--grey-light); margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { color: var(--grey-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 6px; }
.article-body li::marker { color: var(--green); }
.article-body strong { color: var(--white); }
.article-body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 22px;
  max-width: 280px;
}
.footer-contact-mini { font-size: 0.83rem; }
.footer-contact-mini li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  margin-bottom: 8px;
}
.footer-contact-mini a { color: var(--grey-light); }
.footer-contact-mini a:hover { color: var(--green); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-legal a:hover { color: var(--green); }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.legal-content h1 { margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 3rem); }
.legal-content .last-updated {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--black-border);
}
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-content p, .legal-content li { font-size: 0.93rem; line-height: 1.8; color: var(--grey-light); }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }
.legal-content li::marker { color: var(--green); }
.legal-content strong { color: var(--white); }
.legal-content a { color: var(--green); }

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

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-green  { color: var(--green); }
.text-white  { color: var(--white); }
.text-grey   { color: var(--grey); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.fw-bold     { font-weight: 700; }
.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 48px; }
.mb-sm  { margin-bottom: 12px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 48px; }
.pt-0   { padding-top: 0 !important; }
.pb-0   { padding-bottom: 0 !important; }
.d-flex { display: flex; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* =====================================================
   RESPONSIVE — TABLET (max 992px)
   ===================================================== */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { padding: 44px 30px; }
}

/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
   ===================================================== */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 56px; }
  .hero-stats { gap: 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 36px 22px; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .step-item::before { left: 23px; }
  .page-hero { padding: 44px 0 36px; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ===================================================== */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 26px; }
  .stat-item .stat-num { font-size: 1.8rem; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.anim-fadeInUp  { animation: fadeInUp 0.65s ease both; }
.anim-fadeIn    { animation: fadeIn 0.5s ease both; }
.anim-delay-1   { animation-delay: 0.1s; }
.anim-delay-2   { animation-delay: 0.2s; }
.anim-delay-3   { animation-delay: 0.3s; }
.anim-delay-4   { animation-delay: 0.4s; }

/* =====================================================
   ACTIVE NAV HIGHLIGHT
   ===================================================== */
.nav-links a.active,
.nav-mobile a.active {
  color: var(--green);
  background: var(--green-dim);
}