/* ==============================================
   Navisignal Insights — Main Stylesheet
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --navy:       #0A2A43;   /* Primary Navy */
  --midnight:   #001C34;   /* Darker Navy — gradients, dividers */
  --teal:       #CBA00B;   /* Repurposed → Star Gold (links, interactive) */
  --teal-light: #E5BA20;   /* Gold hover state */
  --gold:       #CBA00B;   /* Star Gold — focal points, CTAs */
  --gold-light: #E5BA20;   /* Lighter gold */
  --steel:      #5A6B76;   /* Steel Grey — secondary text, diagram lines */
  --mist:       #DDE7EE;   /* Mist Blue — chart highlights, subtle bg */
  --bg:         #F9FAFB;   /* Off-white — primary light bg */
  --bg-white:   #FFFFFF;
  --text:       #0A2A43;   /* Navy */
  --text-muted: #5A6B76;   /* Steel Grey */
  --text-light: #DDE7EE;   /* Mist Blue */
  --border:     #DDE7EE;   /* Mist Blue */
  --shadow:     0 2px 20px rgba(10,42,67,0.08);
  --shadow-lg:  0 8px 40px rgba(10,42,67,0.12);
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --max-width:  1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

blockquote, .pullout {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
}

p { margin-bottom: 1.25rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 24px; }
.section-light { background: var(--bg); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title    { margin-bottom: 1.25rem; }
.section-subtitle { font-size: 1.0625rem; max-width: 580px; margin-bottom: 3rem; }

.divider { width: 48px; height: 3px; background: var(--gold); margin: 1.5rem 0; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary  { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(203,160,11,0.35); }
.btn-outline  { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── Navigation ──────────────────────────────── */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: #0B1728;
  border-bottom: none;
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
}
.nav-logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo-banner-img {
  width: 44vw; height: auto; display: block; max-width: 640px;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to right, transparent, black 18px, black calc(100% - 18px), transparent),
                      linear-gradient(to bottom, transparent, black 10px, black calc(100% - 10px), transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, black 18px, black calc(100% - 18px), transparent),
              linear-gradient(to bottom, transparent, black 10px, black calc(100% - 10px), transparent);
  mask-composite: intersect;
}
.nav-logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-wordmark strong { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; color: white; }
.nav-logo-wordmark span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; color: var(--gold); }
.nav-logo:hover .nav-logo-wordmark strong { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 22px; border-radius: var(--radius); font-weight: 600; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; padding: 80px 24px 32px; overflow-y: auto;
}
.nav-overlay.open { display: block; }
.nav-overlay .nav-links { display: flex; flex-direction: column; align-items: start; gap: 0; }
.nav-overlay .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-overlay .nav-links a { display: block; padding: 18px 0; font-size: 1.1rem; color: rgba(255,255,255,0.8); }
.nav-overlay .nav-links a:hover { color: var(--gold); }
.nav-overlay .nav-cta { margin-top: 24px; display: inline-flex; }

/* ── Hero ────────────────────────────────────── */
.hero {
  padding: 160px 24px 100px; background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(42,63,89,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-desc { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg); max-width: 360px; width: 100%;
}
.hero-card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.hero-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 500; color: var(--navy); line-height: 1; }
.hero-stat-num sup { font-size: 1.2rem; }
.hero-stat-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ── Stats Bar ───────────────────────────────── */
.stats-bar { background: var(--navy); padding: 48px 24px; }
.stats-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center;
}
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 3.25rem; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ── Service Cards ───────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 3rem; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: rgba(42,63,89,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-link { font-size: 0.85rem; font-weight: 500; color: var(--teal); display: inline-flex; align-items: center; gap: 4px; }
.service-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── About (home section) ────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0A1C2E 0%, #2A3F59 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; border-radius: var(--radius-lg);
}
.about-image-placeholder .initials { font-family: 'Space Grotesk', sans-serif; font-size: 5rem; font-weight: 300; opacity: 0.9; margin-bottom: 0.75rem; }
.about-image-placeholder .name { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; }

