/* ===================================
   Position Xero — Global Stylesheet
   Design: Premium Agency Light — white primary, ink black, refined grey
   =================================== */

/* Fonts are loaded via a non-blocking <link rel="preload"> in each page's <head>
   (the render-blocking @import was removed for Core Web Vitals / LCP). */

:root {
  /* Backgrounds */
  --bg:        #F5F4F1;   /* warm off-white — primary */
  --bg-2:      #FFFFFF;   /* pure white — alternating sections */
  --bg-dark:   #0D0D0D;   /* near-black — stats, footer, cta */
  --bg-card:   #FFFFFF;
  --border:    rgba(0,0,0,0.09);
  --border-h:  rgba(0,0,0,0.28);

  /* Ink palette */
  --ink:       #0D0D0D;   /* primary text */
  --ink-2:     #2E2E2E;
  --muted:     #6B6B6B;   /* body text */
  --muted-2:   #9E9E9E;   /* tertiary */

  /* Light text — for use on dark backgrounds */
  --white:     #F5F4F1;

  /* Gradient — refined dark-to-grey */
  --gradient:  linear-gradient(135deg, #0D0D0D 0%, #555555 100%);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w:     1200px;
  --radius:    14px;
  --tr:        0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-2); border-radius: 2px; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); letter-spacing: 0; }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }

/* ---- Gradient text ---- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--muted-2);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ---- Section header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ---- Fade in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* White variant — used on dark backgrounds */
.btn-white {
  background: #FFFFFF;
  color: var(--ink);
}
.btn-white:hover {
  background: #F0EFED;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 29px;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--tr), background var(--tr);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(0,0,0,0.03); }

/* ===================================
   CARDS
   =================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===================================
   DARK-NAV: inner pages have dark headers — flip pre-scroll nav to white
   =================================== */
body.dark-nav .nav:not(.scrolled) .nav-logo { color: var(--white); }
body.dark-nav .nav:not(.scrolled) .nav-links a { color: rgba(245,244,241,0.6); }
body.dark-nav .nav:not(.scrolled) .nav-links a:hover { color: var(--white); }
body.dark-nav .nav:not(.scrolled) .hamburger span { background: var(--white); }
body.dark-nav .nav:not(.scrolled) .btn-primary { background: var(--white); color: var(--ink); }
body.dark-nav .nav:not(.scrolled) .btn-primary:hover { background: #F0EFED; }

/* Gradient text on dark backgrounds must be light */
body.dark-nav .nav:not(.scrolled) .gradient-text,
.page-header .gradient-text,
.article-header .gradient-text,
.cta-banner .gradient-text,
.stats-section .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--tr), background var(--tr), border-color var(--tr);
}
.nav.scrolled {
  padding: 13px 0;
  background: rgba(245,244,241,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(245,244,241,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.01em; transition: color var(--tr);
}
.mobile-menu a:hover { color: var(--muted); }

/* ===================================
   HERO — clean white/light
   =================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px;
  background: var(--bg);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
/* Grid is now drawn on #heroGrid canvas via JS cloth warp effect */
#heroGrid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 60%, rgba(0,0,0,0.025) 0%, transparent 70%);
}

/* Orbs — barely visible on light, just texture */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat linear infinite;
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation-duration: 28s;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  animation-duration: 34s; animation-direction: reverse;
}
.orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,0,0,0.025) 0%, transparent 70%);
  top: 40%; left: 20%;
  animation-duration: 42s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(36px, -44px) scale(1.04); }
  66%      { transform: translate(-28px, 32px) scale(0.96); }
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-bottom: 28px; letter-spacing: 0.04em;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--ink);
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--ink);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.trust-bar { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500; color: var(--muted);
}
.trust-icon { font-size: 1rem; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section { background: var(--bg-2); }

.problem-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.problem-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.problem-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.problem-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 20px; display: block;
  opacity: 0.5;
}
.problem-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.problem-card p  { font-size: 0.9rem; line-height: 1.72; }

/* ===================================
   SERVICES
   =================================== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none; display: block;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.service-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.service-icon { font-size: 1.8rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.service-card p  { font-size: 0.875rem; line-height: 1.68; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; font-size: 12px; font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase;
  transition: gap var(--tr);
}
.service-card:hover .service-link { gap: 9px; }

/* ===================================
   STATS — dark island
   =================================== */
.stats-section {
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
  text-align: center; position: relative; z-index: 1;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; display: block; margin-bottom: 10px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.42); font-weight: 400; line-height: 1.5; }

