/* ============================================================
   UMERIX GROWTH — PAGES.CSS
   Shared styles for all inner / service pages
   umerkhan.online
============================================================ */

/* ── RESET INHERITED FROM MAIN STYLE.CSS ── */

/* ── PAGE HERO ──────────────────────────────────────────── */
.sp-hero {
  padding-top: calc(var(--nav-height, 72px) + 64px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Breadcrumb */
.sp-breadcrumb {
  margin-bottom: 28px;
}

.sp-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.sp-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb a:hover { color: var(--accent); }

/* Hero label */
.sp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: var(--bg-secondary);
}

/* H1 */
.sp-hero-h1 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Sub */
.sp-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
}

/* Stats strip */
.sp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 20px;
}

.sp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-stat-num {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sp-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sp-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTAs */
.sp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── GENERAL SECTION ────────────────────────────────────── */
.sp-section {
  padding: 88px 0;
}

.sp-alt {
  background: var(--bg-secondary);
}

.sp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sp-container--narrow {
  max-width: 780px;
}

/* Section H2 */
.sp-section-h2 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Intro paragraph */
.sp-section-intro {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 52px;
}

/* ── PROBLEM GRID ───────────────────────────────────────── */
.sp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.sp-problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.sp-problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.sp-problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sp-problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── SOLUTION BLOCKS ────────────────────────────────────── */
.sp-solution-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-solution-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle, rgba(0,0,0,0.06));
  align-items: start;
}

.sp-solution-block:last-child { border-bottom: none; }

.sp-solution-num {
  font-family: var(--font-mono, monospace);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 4px;
}

.sp-solution-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sp-solution-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── PROCESS STEPS ──────────────────────────────────────── */
.sp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--border);
}

.sp-process-step {
  padding: 0 0 48px 40px;
  position: relative;
}

.sp-process-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
}

.sp-process-step:last-child { padding-bottom: 0; }

