/* ============================================================
   CHEDDAR MARKETING GROUP — main.css v2.0
   Complete design system. No dependencies.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:        #F0B429;
  --gold-bright: #FFD166;
  --black:       #080808;
  --dark:        #0F0F0F;
  --surface:     #141414;
  --surface2:    #1A1A1A;
  --border:      #222222;
  --white:       #F5F5F0;
  --muted:       #666666;
  --font-display:   'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── WORDPRESS CORE OVERRIDES ─────────────────────────────
   Prevent WP block editor, theme.json, and core stylesheet
   from overriding our dark-theme colors.
   ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 1px;
}
h3, h4, h5, h6 {
  font-family: var(--font-condensed);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.5px;
}
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
/* Block editor overrides */
:where(body .is-layout-flow) > * { margin-block-start: 0; margin-block-end: 0; }
.wp-block-heading { color: var(--white); }
.wp-block-paragraph { color: var(--muted); }
/* Prevent WP from adding white backgrounds */
.wp-site-blocks, .entry-content, .wp-block-group { background: transparent !important; }
img { max-width: 100%; height: auto; display: block; }
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9990; opacity: 0.4;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
body::before {

/* ── SHARED UTILITIES ────────────────────────────────────── */
.section-label {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  line-height: 0.92; letter-spacing: 1px; color: var(--white);
}
.section-headline em { font-style: normal; color: var(--gold); }

.btn-primary {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px;
  border: none; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: all 0.2s ease;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); color: var(--black); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ─────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px; border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#site-nav.scrolled {
  background: rgba(8,8,8,0.97); border-bottom-color: var(--border);
  padding: 14px 60px; backdrop-filter: blur(20px);
}
.nav-logo { font-family: var(--font-display); font-size: 26px; letter-spacing: 3px; color: var(--white); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--white); }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  font-family: var(--font-condensed) !important; font-size: 13px !important;
  font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important;
  padding: 10px 22px !important;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)) !important;
  transition: all 0.2s ease !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; color: var(--black) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding: 80px 60px 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand h2 { font-family: var(--font-display); font-size: 42px; letter-spacing: 2px; color: var(--white); margin-bottom: 16px; }
