*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { overflow-x: hidden; }
html { width: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }

:root {
  --bg: #09090b;
  --bg-card: #111114;
  --border: #1c1c22;
  --border-hover: rgba(59,130,246,0.5);
  --text: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-dim: #8a8a8f;
  --white: #fafafa;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59,130,246,0.12);
  --accent-subtle: rgba(59,130,246,0.06);
  --green: #22c55e;
  --green-dark: #10b981;
  --accent-light: #60a5fa;
  --accent-violet: #818cf8;
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1080px;
  --transition: 0.2s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
svg:not(:root) { overflow: hidden; }

/* ---- Accessibility ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--accent); color: #fff;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1, .hero .tagline, .hero .subtitle, .btn-group { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Navigation ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,11,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 0 2rem;
}
nav .nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
nav .nav-logo { font-size: 1.3rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.03em; }
nav .nav-logo span { color: var(--accent); }
nav .nav-links { display: flex; gap: 0.125rem; }
nav .nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 8px; transition: color var(--transition), background var(--transition);
}
nav .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
nav .nav-links a.active { color: var(--white); border-bottom: 2px solid var(--accent); padding-bottom: 0.2rem; }
nav .hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 0.5rem; }
nav .hamburger svg { width: 24px; height: 24px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 2rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.4; }

/* ---- Main ---- */
main { flex: 1; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 4rem 2rem; }
main > section { margin-bottom: 6rem; }
main > section:last-of-type { margin-bottom: 3rem; }

/* ---- Hero ---- */
.hero { text-align: center; padding: 6rem 0 3rem; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: min(800px, 100vw); height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem); font-weight: 800;
  letter-spacing: -0.035em; color: var(--white); line-height: 1.1;
  margin-bottom: 1.25rem; animation: fadeInUp 0.7s ease-out;
}
.hero h1 span { color: var(--accent); }
.hero .tagline {
  font-size: 1.2rem; color: var(--text-muted); font-weight: 400;
  margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto;
  animation: fadeInUp 0.7s ease-out 0.08s both;
}
.hero .subtitle {
  font-size: 1rem; color: var(--text-dim); margin-bottom: 2.5rem;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
  animation: fadeInUp 0.7s ease-out 0.14s both;
}
.divider { display: none; }

/* ---- Buttons ---- */
.btn-group { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.7s ease-out 0.2s both; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.35rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500; transition: all var(--transition);
  cursor: pointer; background: transparent; text-decoration: none;
}
.btn svg { display: none; }
.btn:hover { border-color: #27272a; color: var(--white); transform: translateY(-1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,0.25); }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section headings ---- */
.page-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.section-subtitle { color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.75rem; }
h2.subsection-heading { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
p.subsection-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; max-width: 480px; }
.pricing-intro { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.best-for { font-size: 0.75rem; color: var(--accent); background: var(--accent-subtle); border: 1px solid rgba(59,130,246,0.15); border-radius: 6px; padding: 0.3rem 0.65rem; margin-bottom: 1.25rem; font-weight: 500; display: inline-block; }
.services-clarifier { text-align: center; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 2rem; padding: 0.875rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Feature cards ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feature-card .icon {
  width: 40px; height: 40px; background: var(--accent-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card .icon svg { width: 20px; height: 20px; color: var(--accent); }
/* If icon is empty (no svg), show as accent dot */
.feature-card .icon:empty { width: 8px; height: 8px; min-height: 8px; border-radius: 50%; background: var(--accent); margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; }

/* ---- AI Highlight ---- */
.ai-highlight {
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, transparent 60%), var(--bg-card);
  border: 1px solid rgba(59,130,246,0.2); border-radius: var(--radius);
  padding: 3rem; position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(59,130,246,0.05);
}
.ai-highlight::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.5), var(--accent));
}
.ai-highlight-inner { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.ai-highlight-content .section-label {
  margin-bottom: 0.75rem; display: inline-block;
  background: rgba(59,130,246,0.1); padding: 0.3rem 0.7rem; border-radius: 6px;
  border: 1px solid rgba(59,130,246,0.2);
}
.ai-highlight-content h2 { font-size: clamp(1.35rem, 2.8vw, 1.8rem); font-weight: 800; color: var(--white); margin-bottom: 1.25rem; line-height: 1.3; letter-spacing: -0.03em; }
.ai-highlight-content > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.ai-highlight-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.ai-highlight-list li { color: var(--text); font-size: 0.9rem; line-height: 1.7; padding-left: 1.5rem; position: relative; }
.ai-highlight-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(59,130,246,0.4); }
.ai-highlight-list strong { color: var(--white); font-weight: 600; }
.ai-highlight-stats {
  display: flex; flex-direction: column; gap: 1.5rem; padding: 2rem;
  background: rgba(59,130,246,0.04); border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius-sm);
}
.ai-stat { text-align: center; }
.ai-stat-number { display: block; font-size: 2.2rem; font-weight: 900; color: #60a5fa; letter-spacing: -0.035em; line-height: 1.1; text-shadow: 0 0 20px rgba(59,130,246,0.2); }
.ai-stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.45; font-weight: 500; }