.sp-step-badge {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.sp-step-badge--2 { color: var(--accent-2, #059669); background: rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.2); }
.sp-step-badge--3 { color: #7c3aed; background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); }
.sp-step-badge--4 { color: var(--accent, #2563EB); background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.2); }
.sp-step-badge--5 { color: var(--accent-2, #059669); background: rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.2); }

.sp-process-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.sp-process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sp-step-output {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2, #059669);
  background: rgba(5,150,105,0.06);
  border-left: 3px solid var(--accent-2, #059669);
  padding: 8px 14px;
  border-radius: 0 8px 8px 0;
}

/* ── RESULTS GRID ───────────────────────────────────────── */
.sp-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.sp-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.sp-result-card--featured {
  background: var(--gradient-subtle, rgba(37,99,235,0.06));
  border-color: var(--accent, #2563EB);
}

.sp-result-metric {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.sp-result-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.sp-result-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CASE STUDY ─────────────────────────────────────────── */
.sp-case-study {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.sp-cs-label {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sp-cs-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.sp-cs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.sp-cs-block {
  border-radius: 12px;
  padding: 20px;
}

.sp-cs-block--before {
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.15);
}

.sp-cs-block--after {
  background: rgba(5,150,105,0.05);
  border: 1px solid rgba(5,150,105,0.2);
}

.sp-cs-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--error, #DC2626);
  margin-bottom: 12px;
}

.sp-cs-tag--after { color: var(--success, #059669); }

.sp-cs-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sp-cs-block ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.sp-cs-block--before ul li::before { content: '✗'; position: absolute; left: 0; color: var(--error, #DC2626); font-size: 11px; }
.sp-cs-block--after ul li::before { content: '✓'; position: absolute; left: 0; color: var(--success, #059669); font-size: 11px; }

.sp-cs-arrow {
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
}

.sp-cs-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── WHO IT'S FOR ───────────────────────────────────────── */
.sp-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sp-who-col {
  border-radius: 16px;
  padding: 32px 28px;
}

.sp-who-col--yes {
  background: rgba(5,150,105,0.05);
  border: 1px solid rgba(5,150,105,0.2);
}

.sp-who-col--no {
  background: rgba(220,38,38,0.03);
  border: 1px solid rgba(220,38,38,0.12);
}

.sp-who-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.sp-who-title--yes { color: var(--success, #059669); }
.sp-who-title--no { color: var(--error, #DC2626); }

.sp-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-who-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sp-who-col--yes .sp-who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success, #059669);
  font-weight: 700;
}

.sp-who-col--no .sp-who-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--error, #DC2626);
  font-weight: 700;
}

/* ── FAQ ────────────────────────────────────────────────── */
.sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.sp-faq-item:last-child { border-bottom: none; }

.sp-faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.sp-faq-a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.sp-cta-section {
  padding: 96px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sp-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sp-cta-label {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2, #059669);
  margin-bottom: 16px;
  font-weight: 600;
}

.sp-cta-h2 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.sp-cta-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.sp-cta-btn {
  margin-bottom: 28px;
}

.sp-cta-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.sp-cta-fine {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── RELATED SERVICES ───────────────────────────────────── */
.sp-related {
  padding: 72px 0;
  background: var(--bg-primary);
}

.sp-related-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  text-align: center;
}

.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-related-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.sp-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sp-related-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.sp-related-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-related-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sp-related-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .sp-hero-container,
  .sp-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sp-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-cs-grid {
    grid-template-columns: 1fr;
  }

  .sp-cs-arrow { display: none; }

}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {

  .sp-hero {
    padding-top: calc(var(--nav-height, 64px) + 36px);
    padding-bottom: 56px;
  }

  .sp-hero-container,
  .sp-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sp-hero-h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .sp-hero-sub { font-size: 15px; }

  .sp-hero-stats {
    gap: 16px;
    padding: 16px 18px;
    width: 100%;
    justify-content: space-between;
  }

  .sp-stat-divider { display: none; }

  .sp-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .sp-hero-ctas .btn-primary,
  .sp-hero-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .sp-section { padding: 64px 0; }

  .sp-section-h2 { font-size: clamp(24px, 6.5vw, 36px); }

  .sp-section-intro { margin-bottom: 36px; font-size: 15px; }

  .sp-problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sp-solution-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .sp-solution-num {
    font-size: 28px;
  }

  .sp-process-steps {
    padding-left: 24px;
  }

  .sp-process-step { padding-left: 24px; }

  .sp-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sp-result-card { padding: 20px 16px; }

  .sp-case-study { padding: 24px 20px; }

  .sp-who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sp-who-col { padding: 24px 20px; }

  .sp-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sp-cta-section { padding: 64px 0; }

  .sp-cta-badges {
    gap: 10px;
    font-size: 13px;
  }

}


/* ════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {

  .sp-hero-h1 { font-size: clamp(26px, 7.5vw, 34px); }

  .sp-hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sp-results-grid {
    grid-template-columns: 1fr;
  }

  .sp-related-grid {
    grid-template-columns: 1fr;
  }

  .sp-faq-q { font-size: 15px; }

}

/* ============================================================
   PAGES — FORCE LIGHT MODE + NAV FIX
   All service pages default to light theme
   Override dark defaults from main style.css
============================================================ */

/* Force light mode on all service pages */
html, body {
  background-color: #FFFFFF !important;
  color: #0F172A;
}

/* Fix navbar on service pages — white background always */
.navbar {
  background: rgba(255, 255, 255, 0.0);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
}

/* Nav text dark on light bg */
.navbar.scrolled .nav-link {
  color: #334155;
}

.navbar.scrolled .nav-link:hover {
  color: #0F172A;
}

/* Nav CTA on light bg */
.navbar.scrolled .nav-cta {
  color: #0F172A !important;
  border-color: rgba(37,99,235,0.25);
}

.navbar.scrolled .nav-cta:hover {
  background: linear-gradient(135deg, #2563EB, #059669);
  color: #fff !important;
  border-color: transparent;
}

/* Hamburger lines dark on light */
.ham-line {
  background: #0F172A;
}

/* Mobile menu — light version */
.mobile-menu {
  background: rgba(255, 255, 255, 0.98) !important;
}

.mobile-nav-link {
  color: #334155 !important;
}

.mobile-nav-link:hover {
  color: #0F172A !important;
}

/* Section backgrounds */
.sp-alt {
  background: #F8FAFC;
}

.sp-hero {
  background: #FFFFFF;
}

/* Cards light */
.sp-problem-card,
.sp-result-card,
.sp-case-study,
.sp-who-col--yes,
.sp-who-col--no,
.sp-related-card,
.sp-hero-stats {
  background: #FFFFFF;
}

.sp-problem-card h3,
.sp-result-card,
.sp-faq-q,
.sp-section-h2,
.sp-hero-h1,
.sp-solution-content h3,
.sp-process-step h3,
.sp-cs-title,
.sp-who-title,
.sp-cta-h2,
.sp-related-card h3,
.sp-related-title,
.sp-result-label {
  color: #0F172A;
}

.sp-problem-card p,
.sp-section-intro,
.sp-solution-content p,
.sp-process-step p,
.sp-faq-a,
.sp-cta-sub,
.sp-related-card p,
.sp-result-desc,
.sp-cs-disclaimer,
.sp-who-list li {
  color: #334155;
}

/* CTA section light */
.sp-cta-section {
  background: #F0F4FF;
}

/* Footer */
.footer {
  background: #F1F5F9 !important;
  border-top: 1px solid rgba(37,99,235,0.12) !important;
}

.footer-col-title,
.footer-copyright,
.footer-built-by,
.footer-tagline {
  color: #334155;
}

.footer-link { color: #64748B; }
.footer-link:hover { color: #2563EB; }
.footer-link--cta { color: #2563EB !important; }

.footer-divider {
  background: rgba(37,99,235,0.1);
}

/* Label code light */
.label-code {
  background: rgba(37,99,235,0.06) !important;
  border-color: rgba(37,99,235,0.2) !important;
  color: #2563EB !important;
}


/* ============================================================
   NAVBAR DROPDOWN — Services menu
============================================================ */
.nav-item { position: relative; }

.nav-dropdown-arrow {
  font-size: 11px;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-item--dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  list-style: none;
  z-index: 999;
}

.nav-item--dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background: rgba(37,99,235,0.07);
  color: #2563EB;
}

/* Mobile sub-links */
.mobile-link-sub { padding-left: 20px; }

.mobile-nav-link--sub {
  font-size: 18px !important;
  color: rgba(100,116,139,0.9) !important;
}


/* ============================================================
   ABOUT PAGE — Specific components
============================================================ */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.about-story-body p {
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
}

.about-story-body strong { color: #0F172A; }

/* Profile card */
.about-profile-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}

.about-profile-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #F1F5F9;
}

.about-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-profile-info {
  padding: 24px;
}

.about-profile-name {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.about-profile-role {
  font-size: 14px;
  color: #2563EB;
  font-weight: 500;
  margin-bottom: 2px;
}

.about-profile-company {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 16px;
}

.about-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.about-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.07);
  color: #2563EB;
  border: 1px solid rgba(37,99,235,0.15);
}

.about-profile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-profile-link {
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.about-profile-link:hover { color: #2563EB; }

/* Markets grid */
.about-markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.about-market-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
}

.about-market-flag {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.about-market-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.about-market-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

/* Industries */
.about-industries-label {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-industry-tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F8FAFC;
  color: #334155;
  border: 1px solid rgba(0,0,0,0.08);
}


/* ============================================================
   CONTACT PAGE — Specific components
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 20px;
  padding: 36px 32px;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.cf-label {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.cf-required { color: #2563EB; }

.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 14px;
  color: #0F172A;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

.cf-input:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: #FFFFFF;
}

.cf-select { cursor: pointer; }
.cf-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.cf-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 15px;
  padding: 15px 24px;
}

.cf-fine {
  font-size: 12px;
  color: #94A3B8;
  text-align: center;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 14px;
  padding: 22px;
}

.contact-info-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

.contact-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  color: #2563EB;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-step strong { color: #0F172A; font-weight: 600; display: block; }
.contact-step span { font-size: 12px; color: #94A3B8; }

.contact-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-includes-list li {
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

.contact-info-text {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 6px;
}

.contact-email-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  word-break: break-all;
}

.contact-email-link:hover { text-decoration: underline; }

.contact-trust-strip {
  display: flex;
  gap: 0;
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.contact-trust-item {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid rgba(37,99,235,0.1);
}

.contact-trust-item:last-child { border-right: none; }

.contact-trust-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.contact-trust-label {
  display: block;
  font-size: 10px;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ============================================================
   RESPONSIVE — Tablet 1024px
============================================================ */
@media (max-width: 1024px) {

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-profile-card {
    position: static;
    max-width: 420px;
  }

  .about-markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-trust-strip {
    grid-column: 1 / -1;
  }

}


/* ============================================================
   RESPONSIVE — Mobile 768px
============================================================ */
@media (max-width: 768px) {

  .about-profile-card { max-width: 100%; }

  .about-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-market-card { padding: 18px 14px; }

  .contact-form-wrap { padding: 24px 18px; }

  .cf-row { grid-template-columns: 1fr; gap: 0; }

  .contact-sidebar { grid-template-columns: 1fr; }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    display: block;
  }

}


/* ============================================================
   RESPONSIVE — Small mobile 480px
============================================================ */
@media (max-width: 480px) {

  .about-markets-grid { grid-template-columns: 1fr; }

  .about-market-card { text-align: left; display: flex; gap: 14px; align-items: flex-start; }

  .about-market-flag { margin-bottom: 0; font-size: 22px; }

}


/* ============================================================
   RESULTS PAGE — Case Study Components
============================================================ */

/* Stats grid */
.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.results-stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.results-stat-card--featured {
  border-color: #2563EB;
  background: rgba(37,99,235,0.03);
}

.results-stat-num {
  font-family: var(--font-display,'Playfair Display',Georgia,serif);
  font-size: clamp(32px,4vw,48px);
  font-weight: 900;
  background: linear-gradient(135deg,#2563EB,#059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.results-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  display: block;
}

.results-stat-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

/* Case study blocks */
.case-study-block {
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.case-study-block:last-of-type { margin-bottom: 0; }

.cs-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(37,99,235,0.08);
  background: #F8FAFC;
}

.cs-tag {
  font-family: var(--font-mono,monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 8px;
}

.cs-title {
  font-size: clamp(17px,2vw,22px);
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-meta span {
  font-size: 12px;
  color: #64748B;
  background: #FFFFFF;
  border: 1px solid rgba(37,99,235,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 28px 32px;
  align-items: center;
}

.cs-before,
.cs-after {
  padding: 20px;
  border-radius: 12px;
}

.cs-before {
  background: rgba(220,38,38,0.03);
  border: 1px solid rgba(220,38,38,0.12);
}

.cs-after {
  background: rgba(5,150,105,0.04);
  border: 1px solid rgba(5,150,105,0.18);
}

.cs-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cs-col-label--before { color: #DC2626; }
.cs-col-label--after  { color: #059669; }

.cs-before ul,
.cs-after ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-before ul li,
.cs-after ul li {
  font-size: 13px;
  color: #334155;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.cs-before ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-size: 11px;
  font-weight: 700;
}

.cs-after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
}

.cs-arrow {
  font-size: 28px;
  color: #94A3B8;
  text-align: center;
  padding: 0 16px;
  flex-shrink: 0;
}

/* Highlight row */
.cs-highlight-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid rgba(37,99,235,0.08);
}

.cs-highlight {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(37,99,235,0.08);
}

.cs-highlight:last-child { border-right: none; }

.cs-highlight-num {
  display: block;
  font-family: var(--font-display,'Playfair Display',Georgia,serif);
  font-size: clamp(22px,2.5vw,30px);
  font-weight: 900;
  background: linear-gradient(135deg,#2563EB,#059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.cs-highlight-label {
  font-size: 11px;
  color: #94A3B8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.results-disclaimer {
  font-size: 12px;
  color: #94A3B8;
  font-style: italic;
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  border-top: 1px solid rgba(37,99,235,0.08);
}

/* Responsive */
@media (max-width:1024px) {
  .results-stats-grid { grid-template-columns: repeat(2,1fr); }
  .cs-grid { grid-template-columns: 1fr; gap: 16px; }
  .cs-arrow { display: none; }
  .cs-highlight-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:768px) {
  .results-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cs-header { padding: 20px; }
  .cs-grid { padding: 20px; }
  .cs-highlight-row { grid-template-columns: repeat(2,1fr); }
  .cs-highlight { padding: 14px 10px; }
}

@media (max-width:480px) {
  .results-stats-grid { grid-template-columns: 1fr; }
  .cs-highlight-num { font-size: 22px; }
}