.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 2rem 0; }
.credential-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.credential-item strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.credential-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Navisignal ──────────────────────────────── */
.navisignal {
  background: linear-gradient(135deg, #0A1C2E 0%, #2A3F59 100%);
  padding: 96px 24px; color: white; position: relative; overflow: hidden;
}
.navisignal::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.navisignal-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.navisignal .section-label { color: var(--gold-light); }
.navisignal h2 { color: white; }
.navisignal > .navisignal-inner > div > p { color: rgba(255,255,255,0.75); }
.navisignal-tagline { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.65); border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 1.75rem 0; }
.navisignal-desc { color: rgba(255,255,255,0.75) !important; }
.navisignal-tools { display: grid; gap: 16px; }
.navisignal-tool { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 22px; transition: all var(--transition); }
.navisignal-tool:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.navisignal-tool h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 6px; }
.navisignal-tool p { font-size: 0.85rem; margin-bottom: 0; color: rgba(255,255,255,0.6); }

/* ── Partners ────────────────────────────────── */
.partners-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.partner-tag { background: white; border: 1px solid var(--border); border-radius: 6px; padding: 7px 14px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────── */
.cta-section { background: var(--bg); padding: 96px 24px; text-align: center; }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 2.5rem; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────── */
.footer { background: var(--navy); color: white; padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer-brand .nav-logo { color: white; display: block; margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand .nav-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); max-width: 300px; margin-bottom: 1.5rem; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 0; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 700;
  transition: all var(--transition);
}
.social-link:hover { background: var(--teal); color: white; }

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero { padding: 140px 24px 80px; background: var(--bg); text-align: center; }
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; max-width: 540px; margin: 0 auto; color: var(--text-muted); }
.about-hero { background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)), url('../assets/FUTURI~1.PNG') center/cover no-repeat; }

/* ── About Page ──────────────────────────────── */
.about-page-grid { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.about-sidebar { position: sticky; top: 100px; }

.profile-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.profile-img { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, #0A1C2E 0%, #2A3F59 100%); display: flex; align-items: center; justify-content: center; }
.profile-img .initials { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 300; color: rgba(255,255,255,0.9); }
.profile-info { padding: 24px; }
.profile-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.profile-info .title { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-bottom: 14px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; font-size: 0.72rem; color: var(--text-muted); }

.about-main p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); }

.credential-list { list-style: none; margin: 0; }
.credential-list li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; }
.credential-list li:last-child { border-bottom: none; }
.cred-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(10,42,67,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.cred-text { font-size: 0.9rem; color: var(--text-muted); }
.cred-text strong { display: block; color: var(--text); font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }

.languages-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 1.5rem 0; }
.lang-item { background: var(--bg); border-radius: 8px; padding: 14px 16px; }
.lang-item strong { display: block; font-size: 0.875rem; color: var(--text); margin-bottom: 3px; }
.lang-item span { font-size: 0.8rem; color: var(--text-muted); }

.skills-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 1.5rem; }
.skill-card { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.skill-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.skill-card p { font-size: 0.82rem; margin-bottom: 0; }

/* ── Services Page ───────────────────────────── */
.services-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 3rem; }
.service-detail-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; transition: all var(--transition); }
.service-detail-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.service-detail-card .service-icon { width: 54px; height: 54px; font-size: 1.6rem; margin-bottom: 1.5rem; }
.service-detail-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.service-detail-card p { font-size: 0.925rem; }

.service-bullets { list-style: none; margin-top: 1.25rem; }
.service-bullets li { padding: 5px 0 5px 1.25rem; font-size: 0.875rem; color: var(--text-muted); position: relative; }
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; top: 8px; }

/* ── Process Steps ───────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 3rem; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 300; color: rgba(42,63,89,0.15); line-height: 1; margin-bottom: 0.5rem; }
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.process-step p { font-size: 0.875rem; }

/* ── Contact Page ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info p { font-size: 0.9375rem; margin-bottom: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(42,63,89,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-text span { font-size: 0.875rem; color: var(--text-muted); }

.contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  color: var(--text); background: var(--bg);
  transition: border-color var(--transition); outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: white; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; text-align: center; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-placeholder { aspect-ratio: 16/9; max-height: 280px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .navisignal-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-page-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .credentials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .languages-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero { padding: 130px 24px 72px; }
  .page-hero { padding: 120px 24px 64px; }
  .hero-content-box { padding: 48px 24px 56px; }
  .hero-content-box h1 { font-size: 2rem; }
  .hero-info-box { max-width: 100%; padding: 28px 24px; }
  .why-section { grid-template-columns: 1fr; }
  .why-content { padding: 56px 24px; }
  .why-buttons { max-width: 100%; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-form input { border-right: 1.5px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .lead-magnet-form .btn { border-radius: 0 0 var(--radius) var(--radius); }
  .footer-top-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Button additions ─────────────────────────── */