.footer-brand h2 span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.75; color: var(--muted); max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 60px; font-size: 12px; color: var(--muted);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 14px 0; }
.ticker-track { display: flex; gap: 60px; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { font-family: var(--font-condensed); font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ticker-item span { color: var(--gold); font-size: 16px; }

/* ── PAGE HERO (shared) ──────────────────────────────────── */
.page-hero {
  min-height: 80vh; display: flex; align-items: flex-end;
  padding: 160px 60px 80px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden; user-select: none;
}
.page-hero-bg-word {
  font-family: var(--font-display); font-size: clamp(120px, 18vw, 280px);
  color: rgba(240,180,41,0.04); letter-spacing: 10px; line-height: 1; white-space: nowrap;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 960px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.6s ease forwards 0.2s;
}
.page-eyebrow::before, .page-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-h1 {
  font-family: var(--font-display); font-size: clamp(64px, 9vw, 140px);
  line-height: 0.88; letter-spacing: 2px; color: var(--white);
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.35s;
}
.page-h1 em { font-style: normal; color: var(--gold); }
.page-sub {
  font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 560px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.55s;
}

/* ── NEWSLETTER CTA BLOCK (reusable) ─────────────────────── */
.newsletter-cta {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 60px; text-align: center;
}
.newsletter-cta-inner { max-width: 600px; margin: 0 auto; }
.newsletter-cta-eyebrow {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.newsletter-cta-eyebrow::before, .newsletter-cta-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.newsletter-cta h2 { font-family: var(--font-display); font-size: clamp(52px, 6vw, 96px); line-height: 0.9; color: var(--white); margin-bottom: 20px; }
.newsletter-cta h2 em { font-style: normal; color: var(--gold); }
.newsletter-cta p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.nl-form { display: flex; gap: 1px; background: var(--border); max-width: 500px; margin: 0 auto; }
.nl-input { flex: 1; background: var(--black); border: none; outline: none; padding: 18px 20px; font-family: var(--font-body); font-size: 15px; color: var(--white); font-weight: 300; }
.nl-input::placeholder { color: var(--muted); }
.nl-btn { background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0 28px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%); }
.nl-btn:hover { background: var(--gold-bright); }
.nl-success { display: none; font-family: var(--font-condensed); font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 16px; }

/* ── HOME ────────────────────────────────────────────────── */
.home-hero {
  min-height: 100vh; display: grid; grid-template-rows: 1fr auto;
  padding: 140px 60px 0; background: var(--black);
}
.home-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; padding-bottom: 80px; }
.home-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-condensed); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; opacity: 0; animation: fadeUp 0.6s ease forwards 0.2s; }
.home-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.home-h1 { font-family: var(--font-display); font-size: clamp(72px, 8vw, 120px); line-height: 0.9; letter-spacing: 1px; color: var(--white); opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; }
.home-h1 em { font-style: normal; color: var(--gold); display: inline-block; }
.strike { position: relative; color: var(--muted); }
.strike::after { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; animation: strikeThru 0.6s ease forwards 1.4s; }
.home-sub { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 380px; margin-top: 28px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; }
.home-actions { display: flex; align-items: center; gap: 20px; margin-top: 44px; opacity: 0; animation: fadeUp 0.8s ease forwards 1s; }
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); opacity: 0; animation: fadeIn 1s ease forwards 1.2s; }
.metric-cell { background: var(--dark); padding: 36px 32px; position: relative; transition: background 0.2s; }
.metric-cell::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.metric-cell:hover { background: var(--surface); }
.metric-cell:hover::before { height: 100%; }
.metric-number { font-family: var(--font-display); font-size: 52px; color: var(--gold); line-height: 1; }
.metric-label { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.metric-sub { font-size: 12px; color: #333; margin-top: 4px; }

/* ── HOME PROBLEM ────────────────────────────────────────── */
.problem { padding: 160px 60px; background: var(--black); }
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.problem-statement { font-size: 18px; line-height: 1.8; color: rgba(245,245,240,0.5); margin-bottom: 48px; }
.problem-statement strong { color: var(--white); font-weight: 400; }
.problem-cards { display: grid; gap: 1px; background: var(--border); }
.problem-card { background: var(--surface); padding: 28px 32px; display: flex; align-items: flex-start; gap: 20px; transition: background 0.2s; }
.problem-card:hover { background: var(--surface2); }
.problem-icon { width: 40px; height: 40px; background: var(--black); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.problem-card h4 { font-family: var(--font-condensed); font-size: 16px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.problem-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ── SERVICES GRID ───────────────────────────────────────── */
.platform-section { padding: 160px 60px; background: var(--black); border-top: 1px solid var(--border); }
.platform-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: end; }
.platform-desc { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--dark); padding: 44px 36px; position: relative;
  overflow: visible; transition: background 0.3s;
}
/* Gold bar slides in from left on hover — overflow:visible lets it show */
.service-card::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease; z-index: 2;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::after { transform: scaleX(1); }
/* Clip the grid itself so cards don't bleed outside */
.services-grid { overflow: hidden; }
.service-num { position: absolute; top: 28px; right: 28px; font-family: var(--font-display); font-size: 64px; color: var(--surface2); line-height: 1; pointer-events: none; transition: color 0.3s; }
.service-card:hover .service-num { color: var(--border); }
.service-card h3 { font-family: var(--font-condensed); font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ── HOME CTA ────────────────────────────────────────────── */
.home-cta { padding: 160px 60px; background: var(--gold); text-align: center; }
.home-cta .home-cta-label { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(8,8,8,0.5); margin-bottom: 20px; }
/* Use !important to beat WordPress core heading color and any theme.json overrides */
.home-cta h2,
.home-cta h2 em,
.home-cta .wp-block-heading {
  font-family: var(--font-display) !important;
  font-size: clamp(72px, 9vw, 140px) !important;
  line-height: 0.88 !important;
  color: #080808 !important;
  margin-bottom: 28px;
  font-style: normal;
}
.home-cta p,
.home-cta .wp-block-paragraph { font-size: 18px; line-height: 1.7; color: rgba(8,8,8,0.65) !important; max-width: 560px; margin: 0 auto 44px; }
.btn-dark {
  display: inline-block; background: var(--black); color: var(--white) !important;
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 18px 40px;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background 0.2s; text-decoration: none;
}
.btn-dark:hover { background: var(--dark); color: var(--white) !important; }

/* ── BLOG LISTING ────────────────────────────────────────── */
.blog-header { padding: 0 60px 60px; }
.blog-filters { display: flex; gap: 2px; flex-wrap: wrap; }
.blog-filter { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 20px; color: var(--muted); background: var(--surface); border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.blog-filter:hover, .blog-filter.active { background: var(--gold); color: var(--black); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); padding: 0 60px; }
.post-card { background: var(--dark); display: flex; flex-direction: column; }
.post-card--featured { grid-column: 1 / -1; flex-direction: row; }
.post-card-img { display: block; overflow: hidden; position: relative; }
.post-card-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.post-card--featured .post-card-img img { height: 480px; }
.post-card:hover .post-card-img img { transform: scale(1.03); }
.post-card-cat-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; }
.post-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.post-card-cat { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.post-card-date, .post-card-time { font-size: 12px; color: var(--muted); }
.post-card-title { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 34px); line-height: 0.95; color: var(--white); margin-bottom: 14px; letter-spacing: 1px; }
.post-card-title a { color: inherit; transition: color 0.2s; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; flex: 1; }
.post-card-link { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); transition: color 0.2s; margin-top: auto; }
.post-card-link:hover { color: var(--gold-bright); }
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 60px; }
.pag-btn { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.pag-btn:hover { color: var(--white); }
.pag-info { font-size: 13px; color: var(--muted); }

/* ── SINGLE POST ─────────────────────────────────────────── */
.post-hero { padding: 160px 60px 0; }
.post-hero-inner { max-width: 860px; margin: 0 auto; padding-bottom: 60px; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.post-cat-link { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.post-date-txt, .post-read-txt { font-size: 13px; color: var(--muted); }
.post-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 96px); line-height: 0.9; color: var(--white); letter-spacing: 1px; margin-bottom: 28px; }
.post-excerpt-lede { font-size: 20px; line-height: 1.6; color: var(--muted); margin-bottom: 36px; }
.post-author-bar { display: flex; align-items: center; gap: 16px; }
.post-author-bar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.post-author-name { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--white); }
.post-author-role { font-size: 12px; color: var(--muted); }
.post-featured-img { margin: 0 -60px; }
.post-featured-img img { width: 100%; max-height: 560px; object-fit: cover; }
.post-layout { display: grid; grid-template-columns: 260px 1fr; gap: 80px; padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.post-sidebar { position: sticky; top: 100px; height: fit-content; }
.toc-label { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.toc-list a { font-size: 13px; color: var(--muted); transition: color 0.2s; line-height: 1.5; }
.toc-list a.toc-sub { padding-left: 12px; font-size: 12px; }
.toc-list a:hover, .toc-list a.active { color: var(--gold); }
.share-label { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.share-btns { display: flex; flex-direction: column; gap: 4px; }
.share-btn { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); background: none; border: none; cursor: pointer; padding: 8px 0; text-align: left; transition: color 0.2s; }
.share-btn:hover { color: var(--gold); }
.post-content { font-size: 17px; line-height: 1.85; color: rgba(245,245,240,0.85); }
.post-content h2 { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 52px); line-height: 0.95; color: var(--white); margin: 60px 0 24px; letter-spacing: 1px; }
.post-content h3 { font-family: var(--font-condensed); font-size: 20px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin: 48px 0 16px; }
.post-content p { margin-bottom: 1.6em; }
.post-content strong { color: var(--white); font-weight: 600; }
.post-content a { color: var(--gold); text-decoration: underline; }
.post-content a:hover { color: var(--gold-bright); }
.post-content blockquote { border-left: 3px solid var(--gold); padding: 20px 28px; margin: 40px 0; background: var(--surface); font-style: italic; font-size: 19px; color: var(--white); }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 1.6em; }
.post-content li { margin-bottom: 8px; }
.post-content img { border: 1px solid var(--border); margin: 40px 0; }
.post-content code { background: var(--surface); color: var(--gold); padding: 2px 8px; font-size: 14px; }
.post-content pre { background: var(--surface); border: 1px solid var(--border); padding: 24px; overflow-x: auto; margin: 32px 0; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.post-tag { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); background: var(--surface); padding: 6px 14px; transition: all 0.2s; }
.post-tag:hover { background: var(--gold); color: var(--black); }
.post-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.post-nav-item { background: var(--surface); padding: 40px 48px; display: block; transition: background 0.2s; }
.post-nav-item:hover { background: var(--surface2); }
.post-nav-item.next { text-align: right; }
.post-nav-dir { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.post-nav-heading { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 36px); line-height: 0.95; color: var(--white); transition: color 0.2s; }
.post-nav-item:hover .post-nav-heading { color: var(--gold); }
.post-nav-cat { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

/* ── SPLIT LAYOUT (contact, get-started) ─────────────────── */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.split-left { background: var(--gold); padding: 160px 60px 100px; }
.split-left-inner { max-width: 480px; }
.split-eyebrow { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(8,8,8,0.5); margin-bottom: 20px; }
.split-h1 { font-family: var(--font-display); font-size: clamp(56px, 6vw, 96px); line-height: 0.88; color: var(--black); margin-bottom: 24px; letter-spacing: 2px; }
.split-sub { font-size: 16px; line-height: 1.75; color: rgba(8,8,8,0.65); margin-bottom: 48px; }
.split-right { background: var(--dark); padding: 160px 60px 100px; }

/* Process steps */
.process-steps { display: flex; flex-direction: column; margin-bottom: 40px; }
.process-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(8,8,8,0.1); }
.process-step:first-child { border-top: 1px solid rgba(8,8,8,0.1); }
.step-num { font-family: var(--font-display); font-size: 36px; color: rgba(8,8,8,0.3); line-height: 1; }
.step-body h4 { font-family: var(--font-condensed); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--black); margin-bottom: 4px; margin-top: 6px; }
.step-body p { font-size: 14px; line-height: 1.6; color: rgba(8,8,8,0.6); }
.trust-items { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(8,8,8,0.7); font-weight: 500; }
.trust-check { color: var(--black); font-weight: 700; }