/* ---- Process / How It Works ---- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2rem; counter-reset: step;
}
.process-step {
  text-align: center; padding: 1.75rem 1.25rem; counter-increment: step;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.process-step:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.process-step::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--accent-glow);
  border: 1.5px solid rgba(59,130,246,0.3); border-radius: 50%;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  margin: 0 auto 1rem; transition: all var(--transition);
}
.process-step:hover::before { border-color: var(--accent); box-shadow: 0 0 16px rgba(59,130,246,0.2); }
.process-step h3 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.375rem; }
.process-step p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.55; }

/* ---- Testimonials ---- */
.testimonials-section { margin-bottom: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1rem; margin-top: 2rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card::before { display: none; }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.testimonial-card p { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 600; font-size: 0.8rem; flex-shrink: 0;
}
.testimonial-author-info .author-name { font-size: 0.825rem; font-weight: 600; color: var(--white); }
.testimonial-author-info .author-role { font-size: 0.75rem; color: var(--text-dim); }

/* ---- Trust bar ---- */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1rem 0 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; color: var(--text-dim); font-size: 0.8rem; font-weight: 400; }
.trust-item svg { width: 14px; height: 14px; min-width: 14px; color: var(--green); flex-shrink: 0; }

/* ---- Service cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(59,130,246,0.25); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.service-card .icon {
  width: 42px; height: 42px; background: var(--accent-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-card .icon:empty { width: 8px; height: 8px; min-height: 8px; border-radius: 50%; background: var(--accent); margin-bottom: 1.25rem; }
.service-card .icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-card h2, .service-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.625rem; }
.service-card p.card-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li { color: var(--text-muted); font-size: 0.825rem; padding: 0.3rem 0 0.3rem 1.1rem; position: relative; }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.service-card .card-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; font-size: 0.8rem; font-weight: 500; color: var(--accent); transition: gap var(--transition); }
.service-card .card-link:hover { gap: 0.5rem; }
.service-card.featured {
  border-color: rgba(59,130,246,0.3); grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(59,130,246,0.04), transparent 60%), var(--bg-card);
  box-shadow: inset 0 0 40px rgba(59,130,246,0.04);
}
.service-card.featured::before { transform: scaleX(1); height: 3px; }
.service-card.featured .icon {
  width: 50px; height: 50px; background: rgba(59,130,246,0.15); margin-bottom: 1.5rem;
}
.service-card.featured .icon svg { width: 26px; height: 26px; }
.service-card.featured:hover {
  border-color: rgba(59,130,246,0.5); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.12);
}
.service-card.featured ul li { padding: 0.45rem 0 0.45rem 1.25rem; line-height: 1.65; }
.service-card.featured ul li::before { width: 5px; height: 5px; box-shadow: 0 0 6px rgba(59,130,246,0.3); }
.service-card.msp { border-color: rgba(34,197,94,0.25); }
.service-card.msp::before { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.service-card.msp .icon { background: rgba(34,197,94,0.12); }
.service-card.msp .icon svg { color: var(--green); }
.service-card.msp:hover { border-color: rgba(34,197,94,0.45); box-shadow: 0 12px 40px rgba(34,197,94,0.08); }
.service-card.msp ul li::before { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.3); }

/* ---- Comparison Table ---- */
.table-wrapper { overflow-x: auto; margin-top: 1.5rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; color: var(--text); }
.comparison-table thead tr { border-bottom: 2px solid var(--border); }
.comparison-table th { padding: 0.75rem; font-weight: 600; color: var(--text-muted); }
.comparison-table th:first-child { text-align: left; }
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table th.highlight { color: var(--accent); font-weight: 700; }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table td { padding: 0.75rem; }
.comparison-table td:first-child { font-weight: 500; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .yes { color: var(--green); }

/* ---- Case Study Narrative ---- */
.case-study-narrative { margin: 1.5rem 0; padding: 1.25rem; background: rgba(59,130,246,0.04); border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.case-study-narrative p { margin-bottom: 0.75rem; }
.case-study-narrative p:last-child { margin-bottom: 0; }

/* Pricing navigation */
.pricing-tab-label { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem; }
.pricing-nav {
  display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem;
  padding: 0.375rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); width: fit-content; margin-left: auto; margin-right: auto;
}
.pricing-nav-btn {
  padding: 0.6rem 1.25rem; font-size: 0.825rem; font-weight: 600;
  color: var(--text-dim); text-decoration: none; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  border: none; background: none; cursor: pointer; font-family: inherit;
}
.pricing-nav-btn:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.pricing-nav-btn.active { color: var(--white); background: var(--accent); transition: all 0.2s ease; box-shadow: 0 1px 8px rgba(59,130,246,0.15); }
.pricing-nav-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Pricing model badges */
.pricing-model {
  display: inline-block; font-size: 0.675rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.3rem 0.65rem; border-radius: 4px; margin-top: 0.5rem;
}
.pricing-model.one-time { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.pricing-model.hybrid { background: rgba(139,92,246,0.1); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.25); }

/* MSP / AI pricing sections */
.msp-pricing-section {
  margin-top: 6rem; padding-top: 4rem; border-top: 1px solid var(--border);
  position: relative;
}
.msp-pricing-section::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.msp-pricing-section.as-tab { margin-top: 0; padding-top: 0; border-top: none; }
.msp-pricing-section.as-tab::before { display: none; }

/* ---- About page ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.about-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: border-color var(--transition); }
.about-section:hover { border-color: var(--border-hover); }
.about-section h2 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.about-section p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.about-section p + p { margin-top: 0.75rem; }
.about-section.full-width { grid-column: 1 / -1; }
.skills-list { display: flex; flex-wrap: wrap; gap: 0.375rem; list-style: none; }
.skills-list li {
  background: var(--accent-subtle); border: 1px solid rgba(59,130,246,0.12);
  border-radius: 6px; padding: 0.3rem 0.7rem; font-size: 0.775rem; font-weight: 500;
  color: #7da8e8; transition: border-color var(--transition);
}
.skills-list li:hover { border-color: rgba(59,130,246,0.3); }

/* ---- Stats row ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-card .stat-number { font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1.2; }
.stat-card .stat-label { display: block; font-size: 0.775rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-card h2 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.5rem; }
.contact-card p + .btn { margin-top: 1rem; }
.contact-card .response-time { font-size: 0.8rem; color: var(--text-dim); font-style: italic; }
.contact-links { padding: 0; }
.contact-links a { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-size: 0.875rem; transition: color var(--transition); text-decoration: none; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.contact-links a:last-child { border-bottom: none; }
.contact-links a:hover { color: var(--accent); }
.contact-links svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-dim); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text); }
.form-group label .required { color: var(--accent); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem; font-size: 0.875rem; color: var(--white);
  font-family: inherit; transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
  border-color: rgba(59,130,246,0.35); background: rgba(9,9,11,0.6);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(59,130,246,0.1);
}
.form-group select:hover, .form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
.response-info { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.response-info h3 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.response-info ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.response-info li {
  font-size: 0.825rem; color: var(--text-muted); padding: 0.4rem 0.5rem 0.4rem 1.25rem;
  position: relative; border-radius: 6px; transition: background var(--transition);
}
.response-info li:hover { background: rgba(59,130,246,0.04); }
.response-info li::before {
  content: ""; position: absolute; left: 0.5rem; top: 0.75em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.25);
}

/* Legal pages */
.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content li { color: var(--text-muted); font-size: 0.875rem; line-height: 1.8; margin-bottom: 0.25rem; }

/* ---- Portfolio / Case studies ---- */
.case-studies-grid { display: grid; gap: 1.25rem; margin-bottom: 3rem; }
.case-study {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  transition: border-color var(--transition);
}
.case-study:hover { border-color: var(--border-hover); }
.case-study-featured {
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 0 32px rgba(59,130,246,0.05);
  background: linear-gradient(135deg, rgba(59,130,246,0.03), transparent 50%), var(--bg-card);
}
.case-study-featured:hover { border-color: rgba(59,130,246,0.4); }
.case-study-info .tag, .case-study-info .case-study-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.75rem;
  background: rgba(59,130,246,0.1); padding: 0.3rem 0.7rem; border-radius: 6px;
  border: 1px solid rgba(59,130,246,0.2);
}
.case-study-info h2, .case-study-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.case-study-info p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.case-study-details h3, .case-study-details h4 { font-size: 0.725rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 0.6rem; }
.case-study-details ul { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.case-study-details ul li { color: var(--text-muted); font-size: 0.8rem; padding: 0.25rem 0 0.25rem 1rem; position: relative; }
.case-study-details ul li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 0.75rem; }
.result, .result-item { text-align: center; padding: 0.75rem; background: var(--accent-subtle); border-radius: 8px; }
.result .result-number, .result-item .result-number { font-size: 1.3rem; font-weight: 800; color: var(--accent); display: block; }
.result .result-label, .result-item .result-label { font-size: 0.675rem; color: var(--text-muted); margin-top: 0.125rem; display: block; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 32px rgba(59,130,246,0.08); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.675rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.875rem; border-radius: 20px;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.pricing-card.featured:hover { transform: translateY(-2px); }
.pricing-card h2, .pricing-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.pricing-card .price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .price-desc { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.75rem; }
.pricing-card ul { list-style: none; padding: 0; text-align: left; margin-bottom: 1.75rem; }
.pricing-card ul li { color: var(--text-muted); font-size: 0.8rem; padding: 0.4rem 0 0.4rem 1.25rem; position: relative; border-bottom: 1px solid rgba(255,255,255,0.03); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 6px; height: 6px; border-radius: 50%; border: 1.5px solid var(--accent); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; max-width: 540px; margin: 0 auto; line-height: 1.6; }

/* ---- FAQ ---- */
.faq-section { margin-top: 4rem; margin-bottom: 3rem; }
.faq-list { max-width: 660px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { font-size: 0.925rem; font-weight: 600; color: var(--white); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.1rem; color: var(--text-dim); flex-shrink: 0; }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }
.faq-item[open] summary::after { content: '\2212'; color: var(--accent); }
.faq-item .faq-answer { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; padding-right: 2rem; }

/* ---- Reading progress bar ---- */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 200; width: 0; transition: width 0.1s linear; pointer-events: none; }