.btn-dark { background: #0f0f0f; color: white; }
.btn-dark:hover { background: #2a2a2a; color: white; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Dropdown Nav ────────────────────────────── */
.nav-item { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-toggle::after { content: '⌄'; font-size: 0.65rem; opacity: 0.7; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: white; border: 1px solid var(--border);
  border-radius: 8px; box-shadow: var(--shadow-lg);
  min-width: 180px; padding: 16px 0 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease; z-index: 200;
  list-style: none;
}
.nav-item:hover .dropdown-menu,
.nav-item.dropdown-open .dropdown-menu { opacity: 1; pointer-events: all; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.875rem; color: var(--text); white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--teal); background: var(--bg); }
.nav-overlay .dropdown-menu {
  position: static; opacity: 1; pointer-events: all;
  box-shadow: none; border: none; padding: 0;
  background: transparent; transform: none;
}
.nav-overlay .dropdown-menu a { padding: 14px 0 14px 20px; font-size: 1rem; color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-overlay .dropdown-menu a:hover { color: var(--gold); }

/* ── Hero Full (index page) ──────────────────── */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background: linear-gradient(160deg, #00101E 0%, #001C34 45%, #0A2A43 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Video background — drop src into the <video> tag when ready */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0.38;
}
.hero-video-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,16,30,0.96) 0%,
    rgba(0,28,52,0.55) 55%,
    rgba(0,16,30,0.35) 100%
  );
}

.hero-content-box {
  position: relative; z-index: 1;
  padding: 80px 80px 72px;
  max-width: 760px;
  background: none;
  width: auto;
}
.hero-content-box h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: white;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.hero-content-box > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.25rem;
}

/* ── Hero logo banner (legacy, kept for other uses) */
.hero-logo-banner {
  display: flex; justify-content: center; align-items: center;
  padding: 100px 24px 0; flex: 1;
}
.hero-logo-img { width: 100%; max-width: 600px; height: auto; display: block; }

.hero-info-box {
  background: rgba(28,28,28,0.92);
  padding: 40px 44px; max-width: 520px; align-self: flex-start;
}
.hero-info-box h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800; color: white;
  letter-spacing: 0.07em; line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-info-box p { color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; font-size: 0.9375rem; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-microcopy { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 0; }
.hero-social { display: flex; gap: 10px; margin-top: 1.5rem; align-items: center; }
.social-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; transition: all var(--transition); text-decoration: none;
}
.social-icon-link:hover { background: white; color: var(--navy); border-color: white; }
.social-icon-link svg { width: 17px; height: 17px; }

/* ── Why Section ─────────────────────────────── */
.why-section { display: grid; grid-template-columns: 1fr 1fr; }
.why-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.why-rule { width: 40px; height: 2px; background: var(--navy); margin-bottom: 1.75rem; }
.why-content h2 {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.5rem;
}
.star-list { list-style: none; margin: 0; }
.star-list li { padding: 7px 0; font-size: 0.9375rem; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.star-list li .star { flex-shrink: 0; font-size: 0.95rem; margin-top: 2px; }
.why-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 2.25rem; max-width: 290px; }
.why-buttons .btn { justify-content: center; }
.why-image {
  min-height: 500px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #c8d8e4 0%, #a0b8c8 100%);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Lead Magnet ─────────────────────────────── */
.lead-magnet { background: var(--navy); padding: 96px 24px; text-align: center; }
.lead-magnet-inner { max-width: 620px; margin: 0 auto; }
.lead-magnet h2 { color: white; margin-bottom: 1rem; }
.lead-magnet .section-label { color: var(--gold-light); }
.lead-magnet p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.0625rem; }
.lead-magnet-form {
  display: flex; gap: 0; max-width: 480px;
  margin: 0 auto; border-radius: var(--radius); overflow: hidden;
}
.lead-magnet-form input {
  flex: 1; padding: 15px 20px; border: none;
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  background: rgba(255,255,255,0.12); color: white; outline: none;
  border: 1.5px solid rgba(255,255,255,0.15); border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color var(--transition);
}
.lead-magnet-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-magnet-form input:focus { border-color: var(--gold); }
.lead-magnet-form .btn { border-radius: 0 var(--radius) var(--radius) 0; white-space: nowrap; }
.lead-magnet-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 1rem; }