/* ===================================
   PROCESS
   =================================== */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.process-card {
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.process-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--tr);
}
.process-card:hover::before { opacity: 1; }
.process-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.process-step {
  font-family: var(--font-head);
  font-size: 3.2rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 24px; display: block;
  opacity: 0.4;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-card p  { font-size: 0.9rem; line-height: 1.72; }

/* ===================================
   NICHES
   =================================== */
.niches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.niche-card {
  padding: 30px 20px; text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.niche-card:hover {
  border-color: var(--border-h);
  background: rgba(0,0,0,0.02);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.niche-icon { font-size: 2.2rem; margin-bottom: 14px; }
.niche-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--ink); font-family: var(--font-head); }

/* ===================================
   TESTIMONIALS — horizontal scroll
   =================================== */
.testimonials-scroll-section {
  position: relative;
  background: var(--bg-2);
  padding: 0;
  /* overflow:hidden intentionally absent — it would break position:sticky on the child */
}

.testimonials-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* clear the fixed nav (~72px) */
  box-sizing: border-box;
}

.testimonials-header {
  flex-shrink: 0;
  padding: 16px 0 32px;
  text-align: center;
}

.testimonials-header h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.testimonials-track-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 360px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), border-color var(--tr);
}

.testimonial-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonials-progress-wrap {
  flex-shrink: 0;
  height: 4px;
  background: rgba(0,0,0,0.04);
  margin-top: 20px;
}

.testimonials-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--ink), #C8A84B);
  width: 0%;
  transition: width 0.1s ease-out;
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.stars { color: var(--ink); margin-bottom: 16px; font-size: 11px; letter-spacing: 3px; opacity: 0.7; }
.testimonial-card blockquote {
  font-style: normal; font-size: 0.9rem;
  color: var(--muted); line-height: 1.8; margin-bottom: 24px; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  background: var(--border);
  border: 2px solid var(--border);
}
.author-name { font-weight: 700; font-size: 0.85rem; color: var(--ink); font-family: var(--font-head); margin-bottom: 2px; }
.author-role { font-size: 0.76rem; color: var(--muted); }

/* ===================================
   CTA BANNER — dark for contrast
   =================================== */
.cta-section { padding: 80px 0; }

.cta-banner {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 80px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-label { color: rgba(245,244,241,0.4); }
.cta-banner .section-label::before { background: rgba(245,244,241,0.3); }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--white); margin-bottom: 14px; }
.cta-banner p  { font-size: 1.02rem; max-width: 540px; margin: 0 auto 34px; color: rgba(245,244,241,0.55); }
.cta-banner .btn-primary { background: #FFFFFF; color: var(--ink); }
.cta-banner .btn-primary:hover { background: #F0EFED; box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ===================================
   FOOTER — dark
   =================================== */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.25rem; letter-spacing: -0.01em;
  color: var(--white);
}
.footer-brand p { font-size: 0.86rem; margin-top: 12px; max-width: 240px; line-height: 1.65; color: rgba(245,244,241,0.45); }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,244,241,0.3); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; color: rgba(245,244,241,0.55); transition: color var(--tr); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem; color: rgba(245,244,241,0.3);
}

/* ===================================
   PAGE HEADER — dark for inner pages
   =================================== */
.page-header {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  background: var(--bg-dark);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header .section-label { color: rgba(245,244,241,0.45); }
.page-header .section-label::before { background: rgba(245,244,241,0.3); }
.page-header > .container > p { font-size: 1.12rem; max-width: 580px; color: rgba(245,244,241,0.6); }

/* ===================================
   FAQ
   =================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  cursor: pointer; text-align: left; color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--ink-2); opacity: 0.7; }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--muted);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--ink); color: var(--ink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p { padding-bottom: 24px; font-size: 0.92rem; line-height: 1.82; }

/* ===================================
   COMPARISON TABLE
   =================================== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  background: rgba(0,0,0,0.04); padding: 14px 20px; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase;
}
.comparison-table td {
  padding: 14px 20px; font-size: 0.875rem; border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

/* ===================================
   DEFINITION BLOCK
   =================================== */
.definition-block {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  border-left: 3px solid var(--ink);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 28px 0;
}
.definition-block p { color: var(--ink); font-size: 0.98rem; line-height: 1.74; margin: 0; }

/* ===================================
   BLOG
   =================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none; display: block;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.blog-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #EBEBEB, #D8D8D5);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Blog thumb — real photo */
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }

