/* AI Future Edge — Shared Stylesheet */
:root {
  --bg-dark: #0f1623;
  --bg-dark-2: #151d2e;
  --bg-light: #f8f7f4;
  --bg-warm: #faf9f6;
  --text-light: #e8e6e1;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --text-muted-light: #9ca3af;
  --accent: #e87a2f;
  --accent-glow: rgba(232, 122, 47, 0.15);
  --accent-subtle: #f0a060;
  --teal: #2bbcb3;
  --teal-glow: rgba(43, 188, 179, 0.1);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1120px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text-dark); line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* UTILITY */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 22, 35, 0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 0.55rem 1.3rem;
  border-radius: 6px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s;
}
.nav-cta:hover { background: #d06a20; transform: translateY(-1px); }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  background: var(--bg-dark);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,122,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,188,179,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}
.hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff; line-height: 1.15; max-width: 780px; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent-subtle); }
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted-light); max-width: 580px;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #fff; padding: 0.85rem 1.8rem;
  border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #d06a20; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,122,47,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-muted-light); padding: 0.85rem 1.8rem;
  border-radius: 8px; font-weight: 500; font-size: 0.95rem;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.hero-proof {
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 3rem; flex-wrap: wrap;
}
.hero-stat-num { font-size: 1.6rem; font-weight: 700; color: #fff; }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted-light); margin-top: 0.15rem; }

/* PROBLEM SECTION */
.problem {
  background: var(--bg-warm);
  padding: 6rem 0;
}
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.problem h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-dark);
}
.problem p { color: #444; font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.75; }
.problem-cards { display: flex; flex-direction: column; gap: 1rem; }
.problem-card {
  background: #fff; border-radius: 12px; padding: 1.5rem;
  border: 1px solid #e5e5e5;
  transition: all 0.2s;
}
.problem-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(232,122,47,0.08); }
.problem-card-stat { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.problem-card-text { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.5; }
.problem-card-context { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-top: 0.4rem; }

/* DIAGNOSTIC */
.diagnostic {
  background: var(--bg-dark);
  padding: 4.5rem 0;
  text-align: center;
}
.diagnostic-inner {
  max-width: 700px; margin: 0 auto;
}
.diagnostic p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--text-light); line-height: 1.55;
}
.diagnostic p span { color: var(--accent-subtle); }
.diagnostic .attr {
  font-family: var(--sans); font-style: normal; font-size: 0.85rem;
  color: var(--text-muted-light); margin-top: 1.2rem; display: block;
}

/* SECTION HEADERS */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* SERVICES — buyer situation cards */
.services {
  background: var(--bg-light);
  padding: 6rem 0;
}
.situation-cards { display: flex; flex-direction: column; gap: 2rem; }
.situation-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: all 0.3s;
}
.situation-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(232,122,47,0.08);
  transform: translateY(-2px);
}
.situation-card.card-build:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(43,188,179,0.08);
}
.situation-left {
  padding: 2.5rem;
  border-right: 1px solid #f0f0f0;
}
.situation-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.situation-quote::before {
  content: '\201C';
  color: var(--accent);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4rem;
  margin-right: 0.15rem;
}
.situation-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.situation-right {
  padding: 2.5rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.situation-service-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
  border-radius: 4px; margin-bottom: 0.85rem; width: fit-content;
}
.tag-orange { background: var(--accent-glow); color: var(--accent); }
.tag-teal { background: var(--teal-glow); color: var(--teal); }
.tag-indigo { background: rgba(99,102,241,0.1); color: #6366f1; }
.situation-service-name {
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem;
}
.situation-price {
  font-size: 0.88rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem;
}
.situation-service-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem;
}
.situation-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--accent);
  text-decoration: none; transition: gap 0.2s;
}
.situation-cta:hover { gap: 0.7rem; }
.situation-cta-teal { color: var(--teal); }

/* Retainer note strip */
.retainer-note {
  background: var(--bg-dark-2);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  border: 1px solid rgba(43,188,179,0.2);
}
.retainer-note-left { display: flex; align-items: center; gap: 1rem; }
.retainer-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(43,188,179,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.2rem; flex-shrink: 0;
}
.retainer-note h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.retainer-note p { color: var(--text-muted-light); font-size: 0.85rem; line-height: 1.5; }
.retainer-price { color: var(--teal); font-weight: 600; font-size: 0.88rem; white-space: nowrap; }