/* ── Footer (site-specific) ──────────────────── */
.footer-top-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px;
}
.footer-rule { width: 40px; height: 2px; background: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.footer-col-heading {
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: white; margin-bottom: 1.5rem;
}
.footer-btn-list { display: flex; flex-direction: column; gap: 12px; }
.footer-btn-list .btn { max-width: 280px; justify-content: center; }
.footer-social-row { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 0; }

/* ── Useful Links Page ───────────────────────── */
.links-page { padding: 48px 24px 96px; }
.links-inner { max-width: 900px; margin: 0 auto; }
.links-category { margin-bottom: 3.75rem; }
.links-category-title {
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 1.5rem; padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.links-grid { display: grid; gap: 10px; }
.link-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: white;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); text-decoration: none;
  transition: all var(--transition); font-size: 0.9rem; font-family: 'Inter', sans-serif;
}
.link-card:hover { border-color: var(--teal); color: var(--teal); transform: translateX(4px); box-shadow: var(--shadow); }
.link-card::before { content: '→'; color: var(--teal); flex-shrink: 0; font-size: 0.85rem; }

/* ── Contact Page ────────────────────────────── */
.contact-cta-stack { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.contact-cta-stack .btn { justify-content: center; text-align: center; }

/* ── About page stats bar ────────────────────── */
.about-stats { display: flex; gap: 48px; flex-wrap: wrap; margin: 2.5rem 0; }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.75rem; font-weight: 500; color: var(--teal); line-height: 1; }
.about-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; max-width: 140px; line-height: 1.4; }

/* ── Free Stuff page ─────────────────────────── */
.free-stuff-hero {
  background: var(--navy); padding: 160px 24px 96px;
  text-align: center; position: relative; overflow: hidden;
}
.free-stuff-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(200,148,58,0.07); pointer-events: none;
}
.free-stuff-hero h1 { color: white; margin-bottom: 1rem; }
.free-stuff-hero p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 2.5rem; }
.free-stuff-form-wrap { max-width: 520px; margin: 0 auto; text-align: left; }
.free-stuff-form-wrap .form-group label { color: rgba(255,255,255,0.55); }
.free-stuff-form-wrap input {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white;
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  outline: none; margin-bottom: 12px; transition: border-color var(--transition);
}
.free-stuff-form-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.free-stuff-form-wrap input:focus { border-color: var(--gold); }

@media (max-width: 1024px) {
  .why-section { grid-template-columns: 1fr; }
  .why-content { padding: 64px 24px; }
  .why-image { min-height: 320px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS
   ══════════════════════════════════════════════ */

/* ── Who this is for ─────────────────────────── */
.audience-section { padding: 120px 24px; background: var(--bg-white); }
.audience-inner { max-width: var(--max-width); margin: 0 auto; }
.audience-inner .section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); max-width: 700px; }
.audience-intro { max-width: 620px; margin-bottom: 3.5rem; font-size: 1.0625rem; line-height: 1.8; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.audience-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 40px 36px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.audience-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.875rem; color: var(--navy); }
.audience-card p { font-size: 0.9375rem; margin-bottom: 0; line-height: 1.75; }

/* ── What we help with ───────────────────────── */
.help-section { padding: 100px 24px; background: var(--bg); }
.help-inner { max-width: var(--max-width); margin: 0 auto; }
.help-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 3rem; }
.help-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.help-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.help-card-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.help-card h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--navy); }
.help-card p { font-size: 0.875rem; margin-bottom: 0; line-height: 1.65; }

