/* ============================================================
   RAYVEN STRATEGY COMMUNICATIONS — GLOBAL STYLESHEET v2
   Brand: Black #0D0D0D | Orange #F5A623 | White #FFFFFF
   ============================================================ */

:root {
  --black:       #0D0D0D;
  --dark:        #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --orange:      #F5A623;
  --orange-deep: #E07B0A;
  --orange-light:#FFD080;
  --orange-glow: rgba(245,166,35,0.18);
  --white:       #FFFFFF;
  --grey:        #777777;
  --grey-light:  #BBBBBB;
  --border:      rgba(245,166,35,0.12);
  --border-white:rgba(255,255,255,0.08);
  --font-main:   'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', 'Helvetica Neue', sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease);
  --max-width:   1320px;
  --radius:      3px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.3rem; }
p  { color: var(--grey-light); line-height: 1.85; font-size: 0.95rem; }

.accent { color: var(--orange); }
em.gold { color: var(--orange); font-style: italic; }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 8rem 0; }
.section-sm { padding: 4rem 0; }

/* ── SECTION LABEL ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.label::before {
  content: '';
  width: 2.5rem; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(245,166,35,0.35);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn-ghost .arr {
  display: inline-block;
  transition: transform 0.3s;
}
.btn-ghost:hover .arr { transform: translateX(6px); }

/* ── ORANGE ACCENT LINE ── */
.o-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 1.5rem 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: rgba(11,11,11,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { display: flex; align-items: center; }
.nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  z-index: 1010;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile open state */
.nav-menu.open .nav-cta { margin-left: 0; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

/* Cinematic background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #050505;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center top;
}
/* Colour atmosphere — upper right warm glow (the raven-light zone) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 88% 12%, rgba(245,166,35,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 75% 30%, rgba(220,130,20,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 10% 85%, rgba(245,166,35,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0,0,0,0.6) 0%, transparent 50%);
}
/* Diagonal light trails — the orange streaks across the sky */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 25%, rgba(245,166,35,0.08) 42%, rgba(245,166,35,0.12) 50%, rgba(245,166,35,0.06) 58%, transparent 72%),
    linear-gradient(143deg, transparent 35%, rgba(200,110,10,0.06) 50%, rgba(200,110,10,0.04) 58%, transparent 68%),
    linear-gradient(138deg, transparent 45%, rgba(245,166,35,0.04) 55%, transparent 65%);
}
/* Bottom vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0,0,0,0.8) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Raven SVG decoration */
.hero-raven {
  position: absolute;
  right: -2%;
  top: 8%;
  width: min(55%, 720px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
  animation: ravenFloat 8s ease-in-out infinite;
}

.hero-raven svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(245,166,35,0.25)) drop-shadow(0 0 80px rgba(245,166,35,0.1));
}

/* Light trails behind raven */
.hero-trails {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 70%;
  pointer-events: none;
  z-index: 0;
}

@keyframes ravenFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(-1.5deg); }
  66%       { transform: translateY(6px) rotate(0.8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}
.hero-eyebrow .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 1.75rem;
  color: var(--white);
}
.hero h1 .line-accent {
  display: block;
  color: var(--orange);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--grey-light);
  max-width: 600px;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}
.hero-supporting {
  font-size: 0.9rem;
  color: var(--grey);
  font-style: italic;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee-band {
  padding: 1.25rem 0;
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.marquee-dot { color: rgba(0,0,0,0.35); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CLIENT LOGOS BAND
═══════════════════════════════════════════════════════════ */
.clients-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.clients-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 2rem;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.client-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  cursor: default;
  white-space: nowrap;
}
.client-name:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════════════
   INTRO / TWO-COL SECTIONS
═══════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1.4fr 1fr; }

/* ═══════════════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════════════ */
.stats-band {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--dark-2); }
.stat-num {
  font-family: var(--font-main);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--orange);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM / CARDS
