/*
Theme Name: Sixth Man Digital
Theme URI: https://sixthmandigital.com
Author: Sixth Man Digital
Description: Full custom WordPress theme for Sixth Man Digital — dark, sporty, minimal.
Version: 1.0
*/

/* ============================================
   SIXTH MAN DIGITAL
   Brand: Black & White, Sporty Modern Minimal
   ============================================ */

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

:root {
  --bg:           #080808;
  --bg-2:         #111111;
  --bg-3:         #1a1a1a;
  --accent:       #FFFFFF;
  --accent-dim:   rgba(255, 255, 255, 0.06);
  --text:         #F0F0F0;
  --text-muted:   #777777;
  --border:       rgba(255, 255, 255, 0.09);
  --white:        #ffffff;
  --radius:       12px;
  --radius-sm:    8px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1160px;
  --section-pad:  96px;
  --nav-h:        68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === UTILITIES === */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: var(--section-pad) 0; }
.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}
h1 { font-size: clamp(52px, 8vw, 108px); }
h2 { font-size: clamp(38px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
p  { color: var(--text-muted); line-height: 1.7; }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-sub {
  max-width: 520px;
  margin: 16px auto 52px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--primary       { background: var(--white); color: #080808; }
.btn--primary:hover { background: #e0e0e0; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(255,255,255,0.15); }
.btn--ghost         { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--ghost:hover   { border-color: var(--white); color: var(--white); }
.btn--lg            { font-size: 16px; padding: 16px 36px; }
.btn--full          { width: 100%; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(8, 8, 8, 0.97); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--nav-h);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img { height: 36px; width: auto; filter: invert(1); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta    { margin-left: 16px; padding: 10px 20px; font-size: 14px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === SITE WRAPPER === */
.site-main { padding-top: var(--nav-h); min-height: 60vh; }

/* ============================================
   HOMEPAGE — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero__headline { margin-bottom: 24px; max-width: 960px; }
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; justify-content: center; }
.hero__proof { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.hero__proof-item { display: flex; flex-direction: column; align-items: center; }
.proof-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
}
.hero__proof-divider { width: 1px; height: 44px; background: var(--border); }

/* === PROOF BAR === */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 28px 0;
}
.proof-bar__inner  { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.proof-bar__label  { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; }
.proof-bar__logos  { display: flex; gap: 48px; flex-wrap: wrap; }
.proof-bar__logos span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; }

/* === PROBLEM === */
.problem { background: var(--bg); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem__heading { margin-bottom: 24px; }
.problem__content p { font-size: 17px; line-height: 1.75; margin-bottom: 16px; }
.problem__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-card { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-card--bad  { background: var(--bg-2); }
.compare-card--good { background: var(--accent-dim); border-color: rgba(255,255,255,0.18); }
.compare-card h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 16px; }
.compare-card ul { list-style: none; }
.compare-card ul li { font-size: 14px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.compare-card ul li:last-child { border-bottom: none; }

/* === SERVICES === */
.services { background: var(--bg-2); }
.services__heading { margin-bottom: 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover   { border-color: var(--white); transform: translateY(-5px); }
.service-card--featured { border-color: var(--white); background: linear-gradient(145deg, var(--bg-3) 0%, rgba(255,255,255,0.03) 100%); }
.service-card__icon   { font-size: 30px; margin-bottom: 20px; display: block; }
.service-card h3      { margin-bottom: 12px; font-size: 26px; }
.service-card > p     { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.service-card__list   { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card__list li { font-size: 14px; color: var(--text-muted); padding-left: 18px; position: relative; }
.service-card__list li::before { content: '→'; position: absolute; left: 0; color: var(--white); font-size: 13px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.service-card__link:hover { border-color: var(--white); }

/* === HOW IT WORKS === */
.how { background: var(--bg); }
.how__heading { margin-bottom: 64px; }
.how__steps { display: flex; align-items: flex-start; }
.how__step { flex: 1; text-align: center; padding: 0 28px; }
.how__step-num { font-family: var(--font-display); font-size: 80px; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px; }
.how__step h3  { margin-bottom: 12px; font-size: 22px; }
.how__step p   { font-size: 15px; line-height: 1.65; }
.how__connector { width: 80px; height: 2px; background: linear-gradient(90deg, var(--white), transparent); align-self: center; margin-top: -64px; flex-shrink: 0; opacity: 0.2; }

/* === RESULTS === */
.results { background: var(--bg-2); }
.results__heading { margin-bottom: 52px; }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.result-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--white); opacity: 0.3; }
.result-card__stat   { font-family: var(--font-display); font-size: 60px; color: var(--white); line-height: 1; margin-bottom: 16px; }
.result-card__desc   { font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.result-card__client { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.25); font-style: italic; }

/* === TESTIMONIALS === */
.testimonials { background: var(--bg); }
.testimonials__heading { margin-bottom: 52px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card--featured { border-color: rgba(255,255,255,0.25); background: var(--bg-3); }
.testimonial-card__quote  { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: #080808;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-card__author span  { font-size: 13px; color: var(--text-muted); }

/* === PRICING === */
.pricing { background: var(--bg-2); }
.pricing__heading { margin-bottom: 0; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 48px auto 0; }
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.pricing-card--featured { border-color: rgba(255,255,255,0.3); background: linear-gradient(145deg, var(--bg-3) 0%, rgba(255,255,255,0.03) 100%); }
.pricing-card__tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__badge    { font-family: var(--font-display); font-size: 26px; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 10px; }
.pricing-card__price    { font-family: var(--font-display); font-size: 64px; color: var(--white); line-height: 1; margin-bottom: 16px; }
.pricing-card__price span { font-family: var(--font-body); font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-card__desc     { font-size: 15px; margin-bottom: 28px; line-height: 1.65; }
.pricing-card__features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; }
.pricing-card__features li { font-size: 14px; color: var(--text); }
.pricing__note          { text-align: center; margin-top: 32px; font-size: 15px; color: var(--text-muted); }
.pricing__note a        { color: var(--white); }
.pricing__note a:hover  { text-decoration: underline; }

/* === FAQ === */
.faq { background: var(--bg); }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq__left  { position: sticky; top: 100px; }
.faq__heading { margin-bottom: 0; }
.faq__list    { display: flex; flex-direction: column; }
.faq__item    { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--white); }
.faq__question::after { content: '+'; font-size: 22px; color: var(--white); opacity: 0.4; flex-shrink: 0; transition: transform 0.25s; font-family: var(--font-body); font-weight: 300; }
.faq__item.open .faq__question::after { transform: rotate(45deg); opacity: 1; }
.faq__answer    { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p  { padding-bottom: 22px; font-size: 15px; line-height: 1.75; }

/* === CTA === */
.cta { background: var(--bg-2); border-top: 1px solid var(--border); }
.cta__heading { margin-bottom: 0; }
.cta .section-sub { margin-bottom: 40px; }
.cta__sub { margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.cta__sub a { color: var(--white); }
.cta__sub a:hover { text-decoration: underline; }

/* === SERVICE / INNER PAGE HERO === */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow  { margin-bottom: 12px; }
.page-hero h1        { margin-bottom: 20px; font-size: clamp(40px, 6vw, 80px); }
.page-hero p         { max-width: 580px; margin: 0 auto 36px; font-size: 18px; line-height: 1.75; }
.page-hero__ctas     { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === INCLUDED SERVICES GRID === */
.included { background: var(--bg-2); }
.included__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.included-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 32px;
  position: relative;
}
.included-item::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 2px; background: var(--white); opacity: 0.15; border-radius: 2px; }
.included-item h3 { font-size: 20px; margin-bottom: 10px; }
.included-item p  { font-size: 14px; line-height: 1.65; }

/* === WHY CHOOSE === */
.why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-2); }
.why-card__num { font-family: var(--font-display); font-size: 48px; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px; }
.why-card h3   { font-size: 20px; margin-bottom: 10px; }
.why-card p    { font-size: 14px; line-height: 1.65; }

/* === STAFF ARCHIVE === */
.staff-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); text-align: center; }
.staff-hero h1 { margin-bottom: 16px; }
.staff-hero p  { font-size: 18px; max-width: 520px; margin: 0 auto; }
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 72px 0; }
.staff-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.staff-card:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-4px); }
.staff-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: var(--bg-3);
}
.staff-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-card__photo-placeholder span { font-family: var(--font-display); font-size: 64px; color: rgba(255,255,255,0.08); }
.staff-card__body { padding: 24px; }
.staff-card__name { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 4px; }
.staff-card__role { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.staff-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.staff-card__linkedin:hover { border-color: var(--white); }

/* === SINGLE STAFF === */
.staff-single-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  border-bottom: 1px solid var(--border);
}
.staff-single-hero__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}
.staff-single-hero__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  background: var(--bg-3);
}
.staff-single-hero__photo-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-single-hero__back { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; display: inline-block; transition: color 0.2s; }
.staff-single-hero__back:hover { color: var(--white); }
.staff-single-hero__role { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.staff-single-hero h1 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 20px; }
.staff-single-hero__bio { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px; }

/* === BLOG ARCHIVE === */
.blog-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); text-align: center; }
.blog-hero h1 { margin-bottom: 16px; }
.blog-hero p  { font-size: 18px; max-width: 520px; margin: 0 auto; }
.blog-archive { padding: 72px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-4px); }
.post-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--bg-3); }
.post-card__thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.post-card__thumb-placeholder span { font-family: var(--font-display); font-size: 48px; color: rgba(255,255,255,0.06); }
.post-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-card__cat  { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; border-radius: 100px; }
.post-card__date { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.post-card__title { font-family: var(--font-display); font-size: 22px; color: var(--white); line-height: 1.1; margin-bottom: 12px; }
.post-card__title a { color: inherit; transition: color 0.2s; }
.post-card__title a:hover { color: rgba(255,255,255,0.7); }
.post-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.post-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: border-color 0.2s; align-self: flex-start; }
.post-card__link:hover { border-color: var(--white); }
.post-card--featured { grid-column: 1 / -1; flex-direction: row; border-color: rgba(255,255,255,0.15); }
.post-card--featured .post-card__thumb,
.post-card--featured .post-card__thumb-placeholder { width: 45%; flex-shrink: 0; aspect-ratio: unset; min-height: 280px; }
.post-card--featured .post-card__body    { padding: 40px; justify-content: center; }
.post-card--featured .post-card__title   { font-size: 34px; margin-bottom: 16px; }
.post-card--featured .post-card__excerpt { font-size: 16px; margin-bottom: 28px; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.blog-pagination a,
.blog-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.blog-pagination a:hover  { border-color: var(--white); color: var(--white); }
.blog-pagination .current { background: var(--white); color: #080808; border-color: var(--white); }
.no-posts { text-align: center; padding: 80px 0; }

/* === SINGLE POST === */
.post-hero { padding: 72px 0 0; border-bottom: 1px solid var(--border); }
.post-hero__inner { max-width: 760px; margin: 0 auto; padding: 0 24px 56px; text-align: center; }
.post-hero__meta  { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.post-hero__back  { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.post-hero__back:hover { color: var(--white); }
.post-hero__cat   { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; border-radius: 100px; }
.post-hero__date  { font-size: 13px; color: var(--text-muted); }
.post-hero h1     { font-size: clamp(32px, 5vw, 64px); line-height: 1.05; margin-bottom: 20px; }
.post-hero__excerpt { font-size: 18px; color: var(--text-muted); line-height: 1.75; max-width: 600px; margin: 0 auto; }
.post-hero__featured-img { width: 100%; max-width: 900px; margin: 48px auto 0; display: block; border-radius: var(--radius); border: 1px solid var(--border); }
.post-content { padding: 72px 0; }
.post-content__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.post-content__body h2,
.post-content__body h3,
.post-content__body h4 { margin-top: 48px; margin-bottom: 16px; }
.post-content__body h2 { font-size: clamp(26px, 3vw, 42px); }
.post-content__body h3 { font-size: clamp(20px, 2.5vw, 30px); }
.post-content__body p  { font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.post-content__body a  { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.post-content__body a:hover { text-decoration-color: var(--white); }
.post-content__body ul,
.post-content__body ol { margin: 0 0 24px 24px; }
.post-content__body li { font-size: 17px; line-height: 1.75; margin-bottom: 8px; color: var(--text-muted); }
.post-content__body blockquote { border-left: 3px solid rgba(255,255,255,0.2); padding: 12px 0 12px 28px; margin: 32px 0; }
.post-content__body blockquote p { font-size: 20px; font-style: italic; color: var(--text); margin: 0; }
.post-content__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 32px 0; border: 1px solid var(--border); }
.post-content__body code { background: var(--bg-3); border: 1px solid var(--border); padding: 2px 8px; border-radius: 4px; font-size: 14px; color: var(--white); }
.post-content__body pre  { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; overflow-x: auto; margin-bottom: 24px; }
.post-content__body pre code { background: none; border: none; padding: 0; }
.post-content__body hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.post-author { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 20px; }
.post-author__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--white); color: #080808; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; border: none; margin: 0; border-radius: 50%; }
.post-author__name  { font-size: 15px; font-weight: 600; color: var(--white); }
.post-author__label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.post-cta { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0; text-align: center; }
.post-cta h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 12px; }
.post-cta p  { font-size: 17px; margin-bottom: 32px; }
.related-posts { padding: 72px 0; border-top: 1px solid var(--border); }
.related-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }

/* === FOOTER === */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 64px 24px; }
.footer__brand p { margin-top: 16px; font-size: 14px; line-height: 1.65; max-width: 280px; }
.footer__col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; font-family: var(--font-body); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 24px; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 13px; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--white); }