/* ── Why Navisignal Insights (homepage) ──────── */
.why-new-section {
  background: linear-gradient(160deg, #001220 0%, #001C34 50%, #0A2A43 100%);
  padding: 120px 24px; color: white;
}
.why-new-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 96px; align-items: start;
}
.why-new-section .section-label { color: var(--gold); }
.why-new-section h2 { color: white; margin-bottom: 1.5rem; font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
.why-new-body { color: rgba(255,255,255,0.72); font-size: 1.0625rem; line-height: 1.9; margin-bottom: 0; }
.why-bullets { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.why-bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.why-bullet-mark { color: var(--gold); font-weight: 700; flex-shrink: 0; line-height: 1.65; font-size: 1.1rem; }
.why-bullet-text { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ── Newsletter ──────────────────────────────── */
.newsletter-section { padding: 100px 24px; background: var(--bg-white); }
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { margin-bottom: 1rem; }
.newsletter-inner > p { margin-bottom: 2.5rem; font-size: 1rem; }
.newsletter-form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 40px; text-align: left;
}
.newsletter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.newsletter-form-wrap .form-group { margin-bottom: 0; }
.newsletter-submit { width: 100%; justify-content: center; margin-top: 16px; }

/* ── Newsletter + Freebies (two-column) ──────── */
.newsletter-freebies-section { padding: 100px 24px; background: var(--bg); }
.newsletter-freebies-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.newsletter-col h2,
.freebies-col h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 1rem; }
.newsletter-col > p,
.freebies-col > p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.newsletter-form-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; }
.newsletter-form-wrap .form-group { margin-bottom: 0; }
.newsletter-submit { width: 100%; justify-content: center; }
.freebies-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.25rem; }
.freebie-item {
  display: flex; align-items: center; gap: 14px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: 0.9rem; color: var(--text); font-weight: 500;
  text-decoration: none; transition: all var(--transition);
}
.freebie-item:hover { border-color: var(--gold); box-shadow: var(--shadow); color: var(--navy); }
.freebie-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.freebies-more { font-size: 0.875rem; font-weight: 500; color: var(--teal); }
.freebies-more:hover { color: var(--teal-light); }

/* ── Homepage CTA (kept for reference) ──────── */
.home-cta-section { background: var(--navy); padding: 100px 24px; text-align: center; }
.home-cta-inner { max-width: 600px; margin: 0 auto; }
.home-cta-section h2 { color: white; margin-bottom: 1rem; }
.home-cta-section p { color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; font-size: 1.0625rem; }
.home-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.home-cta-link {
  color: rgba(255,255,255,0.65); font-size: 0.875rem; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.home-cta-link:hover { color: white; }

/* ══════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════ */

/* ── Services page hero ──────────────────────── */
.services-page-hero { padding: 120px 24px 64px; background: var(--midnight); background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 28px 28px; text-align: center; position: relative; overflow: hidden; }
.services-page-hero::before { content: ''; position: absolute; top: -110px; right: -110px; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(203,160,11,0.2); pointer-events: none; }
.services-page-hero::after { content: ''; position: absolute; bottom: -70px; left: -70px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(203,160,11,0.11); pointer-events: none; }
.services-page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.services-page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0; color: #ffffff; }


/* ── Buyer Filter ────────────────────────────── */
.buyer-select-section { padding: 56px 24px 40px; background: var(--bg); border-bottom: 1px solid var(--border); text-align: center; }
.buyer-select-inner { max-width: 1000px; margin: 0 auto; }
.buyer-select-heading { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.buyer-select-sub { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }
.buyer-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 1.25rem; }
.buyer-card { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 16px 10px 14px; cursor: pointer; transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), opacity var(--transition); text-align: center; }
.buyer-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.buyer-card.active { border-color: var(--gold); box-shadow: 0 4px 20px rgba(203,160,11,0.18); }
.buyer-card.dimmed { opacity: 0.3; transform: none; pointer-events: none; }
.buyer-card-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(10,42,67,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--navy); }
.buyer-card-label { font-weight: 700; font-size: 0.825rem; color: var(--navy); margin-bottom: 4px; }
.buyer-card-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }
.buyer-reset { display: none; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; color: var(--navy); cursor: pointer; background: var(--bg-white); border: 1.5px solid var(--border); border-radius: 20px; padding: 6px 14px; transition: border-color var(--transition), color var(--transition); }
.buyer-reset.visible { display: inline-flex; }
.buyer-reset:hover { border-color: var(--navy); }
.buyer-scroll-hint { display: none; margin: 1rem 0 0; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.01em; }
.buyer-scroll-hint.visible { display: block; }
.buyer-stay-cta { display: none; max-width: 560px; margin: 1.5rem auto 0; background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; text-align: left; }
.buyer-stay-cta.visible { display: block; }
.buyer-stay-cta p { margin: 0 0 14px; font-weight: 600; color: var(--navy); }
.buyer-stay-cta-links { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .buyer-cards { grid-template-columns: repeat(2,1fr); } .buyer-card:last-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .buyer-cards { grid-template-columns: 1fr; } .buyer-card:last-child { grid-column: auto; } }

