/* ============================================================
   CYBER3 CONSULTING — Green Theme Stylesheet
   Palette: Soft Dark Teal + Sage Green + Warm Cream
   Drop-in replacement for styles.css
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  /* Teal Darks (replaces charcoal) */
  --charcoal-dark:  #1e2e2c;
  --charcoal:       #243432;
  --charcoal-mid:   #2d403d;
  --charcoal-light: #3a5250;
  --slate:          #4e6a67;
  --muted:          #7a9490;
  --border:         #d6ddd9;
  --border-dark:    rgba(180,210,200,0.09);
  --paper:          #f5f7f5;
  --cream:          #edf0eb;
  --white:          #ffffff;

  /* Greens / Teals (replaces blues) */
  --blue:           #2e7a6a;
  --blue-light:     #3d9e8a;
  --blue-pale:      #e4efec;
  --blue-dark:      #1d5548;
  --steel:          #4a8a7a;

  /* Accent — Warm Cream/Sand (the pill color from screenshots) */
  --accent-cream:   #e8dcc8;
  --accent-cream-dark: #c9ba9e;
  --accent-cream-text: #5a4a2e;

  /* Text */
  --text-primary:   #1a2826;
  --text-secondary: #3d5450;
  --text-muted:     #5e7a75;
  --text-light:     rgba(245,247,245,0.96);
  --text-dim:       rgba(245,247,245,0.78);
  --text-faint:     rgba(245,247,245,0.50);

  /* Typography — unchanged */
  --serif:  'Lora', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Layout — unchanged */
  --max:    1080px;
  --max-md: 720px;
  --r:      4px;
  --r-lg:   8px;

  /* Spacing scale — unchanged */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4.5rem;
  --s7: 6rem;
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── UTILITY ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s4);
}
.container--narrow {
  max-width: var(--max-md);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: var(--s1);
}
.label--light { color: var(--blue-light); }
.label--muted { color: var(--muted); }

.section-header { margin-bottom: var(--s5); }
.section-header h2 { margin-bottom: var(--s2); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

/* Primary — warm cream pill (matches screenshots) */
.btn-primary {
  background: var(--accent-cream);
  color: var(--accent-cream-text);
  border: 1.5px solid var(--accent-cream-dark);
}
.btn-primary:hover {
  background: var(--accent-cream-dark);
  color: var(--accent-cream-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,170,120,0.25);
}

/* Outline — used on dark backgrounds */
.btn-outline {
  background: transparent;
  color: rgba(245,247,245,0.8);
  border: 1.5px solid rgba(245,247,245,0.25);
}
.btn-outline:hover {
  border-color: rgba(245,247,245,0.6);
  color: #f5f7f5;
}

/* Outline-dark — used on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: #fff;
}

/* Light — secondary on dark backgrounds */
.btn-light {
  background: transparent;
  color: rgba(245,247,245,0.75);
  border: 1.5px solid rgba(245,247,245,0.2);
}
.btn-light:hover {
  border-color: rgba(245,247,245,0.5);
  color: #f5f7f5;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.fade-up { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 46, 44, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s4);
}
.nav-logo {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-decoration: none;
}
.nav-logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links .nav-cta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1.5px solid var(--steel);
  color: var(--steel) !important;
  border-radius: var(--r);
  transition: all 0.2s !important;
}
.nav-links .nav-cta:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--charcoal-dark);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
/* Subtle organic grid texture 
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180,220,200,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,220,200,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
} */

/* Teal glow — warmer, more organic */
.hero::after {
  content: '';
  position: absolute;
  top: -160px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,122,106,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--s7);
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--blue);
  transform-origin: left;
  animation: lineGrow 0.8s ease 0.2s both;
}
.hero h1 {
  color: var(--text-light);
  margin-bottom: var(--s3);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.hero h1 em {
  font-style: italic;
  color: lightseagreen;
  -webkit-text-stroke: 0.1px var(--blue-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 4.5vw, 3.4rem);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--s4);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

/* Hero stats card — glassy teal */
.hero-card {
  background: #2d403d;
  border: 1px solid rgba(180,220,200,0.12);
  border-radius: var(--r-lg);
  padding: var(--s4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-card-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--s3);
}
.hero-metric {
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(180,220,200,0.1);
}
.hero-metric:last-child { border-bottom: none; padding-bottom: 0; }
.hero-metric:first-of-type { padding-top: 0; }
.hero-metric-val {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.hero-metric-val em { font-style: italic; color: var(--blue-light); }
.hero-metric-desc {
  font-size: 0.82rem;
  color: rgba(245,247,245,0.58);
  line-height: 1.5;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(180,220,200,0.07);
  padding: 16px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,247,245,0.60);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.trust-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: var(--s7) 0; }
section.alt { background: var(--cream); }
section.dark {
  background: var(--charcoal-dark);
  color: var(--text-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-right: 1.5px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: #f3f8f5; }

/* Featured card — soft dark teal, not full black */
.service-card.featured {
  background: #243432;
}
.service-card.featured:hover { background: #2d403d; }

.service-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--blue-light);
  margin-bottom: var(--s3);
}
.service-card.featured .service-num { color: var(--blue-light); }

.service-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.service-card.featured .service-name { color: var(--text-light); }

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--s3);
}
.service-card.featured .service-desc { color: var(--text-dim); }

