@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #09090b;
  --bg-card: #111114;
  --border: #1c1c22;
  --border-hover: rgba(59,130,246,0.5);
  --text: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --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;
  --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: #60a5fa; }
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) {
  *, *::before, *::after { animation: none !important; transition: none !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); }
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: 800px; 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; }
.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; }

/* ---- 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(300px, 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), #818cf8);
  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; }

/* ---- 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 { list-style: none; padding: 0; }
.contact-links li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.contact-links li:last-child { border-bottom: none; }
.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; }
.contact-links a:hover { color: var(--accent); }
.contact-links svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-dim); }

/* ---- 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-info .tag, .case-study-info .case-study-tag {
  display: inline-block; font-size: 0.675rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent); margin-bottom: 0.75rem;
}
.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(3, 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[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; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 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; }

/* ---- 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), #818cf8, 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; }

/* ---- 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; }

/* Legacy compat */
footer .footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer .footer-links { display: flex; gap: 1.5rem; list-style: none; }
footer .footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color var(--transition); }
footer .footer-links a:hover { color: var(--white); }

/* ---- 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; }

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

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid, .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; 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 a { padding: 0.6rem 0.75rem; }
  nav .hamburger { display: block; }
  main { padding: 3rem 1.25rem; }
  .hero { padding: 3rem 0 2rem; }
  .section-title { font-size: 2rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1rem; }
  .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; }
}
@media print {
  nav, footer, .cta-section, .btn-group { display: none; }
  body { background: #fff; color: #000; }
  main { max-width: none; padding: 0; }
  .hero h1, .section-title, h2, h3 { color: #000; }
  a { color: #000; text-decoration: underline; }
}