/* pillar card audience states */
.pillar-card.highlighted { border-color: var(--gold) !important; box-shadow: 0 4px 20px rgba(203,160,11,0.13); }
.pillar-card.dimmed { opacity: 0.2; pointer-events: none; }
.card-badge { display: none; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); background: rgba(203,160,11,0.1); border-radius: 20px; padding: 3px 10px; margin-bottom: 10px; }
.pillar-card.highlighted .card-badge { display: inline-block; }

/* ── Service Pillars ─────────────────────────── */
.pillar-section { padding: 96px 24px; background: var(--bg-white); }
.pillar-section.alt { background: var(--bg); }
.pillar-inner { max-width: var(--max-width); margin: 0 auto; }
.pillar-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; cursor: pointer; user-select: none; }
.pillar-header:hover .pillar-header-text h2 { color: var(--gold); }
.pillar-header-text { flex: 1; }
.pillar-header-text h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0; transition: color 0.2s; }
.pillar-chevron { flex-shrink: 0; margin-top: 6px; color: var(--text-muted); transition: transform 0.3s ease; }
.pillar-section.expanded .pillar-chevron { transform: rotate(180deg); }
.pillar-cards-wrap { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.pillar-section.expanded .pillar-cards-wrap { max-height: 4000px; }
.pillar-cards-wrap > .pillar-cards { padding-top: 2.5rem; }
.coming-soon-card { max-width: 520px; margin: 2.5rem auto 0; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.5rem; text-align: center; }
.coming-soon-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.pillar-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.pillar-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: border-color var(--transition), box-shadow var(--transition), opacity 0.3s ease;
  display: flex; flex-direction: column;
}
.pillar-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 0.875rem; color: var(--navy); }
.pillar-card-body { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 0; flex-grow: 1; }
.pillar-meta {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.pillar-meta-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.pillar-meta-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.pillar-meta-text ul { margin: 0; padding-left: 1.1rem; }
.pillar-meta-text li { margin-bottom: 0.2rem; }
.pillar-meta-text li:last-child { margin-bottom: 0; }

/* ── Services CTA ────────────────────────────── */
.services-cta-section { background: var(--navy); border-top: 2px solid rgba(203,160,11,0.35); padding: 96px 24px; text-align: center; }
.services-cta-inner { max-width: 600px; margin: 0 auto; }
.services-cta-section h2 { margin-bottom: 1rem; color: #ffffff; }
.services-cta-section > div > p { font-size: 1.0625rem; margin-bottom: 2.5rem; color: rgba(255,255,255,0.75); }
.services-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Kit Newsletter Tag Checkboxes ───────────── */
.form-tags { border: none; padding: 0; margin: 14px 0 16px; min-width: 0; }
.form-tags legend {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding: 0;
}
.form-tags-options { display: flex; flex-direction: column; gap: 8px; }
.form-tag-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  user-select: none;
}
.form-tag-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: white;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.form-tag-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.form-tag-option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* ── Contact page decision tree ─────────────── */
.contact-hero {
  background: var(--navy);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 580px;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.contact-hero-inner .section-label { color: var(--gold); }
.contact-hero-inner h1 { color: #fff; margin-bottom: 1rem; }
.contact-hero-inner p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; }

.decision-tree-section { padding: 80px 24px; background: var(--bg); }
.decision-intro { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.decision-intro h2 { margin-bottom: 0.75rem; }
.decision-intro p { color: var(--text-muted); }
.decision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.decision-card {
  background: #fff;
  border: 2px solid var(--border);
  border-top: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition),
              opacity var(--transition), box-shadow var(--transition);
}
.decision-card:hover {
  border-color: var(--gold);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,42,67,0.14);
}
.decision-card.active {
  border-color: var(--gold);
  border-top-color: var(--gold);
  box-shadow: 0 16px 48px rgba(10,42,67,0.14);
}
.decision-card.dimmed { opacity: 0.25; transform: scale(0.97); pointer-events: none; }

.decision-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: background var(--transition), transform 0.2s ease, color var(--transition);
}
.decision-card:hover .decision-icon,
.decision-card.active .decision-icon { background: var(--gold); color: var(--navy); transform: scale(1.08); }

.decision-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.decision-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--navy); }
.decision-card > p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.decision-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}
.decision-card:hover .decision-hint { background: var(--navy); color: white; border-color: var(--navy); }
.decision-card.dimmed .decision-hint { opacity: 0; height: 0; margin: 0; padding: 0; overflow: hidden; border: none; }
.decision-card.active .decision-hint { background: var(--bg); border-color: var(--border); color: var(--text-muted); }
.decision-hint .hint-open { display: block; }
.decision-hint .hint-close { display: none; }
.decision-card.active .decision-hint .hint-open { display: none; }
.decision-card.active .decision-hint .hint-close { display: block; }