.service-list { list-style: none; }
.service-list li {
  font-size: 0.875rem;
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-bottom: 1px solid var(--cream);
  color: var(--text-secondary);
  position: relative;
  line-height: 1.5;
}
.service-card.featured .service-list li {
  color: var(--text-dim);
  border-bottom-color: rgba(180,220,200,0.08);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--blue);
  font-size: 0.72rem;
  top: 0.45rem;
}

/* Badge — cream pill like screenshots */
.service-badge {
  display: inline-block;
  margin-top: var(--s2);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--accent-cream);
  color: var(--accent-cream-text);
  border: 1px solid var(--accent-cream-dark);
}
.service-card.featured .service-badge {
  background: rgba(232,220,200,0.12);
  color: var(--accent-cream);
  border-color: rgba(232,220,200,0.2);
}

.services-addon {
  margin-top: var(--s2);
  padding: var(--s3) var(--s4);
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.services-addon-text {}
.services-addon-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.services-addon-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.services-addon-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--s7);
  align-items: center;
}
.about-text h2 { margin-bottom: var(--s3); }
.about-text p { margin-bottom: var(--s2); }
.about-text p:last-of-type { margin-bottom: 0; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--s3);
}
.cred {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: var(--white);
}

/* About stats — soft dark teal card */
.about-stats {
  background: #1e2e2c;
  border-radius: var(--r-lg);
  padding: var(--s4);
  border: 1px solid rgba(180,220,200,0.1);
}
.about-stats-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--s3);
}
.about-stat {
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(180,220,200,0.08);
}
.about-stat:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat:first-of-type { padding-top: 0; }
.about-stat-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.about-stat-val em { font-style: italic; color: var(--blue-light); }
.about-stat-desc {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.55;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: #243432; }
.newsletter-inner { text-align: center; }
.newsletter-inner h2 {
  color: var(--text-light);
  margin-bottom: var(--s2);
}
.newsletter-inner h2 em { font-style: italic; color: var(--blue-light); }
.newsletter-inner > p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto var(--s4);
  line-height: 1.75;
}
.newsletter-editions {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
  flex-wrap: wrap;
}
.edition-pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(180,220,200,0.14);
  border-radius: 20px;
  color: rgba(245,247,245,0.42);
}
.edition-pill.active {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.newsletter-form {
  display: flex;
  gap: var(--s2);
  max-width: 480px;
  margin: 0 auto var(--s2);
}
.newsletter-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 18px;
  background: rgba(180,220,200,0.07);
  border: 1px solid rgba(180,220,200,0.14);
  border-radius: var(--r);
  color: var(--text-light);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(245,247,245,0.28); }
.newsletter-input:focus { border-color: var(--blue-light); }
.newsletter-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* ============================================================
   RESOURCES
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.resource-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-right: 1.5px solid var(--border);
}
.resource-card:last-child { border-right: none; }
.resource-card.dark {
  background: #2d403d;
}
.resource-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.resource-card.dark .resource-title { color: var(--text-light); }
.resource-price {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: var(--s3);
  font-weight: 500;
}
.resource-card.dark .resource-price { color: var(--blue-light); }
.resource-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--s3);
}
.resource-card.dark .resource-desc { color: var(--text-dim); }
.resource-list { list-style: none; margin-bottom: var(--s3); }
.resource-list li {
  font-size: 0.875rem;
  padding: 0.38rem 0 0.38rem 1.2rem;
  border-bottom: 1px solid var(--cream);
  color: var(--text-secondary);
  position: relative;
  line-height: 1.5;
}
.resource-card.dark .resource-list li {
  color: var(--text-dim);
  border-bottom-color: rgba(180,220,200,0.08);
}
.resource-list li:last-child { border-bottom: none; }
.resource-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue);
  font-size: 0.72rem;
  top: 0.42rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: start;
}
.contact-info h2 { margin-bottom: var(--s2); }
.contact-info > p { margin-bottom: var(--s4); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  min-width: 88px;
  padding-top: 3px;
  flex-shrink: 0;
}
.contact-detail-val {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-detail-val a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(46,122,106,0.3);
  transition: text-decoration-color 0.2s;
}
.contact-detail-val a:hover {
  text-decoration-color: var(--blue);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.4rem;
}
.form-section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.form-group { margin-bottom: var(--s2); }
.form-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}
.form-field {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 15px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  line-height: 1.5;
}
.form-field:focus { border-color: var(--blue); }
.form-field::placeholder { color: var(--muted); opacity: 0.55; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: var(--s2);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--s4) 0;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a2826;
  padding: 52px 0 32px;
  border-top: 1px solid rgba(180,220,200,0.07);
}
.footer-logo-img {
  height: 55px;
  width: auto;
  display: block;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s5);
  flex-wrap: wrap;
  padding-bottom: var(--s4);
  border-bottom: 1px solid rgba(180,220,200,0.07);
  margin-bottom: var(--s4);
}
.footer-brand-logo {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.footer-brand-logo span { color: var(--blue-light); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-faint);
  max-width: 240px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  gap: var(--s5);
  flex-wrap: wrap;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,247,245,0.22);
  margin-bottom: var(--s2);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245,247,245,0.42);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(245,247,245,0.18);
}
.footer-legal {
  display: flex;
  gap: var(--s3);
}
.footer-legal a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(245,247,245,0.18);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(245,247,245,0.5); }