/* HOW IT WORKS */
.how {
  background: var(--bg-dark-2);
  padding: 6rem 0;
}
.how .section-header h2 { color: #fff; }
.how .section-header p { color: var(--text-muted-light); }
.how .section-eyebrow { color: var(--teal); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { text-align: center; padding: 1.5rem; }
.step-num {
  font-family: var(--serif); font-size: 3rem; color: var(--accent);
  line-height: 1; margin-bottom: 0.75rem; opacity: 0.7;
}
.step h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-muted-light); line-height: 1.6; }

/* ABOUT */
.about {
  background: var(--bg-warm);
  padding: 6rem 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.about h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.about p { color: #444; font-size: 1rem; margin-bottom: 1.2rem; line-height: 1.75; }
.about-location {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--teal); font-weight: 500;
  background: var(--teal-glow); padding: 0.4rem 0.9rem;
  border-radius: 20px; margin-bottom: 1.5rem;
}
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.cred {
  background: #fff; padding: 1.2rem; border-radius: 10px; border: 1px solid #e8e8e8;
}
.cred-num { font-size: 1.4rem; font-weight: 700; color: var(--bg-dark); }
.cred-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }

/* LOCATION STRIP */
.location-strip {
  background: var(--bg-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.location-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.location-strip-text h3 {
  color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem;
}
.location-strip-text p {
  color: var(--text-muted-light); font-size: 0.88rem;
}
.location-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.location-tag {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted-light); font-size: 0.78rem; font-weight: 500;
  padding: 0.3rem 0.75rem; border-radius: 20px;
}

/* CTA SECTION */
.cta-section {
  background: var(--bg-dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(232,122,47,0.07) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin-bottom: 1rem;
}
.cta-section p {
  color: var(--text-muted-light); font-size: 1.1rem;
  max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.cta-section .btn-primary { font-size: 1.05rem; padding: 1rem 2.2rem; }

/* FAQ */
.faq {
  background: var(--bg-light);
  padding: 5rem 0;
}
.faq-grid { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 1.5rem 0; }
.faq-q {
  font-weight: 600; font-size: 1.05rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 1rem; }

/* FOOTER */
footer {
  background: var(--bg-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-left { color: var(--text-muted-light); font-size: 0.85rem; }
.footer-location { color: var(--text-muted-light); font-size: 0.78rem; margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted-light); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* SERVICE PAGE STYLES */
.service-page-hero {
  background: var(--bg-dark);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.service-page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,122,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service-page-hero .container { position: relative; z-index: 1; }
.service-page-hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff; line-height: 1.15; max-width: 700px; margin-bottom: 1.2rem;
}
.service-page-hero h1 em { font-style: italic; color: var(--accent-subtle); }
.service-page-hero p {
  font-size: 1.1rem; color: var(--text-muted-light); max-width: 600px; line-height: 1.7;
}
.breadcrumb {
  font-size: 0.82rem; color: var(--text-muted-light); margin-bottom: 2rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* SERVICE DETAIL CONTENT */
.service-detail {
  background: var(--bg-warm);
  padding: 5rem 0;
}
.service-detail-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start;
}
.service-detail h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2; margin-bottom: 1.2rem; color: var(--text-dark);
}
.service-detail h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; margin-top: 2rem; color: var(--text-dark);
}
.service-detail p { color: #444; font-size: 1rem; margin-bottom: 1rem; line-height: 1.75; }
.service-detail ul {
  list-style: none; padding: 0; margin-bottom: 1.5rem;
}
.service-detail ul li {
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
  font-size: 0.95rem; color: #444; line-height: 1.6;
}
.service-detail ul li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.service-sidebar {
  background: #fff; border-radius: 14px; padding: 2rem;
  border: 1px solid #e8e8e8; position: sticky; top: 100px;
}
.service-sidebar h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark);
}
.service-sidebar .price-display {
  font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem;
}
.service-sidebar .price-note {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.service-sidebar .btn-primary { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.service-sidebar .btn-secondary { width: 100%; justify-content: center; border-color: #e0e0e0; color: var(--text-muted); }
.service-sidebar .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* SERVICES OVERVIEW GRID */
.services-overview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.service-overview-card {
  background: #fff; border-radius: 14px; padding: 2.2rem;
  border: 1px solid #e8e8e8; transition: all 0.3s; text-decoration: none; color: inherit;
  display: block;
}
.service-overview-card:hover {
  border-color: var(--accent); box-shadow: 0 8px 32px rgba(232,122,47,0.08);
  transform: translateY(-3px);
}
.service-overview-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.service-overview-card .price { font-size: 0.88rem; color: var(--accent); font-weight: 600; margin-bottom: 0.8rem; }
.service-overview-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-overview-card .card-link {
  font-size: 0.88rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.service-overview-card:hover .card-link { gap: 0.7rem; }

/* ABOUT PAGE */
.about-page-content {
  background: var(--bg-warm);
  padding: 5rem 0;
}
.about-page-content .about-prose {
  max-width: 720px;
}
.about-page-content .about-prose p {
  color: #444; font-size: 1.05rem; margin-bottom: 1.3rem; line-height: 1.8;
}
.about-page-content .about-prose h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2; margin-bottom: 1.2rem; margin-top: 2.5rem; color: var(--text-dark);
}

/* INSIGHTS / BLOG */
.insights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.insight-card {
  background: #fff; border-radius: 14px; padding: 2rem;
  border: 1px solid #e8e8e8; transition: all 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.insight-card:hover {
  border-color: var(--accent); box-shadow: 0 8px 32px rgba(232,122,47,0.08);
  transform: translateY(-2px);
}
.insight-card .tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem; display: block;
}
.insight-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); line-height: 1.35; }
.insight-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.insight-card .read-more {
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.3rem;
}

/* CONTACT */
.contact-content {
  background: var(--bg-warm);
  padding: 5rem 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-grid h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.contact-grid p { color: #444; font-size: 1rem; margin-bottom: 1.2rem; line-height: 1.75; }
.contact-method {
  background: #fff; border-radius: 12px; padding: 1.5rem;
  border: 1px solid #e8e8e8; margin-bottom: 1rem;
}
.contact-method h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-method a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-method a:hover { text-decoration: underline; }
.contact-method p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* BLOG / ARTICLE */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.breadcrumb ol { list-style: none; display: flex; gap: 0.4rem; align-items: center; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: 0.4rem; color: var(--text-muted-light); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.newsletter-block { max-width: 720px; margin: 0 auto; text-align: center; }
.article-hero-image { width: 100%; border-radius: 12px; margin: 2rem 0; }
.article-meta {
  font-size: 0.85rem; color: var(--text-muted-light);
  display: flex; gap: 1rem; align-items: center; margin-top: 1rem;
}
.article-meta .tag { margin-bottom: 0; }
.article-body {
  max-width: 720px; margin: 0 auto;
}
.article-body h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin: 2.5rem 0 1rem; color: var(--text-dark); }
.article-body h3 { font-weight: 700; font-size: 1.15rem; margin: 2rem 0 0.8rem; color: var(--text-dark); }
.article-body p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.3rem; color: #444; }
.article-body a { color: var(--accent); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body ul, .article-body ol { margin-bottom: 1.3rem; padding-left: 1.5rem; }
.article-body li { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 0.4rem; }
.article-body blockquote { border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-muted); }
.article-body pre { background: var(--bg-dark-2); color: var(--text-light); padding: 1.5rem; border-radius: 8px; overflow-x: auto; margin: 2rem 0; }
.article-body code { font-size: 0.9em; }
.video-embed-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  margin: 2rem 0; border-radius: 12px;
}
.video-embed-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; border-radius: 8px; }
.article-figure figcaption { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; text-align: center; }
.article-blockquote {
  border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--text-muted-light);
}
.article-blockquote cite { display: block; font-size: 0.85rem; margin-top: 0.75rem; font-style: normal; color: var(--text-muted); }
.article-cta-inline {
  background: var(--bg-dark-2); padding: 2.5rem; border-radius: 12px;
  text-align: center; margin: 2.5rem 0;
}
.article-cta-inline h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.6rem; }
.article-cta-inline p { color: var(--text-muted-light); margin-bottom: 1.2rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(15, 22, 35, 0.95);
    backdrop-filter: blur(16px);
    padding: 1rem 2rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; }
  .nav-links .nav-cta { text-align: center; margin-top: 0.5rem; }
  .mobile-menu-btn { display: block; }
  .problem-grid, .about-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-overview-grid, .insights-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-proof { gap: 2rem; }
  .situation-card { grid-template-columns: 1fr; }
  .situation-left { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .location-strip .container { flex-direction: column; align-items: flex-start; }
  .service-sidebar { position: static; }
}
@media (max-width: 600px) {
  .hero { padding: 8rem 0 4rem; }
  .service-page-hero { padding: 7rem 0 3rem; }
  .steps { grid-template-columns: 1fr; }
  .about-creds { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .retainer-note { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-animate] { opacity: 0; transform: translateY(24px); }
[data-animate].animated { animation: fadeUp 0.6s ease forwards; }
[data-animate].animated.delay-1 { animation-delay: 0.1s; }
[data-animate].animated.delay-2 { animation-delay: 0.2s; }
[data-animate].animated.delay-3 { animation-delay: 0.3s; }
[data-animate].animated.delay-4 { animation-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
  [data-animate].animated { animation: none; }
}