/* Article featured image */
.article-featured-img {
  margin: 0 0 48px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.article-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(0,0,0,0.06); color: var(--muted);
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 4px; margin-bottom: 11px;
  font-family: var(--font-body);
}
.blog-card h3 { font-size: 0.98rem; color: var(--ink); margin-bottom: 9px; line-height: 1.42; }
.blog-card p  { font-size: 0.84rem; line-height: 1.7; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; color: var(--muted-2); font-weight: 500; }

/* ===================================
   ARTICLE PAGE
   =================================== */
.article-header { padding: 160px 0 60px; position: relative; overflow: hidden; background: var(--bg-dark); }
.article-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.article-header .container { position: relative; z-index: 1; max-width: 840px; }
.article-header h1 { color: var(--white); margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 18px; font-size: 0.84rem; color: rgba(245,244,241,0.5); flex-wrap: wrap; margin-bottom: 20px; font-family: var(--font-body); }
.article-tag { background: rgba(255,255,255,0.1); color: rgba(245,244,241,0.7); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; font-family: var(--font-body); }

.article-content { max-width: 760px; margin: 0 auto; padding: 60px 0 100px; }
.article-content h2 { font-size: 1.7rem; margin: 48px 0 16px; color: var(--ink); }
.article-content h3 { font-size: 1.15rem; margin: 32px 0 11px; color: var(--ink); }
.article-content p  { font-size: 0.975rem; line-height: 1.87; margin-bottom: 20px; color: var(--muted); }
.article-content ul,
.article-content ol { margin-bottom: 22px; padding-left: 24px; }
.article-content li { color: var(--muted); margin-bottom: 8px; font-size: 0.975rem; line-height: 1.75; }
.article-content strong { color: var(--ink); font-weight: 600; }
.article-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ===================================
   CONTACT
   =================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; font-family: var(--font-head); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 3px solid #3D63FF;
  outline-offset: 2px;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select option { background: #FFFFFF; color: var(--ink); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(107,107,107,0.45); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 11px; padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr);
}
.contact-card:hover { border-color: var(--border-h); }
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(0,0,0,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; font-family: var(--font-head); }
.contact-card p  { font-size: 0.83rem; margin: 0; }
.contact-card a  { color: var(--ink); font-size: 0.88rem; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===================================
   VALUES
   =================================== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.value-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.87rem; line-height: 1.7; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .stats-grid     { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .niches-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .problem-cards,
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .blog-grid,
  .values-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .trust-divider{ display: none; }
  .trust-bar    { gap: 16px; }
  .section      { padding: 72px 0; }
  .cta-banner   { padding: 48px 28px; }
  .hero h1      { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  .testimonials-header { padding: 40px 0 30px; }
  .testimonials-track { gap: 16px; padding: 0 30px; }
  .testimonial-card { flex: 0 0 300px; padding: 24px 20px; }
}

@media (max-width: 540px) {
  .footer-grid    { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas > *  { width: 100%; justify-content: center; }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: 28px; }
  .niches-grid    { grid-template-columns: 1fr 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
  .testimonials-header { padding: 30px 0 20px; }
  .testimonials-track { gap: 12px; padding: 0 20px; }
  .testimonial-card { flex: 0 0 280px; padding: 20px 16px; font-size: 0.85rem; }
}

/* ===================================
   TEAM SECTION
   =================================== */
.team-section { background: var(--bg-2); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.team-photo {
  aspect-ratio: 1537 / 900;
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.team-photo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.team-photo-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #AAAAAA;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.team-story h2 { margin-bottom: 20px; }

.team-story p {
  font-size: 0.96rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 16px;
}
.team-story p:last-of-type { margin-bottom: 0; }

.team-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===================================
   HERO METRICS — inline stat badges
   =================================== */
.hero-rating { color: #B8860B; letter-spacing: 1px; }

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 640px;
}
.hero-metric { flex: 1; min-width: 110px; text-align: center; }
.hm-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.hm-label { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.hero-metric-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ===================================
   RATING STRIP — social proof bar
   =================================== */
.rating-strip {
  background: var(--bg-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rating-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rs-rating { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.rs-stars { color: #C8A84B; font-size: 14px; letter-spacing: 2px; }
.rs-score { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--white); }
.rs-count { font-size: 0.8rem; color: rgba(245,244,241,0.5); }
.rs-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.rs-badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rs-badge {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(245,244,241,0.6);
  white-space: nowrap;
}

/* ===================================
   CLIENT RESULTS GRID
   =================================== */
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex; flex-direction: column; gap: 8px;
}
.result-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.rc-industry {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-2);
  font-family: var(--font-body);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rc-metric {
  font-family: var(--font-head);
  font-size: 2.6rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.rc-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.rc-detail { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-top: 4px; flex: 1; }
.rc-footer { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.rc-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.05);
  color: var(--muted);
  padding: 3px 8px; border-radius: 4px;
  font-family: var(--font-body);
}

/* ===================================
   BENEFITS GRID — "Why Us"
   =================================== */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  opacity: 0; transition: opacity var(--tr);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p  { font-size: 0.88rem; line-height: 1.72; }
.benefit-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.05);
  color: var(--muted);
  padding: 4px 10px; border-radius: 4px;
  font-family: var(--font-body);
}

/* ===================================
   RATING SUMMARY — testimonials header
   =================================== */
.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 12px; flex-wrap: wrap;
}
.rs-stars-lg { color: #C8A84B; font-size: 1.1rem; letter-spacing: 3px; }
.rs-score-lg { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--ink); }
.rs-count-sm { font-size: 0.82rem; color: var(--muted); }

/* ===================================
   INTAKE STEPS — CTA process
   =================================== */
.intake-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.intake-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 220px;
  text-align: left;
}
.is-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  color: #FFFFFF; flex-shrink: 0;
  margin-top: 2px;
}
.is-text { display: flex; flex-direction: column; gap: 4px; }
.is-text strong { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--white); }
.is-text span   { font-size: 0.76rem; color: rgba(245,244,241,0.5); line-height: 1.5; }
.intake-arrow {
  font-size: 1.2rem; color: rgba(255,255,255,0.25);
  flex-shrink: 0; margin-top: 4px;
}

/* ===================================
   RESPONSIVE — new components
   =================================== */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hero-metrics { gap: 0; padding: 16px 20px; }
  .hm-num { font-size: 1.2rem; }
  .rating-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rs-divider { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .intake-steps { flex-direction: column; align-items: stretch; }
  .intake-step { max-width: 100%; }
  .intake-arrow { display: none; }
}

@media (max-width: 540px) {
  .hero-metrics { flex-direction: column; gap: 16px; align-items: flex-start; padding: 20px; }
  .hero-metric-div { width: 100%; height: 1px; }
  .hero-metric { text-align: left; }
}

/* ===================================
   SEO / Accessibility additions (2026-06-11)
   =================================== */

/* Visible keyboard focus indicator (keyboard-only via :focus-visible) */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-white:focus-visible,
summary:focus-visible {
  outline: 3px solid #3D63FF;
  outline-offset: 3px;
  border-radius: 3px;
}
/* On dark sections, use a light ring for contrast */
.footer a:focus-visible,
.cta-section a:focus-visible,
.stats-section a:focus-visible,
.page-header a:focus-visible,
.article-header a:focus-visible,
body.dark-nav .nav:not(.scrolled) a:focus-visible,
.breadcrumb a:focus-visible {
  outline-color: #FFFFFF;
}

/* Skip link — hidden until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: #0D0D0D;
  color: #F5F4F1;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #3D63FF;
  outline-offset: 2px;
}

/* Larger hamburger tap target (>=44px) */
.hamburger {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb trail — placed inside the dark page/article header */
.breadcrumb { margin-bottom: 22px; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0;
  margin: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: 9px; color: rgba(245,244,241,0.55); }
.breadcrumb li + li::before { content: "\203A"; color: rgba(245,244,241,0.35); }
.breadcrumb a { color: rgba(245,244,241,0.62); text-decoration: none; }
.breadcrumb a:hover { color: #F5F4F1; text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: #F5F4F1; font-weight: 600; }

/* Monogram avatars (replace third-party stock-photo avatars) */
.author-monogram {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b1b1f 0%, #3c3c42 100%);
  color: #F5F4F1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--border);
  text-transform: uppercase;
}

/* Footer headings de-promoted from <h4> to <p> (keeps visual styling) */
.footer-heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  #heroGrid { display: none !important; }
  .orb { animation: none !important; }
  .testimonials-track { transition: none !important; }
}

/* Mobile-menu CTA fix: `.mobile-menu a` forces dark text on every menu link,
   which made the black "Book Free Audit" button render dark-on-black (invisible).
   Restore the button's intended white text + keep it looking like a real button. */
.mobile-menu a.btn-primary,
.mobile-menu a.btn-primary:hover {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 34px;
  margin-top: 10px;
}
.mobile-menu a.btn-primary:hover { background: #1A1A1A; }