/* ============================================================
   LEGAL PAGES (privacy-policy.html, terms.html)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(180,220,200,0.06);
}
.page-hero h1 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.page-meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.legal-content {
  max-width: var(--max-md);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 3rem 0 0.875rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}
.legal-content h2:first-of-type {
  margin-top: 0; padding-top: 0; border-top: none;
}
.legal-content p {
  margin-bottom: var(--s2);
  font-size: 0.975rem;
}
.legal-content ul, .legal-content ol {
  margin: 0.5rem 0 var(--s2) var(--s3);
}
.legal-content li {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.legal-content strong { color: var(--text-primary); font-weight: 500; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-highlight {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  padding: var(--s2) var(--s3);
  border-radius: 0 var(--r) var(--r) 0;
  margin: var(--s3) 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-highlight strong { color: var(--text-primary); }
.legal-contact-block {
  background: var(--charcoal-dark);
  border-radius: var(--r);
  padding: var(--s3);
  margin-top: var(--s3);
}
.legal-contact-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--s2);
}
.legal-contact-block p {
  font-size: 0.9rem;
  color: rgba(245,247,245,0.5);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.legal-contact-block a { color: var(--blue-light); }
.nav-back {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,247,245,0.35);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-back:hover { color: rgba(245,247,245,0.72); }

/* ============================================================
   IMAGES
   ============================================================ */

.hero--with-bg > .container {
  position: relative;
  z-index: 1;
}

/* Services strip  */
.services-strip-img {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.services-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

/* About stats with image background */
.about-stats--img-bg {
  position: relative;
  overflow: hidden;
}
.about-stats--img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/about-left-column.png') center / cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}
.about-stats--img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 42, 36, 1);
  z-index: 1;
}
.about-stats--img-bg > * {
  position: relative;
  z-index: 2;
}

.about-img {
  width: 100%;
  border-radius: var(--r-lg);
  margin-bottom: var(--s3);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.newsletter-inner {
  text-align: center;
}

/* About-stats-label and similar small section labels */
.about-stats-label,
.hero-card-label,
.services-addon-label,
.footer-col-title,
.form-section-label {
  font-size: 0.75rem;
}

/* ============================================================
   CHECKLIST INLINE FORM
   ============================================================ */
.checklist-form-wrap {
  margin-top: var(--s3);
}
.checklist-inline-form {
  display: none;
  margin-top: var(--s2);
  padding: var(--s3);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  animation: fadeUp 0.3s ease forwards;
}
.checklist-inline-form.open {
  display: block;
}
.checklist-form-intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--s2);
  line-height: 1.6;
}
.checklist-fields {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.checklist-fields .form-field {
  background: var(--white);
}
.checklist-form-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: var(--s2);
  line-height: 1.6;
}
.checklist-form-note em {
  font-style: normal;
  color: var(--blue);
}
.checklist-success {
  display: none;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s2);
  padding: var(--s2) var(--s3);
  background: var(--blue-pale);
  border: 1px solid rgba(46,122,106,0.2);
  border-radius: var(--r);
}
.checklist-success.visible {
  display: flex;
}
.checklist-success-icon {
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.checklist-success strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}
.checklist-success span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --s6: 3.5rem; --s7: 4.5rem; }

  .nav-links { display: none; gap: 0; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--charcoal-dark);
    border-bottom: 1px solid rgba(180,220,200,0.1);
    padding: var(--s3) var(--s4) var(--s4);
    gap: var(--s2);
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1rem; color: var(--text-dim); }
  .nav-links.open .nav-cta {
    font-size: 0.75rem;
    padding: 10px 20px;
    margin-top: var(--s1);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 110px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--s4); }
  .hero-card { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .service-card.featured { order: -1; }

  .about-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .about-stats { order: -1; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--s4); }

  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { border-right: none; border-bottom: 1.5px solid var(--border); }
  .resource-card:last-child { border-bottom: none; }

  .footer-top { flex-direction: column; gap: var(--s4); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  html { font-size: 16px; }
  :root { --s5: 2.5rem; --s6: 3rem; --s7: 3.5rem; }

  .container, .container--narrow { padding: 0 var(--s3); }

  section { padding: var(--s6) 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }

  .hero { padding: 96px 0 64px; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }

  .form-row-2 { grid-template-columns: 1fr; }

  .services-addon { flex-direction: column; align-items: flex-start; }

  #checklistToggle,
  .checklist-fields .btn { width: 100%; justify-content: center; }

  .footer-links { gap: var(--s4); }

  .trust-inner { justify-content: flex-start; }
}