/* Contact info */
.contact-inboxes { display: flex; flex-direction: column; gap: 32px; margin-bottom: 48px; }
.inbox-item { display: flex; gap: 16px; }
.inbox-icon { width: 40px; height: 40px; background: rgba(8,8,8,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inbox-label { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(8,8,8,0.5); margin-bottom: 4px; }
.inbox-name { font-family: var(--font-condensed); font-size: 16px; font-weight: 700; letter-spacing: 1px; color: var(--black); margin-bottom: 4px; }
.inbox-email { font-size: 14px; color: var(--black); text-decoration: underline; display: block; margin-bottom: 4px; }
.inbox-desc { font-size: 13px; color: rgba(8,8,8,0.55); line-height: 1.5; }
.contact-social { padding-top: 32px; border-top: 1px solid rgba(8,8,8,0.15); }
.contact-social-label { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(8,8,8,0.5); margin-bottom: 12px; }
.contact-social-links { display: flex; gap: 20px; flex-wrap: wrap; }
.contact-social-links a { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); transition: opacity 0.2s; }
.contact-social-links a:hover { opacity: 0.6; }

/* Form */
.form-eyebrow { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.form-headline { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); line-height: 0.9; color: var(--white); margin-bottom: 16px; }
.form-sub { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 48px; }
.form-fields { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { background: var(--surface); position: relative; }
.form-field label { display: block; font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); padding: 16px 20px 0; }
.form-field input, .form-field textarea, .form-field select { display: block; width: 100%; background: transparent; border: none; outline: none; padding: 8px 20px 16px; font-family: var(--font-body); font-size: 15px; color: var(--white); font-weight: 300; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--surface); }
.form-field::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.form-field:focus-within::after { width: 100%; }
.form-submit-row { background: var(--surface); padding: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-form { background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; border: none; cursor: pointer; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); transition: background 0.2s; white-space: nowrap; }
.btn-form:hover { background: var(--gold-bright); }
.btn-form:disabled { opacity: 0.7; cursor: not-allowed; }
.form-privacy { font-size: 12px; color: var(--muted); line-height: 1.5; }
.form-privacy a { color: var(--muted); text-decoration: underline; }
.form-error { background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.3); color: #e05555; padding: 16px 20px; font-size: 14px; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 80px 40px; }
.form-success-icon { width: 60px; height: 60px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold); margin-bottom: 24px; }
.form-success h2 { font-family: var(--font-display); font-size: 72px; line-height: 0.9; color: var(--white); margin-bottom: 16px; }
.form-success p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 360px; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { padding: 80px 60px 120px; background: var(--black); border-top: 1px solid var(--border); }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: start; }
.pricing-desc { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.pricing-note { font-size: 14px; color: var(--muted); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.pricing-card { background: var(--dark); padding: 48px 40px; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { background: var(--surface); outline: 2px solid var(--gold); outline-offset: -1px; z-index: 1; }
.featured-tag { position: absolute; top: -1px; left: 40px; background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; }
.pricing-tier { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.pricing-price { font-family: var(--font-display); font-size: 64px; letter-spacing: 1px; color: var(--white); line-height: 1; }
.pricing-price sup { font-size: 28px; vertical-align: top; margin-top: 14px; display: inline-block; }
.pricing-period { font-size: 13px; color: var(--muted); letter-spacing: 1px; margin-bottom: 36px; margin-top: 6px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; margin-bottom: 40px; }
.pricing-features li { font-size: 15px; line-height: 1.5; color: rgba(245,245,240,0.65); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.pricing-features li.hl { color: var(--white); }
.btn-pricing { background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px; text-decoration: none; display: block; text-align: center; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)); transition: background 0.2s; }
.btn-pricing:hover { background: var(--gold-bright); color: var(--black); }
.btn-pricing-outline { border: 1px solid var(--border); color: var(--white); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px; text-decoration: none; display: block; text-align: center; transition: all 0.2s; }
.btn-pricing-outline:hover { border-color: var(--gold); color: var(--gold); }
.phase-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.phase-item { background: var(--dark); padding: 48px 40px; display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.phase-num { font-family: var(--font-display); font-size: 56px; color: rgba(240,180,41,0.3); line-height: 1; }
.phase-body h4 { font-family: var(--font-condensed); font-size: 17px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; margin-top: 8px; }
.phase-body p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 24px; border: 1px solid var(--border); font-size: 14px; }
.compare-table thead th { background: var(--surface); font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.compare-table thead th.featured-col { background: var(--gold); color: var(--black); }
.compare-table td { background: var(--dark); color: var(--muted); }
.compare-table td.featured-col { background: rgba(240,180,41,0.05); }
.compare-table .cat-row td { background: var(--surface); font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #555; }
.chk { color: var(--gold); }
.dsh { color: #333; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.faq-item { background: var(--dark); padding: 40px; }
.faq-q { font-family: var(--font-condensed); font-size: 17px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.faq-a { font-size: 15px; line-height: 1.75; color: var(--muted); }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.portfolio-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-bottom: 1px solid var(--border); }
.portfolio-stat { background: var(--surface); padding: 40px 48px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 52px; color: var(--gold); line-height: 1; }
.stat-lbl { display: block; font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); padding: 80px 60px 120px; }
.pf-card { background: var(--dark); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.pf-card--large { grid-column: 1 / -1; flex-direction: row; }
.pf-card-img { overflow: hidden; position: relative; }
.pf-card-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.pf-card--large .pf-card-img { flex: 1; }
.pf-card--large .pf-card-img img { height: 480px; }
.pf-card:hover .pf-card-img img { transform: scale(1.04); }
.pf-card-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.pf-card:hover .pf-card-overlay { opacity: 1; }
.pf-card-cta { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 12px 24px; }
.pf-card-body { padding: 32px; flex: 1; }
.pf-card--large .pf-card-body { flex: 0 0 380px; display: flex; flex-direction: column; justify-content: center; }
.pf-card-industry { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pf-card-title { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 36px); line-height: 0.95; color: var(--white); margin-bottom: 12px; letter-spacing: 1px; }
.pf-card-title a { color: inherit; }
.pf-card-title a:hover { color: var(--gold); }
.pf-card-result em { font-style: normal; color: var(--gold); font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; font-size: 15px; }
.pf-card-services { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); padding: 80px 60px 120px; }
.team-card { background: var(--dark); }
.team-card img { width: 100%; height: 340px; object-fit: cover; object-position: top; filter: grayscale(20%); transition: filter 0.3s; }
.team-card:hover img { filter: grayscale(0); }
.team-card-body { padding: 32px; }
.team-role { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.team-name { font-family: var(--font-display); font-size: 36px; line-height: 0.95; color: var(--white); letter-spacing: 1px; margin-bottom: 14px; }
.team-bio { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.team-specialty { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.team-linkedin { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 12px; display: inline-block; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 60px; }
.value-card { background: var(--dark); padding: 40px 32px; }
.value-num { font-family: var(--font-display); font-size: 48px; color: rgba(240,180,41,0.4); margin-bottom: 16px; line-height: 1; }
.value-card h3 { font-family: var(--font-condensed); font-size: 17px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ── FEATURES ────────────────────────────────────────────── */
.features-intro { padding: 120px 60px; background: var(--surface); border-top: 1px solid var(--border); }
.features-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.intro-body { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.intro-body strong { color: var(--white); font-weight: 400; }
.feature-block { padding: 120px 60px; border-top: 1px solid var(--border); }
.feature-block-alt { background: var(--surface); }
.feature-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.feature-num { font-family: var(--font-display); font-size: 80px; color: rgba(240,180,41,0.15); line-height: 1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.feature-list li { font-size: 15px; color: rgba(245,245,240,0.7); padding-left: 20px; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.feature-visual { background: var(--surface); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }

/* ── NEWSLETTER PAGE ─────────────────────────────────────── */
.newsletter-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 60px; position: relative; overflow: hidden; }
.newsletter-page::before { content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: var(--border); opacity: 0.5; }
.newsletter-page::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--border); opacity: 0.3; }
.newsletter-page-inner { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.signup-wrap { margin-top: 0; }
.signup-form { display: flex; gap: 1px; background: var(--border); max-width: 560px; margin: 0 auto; }
.signup-input-wrap { flex: 1; position: relative; background: var(--surface); }
.signup-input-wrap label { position: absolute; top: 18px; left: 20px; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); pointer-events: none; transition: all 0.2s; z-index: 1; }
.signup-input-wrap.has-value label, .signup-input-wrap:focus-within label { top: 7px; font-size: 9px; letter-spacing: 2.5px; color: var(--gold); }
.signup-input-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.signup-input-wrap:focus-within::after { width: 100%; }
.signup-input { width: 100%; background: transparent; border: none; outline: none; padding: 26px 20px 10px; font-family: var(--font-body); font-size: 15px; color: var(--white); font-weight: 300; }
.signup-btn { background: var(--gold); color: var(--black); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0 32px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s; clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%); }
.signup-btn:hover { background: var(--gold-bright); }
.signup-privacy { margin-top: 14px; font-size: 12px; color: var(--muted); }
.signup-privacy a { color: var(--muted); text-decoration: underline; }
.signup-success { display: none; flex-direction: column; align-items: center; gap: 16px; max-width: 500px; margin: 0 auto; }
.signup-success-icon { width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold); }
.signup-success-headline { font-family: var(--font-display); font-size: 72px; line-height: 0.9; color: var(--white); }
.signup-success p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── 404 ─────────────────────────────────────────────────── */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.page-404-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.page-404-bg-num { font-family: var(--font-display); font-size: clamp(200px, 30vw, 400px); color: rgba(240,180,41,0.03); line-height: 1; }
.page-404 h1 { font-family: var(--font-display); font-size: clamp(60px, 8vw, 120px); line-height: 0.9; color: var(--white); margin: 20px 0 28px; }
.page-404 h1 em { font-style: normal; color: var(--gold); }
.page-404 p { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 400px; margin: 0 auto 40px; }
.page-404-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes strikeThru { to { transform:scaleX(1); } }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .post-layout { grid-template-columns: 220px 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .home-hero-grid, .problem-layout, .platform-header, .pricing-header,
  .features-intro-layout, .feature-block-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-metrics { display: none; }
  .services-grid, .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .portfolio-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card--featured, .pf-card--large { flex-direction: column; grid-column: auto; }
  .pf-card--large .pf-card-body { flex: 0 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #site-nav { padding: 16px 24px; }
  #site-nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: var(--black);
    align-items: center; justify-content: center; gap: 32px; z-index: 999;
  }
  .nav-links.open a { font-size: 14px; }
  .home-hero, .page-hero, .problem, .platform-section, .pricing-section,
  .features-intro, .feature-block, .newsletter-page { padding-left: 24px; padding-right: 24px; }
  .services-grid, .pricing-cards, .blog-grid, .portfolio-grid,
  .team-grid, .phase-row, .faq-grid, .values-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .post-sidebar { display: none; }
  .post-nav-grid { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 80px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px 40px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
  .blog-grid, .portfolio-grid { padding-left: 24px; padding-right: 24px; }
  .blog-header { padding-left: 24px; padding-right: 24px; }
  .portfolio-stats { grid-template-columns: 1fr 1fr; }
  .nl-form { flex-direction: column; }
  .nl-btn { padding: 18px; clip-path: none; }
  .signup-form { flex-direction: column; }
  .signup-btn { padding: 18px; clip-path: none; }
  .post-card--featured .post-card-img img { height: 280px; }
  .newsletter-cta { padding: 80px 24px; }
  .home-cta { padding: 80px 24px; }
  .portfolio-stats { padding: 0; }
  .blog-pagination { padding: 40px 24px; }
  .team-grid, .portfolio-grid { padding: 40px 24px 80px; }
}