/* ---- Blog ---- */
.blog-filter { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem; }
.blog-filter-btn { padding: 0.45rem 1rem; font-size: 0.775rem; font-weight: 600; color: var(--text-dim); background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; cursor: pointer; font-family: inherit; transition: color var(--transition), border-color var(--transition), background var(--transition); }
.blog-filter-btn:hover { color: var(--white); border-color: var(--border-hover); }
.blog-filter-btn.active { color: var(--white); background: var(--accent); border-color: var(--accent); }
.blog-filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1rem; margin-bottom: 3rem; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.blog-card .blog-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.blog-card .blog-date { font-size: 0.75rem; color: var(--text-dim); }
.blog-card .blog-tag { font-size: 0.675rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); }
.blog-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card h3 a { color: var(--white); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.blog-card .read-more { margin-top: 1rem; font-size: 0.8rem; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap var(--transition); }
.blog-card .read-more:hover { gap: 0.5rem; }

/* ---- Blog post ---- */
.blog-post { max-width: 680px; margin: 0 auto; }
.blog-post .post-header { margin-bottom: 2.5rem; }
.blog-post .post-header h1 { font-size: 2rem; font-weight: 800; color: var(--white); letter-spacing: -0.025em; margin-bottom: 0.75rem; line-height: 1.25; }
.blog-post .post-meta { display: flex; align-items: center; gap: 0.75rem; color: var(--text-dim); font-size: 0.8rem; flex-wrap: wrap; }
.blog-post .post-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-top: 2.5rem; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.blog-post .post-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-top: 2rem; margin-bottom: 0.5rem; }
.blog-post .post-content p { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post .post-content ul, .blog-post .post-content ol { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.blog-post .post-content li { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 0.375rem; }
.blog-post .post-content code { background: var(--accent-subtle); color: #7da8e8; padding: 0.125rem 0.375rem; border-radius: 4px; font-size: 0.875em; }
.blog-post .post-content blockquote { border-left: 2px solid var(--accent); padding: 0.75rem 1.25rem; margin: 1.5rem 0; background: var(--accent-subtle); border-radius: 0 8px 8px 0; }
.blog-post .post-content blockquote p { color: var(--text-muted); font-style: italic; margin-bottom: 0; }
.post-link { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(59,130,246,0.35); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.post-link:hover { text-decoration-color: var(--accent); }
.post-toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 1.5rem 0 2rem; }
.post-toc-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.post-toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.post-toc ol li { font-size: 0.875rem; }
.post-toc ol li a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
.post-toc ol li a:hover { color: var(--white); }

/* ---- Author bio ---- */
.author-bio { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
.author-bio-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-glow); border: 1px solid rgba(59,130,246,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.author-bio-text h3 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.author-bio-text p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.5rem; }

/* ---- CTA section ---- */
.cta-section {
  text-align: center; padding: 4rem 2rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  margin-top: 2rem; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-violet), var(--accent));
}
.cta-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.cta-section p { color: var(--text-muted); font-size: 0.925rem; margin-bottom: 1.75rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ---- Post CTA (blog) ---- */
.post-cta { margin-top: 2rem; padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.post-cta h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.375rem; }
.post-cta p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.related-posts { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.related-posts h4 { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.75rem; }
.related-posts ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.related-posts ul li a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.related-posts ul li a:hover { color: var(--accent); }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; font-size: 0.8rem; color: var(--text-dim); }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .nav-logo { font-size: 1.1rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.03em; display: inline-block; margin-bottom: 0.5rem; }
.footer-brand .nav-logo span { color: var(--accent); }
.footer-brand p { color: var(--text-dim); font-size: 0.8rem; line-height: 1.6; max-width: 260px; }
.footer-brand .footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-brand .footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-dim); transition: all var(--transition); }
.footer-brand .footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-brand .footer-social a svg { width: 14px; height: 14px; }
.footer-col h4 { font-size: 0.725rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.footer-col ul a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.725rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom--compact { border-top: none; padding-top: 0; }


/* ---- Status / 404 ---- */
.status-container { text-align: center; padding: 2rem 0; }
.status-container p { color: var(--text-muted); margin-bottom: 1.5rem; }
.status-container iframe { width: 100%; height: 600px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.error-page { text-align: center; padding: 6rem 0; }
.error-page .error-code { font-size: 5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; margin-bottom: 1rem; }
.error-page h1 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.error-page p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* ---- Checklist ---- */
.checklist-section { margin-bottom: 2.5rem; }
.checklist-section h2 { font-size: 1.25rem; margin-bottom: 1rem; color: #e5e7eb; }
.checklist-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer; font-size: 0.95rem; color: #d1d5db; line-height: 1.5; }
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 1.1rem; height: 1.1rem; accent-color: var(--accent); }
.checklist-item:has(input:checked) { color: var(--text-dim); text-decoration: line-through; }
.scoring-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.score-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: border-color var(--transition); }
.score-card:hover { border-color: var(--border-hover); }
.score-card .score-range { font-size: 1.5rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 0.25rem; }
.score-card .score-label { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Bundles ---- */
.bundles-section { margin: 3rem 0; }
.bundles-section .pricing-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.bundles-section .bundle-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }
.bundles-section .price { margin-top: 1rem; }
.pricing-learn-more { text-align: center; margin: 2rem 0; }
.pricing-learn-more > p { color: var(--text-muted); font-size: 0.85rem; }
.pricing-learn-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 0.75rem; }