.decision-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.08s,
              margin-top 0.3s ease, padding-top 0.3s ease;
}
.decision-card.active .decision-action {
  max-height: 280px;
  opacity: 1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.decision-action .form-note { text-align: center; margin: 0; }

.contact-info-strip {
  padding: 56px 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.contact-info-strip-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
}
.contact-info-strip-inner .contact-detail { margin-bottom: 0; }
.contact-detail-icon svg { color: var(--navy); display: block; }
@media (max-width: 600px) {
  .contact-info-strip-inner { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 800px) {
  .decision-cards { grid-template-columns: 1fr; max-width: 480px; }
  .contact-hero-bg { display: none; }
}

/* ── Newsletter Split layout (Free Stuff page) ── */
.newsletter-split { background: var(--navy); padding: 96px 24px; }
.newsletter-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-split-left .section-label { color: var(--gold); }
.newsletter-split-left h2 { color: #fff; margin-bottom: 1rem; }
.newsletter-split-left > p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.newsletter-split-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter-brand-icon {
  max-width: 380px;
  width: 100%;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .newsletter-split-inner { grid-template-columns: 1fr; }
  .newsletter-split-right { display: none; }
}
@media (max-width: 768px) {
  .newsletter-split { padding: 64px 24px; }
}

/* ── Resource list (Free Stuff page) ─────────── */
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--midnight); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f0f0; color: var(--navy); transform: translateY(-1px); }

.resource-list { margin-top: 2.5rem; }
.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.resource-item:last-child { border-bottom: 1px solid var(--border); }
.resource-info { flex: 1; }
.resource-info .section-label { margin-bottom: 0.3rem; }
.resource-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--navy); }
.resource-info p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.resource-item .btn { white-space: nowrap; flex-shrink: 0; }
.freebie-item--toggle { cursor: pointer; }
.freebie-item--toggle:hover { border-color: var(--gold); box-shadow: var(--shadow); color: var(--navy); }
.freebie-form-drop { display: none; padding: 14px 16px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); background: var(--bg); }
.freebie-form-drop.open { display: block; }
.kit-resource-form { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; min-width: 220px; }
.kit-resource-form input[type="email"] { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; font-family: inherit; color: var(--text); width: 100%; }
.kit-resource-form input[type="email"]:focus { outline: none; border-color: var(--navy); }
.kit-resource-form .btn { width: 100%; justify-content: center; text-align: center; }

@media (max-width: 600px) {
  .resource-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .resource-item .btn { width: 100%; justify-content: center; }
  .kit-resource-form { width: 100%; }
}

/* ── Kit Commerce / Buy Me a Coffee button ───── */
.btn-coffee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform 0.1s ease;
  box-sizing: border-box;
}
.btn-coffee:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: #fff;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — new components
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .help-grid { grid-template-columns: repeat(2,1fr); }
  .why-new-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillar-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .audience-section,
  .help-section,
  .why-new-section,
  .newsletter-freebies-section,
  .home-cta-section,
  .pillar-section,
  .services-cta-section { padding: 64px 24px; }
  .newsletter-freebies-inner { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .newsletter-row { grid-template-columns: 1fr; }
  .newsletter-form-wrap { padding: 28px 24px; }
  .services-page-hero { padding: 120px 24px 56px; }
}

/* ── Lead Magnet Popup ───────────────────────── */
.lm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,42,67,0.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lm-overlay.open { display: flex; }
.lm-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(10,42,67,0.3);
}
.lm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
}
.lm-close:hover { color: var(--navy); }
.lm-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.lm-title { font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.25; }
.lm-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.lm-form { display: flex; flex-direction: column; gap: 10px; }
.lm-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition);
}
.lm-form input[type="email"]:focus { border-color: var(--gold); background: white; }
.lm-form .btn { width: 100%; justify-content: center; }
.lm-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 8px; margin-bottom: 0; }
.lm-success { text-align: center; padding: 8px 0; }
.lm-success p:first-child { font-size: 1.1rem; font-weight: 600; color: var(--navy); }
@media (max-width: 480px) {
  .lm-card { padding: 32px 24px 28px; }
}