/* === SCROLL ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .problem__grid    { grid-template-columns: 1fr; gap: 56px; }
  .footer__inner    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services__grid   { grid-template-columns: 1fr 1fr; }
  .why__grid        { grid-template-columns: 1fr 1fr; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .staff-grid       { grid-template-columns: 1fr 1fr; }
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__thumb,
  .post-card--featured .post-card__thumb-placeholder { width: 100%; min-height: 220px; }
  .related-posts__grid { grid-template-columns: 1fr 1fr; }
  .staff-single-hero__inner { grid-template-columns: 200px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    margin-left: 0;
  }
  .hero__ctas   { flex-direction: column; align-items: center; }
  .hero__proof  { gap: 20px; }
  .services__grid, .results__grid, .testimonials__grid,
  .included__grid, .why__grid, .blog-grid, .staff-grid,
  .related-posts__grid { grid-template-columns: 1fr; }
  .how__steps    { flex-direction: column; align-items: center; gap: 0; }
  .how__connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent); }
  .how__step     { padding: 0; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .faq__inner    { grid-template-columns: 1fr; gap: 40px; }
  .faq__left     { position: static; }
  .problem__compare { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .staff-single-hero__inner { grid-template-columns: 1fr; }
  .staff-single-hero__photo,
  .staff-single-hero__photo-placeholder { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .footer__inner       { grid-template-columns: 1fr; }
  .hero__proof-divider { display: none; }
  .proof-bar__logos    { gap: 24px; }
}