═══════════════════════════════════════════════════════════ */
.problem-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.problem-item {
  background: var(--dark);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.3s;
}
.problem-item:hover { background: var(--dark-2); }
.p-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.problem-item h4 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   DIFFERENCE QUOTE
═══════════════════════════════════════════════════════════ */
.diff-quote {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.diff-quote em { color: var(--orange); font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   SYSTEM PILLARS
═══════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.pillar-card {
  background: var(--dark);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar-card:hover { background: var(--dark-2); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.pillar-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.pillar-card h4 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Large background number */
.pillar-bg-num {
  position: absolute;
  bottom: -1rem;
  right: 1.5rem;
  font-family: var(--font-main);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(245,166,35,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════════════ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3) 30%, rgba(245,166,35,0.3) 70%, transparent);
}
.step-card {
  padding: 0 2.5rem;
  text-align: center;
}
.step-num {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-main);
  font-size: 1.5rem;
  color: var(--orange);
  background: var(--dark);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover .step-num {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(245,166,35,0.35);
}
.step-card h4 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.svc-card {
  background: var(--dark);
  padding: 2.75rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(245,166,35,0.07), transparent);
  transition: height 0.5s;
}
.svc-card:hover { background: var(--dark-2); }
.svc-card:hover::after { height: 100%; }
.svc-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.svc-card h4 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--grey);
  transition: var(--transition);
}
.svc-card:hover .tag {
  border-color: rgba(245,166,35,0.3);
  color: var(--orange-light);
}

/* ═══════════════════════════════════════════════════════════
   WHY RAYVEN
═══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(245,166,35,0.08);
}
.why-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.why-card h4 { font-family: var(--font-main); font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   PHILOSOPHY / DARK SECTION
═══════════════════════════════════════════════════════════ */
.philosophy-section {
  background: var(--dark);
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-style: italic;
  color: var(--grey-light);
  max-width: 720px;
  margin: 2rem auto;
  line-height: 1.55;
}
.philosophy-quote strong { color: var(--orange); font-style: normal; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.final-cta {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(245,166,35,0.07), transparent);
}
.final-cta h2 { margin-bottom: 0.5rem; }
.final-cta .tagline {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--orange);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 11rem 0 6rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,166,35,0.06), transparent);
}
.page-hero .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 6rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--grey);
  max-width: 280px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--grey);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a { font-size: 0.875rem; color: var(--grey); transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--grey); }
.footer-bottom a { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   ADMIN BAR (shown when logged in)
═══════════════════════════════════════════════════════════ */
.admin-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  gap: 0.5rem;
}
.admin-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(13,13,13,0.95);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  backdrop-filter: blur(12px);
  text-decoration: none;
}
.admin-bar-btn:hover {
  border-color: var(--orange);
  background: rgba(245,166,35,0.1);
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.value-card {
  background: var(--dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.value-card:hover { background: var(--dark-2); }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-card h4 { font-family: var(--font-main); font-size: 1.25rem; color: var(--orange); margin-bottom: 0.5rem; }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.approach-step {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.approach-step:hover { background: var(--dark-2); }
.approach-step .step-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.approach-step h4 { font-family: var(--font-main); font-size: 1.4rem; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════════ */
.service-detail-card {
  padding: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: var(--transition);
}
.service-detail-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(245,166,35,0.06);
}
.service-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.service-features li {
  font-size: 0.875rem;
  color: var(--grey-light);
  padding-left: 1.5rem;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════════════════════ */
.case-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(245,166,35,0.06);
}
.case-thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.case-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(245,166,35,0.08), transparent);
}
.case-body { padding: 2.25rem; }
.case-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.case-body h4 { font-family: var(--font-main); font-size: 1.4rem; margin-bottom: 0.75rem; }
.case-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.case-meta-item { font-size: 0.72rem; color: var(--grey); }
.case-meta-item strong { display: block; color: var(--orange); font-size: 1.1rem; margin-bottom: 0.15rem; }

/* ═══════════════════════════════════════════════════════════
   INSIGHTS
═══════════════════════════════════════════════════════════ */
.insight-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1rem;
  transition: gap 0.3s;
}
.read-link:hover { gap: 0.8rem; }

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.industry-card {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.industry-card:hover { background: var(--dark-2); }
.industry-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.industry-card:hover .industry-icon { transform: scale(1.1); }
.industry-card h4 { font-family: var(--font-main); font-size: 1.2rem; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.team-avatar {
  height: 260px;
  background: linear-gradient(160deg, var(--dark-3), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(245,166,35,0.08), transparent);
}
.team-info { padding: 2rem; }
.team-info h4 { font-family: var(--font-main); font-size: 1.4rem; margin-bottom: 0.3rem; }
.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border-white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: var(--dark-3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.c-icon { font-size: 1.25rem; color: var(--orange); flex-shrink: 0; }
.c-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.25rem;
}
.c-value { color: var(--grey-light); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   FADE-UP ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Divider */
.divider { height: 1px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .process-row::before { display: none; }
  .approach-steps { grid-template-columns: repeat(2,1fr); }
  .hero-raven { width: 50%; top: 12%; }
}
@media (max-width: 960px) {
  .two-col, .two-col.reverse, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .services-grid, .why-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .hero-raven { display: none; }
  /* Hide desktop nav items, show hamburger */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  /* Mobile nav open state */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 6rem 2.5rem 3rem;
    gap: 0.25rem;
    z-index: 1005;
    overflow-y: auto;
  }
  .nav-menu.open > li { display: flex; width: 100%; }
  .nav-menu.open .nav-link {
    font-size: 1.8rem;
    font-family: var(--font-main);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
  }
  .nav-menu.open .nav-link:hover,
  .nav-menu.open .nav-link.active { color: var(--orange); }
  .nav-menu.open .nav-link::after { display: none; }
  .nav-menu.open .nav-cta {
    margin-top: 2rem;
    font-size: 0.75rem;
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .services-grid, .why-grid, .team-grid, .stats-grid, .process-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}
}

/* ═══════════════════════════════════════════════════════════
   BLOG & INSIGHTS — Shared styles
═══════════════════════════════════════════════════════════ */

/* Category badge */
.cat-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

/* Blog/Insights listing grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.post-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.post-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.post-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.post-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.post-thumb-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(245,166,35,0.08), transparent);
}
.post-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  color: var(--grey);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey); }
.post-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.post-card:hover .post-title { color: var(--orange); }
.post-excerpt {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}
.post-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
  transition: gap 0.3s;
}
.post-read-link:hover { gap: 0.9rem; }

/* Featured post (large) */
.post-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.post-card.featured .post-thumb,
.post-card.featured .post-thumb-placeholder {
  width: 45%;
  aspect-ratio: auto;
  flex-shrink: 0;
  min-height: 280px;
}
.post-card.featured .post-body { padding: 2.5rem; }
.post-card.featured .post-title { font-size: 1.75rem; }

/* Blog search & filter bar */
.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  border: 1px solid var(--border-white);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  flex: 1;
  max-width: 340px;
}
.blog-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  width: 100%;
}
.blog-search input::placeholder { color: var(--grey); }
.blog-search-icon { color: var(--grey); font-size: 0.85rem; flex-shrink: 0; }
.blog-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-cat-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  color: var(--grey);
  background: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.blog-cat-btn.active,
.blog-cat-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,166,35,0.06);
}