/* Blog links list (about page) */
.blog-links-list { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-links-list .card-link { font-size: 0.9rem; }

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ai-highlight-inner { grid-template-columns: 1fr; }
  .ai-highlight-stats { flex-direction: row; justify-content: space-around; }
  .ai-highlight { padding: 2rem; }
  .features-grid, .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin-left: auto; margin-right: auto; }
  .case-study { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  nav .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(9,9,11,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 0.75rem 1.5rem; gap: 0.125rem;
  }
  nav .nav-links.open { z-index: 101; }
  nav .nav-links.open a { padding: 0.75rem 1rem; min-height: 44px; display: flex; align-items: center; }
  nav .hamburger { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0.75rem; }
  main { padding: 3rem 1.25rem; }
  .hero { padding: 2rem 0 1.5rem; }
  .hero .tagline { font-size: 1rem; margin-bottom: 1rem; }
  .btn-group { gap: 0.5rem; }
  .section-title { font-size: 2rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1rem; }
  .ai-highlight { padding: 1.5rem; }
  .ai-highlight-stats { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; }
  .footer-brand .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .pricing-intro { font-size: 0.8rem; }
  .best-for { font-size: 0.7rem; padding: 0.25rem 0.5rem; line-height: 1.2; }
  .blog-filter { gap: 0.3rem; }
  .services-clarifier { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .pricing-nav { width: 100%; overflow-x: auto; gap: 0.3rem; padding: 0.25rem; }
  .pricing-nav-btn { padding: 0.5rem 0.85rem; font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }
  .pricing-card { padding: 1.5rem; }
  .pricing-card .price { font-size: 2rem; }
  .blog-filter-btn { padding: 0.6rem 0.85rem; font-size: 0.8rem; min-height: 40px; display: inline-flex; align-items: center; }
  .checklist-item { padding: 0.85rem 0; }
  .checklist-item input[type="checkbox"] { width: 1.25rem; height: 1.25rem; }
  .footer-brand .footer-social a { width: 44px; height: 44px; }
  .footer-brand p { max-width: 100%; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.85rem; min-height: 44px; font-size: 1rem; }
  .faq-item { padding: 0.85rem 0; }
  .faq-item summary { font-size: 1rem; min-height: 44px; }
  .breadcrumbs { font-size: 0.85rem; }
}
@media print {
  nav, footer, .cta-section, .btn-group, .btn, .skip-link { display: none; }
  body { background: #fff; color: #111; }
  main { max-width: none; padding: 0; }
  .hero h1, .section-title, h2, h3 { color: #111; }
  a { color: #111; text-decoration: underline; }
  .checklist-item { color: #111; border-bottom-color: #ccc; }
  .checklist-section h2 { color: #111; }
  .score-card { border-color: #ccc; }
  .score-card .score-range { color: #111; }
  .score-card .score-label { color: #555; }
}

/* Series navigation */
.series-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.series-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.75rem 0;
}
.series-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.series-nav ul li a {
  color: var(--text-dim);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.series-nav ul li a:hover { color: var(--text); }
.series-nav ul li.current-post strong {
  color: var(--text);
  font-size: 0.9rem;
}

/* About page blog callout */
.about-blog-callout {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-blog-callout h2 { margin-bottom: 0.5rem; }

/* Portfolio at-a-glance callout */
.at-a-glance {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.at-a-glance .glance-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.at-a-glance ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.at-a-glance ul li {
  font-size: 0.875rem;
  color: var(--text-dim);
}
.at-a-glance ul li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