/* No posts state */
.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--grey);
}
.no-posts h3 { font-family: var(--font-main); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--white); }

/* ── SINGLE BLOG POST ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.article-header { margin-bottom: 2.5rem; }
.article-hero-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 3rem;
  max-height: 520px;
  object-fit: cover;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--grey-light);
}
.article-body h2 { font-family: var(--font-main); font-size: 1.8rem; color: var(--white); margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: var(--font-main); font-size: 1.4rem; color: var(--white); margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 1rem 0 1rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
}
.article-body a { color: var(--orange); text-decoration: underline; }
.article-body img { max-width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }

/* Article sidebar */
.article-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.sidebar-post {
  display: flex;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover .sidebar-post-title { color: var(--orange); }
.sidebar-post-img {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--dark-2);
}
.sidebar-post-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-light);
  line-height: 1.4;
  transition: color 0.3s;
}
.sidebar-post-date { font-size: 0.68rem; color: var(--grey); margin-top: 0.3rem; }
.author-card { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-size: 1.5rem; color: var(--orange);
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-role { font-size: 0.72rem; color: var(--grey); margin-top: 0.15rem; }

/* Tags */
.tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--grey);
  transition: var(--transition);
}
.tag-item:hover { border-color: var(--orange); color: var(--orange); }

/* Share buttons */
.share-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border-white); border-radius: 2px;
  color: var(--grey-light); background: none; cursor: pointer;
  transition: var(--transition); font-family: var(--font-sans);
}
.share-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Read time */
.read-time { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: var(--grey); }

/* Newsletter CTA section */
.newsletter-section {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(245,166,35,0.06), transparent);
}
.newsletter-section h3 {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.newsletter-section p { position: relative; max-width: 480px; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  background: var(--dark-2);
  border: 1px solid var(--border-white);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form input::placeholder { color: var(--grey); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-white);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--grey);
  background: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.page-btn:hover, .page-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,166,35,0.06);
}
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── TESTIMONIALS SECTION ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-main);
  font-size: 6rem;
  color: rgba(245,166,35,0.12);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main);
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 0.7rem; color: var(--grey); margin-top: 0.1rem; }
.star-row { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { color: var(--orange); font-size: 0.75rem; }

/* Blog responsive */
@media (max-width: 960px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.featured { flex-direction: column; }
  .post-card.featured .post-thumb,
  .post-card.featured .post-thumb-placeholder { width: 100%; min-height: 220px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-controls { flex-direction: column; align-items: stretch; }
  .blog-search { max-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
