/*
Theme Name: AdSnipper
Theme URI: https://adsnipper.com
Description: Ad Snipper — Hire VAs, Marketers, Creatives & AI Engineers from $5/hr. Custom WordPress theme.
Version: 4.0
Author: AdSnipper
Author URI: https://adsnipper.com
Text Domain: adsnipper
*/

/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --blue: #1766FF;
  --blue-light: #5B9BFF;
  --blue-glow: rgba(23,102,255,0.35);
  --blue-bg: rgba(23,102,255,0.08);
  --blue-bg2: rgba(23,102,255,0.12);
  --dark: #0D1117;
  --dark-el: #161B22;
  --dark-border: #21262D;
  --dark2: #0A0E14;
  --light: #FFFFFF;
  --light-alt: #F9FAFB;
  --light-border: #E5E7EB;
  --light-border2: #D1D5DB;
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light-heading: #FFFFFF;
  --text-light-body: #E6EDF3;
  --text-light-muted: #8B949E;
  --green: #10B981;
  --red: #EF4444;
  --orange: #F59E0B;
  --font: 'Helvetica Now Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 40px -8px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
@font-face { font-family: 'Helvetica Now Display'; src: url('fonts/HelveticaNowDisplay-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Helvetica Now Display'; src: url('fonts/HelveticaNowDisplay-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Helvetica Now Display'; src: url('fonts/HelveticaNowDisplay-ExtraBold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text-body); background: var(--light); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 3px; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.section-light { background: var(--light); color: var(--text-body); }
.section-light-alt { background: var(--light-alt); color: var(--text-body); }
.section-dark { background: var(--dark); color: var(--text-light-body); }
.section-dark2 { background: var(--dark2); color: var(--text-light-body); }
.section-blue { background: var(--blue); color: #fff; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.eyebrow-light { color: var(--blue); }
.eyebrow-dark { color: var(--blue-light); }
.overline { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; }
.heading-light { color: var(--text-heading); }
.heading-dark { color: var(--text-light-heading); }
.section-heading { font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: -0.02em; }
.section-subtext { font-size: 18px; color: var(--text-light-muted); line-height: 1.65; max-width: 580px; margin-top: 16px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-sm); border: none;
  cursor: pointer; transition: all 200ms ease; text-decoration: none; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2275FF; box-shadow: 0 0 24px var(--blue-glow); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: #F0F4FF; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--text-heading); border: 1px solid var(--light-border2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-dark { background: transparent; color: var(--text-light-body); border: 1px solid var(--dark-border); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue-light); }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-lg { font-size: 17px; padding: 16px 36px; }

/* ═══════════════════════════════════════════
   FADE IN (progressive enhancement)
   .fi elements are visible by default.
   JS adds .fi-ready to <html>, which enables the animation.
   If JS fails, all content stays visible.
═══════════════════════════════════════════ */
html.fi-ready .fi { opacity: 0; transform: translateY(20px); transition: opacity 500ms cubic-bezier(.16,1,.3,1), transform 500ms cubic-bezier(.16,1,.3,1); }
html.fi-ready .fi.v { opacity: 1; transform: translateY(0); }
html.fi-ready .fi-d1 { transition-delay: 60ms; } html.fi-ready .fi-d2 { transition-delay: 120ms; } html.fi-ready .fi-d3 { transition-delay: 180ms; }
html.fi-ready .fi-d4 { transition-delay: 240ms; } html.fi-ready .fi-d5 { transition-delay: 300ms; } html.fi-ready .fi-d6 { transition-delay: 360ms; }
html.fi-ready .fi-d7 { transition-delay: 420ms; }
@media(prefers-reduced-motion:reduce){ .fi { transition:none !important; opacity:1 !important; transform:none !important; } }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 300ms;
}
.navbar.scrolled { border-bottom-color: var(--light-border); box-shadow: var(--shadow-sm); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 26px; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-link { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 200ms; }
.navbar-link:hover { color: var(--text-heading); }

/* Navbar dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 200ms; padding: 0; cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--text-heading); }
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform 200ms; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  pointer-events: none; opacity: 0; transform: translateX(-50%) translateY(-8px);
  transition: opacity 200ms, transform 200ms;
}
.nav-dropdown.open .nav-dropdown-panel { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown-inner {
  width: 260px; background: var(--light); border: 1px solid var(--light-border);
  border-radius: 12px; padding: 6px; box-shadow: var(--shadow-xl);
}
.nav-dropdown-item {
  display: block; padding: 10px 14px; font-size: 14px; font-weight: 400;
  color: var(--text-muted); border-radius: 8px; transition: color 150ms, background 150ms;
}
.nav-dropdown-item:hover { color: var(--text-heading); background: var(--light-alt); }

.navbar-cta { display: flex; align-items: center; gap: 0.75rem; }
.navbar-mobile { display: none; padding: 0.5rem; color: var(--text-heading); }
.navbar-mobile svg { width: 24px; height: 24px; }

@media(max-width:1024px) {
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .navbar-mobile { display: flex; }
}

/* Mobile Menu */
#as-mobile-menu { display: none; }
#as-mobile-menu.open { display: block; }
.mobile-menu-inner {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 2rem 2rem; overflow-y: auto; z-index: 99;
}
.mobile-nav-link,
.mobile-solutions-trigger {
  display: block; padding: 0.85rem 0; font-size: 16px; font-weight: 500;
  color: var(--text-muted); transition: color 200ms; width: 100%; text-align: left;
  border-bottom: 1px solid var(--light-border);
}
.mobile-nav-link:hover, .mobile-solutions-trigger:hover { color: var(--text-heading); }
.mobile-solutions-trigger { display: flex; justify-content: space-between; align-items: center; }
.mobile-solutions-trigger svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform 200ms; }
.mobile-solutions-trigger.open svg { transform: rotate(180deg); }
#as-mobile-hire { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 250ms, opacity 250ms; }
#as-mobile-hire.open { max-height: 300px; opacity: 1; }
.mobile-sub-link { display: block; padding: 0.5rem 0 0.5rem 1.25rem; font-size: 15px; color: var(--text-muted); transition: color 200ms; }
.mobile-sub-link:hover { color: var(--text-heading); }
.mobile-cta-wrap { padding-top: 1.5rem; }
.mobile-cta-wrap .btn { width: 100%; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #F0F4FF 0%, #fff 60%);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow {
  font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-eyebrow span { color: var(--blue); font-weight: 600; }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 54px); font-weight: 700; color: var(--text-heading);
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px;
}
.hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 16px; }
.hero-trust { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* Dashboard mockup */
.hero-visual { position: relative; }
.dash {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); overflow: hidden; position: relative;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--light-border); background: var(--light-alt);
}
.dash-header-left { display: flex; align-items: center; gap: 10px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot-r { background: #EF4444; } .dash-dot-y { background: #F59E0B; } .dash-dot-g { background: #10B981; }
.dash-title { font-size: 13px; font-weight: 600; color: var(--text-heading); }
.dash-body { padding: 20px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.dash-metric { background: var(--light-alt); border: 1px solid var(--light-border); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.dash-metric-val { font-size: 22px; font-weight: 700; color: var(--blue); }
.dash-metric-lbl { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.dash-table { width: 100%; }
.dash-table-head {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 8px;
  padding: 8px 12px; font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--light-border);
}
.dash-table-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 8px;
  padding: 10px 12px; font-size: 13px; border-bottom: 1px solid var(--light-border); transition: background 200ms;
}
.dash-table-row:last-child { border-bottom: none; }
.dash-table-row:hover { background: var(--light-alt); }
.dash-name { font-weight: 600; color: var(--text-heading); display: flex; align-items: center; gap: 8px; }
.dash-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue-bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--blue); flex-shrink: 0;
}
.dash-role { color: var(--text-muted); }
.dash-rate { font-weight: 600; color: var(--text-heading); }
.dash-status { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--green); }
.dash-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Floating overlay cards */
.dash-float {
  position: absolute; top: -20px; right: -30px;
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); padding: 16px; width: 200px; z-index: 2;
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.dash-float-badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600;
  color: var(--green); background: rgba(16,185,129,0.1); padding: 3px 8px; border-radius: 99px; margin-bottom: 8px;
}
.dash-float-name { font-size: 15px; font-weight: 700; color: var(--text-heading); margin-bottom: 2px; }
.dash-float-role { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.dash-float-price { font-size: 14px; font-weight: 700; color: var(--blue); }
.dash-float-2 {
  position: absolute; bottom: -16px; left: -24px;
  background: var(--dark); color: var(--text-light-body); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); padding: 14px 18px; z-index: 2; width: 190px;
  animation: float-card 4s ease-in-out infinite 2s;
}
.dash-float-2-val { font-size: 28px; font-weight: 700; color: var(--green); }
.dash-float-2-lbl { font-size: 12px; color: var(--text-light-muted); }

/* ═══════════════════════════════════════════
   LOGO TICKER
═══════════════════════════════════════════ */
.ticker { padding: 36px 0; border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); background: var(--light-alt); overflow: hidden; }
.ticker-label { text-align: center; font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.ticker-track { overflow: hidden; position: relative; }
.ticker-track::before, .ticker-track::after { content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2; }
.ticker-track::before { left:0; background:linear-gradient(to right,var(--light-alt),transparent); }
.ticker-track::after { right:0; background:linear-gradient(to left,var(--light-alt),transparent); }
@keyframes ticker-scroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.ticker-inner { display:flex; align-items:center; gap:3rem; width:max-content; animation:ticker-scroll 35s linear infinite; }
.ticker-item { font-size: 18px; font-weight: 700; color: var(--text-heading); opacity: 0.25; white-space: nowrap; transition: opacity 200ms; padding: 0 1rem; }
.ticker-item:hover { opacity: 0.6; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar { padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stats-grid .s-val { font-size: clamp(36px,4vw,52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.section-dark .s-val { color: var(--blue-light); }
.section-light .s-val { color: var(--blue); }
.stats-grid .s-lbl { font-size: 14px; }
.section-dark .s-lbl { color: var(--text-light-muted); }

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem { padding: 100px 0; }
.problem h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; max-width: 640px; margin-bottom: 20px; }
.problem-body { font-size: 17px; line-height: 1.7; max-width: 640px; margin-bottom: 40px; color: var(--text-muted); }
.problem-body strong { color: var(--text-heading); font-weight: 600; }
.problem-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.problem-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 28px; transition: border-color 200ms, box-shadow 200ms;
}
.problem-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg); }
.problem-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.problem-card h3 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════ */
.solution { padding: 100px 0; position: relative; }
.solution h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.02em; max-width: 700px; margin-bottom: 16px; }
.solution-sub { font-size: 17px; line-height: 1.65; max-width: 660px; margin-bottom: 56px; color: var(--text-light-muted); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.solution-stat-block { text-align: center; }
.solution-stat-val { font-size: clamp(72px,10vw,120px); font-weight: 700; color: var(--blue); letter-spacing: -0.04em; line-height: 1; }
.solution-stat-unit { font-size: clamp(28px,3.5vw,48px); font-weight: 700; color: var(--blue-light); }
.solution-stat-desc { font-size: 15px; color: var(--text-light-muted); margin-top: 12px; max-width: 320px; margin-left: auto; margin-right: auto; }
.solution-features { display: flex; flex-direction: column; gap: 1.5rem; }
.sol-feature {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 24px; transition: border-color 200ms;
}
.sol-feature:hover { border-color: var(--blue); }
.sol-feature h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.sol-feature h3 svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.sol-feature p { font-size: 14px; color: var(--text-light-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FOUR ROLES
═══════════════════════════════════════════ */
.roles { padding: 100px 0; }
.roles-header { text-align: center; margin-bottom: 56px; }
.roles-header h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.02em; margin-bottom: 12px; }
.roles-header p { font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.role-card {
  border: 1px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms; cursor: pointer; background: var(--light);
}
.role-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg); }
.role-card.expanded { border-color: var(--blue); }
.role-card-top { padding: 28px; }
.role-card-tag {
  display: inline-flex; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px; margin-bottom: 14px;
}
.tag-purple { background: #EDE9FE; color: #7C3AED; }
.tag-green { background: #D1FAE5; color: #059669; }
.tag-orange { background: #FEF3C7; color: #D97706; }
.tag-blue { background: #DBEAFE; color: #2563EB; }
.role-card-title { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.role-card-tagline { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 12px; }
.role-card-pricing { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 12px; }
.role-price-pill {
  font-size: 12px; font-weight: 600; background: var(--light-alt); border: 1px solid var(--light-border);
  border-radius: 99px; padding: 4px 12px; color: var(--text-heading);
}
.role-price-pill.primary { background: var(--blue-bg2); border-color: rgba(23,102,255,0.2); color: var(--blue); }
.role-card-toggle { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }
.role-card-toggle svg { transition: transform 200ms; }
.role-card.expanded .role-card-toggle svg { transform: rotate(180deg); }
.role-card-detail { max-height: 0; overflow: hidden; transition: max-height 400ms ease; border-top: 1px solid transparent; }
.role-card.expanded .role-card-detail { max-height: 500px; border-top-color: var(--light-border); }
.role-card-detail-inner { padding: 20px 28px; background: var(--light-alt); }
.role-card-detail-inner h4 { font-size: 13px; font-weight: 600; color: var(--text-heading); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.role-card-detail-inner p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.role-tools { display: flex; flex-wrap: wrap; gap: 6px; }
.role-tool { font-size: 11px; font-weight: 500; background: var(--light); border: 1px solid var(--light-border); padding: 3px 10px; border-radius: 99px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   COST COMPARISON
═══════════════════════════════════════════ */
.cost { padding: 100px 0; }
.cost h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.02em; text-align: center; margin-bottom: 10px; }
.cost-sub { text-align: center; font-size: 17px; color: var(--text-light-muted); margin-bottom: 48px; }
.cost-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); overflow: hidden;
}
.cost-table th { padding: 14px 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; text-align: left; color: var(--text-light-muted); background: var(--dark2); border-bottom: 1px solid var(--dark-border); }
.cost-table td { padding: 16px 20px; font-size: 15px; border-bottom: 1px solid var(--dark-border); color: var(--text-light-body); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table .highlight-row { background: rgba(23,102,255,0.06); }
.cost-table .highlight-row td { color: #fff; font-weight: 600; }
.cost-table .highlight-row td:first-child { color: var(--blue); }
.cost-table .rate-cell { font-weight: 700; font-size: 16px; }
.cost-table .highlight-row .rate-cell { color: var(--green); }
.cost-closing { text-align: center; font-size: 15px; color: var(--text-light-muted); margin-top: 24px; font-weight: 500; }

/* ═══════════════════════════════════════════
   DIFFERENTIATORS
═══════════════════════════════════════════ */
.diffs { padding: 100px 0; }
.diffs-header { text-align: center; margin-bottom: 56px; }
.diffs-header h2 { font-size: clamp(28px,3.5vw,40px); letter-spacing: -0.02em; margin-bottom: 10px; }
.diffs-header p { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.diffs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.diff-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: all 200ms;
}
.diff-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.diff-card-icon { font-size: 24px; margin-bottom: 12px; }
.diff-card h3 { font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   DUAL TABS
═══════════════════════════════════════════ */
.dual { padding: 100px 0; }
.dual-header { text-align: center; margin-bottom: 48px; }
.dual-header h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.02em; margin-bottom: 10px; }
.dual-header p { font-size: 16px; color: var(--text-light-muted); max-width: 580px; margin: 0 auto; }
.dual-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 40px;
  background: var(--dark-el); border-radius: var(--radius-sm); padding: 4px;
  max-width: 500px; margin-left: auto; margin-right: auto; border: 1px solid var(--dark-border);
}
.dual-tab {
  flex: 1; padding: 12px 20px; font-size: 14px; font-weight: 600; border-radius: 6px;
  color: var(--text-light-muted); transition: all 200ms; text-align: center;
}
.dual-tab.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(23,102,255,0.3); }
.dual-tab:not(.active):hover { color: #fff; }
.dual-panel { display: none; }
.dual-panel.active { display: block; }
.dual-content {
  max-width: 720px; margin: 0 auto;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 40px;
}
.dual-content p { font-size: 16px; color: var(--text-light-muted); line-height: 1.65; margin-bottom: 24px; }
.dual-includes { margin-bottom: 28px; }
.dual-includes-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue-light); margin-bottom: 12px; }
.dual-includes-list { display: flex; flex-wrap: wrap; gap: 8px; }
.dual-includes-item {
  font-size: 13px; font-weight: 500; background: var(--dark); border: 1px solid var(--dark-border);
  padding: 6px 14px; border-radius: 99px; color: var(--text-light-body);
  display: flex; align-items: center; gap: 5px;
}
.dual-includes-item svg { width: 12px; height: 12px; color: var(--green); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.hiw { padding: 100px 0; }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header h2 { font-size: clamp(26px,3vw,40px); letter-spacing: -0.02em; max-width: 580px; margin: 0 auto; }
.hiw-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.hiw-steps::before { content:''; position: absolute; top: 28px; left: calc(16.666% + 28px); right: calc(16.666% + 28px); height: 2px; background: var(--light-border); }
.hiw-step { text-align: center; position: relative; }
.hiw-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-bg2); border: 2px solid var(--blue);
  color: var(--blue); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1;
}
.hiw-step h3 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.hiw-step .hiw-day { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 10px; }
.hiw-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin: 0 auto; }
.hiw-cta { text-align: center; margin-top: 56px; }

/* ═══════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════ */
.proof { padding: 100px 0; }
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-header h2 { font-size: clamp(28px,3.5vw,44px); letter-spacing: -0.02em; margin-bottom: 10px; }
.proof-counters { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; margin-bottom: 64px; }
.proof-counters .s-val { font-size: clamp(32px,3.5vw,48px); font-weight: 700; color: var(--blue-light); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.proof-counters .s-lbl { font-size: 13px; color: var(--text-light-muted); }
.proof-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.proof-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 32px;
}
.proof-card-quote { font-size: 16px; color: var(--text-light-body); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.proof-card-author { font-size: 14px; font-weight: 600; color: #fff; }
.proof-card-company { font-size: 13px; color: var(--text-light-muted); }
.proof-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.proof-star { color: #FBBF24; font-size: 14px; }

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
.partners { padding: 64px 0; }
.partners-label { text-align: center; font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 28px; }
.partners-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; align-items: center; }
.partners-logos span { font-size: 18px; font-weight: 700; color: var(--text-heading); opacity: 0.2; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-size: clamp(28px,3.5vw,40px); letter-spacing: -0.02em; margin-bottom: 8px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-item:first-child { border-top: 1px solid var(--dark-border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: #fff; text-align: left;
  gap: 1rem; transition: color 200ms;
}
.faq-q:hover { color: var(--blue-light); }
.faq-q svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform 300ms; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--text-light-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta { padding: 100px 0; text-align: center; }
.final-cta h2 { font-size: clamp(36px,5vw,60px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; }
.final-cta p { font-size: 18px; max-width: 560px; margin: 0 auto 36px; line-height: 1.55; opacity: 0.9; }
.final-trust { font-size: 13px; margin-top: 16px; opacity: 0.7; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { padding: 64px 0 0; }
.site-footer .footer-tagline { text-align: center; font-size: 15px; color: var(--text-light-muted); margin-bottom: 48px; font-style: italic; max-width: 580px; margin-left: auto; margin-right: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-bottom: 48px; }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-light-muted); margin-bottom: 10px; transition: color 200ms; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 16px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center;
  color: var(--text-light-muted); transition: all 200ms;
}
.footer-social-link:hover { color: #fff; border-color: #30363D; background: rgba(255,255,255,0.08); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: #4B5563; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 13px; color: #4B5563; transition: color 200ms; }
.footer-legal a:hover { color: var(--text-light-muted); }

/* ═══════════════════════════════════════════
   SUBPAGE HERO (shared by service, about, careers, contact pages)
═══════════════════════════════════════════ */
.subpage-hero {
  padding: 140px 0 80px; text-align: center;
  background: radial-gradient(ellipse at top center, #1a2744 0%, #0D1117 65%);
}
.subpage-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.subpage-hero h1 span { color: var(--blue); }
.subpage-hero p {
  font-size: 18px; color: var(--text-light-muted); max-width: 580px; margin: 0 auto 40px; line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SERVICE PAGE COMPONENTS
═══════════════════════════════════════════ */
.deliverables-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.deliverable-item {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 16px;
  background: var(--light); border: 1px solid var(--light-border); border-radius: 10px;
  font-size: 14px; color: var(--text-muted); transition: border-color 200ms;
}
.deliverable-item:hover { border-color: var(--blue); }
.deliverable-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Service page process (uses hiw styles) */
/* Service page why-us (uses diff-card styles) */

/* ═══════════════════════════════════════════
   ABOUT PAGE — STAT TILES
═══════════════════════════════════════════ */
.stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-tile {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  text-align: center; padding: 24px;
}
.stat-tile-number { font-size: 40px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.stat-tile-label { font-size: 14px; color: var(--text-light-muted); }

/* About page model tiles */
.model-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.model-tile {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius); padding: 28px;
  transition: border-color 200ms;
}
.model-tile:hover { border-color: var(--blue); }
.model-tile-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue-bg2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.model-tile-icon svg { width: 20px; height: 20px; color: var(--blue); }
.model-tile-title { font-size: 16px; font-weight: 600; color: var(--text-heading); margin-bottom: 6px; }
.model-tile-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CAREERS — STANDARD TILES & SERVICE CARDS
═══════════════════════════════════════════ */
.standard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.standard-tile {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius); padding: 28px;
  transition: border-color 200ms;
}
.standard-tile:hover { border-color: var(--blue); }
.standard-tile-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue-bg2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.standard-tile-icon svg { width: 20px; height: 20px; color: var(--blue); }
.standard-tile-title { font-size: 16px; font-weight: 600; color: var(--text-heading); margin-bottom: 6px; }
.standard-tile-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.discipline-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.discipline-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg);
  padding: 32px; transition: border-color 200ms;
}
.discipline-card:hover { border-color: rgba(23,102,255,0.5); box-shadow: 0 0 20px rgba(23,102,255,0.1); }
.discipline-card-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(23,102,255,0.15);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.discipline-card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.discipline-card h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.discipline-card p { font-size: 15px; color: var(--text-light-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-form {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg); padding: 40px;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--text-heading); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; background: var(--light-alt); border: 1px solid var(--light-border);
  border-radius: 8px; padding: 12px 14px; font-size: 15px; color: var(--text-heading);
  transition: border-color 200ms; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ═══════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════ */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; background: var(--light);
}
.page-404 h1 {
  font-size: clamp(80px,15vw,160px); font-weight: 700; color: var(--blue);
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 24px;
}
.page-404 p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .solution-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:900px) {
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .dash-float { right: -10px; top: -10px; width: 170px; }
  .dash-float-2 { left: -10px; bottom: -10px; width: 160px; }
  .diffs-grid { grid-template-columns: repeat(2,1fr); }
  .standard-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:700px) {
  .container, .container-narrow { padding: 0 1.25rem; }

  .hero { padding: 100px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .dash-float, .dash-float-2 { display: none; }

  .problem, .solution, .roles, .cost, .diffs, .dual, .hiw, .proof, .faq, .final-cta { padding: 72px 0; }
  .stats-bar { padding: 40px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .problem-cards { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .hiw-steps::before { display: none; }
  .hiw-cta .btn { max-width: 100%; white-space: normal; text-align: center; justify-content: center; }
  .proof-counters { grid-template-columns: 1fr 1fr; }
  .proof-cards { grid-template-columns: 1fr; }

  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .discipline-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .cost-table, .cost-table thead, .cost-table tbody, .cost-table th, .cost-table td, .cost-table tr { display: block; }
  .cost-table thead { display: none; }
  .cost-table tr { margin-bottom: 12px; border: 1px solid var(--dark-border); border-radius: var(--radius-sm); }
  .cost-table td { padding: 10px 16px; border-bottom: 1px solid var(--dark-border); font-size: 14px; }
  .cost-table td::before { content: attr(data-label); display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light-muted); margin-bottom: 4px; }
}

@media(max-width:500px) {
  .diffs-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .stat-tiles { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   AI/ML ENGINEERS PAGE
═══════════════════════════════════════════ */

/* --- AI Hero --- */
.ai-hero {
  padding: 140px 0 80px; text-align: center;
  background: radial-gradient(ellipse at top center, #1a2744 0%, #0D1117 65%);
}
.ai-hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.08; max-width: 800px; margin: 0 auto 20px;
}
.ai-hero-sub {
  font-size: 18px; color: var(--text-light-muted); max-width: 680px;
  margin: 0 auto 36px; line-height: 1.65;
}
.ai-hero .hero-ctas { justify-content: center; }
.ai-hero-trust {
  font-size: 13px; color: var(--text-light-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 16px;
}
.ai-hero-trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* --- Pain Section --- */
.ai-pain { padding: 100px 0; }
.ai-pain h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  max-width: 640px; margin-bottom: 32px;
}
.ai-pain-body { max-width: 640px; }
.ai-pain-body p { font-size: 17px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.ai-pain-body p.ai-pain-closer { font-size: 22px; font-weight: 700; color: var(--blue); font-style: italic; margin-top: 8px; }

/* --- Capability Grid (Solution) --- */
.ai-cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ai-cap-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 24px; transition: border-color 200ms, transform 200ms;
}
.ai-cap-card:hover { border-color: rgba(23,102,255,0.5); transform: translateY(-2px); }
.ai-cap-icon { font-size: 24px; margin-bottom: 12px; }
.ai-cap-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ai-cap-card p { font-size: 13px; color: var(--text-light-muted); line-height: 1.55; }

/* --- Role Tabs --- */
.ai-roles { padding: 100px 0; }
.ai-roles-header { text-align: center; margin-bottom: 48px; }
.ai-roles-header h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px; }
.ai-roles-header > p { font-size: 17px; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.65; }

.role-tab-nav {
  display: flex; gap: 0; margin-bottom: 40px;
  background: var(--light-alt); border: 1px solid var(--light-border); border-radius: var(--radius-sm);
  padding: 4px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.role-tab-btn {
  flex: 1; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--text-muted);
  border-radius: 6px; transition: all 200ms; text-align: center; white-space: nowrap;
}
.role-tab-btn.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(23,102,255,0.3); }
.role-tab-btn:not(.active):hover { color: var(--text-heading); }

.role-tab-panel {
  display: none; max-width: 800px; margin: 0 auto;
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg); padding: 40px;
}
.role-tab-panel.active { display: block; }

.role-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.role-rate-badge { font-size: 22px; font-weight: 700; color: var(--blue); }
.role-tier-label {
  font-size: 12px; font-weight: 600; background: var(--blue-bg2); color: var(--blue);
  padding: 4px 12px; border-radius: 99px;
}
.role-best-for {
  font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px;
  padding-bottom: 24px; border-bottom: 1px solid var(--light-border);
}
.role-best-for strong { color: var(--text-heading); font-weight: 600; }
.role-section-title {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-heading); margin-bottom: 12px;
}
.role-ship-list { margin-bottom: 28px; list-style: none; }
.role-ship-list li {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  padding: 5px 0 5px 22px; position: relative;
}
.role-ship-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); opacity: 0.45;
}
.role-tools-section { margin-bottom: 28px; }
.role-tools-list { display: flex; flex-wrap: wrap; gap: 6px; }
.role-tool-pill {
  font-size: 11px; font-weight: 500; background: var(--light-alt); border: 1px solid var(--light-border);
  padding: 4px 12px; border-radius: 99px; color: var(--text-muted);
}
.role-hire-if {
  background: var(--blue-bg); border: 1px solid rgba(23,102,255,0.15);
  border-radius: var(--radius-sm); padding: 20px;
}
.role-hire-if-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue); margin-bottom: 8px;
}
.role-hire-if p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin: 0; }

/* --- Pricing Cards --- */
.ai-pricing { padding: 100px 0; }
.ai-pricing-header { text-align: center; margin-bottom: 56px; }
.ai-pricing-header h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px; }
.ai-pricing-header > p { font-size: 16px; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 80px; }
.pricing-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg), var(--shadow-lg);
  transform: translateY(-6px);
}
.pricing-card-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 16px; border-radius: 99px; white-space: nowrap;
}
.pricing-card-title { font-size: 16px; font-weight: 600; color: var(--text-heading); margin-bottom: 20px; }
.pricing-card-price {
  font-size: clamp(40px, 5vw, 52px); font-weight: 700; color: var(--blue);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.pricing-card-price span { font-size: 18px; font-weight: 500; color: var(--text-muted); }
.pricing-card-rates { font-size: 14px; color: var(--text-muted); line-height: 2; margin-bottom: 24px; padding-top: 16px; }
.pricing-card .btn { width: 100%; }

/* --- Discount Cards --- */
.ai-discount-header { text-align: center; margin-bottom: 36px; }
.ai-discount-header h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.ai-discount-header p { font-size: 15px; color: var(--text-muted); }
.discount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 80px; }
.discount-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; transition: border-color 200ms;
}
.discount-card:hover { border-color: var(--green); }
.discount-badge { font-size: 36px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.discount-title {
  font-size: 12px; font-weight: 700; color: var(--text-heading); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.discount-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.discount-save { font-size: 13px; font-weight: 600; color: var(--green); }

/* --- Cost Comparison --- */
.ai-comparison { text-align: center; }
.ai-comparison h3 { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 24px; }
.comparison-table {
  width: 100%; max-width: 700px; margin: 0 auto 32px; border-collapse: separate; border-spacing: 0;
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius); overflow: hidden;
}
.comparison-table th {
  padding: 12px 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  text-align: left; color: var(--text-muted); background: var(--light-alt); border-bottom: 1px solid var(--light-border);
}
.comparison-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--light-border); color: var(--text-body); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .row-hl { background: var(--blue-bg); }
.comparison-table .row-hl td { font-weight: 600; color: var(--text-heading); }
.comparison-table .row-hl td:first-child { color: var(--blue); }
.comparison-table .row-hl .comp-rate { color: var(--green); }
.comparison-table .comp-rate { font-weight: 700; }
.comparison-savings {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F4FF 100%);
  border: 1px solid rgba(23,102,255,0.15); border-radius: var(--radius); padding: 24px 32px;
  font-size: 16px; color: var(--text-body); line-height: 1.65;
}
.comparison-savings strong { color: var(--blue); font-weight: 700; font-size: 20px; }

/* --- Case Study Cards --- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg);
  padding: 32px; transition: border-color 200ms;
}
.case-card:hover { border-color: rgba(23,102,255,0.4); }
.case-card-quote {
  font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.case-card-meta { font-size: 13px; color: var(--text-light-muted); margin-bottom: 4px; line-height: 1.5; }
.case-card-meta span { color: var(--blue-light); font-weight: 600; }
.case-card-divider { height: 1px; background: var(--dark-border); margin: 16px 0; }
.case-card-outcome { font-size: 14px; color: var(--text-light-muted); line-height: 1.7; }

/* --- AI Differentiators (dark variant) --- */
.ai-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ai-diff-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: all 200ms;
}
.ai-diff-card:hover { border-color: rgba(23,102,255,0.4); transform: translateY(-2px); }
.ai-diff-icon { font-size: 24px; margin-bottom: 12px; }
.ai-diff-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ai-diff-card p { font-size: 13px; color: var(--text-light-muted); line-height: 1.5; }

/* --- AI Page Responsive --- */
@media(max-width:900px) {
  .ai-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .role-tab-nav { flex-wrap: wrap; max-width: 100%; }
  .role-tab-btn { flex: 1 1 45%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .discount-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .ai-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media(max-width:700px) {
  .ai-hero { padding: 110px 0 60px; }
  .ai-hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .ai-pain, .ai-solution, .ai-roles, .ai-pricing, .ai-diffs, .ai-cases { padding: 72px 0; }
  .role-tab-nav { flex-direction: column; }
  .role-tab-btn { flex: none; }
  .role-tab-panel { padding: 28px 20px; }
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr { display: block; }
  .comparison-table thead { display: none; }
  .comparison-table tr { margin-bottom: 8px; border: 1px solid var(--light-border); border-radius: var(--radius-sm); }
  .comparison-table td { padding: 10px 16px; font-size: 14px; }
  .comparison-table td::before { content: attr(data-label); display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 4px; }
  .comparison-savings { padding: 20px; font-size: 15px; }
}
@media(max-width:500px) {
  .ai-cap-grid { grid-template-columns: 1fr; }
  .ai-diff-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   VIRTUAL ASSISTANT PAGE
═══════════════════════════════════════════ */

/* --- VA Hero --- */
.va-hero {
  padding: 140px 0 80px; text-align: center;
  background: radial-gradient(ellipse at top center, #1a2744 0%, #0D1117 65%);
}
.va-hero h1 {
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1; max-width: 860px; margin: 0 auto 20px;
}
.va-hero-sub {
  font-size: 17px; color: var(--text-light-muted); max-width: 700px;
  margin: 0 auto 36px; line-height: 1.65;
}
.va-hero .hero-ctas { justify-content: center; }
.va-hero-trust {
  font-size: 13px; color: var(--text-light-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 16px; flex-wrap: wrap;
}
.va-hero-trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* --- VA Pain Section --- */
.va-pain { padding: 100px 0; }
.va-pain h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  max-width: 640px; margin-bottom: 32px;
}
.va-pain-body { max-width: 640px; }
.va-pain-body > p { font-size: 17px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.va-pain-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.va-pain-option {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--light-alt); border: 1px solid var(--light-border); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
.va-pain-option strong { color: var(--text-heading); }
.va-pain-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-bg2);
  color: var(--blue); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.va-pain-closer {
  font-size: 22px; font-weight: 700; color: var(--blue); font-style: italic; margin-top: 8px;
}

/* --- VA Comparison Table --- */
.va-comparison { padding: 100px 0; }
.va-comparison-header { text-align: center; margin-bottom: 48px; }
.va-comparison-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.va-comparison-header > p {
  font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.65;
}
.va-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin-bottom: 40px;
}
.va-compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden;
  min-width: 700px;
}
.va-compare-table th {
  padding: 14px 18px; font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; text-align: left; color: var(--text-muted);
  background: var(--light-alt); border-bottom: 1px solid var(--light-border);
}
.va-compare-table td {
  padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--light-border);
  color: var(--text-body); vertical-align: top;
}
.va-compare-table tr:last-child td { border-bottom: none; }
.va-rate-cell { font-weight: 700; white-space: nowrap; }
.va-row-hl { background: var(--blue-bg); }
.va-row-hl td { font-weight: 600; color: var(--text-heading); }
.va-row-hl td:first-child { color: var(--blue); }
.va-row-hl .va-rate-cell { color: var(--green); }
.va-savings-callout {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F4FF 100%);
  border: 1px solid rgba(23,102,255,0.15); border-radius: var(--radius);
  padding: 24px 32px; font-size: 17px; color: var(--text-body); line-height: 1.65;
}
.va-savings-callout strong { color: var(--blue); font-weight: 700; font-size: 20px; }

/* --- VA Pricing --- */
.va-pricing { padding: 100px 0; }
.va-pricing-header { text-align: center; margin-bottom: 56px; }
.va-pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.va-pricing-header > p {
  font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.65;
}
.va-pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 700px; margin: 0 auto 48px;
}
.va-pricing-best {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 20px; padding-top: 4px;
}
.va-discount-strip {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto;
}
.va-discount-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--light-alt); border: 1px solid var(--light-border); border-radius: 99px;
  padding: 10px 20px; font-size: 14px; color: var(--text-muted); white-space: nowrap;
}
.va-discount-badge {
  font-size: 13px; font-weight: 700; background: var(--green);
  color: #fff; padding: 3px 10px; border-radius: 99px;
}

/* --- VA Use-Case Tabs --- */
.va-usecases { padding: 100px 0; }
.va-usecases-header { text-align: center; margin-bottom: 48px; }
.va-usecases-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.va-usecases-header > p {
  font-size: 16px; color: var(--text-light-muted); max-width: 680px; margin: 0 auto; line-height: 1.65;
}
.va-tab-nav {
  display: flex; gap: 0; margin-bottom: 40px;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-sm);
  padding: 4px; max-width: 960px; margin-left: auto; margin-right: auto;
}
.va-tab-btn {
  flex: 1; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--text-light-muted);
  border-radius: 6px; transition: all 200ms; text-align: center; white-space: nowrap;
}
.va-tab-btn.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(23,102,255,0.3); }
.va-tab-btn:not(.active):hover { color: #fff; }

.va-tab-panel {
  display: none; max-width: 800px; margin: 0 auto;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 36px;
}
.va-tab-panel.active { display: block; }
.va-tab-panel h3 {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.va-tab-tasks {
  font-size: 15px; color: var(--text-light-muted); line-height: 1.75; margin-bottom: 20px;
}
.va-tab-tools {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 16px;
}
.va-tab-tools-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue-light); margin-right: 4px;
}
.va-tab-panel .role-tool-pill {
  background: var(--dark); border-color: var(--dark-border); color: var(--text-light-body);
}
.va-tab-caveat {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--orange); line-height: 1.55;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 4px;
}
.va-tab-caveat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--orange); }

.va-usecases-closing {
  text-align: center; font-size: 15px; color: var(--text-light-muted);
  margin-top: 32px; line-height: 1.6;
}
.va-usecases-closing a { color: var(--blue-light); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.va-usecases-closing a:hover { color: #fff; }

/* --- VA Guardrails --- */
.va-guardrails { padding: 80px 0; }
.va-guardrails-inner {
  display: flex; align-items: flex-start; gap: 24px;
  max-width: 760px; margin: 0 auto;
  background: var(--light-alt); border: 1px solid var(--light-border); border-radius: var(--radius-lg);
  padding: 36px;
}
.va-guardrails-icon svg { width: 32px; height: 32px; color: var(--blue); flex-shrink: 0; }
.va-guardrails-inner h2 {
  font-size: clamp(22px, 2.5vw, 28px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.va-guardrails-inner p {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
}

/* --- VA 100+ Tasks Accordion --- */
.va-tasks { padding: 100px 0; }
.va-tasks-header { text-align: center; margin-bottom: 48px; }
.va-tasks-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.va-tasks-header > p {
  font-size: 16px; color: var(--text-light-muted); max-width: 560px; margin: 0 auto; line-height: 1.65;
}
.va-tasks-accordion { max-width: 760px; margin: 0 auto; }
.va-acc-item { border-bottom: 1px solid var(--dark-border); }
.va-acc-item:first-child { border-top: 1px solid var(--dark-border); }
.va-acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 15px; font-weight: 600; color: #fff; text-align: left; gap: 1rem;
  transition: color 200ms;
}
.va-acc-trigger:hover { color: var(--blue-light); }
.va-acc-trigger svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; transition: transform 300ms; }
.va-acc-item.open .va-acc-trigger svg { transform: rotate(45deg); }
.va-acc-panel { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.va-acc-item.open .va-acc-panel { max-height: 200px; }
.va-acc-inner {
  padding: 0 0 18px; font-size: 14px; color: var(--text-light-muted); line-height: 1.7;
}

/* --- VA Differentiators Grid --- */
.va-diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.va-diff-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: all 200ms;
}
.va-diff-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.va-diff-icon { font-size: 24px; margin-bottom: 12px; }
.va-diff-card h3 { font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.va-diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* --- VA Page Responsive --- */
@media(max-width:900px) {
  .va-tab-nav { flex-wrap: wrap; max-width: 100%; }
  .va-tab-btn { flex: 1 1 30%; }
  .va-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .va-pricing-grid .pricing-card.featured { transform: none; }
  .va-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .va-discount-strip { flex-direction: column; align-items: center; }
}
@media(max-width:700px) {
  .va-hero { padding: 110px 0 60px; }
  .va-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .va-pain, .va-comparison, .va-pricing, .va-usecases, .va-tasks { padding: 72px 0; }
  .va-guardrails { padding: 56px 0; }
  .va-guardrails-inner { flex-direction: column; padding: 28px; }
  .va-tab-nav { flex-direction: column; }
  .va-tab-btn { flex: none; }
  .va-tab-panel { padding: 24px 20px; }
  .va-compare-table, .va-compare-table thead, .va-compare-table tbody,
  .va-compare-table th, .va-compare-table td, .va-compare-table tr { display: block; }
  .va-compare-table { min-width: 0; }
  .va-compare-table thead { display: none; }
  .va-compare-table tr { margin-bottom: 10px; border: 1px solid var(--light-border); border-radius: var(--radius-sm); }
  .va-compare-table td { padding: 10px 16px; font-size: 14px; }
  .va-compare-table td::before {
    content: attr(data-label); display: block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 4px;
  }
  .va-savings-callout { padding: 20px; font-size: 15px; }
  .va-discount-item { white-space: normal; text-align: center; justify-content: center; }
}
@media(max-width:500px) {
  .va-diff-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   MARKETING SPECIALIST PAGE
═══════════════════════════════════════════ */

/* --- MS Hero --- */
.ms-hero {
  padding: 140px 0 80px; text-align: center;
  background: radial-gradient(ellipse at top center, #1a2744 0%, #0D1117 65%);
}
.ms-hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.08; max-width: 800px; margin: 0 auto 20px;
}
.ms-hero-sub {
  font-size: 18px; color: var(--text-light-muted); max-width: 700px;
  margin: 0 auto 36px; line-height: 1.65;
}
.ms-hero .hero-ctas { justify-content: center; }
.ms-hero-trust {
  font-size: 13px; color: var(--text-light-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 16px;
}
.ms-hero-trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* --- MS Pain --- */
.ms-pain { padding: 100px 0; text-align: left; }
.ms-pain h2 { margin-bottom: 32px; }
.ms-pain-body p {
  font-size: 17px; line-height: 1.75; color: var(--text-light-muted); margin-bottom: 20px;
}
.ms-pain-closer {
  font-size: 22px !important; font-weight: 700; color: var(--blue) !important;
  font-style: italic; margin-top: 8px;
}

/* --- MS Capability Grid --- */
.ms-cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ms-cap-card {
  background: #fff; border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 28px; transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.ms-cap-card:hover {
  border-color: rgba(23,102,255,0.4); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ms-cap-icon { font-size: 28px; margin-bottom: 14px; }
.ms-cap-card h3 { font-size: 16px; font-weight: 700; color: var(--text-body); margin-bottom: 8px; }
.ms-cap-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- MS Platforms --- */
.ms-platforms { padding: 100px 0; }
.ms-plat-grid {
  max-width: 800px; margin: 0 auto;
}
.ms-plat-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 18px 0; border-bottom: 1px solid var(--dark-border);
  font-size: 15px; color: var(--text-light-muted); line-height: 1.6;
}
.ms-plat-item:first-child { border-top: 1px solid var(--dark-border); }
.ms-plat-item strong { color: #fff; white-space: nowrap; min-width: 140px; }
.ms-plat-footer {
  text-align: center; font-size: 14px; color: var(--text-light-muted);
  font-style: italic; margin-top: 32px; opacity: 0.8;
}

/* --- MS GHL Section --- */
.ms-ghl { padding: 100px 0; }
.ms-ghl-inner { max-width: 720px; }
.ms-ghl-content h2 { margin-bottom: 24px; }
.ms-ghl-content p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.ms-ghl-note {
  font-size: 15px; color: var(--text-muted); font-style: italic;
  padding-top: 16px; border-top: 1px solid var(--light-border);
}

/* --- MS Use Cases --- */
.ms-usecases { padding: 100px 0; }
.ms-usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ms-usecase-card {
  border-radius: var(--radius); padding: 32px; border-top: 4px solid;
  background: var(--dark-el); border-color: var(--dark-border);
}
.ms-usecase-blue { border-top-color: var(--blue); }
.ms-usecase-orange { border-top-color: #F59E0B; }
.ms-usecase-purple { border-top-color: #8B5CF6; }
.ms-usecase-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ms-usecase-card p { font-size: 15px; color: var(--text-light-muted); line-height: 1.65; }

/* --- MS Pricing --- */
.ms-pricing { padding: 100px 0; }
.ms-pricing-header { text-align: center; margin-bottom: 48px; }
.ms-pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.ms-pricing-note {
  text-align: center; font-size: 14px; color: var(--text-muted);
  margin-top: 24px; margin-bottom: 48px;
}
.ms-discount-header { text-align: center; margin-bottom: 24px; }
.ms-discount-header h3 { font-size: 20px; font-weight: 700; color: var(--text-body); }

/* --- MS Differentiators --- */
.ms-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ms-diff-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 28px; text-align: center; transition: border-color 200ms, transform 200ms;
}
.ms-diff-card:hover { border-color: rgba(23,102,255,0.4); transform: translateY(-2px); }
.ms-diff-icon { font-size: 28px; margin-bottom: 12px; }
.ms-diff-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ms-diff-card p { font-size: 13px; color: var(--text-light-muted); line-height: 1.55; }

/* --- MS Social Proof --- */
.ms-proof { padding: 100px 0; }
.ms-logo-strip {
  display: flex; justify-content: center; align-items: center; gap: 40px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.ms-logo-strip span {
  font-size: 16px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.02em; white-space: nowrap;
}

/* --- MS Responsive --- */
@media(max-width:900px) {
  .ms-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-usecase-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .ms-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-plat-item { flex-direction: column; gap: 4px; }
  .ms-plat-item strong { min-width: auto; }
}
@media(max-width:700px) {
  .ms-cap-grid { grid-template-columns: 1fr; }
  .ms-diff-grid { grid-template-columns: 1fr; }
  .ms-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .ms-logo-strip { gap: 20px; }
  .ms-logo-strip span { font-size: 14px; }
}

/* ═══════════════════════════════════════════
   CREATIVE ASSOCIATES PAGE
═══════════════════════════════════════════ */

/* --- CA Hero --- */
.ca-hero {
  padding: 140px 0 80px; text-align: center;
  background: radial-gradient(ellipse at top center, #1a2744 0%, #0D1117 65%);
}
.ca-hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1.08; max-width: 800px; margin: 0 auto 20px;
}
.ca-hero-sub {
  font-size: 18px; color: var(--text-light-muted); max-width: 700px;
  margin: 0 auto 36px; line-height: 1.65;
}
.ca-hero .hero-ctas { justify-content: center; }
.ca-hero-trust {
  font-size: 13px; color: var(--text-light-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 16px;
}
.ca-hero-trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* --- CA Pain --- */
.ca-pain { padding: 100px 0; }
.ca-pain-top {
  display: flex; align-items: center; gap: 48px; margin-bottom: 48px;
}
.ca-pain-text { flex: 1; min-width: 0; }
.ca-pain h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ca-pain-lead {
  font-size: 17px; line-height: 1.75; color: var(--text-muted);
}
.ca-pain-img { flex: 0 0 420px; }
.ca-pain-img img { width: 100%; height: auto; }
.ca-pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ca-pain-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 28px; transition: border-color 200ms, box-shadow 200ms;
}
.ca-pain-card:hover { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-bg); }
.ca-pain-card h3 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.ca-pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- CA Solution --- */
.ca-solution { padding: 100px 0; }
.ca-solution-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.ca-solution h2 { margin-bottom: 24px; }
.ca-solution-body p {
  font-size: 17px; color: var(--text-light-muted); line-height: 1.75; margin-bottom: 20px;
}

/* --- CA Capability Grid --- */
.ca-cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ca-cap-card {
  background: var(--light); border: 1px solid var(--light-border); border-radius: var(--radius);
  padding: 28px; transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.ca-cap-card:hover {
  border-color: rgba(23,102,255,0.4); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ca-cap-icon { font-size: 28px; margin-bottom: 14px; }
.ca-cap-card h3 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.ca-cap-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- CA Tabs (Who It's For) --- */
.ca-tab-nav {
  display: flex; gap: 0; margin-bottom: 40px;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-sm);
  padding: 4px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.ca-tab-btn {
  flex: 1; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--text-light-muted);
  border-radius: 6px; transition: all 200ms; text-align: center; white-space: nowrap;
}
.ca-tab-btn.active { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(23,102,255,0.3); }
.ca-tab-btn:not(.active):hover { color: #fff; }
.ca-tab-panel {
  display: none; max-width: 720px; margin: 0 auto;
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 40px;
}
.ca-tab-panel.active { display: block; }
.ca-tab-panel h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.ca-tab-panel p { font-size: 16px; color: var(--text-light-muted); line-height: 1.65; }

/* --- CA Pricing --- */
.ca-pricing { padding: 100px 0; }
.ca-pricing-header { text-align: center; margin-bottom: 56px; }
.ca-pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 12px;
}
.ca-pricing-header > p { font-size: 16px; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.ca-pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 700px; margin: 0 auto 24px;
}
.ca-pricing-note {
  text-align: center; font-size: 14px; color: var(--text-muted);
  font-style: italic; margin-bottom: 56px;
}
.ca-discount-header { text-align: center; margin-bottom: 24px; }
.ca-discount-header h3 { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.ca-discount-header p { font-size: 15px; color: var(--text-muted); }

/* --- CA Differentiators --- */
.ca-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ca-diff-card {
  background: var(--dark-el); border: 1px solid var(--dark-border); border-radius: var(--radius);
  padding: 28px; text-align: center; transition: border-color 200ms, transform 200ms;
}
.ca-diff-card:hover { border-color: rgba(23,102,255,0.4); transform: translateY(-2px); }
.ca-diff-icon { font-size: 28px; margin-bottom: 12px; }
.ca-diff-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ca-diff-card p { font-size: 13px; color: var(--text-light-muted); line-height: 1.55; }

/* --- CA Social Proof --- */
.ca-proof { padding: 80px 0; }
.ca-logo-strip {
  display: flex; justify-content: center; align-items: center; gap: 40px;
  flex-wrap: wrap; margin-top: 48px;
}
.ca-logo-strip span {
  font-size: 16px; font-weight: 600; color: var(--text-light-muted);
  letter-spacing: 0.02em; white-space: nowrap;
}

/* --- CA FAQ (Light variant) --- */
.ca-faq .faq-item { border-color: var(--light-border); }
.ca-faq .faq-q { color: var(--text-heading); }
.ca-faq .faq-q:hover { color: var(--blue); }
.ca-faq .faq-q svg { color: var(--blue); }
.ca-faq .faq-a-inner { color: var(--text-muted); }

/* --- CA Responsive --- */
@media(max-width:900px) {
  .ca-pain-top { flex-direction: column; gap: 32px; }
  .ca-pain-img { flex: none; max-width: 400px; }
  .ca-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-pain-cards { grid-template-columns: 1fr; max-width: 500px; }
  .ca-tab-nav { flex-wrap: wrap; max-width: 100%; }
  .ca-tab-btn { flex: 1 1 45%; }
  .ca-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .ca-pricing-grid .pricing-card.featured { transform: none; }
  .ca-logo-strip { gap: 20px; }
}
@media(max-width:700px) {
  .ca-hero { padding: 110px 0 60px; }
  .ca-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .ca-pain, .ca-solution, .ca-pricing { padding: 72px 0; }
  .ca-cap-grid { grid-template-columns: 1fr; }
  .ca-tab-nav { flex-direction: column; }
  .ca-tab-btn { flex: none; }
  .ca-tab-panel { padding: 28px 20px; }
  .ca-diff-grid { grid-template-columns: 1fr; }
  .ca-logo-strip span { font-size: 14px; }
}

/* ═══════════════════════════════════════════
   ABOUT US PAGE
═══════════════════════════════════════════ */

/* --- About Hero overrides --- */
.abt-hero h1 { max-width: 820px; margin: 0 auto 16px; }
.abt-hero p { max-width: 640px; }

/* --- Story Section --- */
.abt-story { padding: 100px 0; }
.abt-story-inner { max-width: 720px; }
.abt-story h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.abt-story-body p {
  font-size: 17px; line-height: 1.75; color: var(--text-muted);
  margin-bottom: 20px;
}
.abt-story-pivot {
  font-size: 22px !important; font-weight: 700; color: var(--blue) !important;
  font-style: italic; margin-top: 8px;
}
.abt-story-closer {
  font-size: 18px !important; font-weight: 600;
  color: var(--text-heading) !important; margin-top: 8px;
}

/* --- By the Numbers (Receipts) --- */
.abt-numbers { padding: 100px 0; }
.abt-numbers h2 {
  font-size: clamp(36px, 4vw, 52px); letter-spacing: -0.02em;
  margin-top: 12px;
}
.abt-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 900px; margin: 0 auto;
}
.abt-stat-card {
  background: var(--light); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: transform 200ms;
}
.abt-stat-card:hover { transform: translateY(-3px); }
.abt-stat-val {
  font-size: 42px; font-weight: 700; color: var(--blue);
  line-height: 1; margin-bottom: 8px;
}
.abt-stat-label {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-muted);
}

/* --- What Makes Us Different --- */
.abt-diff { padding: 100px 0; }
.abt-diff h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  margin-top: 12px;
}
.abt-diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.abt-diff-card {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.abt-diff-card:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.abt-diff-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-bg2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.abt-diff-icon svg { width: 22px; height: 22px; color: var(--blue); }
.abt-diff-card h3 {
  font-size: 16px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 8px;
}
.abt-diff-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
}

/* --- Vision & Mission --- */
.abt-vision { padding: 100px 0; }
.abt-vision h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  margin-top: 12px;
}
.abt-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 900px; margin: 0 auto;
}
.abt-vision-card {
  background: var(--dark-el); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 36px;
}
.abt-vision-label {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue-light);
  margin-bottom: 16px;
}
.abt-vision-card p {
  font-size: 17px; color: var(--text-light-body); line-height: 1.7;
}

/* --- Leadership --- */
.abt-team { padding: 100px 0; }
.abt-team h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em;
  margin-top: 12px;
}
.abt-team-intro {
  font-size: 17px; color: var(--text-muted); line-height: 1.65;
  max-width: 680px; margin: 0 auto 56px; text-align: center;
}
.abt-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 800px; margin: 0 auto;
}
.abt-team-card {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center;
  transition: transform 200ms, box-shadow 200ms;
}
.abt-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.abt-team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  background: var(--light-alt); border: 3px solid var(--light-border);
}
.abt-team-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.abt-team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-bg);
}
.abt-team-photo-placeholder svg {
  width: 40px; height: 40px; color: var(--blue);
}
.abt-team-card h3 {
  font-size: 18px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 4px; position: relative; display: inline-block;
}
.abt-team-card h3::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform 200ms;
}
.abt-team-card:hover h3::after { transform: scaleX(1); }
.abt-team-role {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 16px;
}
.abt-team-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-bg); transition: background 200ms;
}
.abt-team-social:hover { background: var(--blue-bg2); }
.abt-team-social svg { width: 16px; height: 16px; color: var(--blue); }

/* --- About CTA overrides --- */
.abt-cta {
  background: linear-gradient(135deg, #0D1117 0%, #111827 100%);
}
.abt-cta-trust {
  font-size: 14px; color: var(--text-light-muted);
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 20px;
}
.abt-cta-trust svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* --- About Responsive --- */
@media(max-width:900px) {
  .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-vision-grid { grid-template-columns: 1fr; }
  .abt-team-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
}
@media(max-width:700px) {
  .abt-story, .abt-numbers, .abt-diff, .abt-vision, .abt-team { padding: 72px 0; }
  .abt-hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .abt-diff-grid { grid-template-columns: 1fr; }
  .abt-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .abt-stat-val { font-size: 36px; }
  .abt-team-grid { grid-template-columns: 1fr; max-width: 320px; }
}
@media(max-width:500px) {
  .abt-stats-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════ */

/* --- Careers Hero --- */
.cr-hero {
  position: relative; padding: 160px 0 120px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.cr-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.80) 100%);
  z-index: 1;
}
.cr-hero .container { position: relative; z-index: 2; }
.cr-hero-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: center;
}
.cr-hero-text h1 {
  font-size: clamp(36px, 5vw, 56px); color: var(--text-light-heading);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px;
}
.cr-hero-text h1 span { color: var(--blue-light); }
.cr-hero-text p {
  font-size: 18px; color: var(--text-light-muted); line-height: 1.65; max-width: 540px; margin-bottom: 28px;
}
.cr-hero-card {
  display: flex; align-items: center; justify-content: center;
}
.cr-hero-card-inner {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 40px 36px; text-align: center; max-width: 300px;
}
.cr-hero-card-val {
  font-size: 56px; font-weight: 700; color: var(--blue-light); line-height: 1; margin-bottom: 12px;
}
.cr-hero-card-lbl {
  font-size: 16px; color: var(--text-light-body); line-height: 1.5;
}

/* --- The Pitch --- */
.cr-pitch { padding: 100px 0; }
.cr-pitch-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cr-pitch h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 32px;
}
.cr-pitch-body p {
  font-size: 17px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; text-align: left;
}
.cr-pitch-pivot {
  font-size: 22px !important; font-weight: 700; color: var(--text-heading) !important;
  font-style: italic; margin: 28px 0 !important;
}
.cr-pitch-closer {
  font-size: 20px !important; font-weight: 700; color: var(--blue) !important;
}

/* --- Who We Hire (Role Cards) --- */
.cr-roles { padding: 100px 0; }
.cr-roles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.cr-role-card {
  background: var(--dark-el); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color 200ms, transform 200ms;
  display: flex; flex-direction: column;
}
.cr-role-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.cr-role-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.cr-role-icon svg { width: 22px; height: 22px; color: var(--blue-light); }
.cr-role-card h3 { font-size: 20px; color: var(--text-light-heading); margin-bottom: 10px; }
.cr-role-card p { font-size: 15px; color: var(--text-light-muted); line-height: 1.6; flex: 1; }
.cr-role-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue-light); margin-top: 20px;
  transition: gap 200ms;
}
.cr-role-cta:hover { gap: 10px; }
.cr-role-cta svg { width: 14px; height: 14px; }

/* --- Benefits --- */
.cr-benefits { padding: 100px 0; }
.cr-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.cr-benefit-card {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.cr-benefit-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cr-benefit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cr-benefit-icon svg { width: 22px; height: 22px; color: var(--blue); }
.cr-benefit-card h3 { font-size: 17px; color: var(--text-heading); margin-bottom: 8px; line-height: 1.3; }
.cr-benefit-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* --- Growth & Culture shared list --- */
.cr-growth, .cr-culture { padding: 100px 0; }
.cr-growth-inner, .cr-culture-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cr-growth h2, .cr-culture h2 {
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin-bottom: 24px;
}
.cr-growth-intro, .cr-culture-intro {
  font-size: 17px; line-height: 1.75; margin-bottom: 32px; text-align: left;
}
.cr-growth-intro { color: var(--text-light-muted); }
.cr-culture-intro { color: var(--text-muted); }
.cr-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.cr-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; line-height: 1.6; color: var(--text-light-body); text-align: left;
}
.cr-list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 4px; }
.cr-list-light li { color: var(--text-body); }
.cr-list-light li svg { color: var(--blue); }
.cr-list li strong { display: inline-block; min-width: 210px; flex-shrink: 0; }

/* --- Who We're Looking For --- */
.cr-fit { padding: 100px 0; }
.cr-fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.cr-fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cr-fit-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.6; color: var(--text-light-body);
}
.cr-fit-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.cr-fit-icon svg { width: 14px; height: 14px; }
.cr-fit-check { background: rgba(16,185,129,0.15); }
.cr-fit-check svg { color: var(--green); }
.cr-fit-x { background: rgba(239,68,68,0.15); }
.cr-fit-x svg { color: var(--red); }
.cr-fit-no-header {
  font-size: 16px; font-weight: 600; color: var(--text-light-muted); margin-bottom: 20px;
}

/* --- Hiring Process --- */
.cr-process { padding: 100px 0; }
.cr-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.cr-step {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: border-color 200ms, transform 200ms;
}
.cr-step:hover { border-color: var(--blue); transform: translateY(-2px); }
.cr-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue);
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cr-step h3 { font-size: 17px; color: var(--text-heading); margin-bottom: 10px; }
.cr-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- Final CTA --- */
.cr-cta { padding: 100px 0; text-align: center; }
.cr-cta h2 {
  font-size: clamp(32px, 4vw, 52px); color: var(--text-light-heading);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px;
}
.cr-cta p { font-size: 18px; color: var(--text-light-muted); max-width: 580px; margin: 0 auto 32px; line-height: 1.65; }
.cr-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cr-cta-micro {
  font-size: 14px; color: var(--text-light-muted); margin-top: 24px !important;
  opacity: 0.7;
}

/* --- Careers Responsive --- */
@media(max-width:900px) {
  .cr-hero { padding: 130px 0 90px; }
  .cr-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cr-hero-card { justify-content: flex-start; }
  .cr-hero-card-inner { max-width: 100%; }
  .cr-roles-grid { grid-template-columns: 1fr; }
  .cr-benefits-grid { grid-template-columns: 1fr 1fr; }
  .cr-steps { grid-template-columns: 1fr 1fr; }
  .cr-fit-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width:700px) {
  .cr-hero { padding: 110px 0 70px; }
  .cr-hero-text h1 { font-size: clamp(28px, 7vw, 42px); }
  .cr-pitch, .cr-roles, .cr-benefits, .cr-growth, .cr-culture, .cr-fit, .cr-process, .cr-cta { padding: 72px 0; }
  .cr-benefits-grid { grid-template-columns: 1fr; }
  .cr-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cr-cta-btns { flex-direction: column; }
  .cr-cta-btns .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .cr-hero-card-val { font-size: 44px; }
  .cr-list li strong { min-width: unset; }
}
@media(max-width:500px) {
  .cr-hero-text h1 { font-size: 28px; }
  .cr-hero-card-inner { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

/* --- Contact Hero --- */
.ct-hero { padding: 140px 0 80px; }
.ct-hero-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.ct-hero h1 {
  font-size: clamp(36px, 5vw, 56px); color: var(--text-light-heading);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px;
}
.ct-hero h1 em { font-style: italic; color: var(--blue-light); }
.ct-hero-sub {
  font-size: 18px; color: var(--text-light-muted); line-height: 1.65;
  max-width: 580px; margin: 0 auto;
}

/* --- Two-column grid --- */
.ct-main { padding: 100px 0; }
.ct-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

/* --- Contact details (left) --- */
.ct-details h2 { font-size: 28px; color: var(--text-heading); margin-bottom: 8px; letter-spacing: -0.01em; }
.ct-details-sub { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.ct-detail-block {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.ct-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-bg); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-detail-icon svg { width: 20px; height: 20px; color: var(--blue); }
.ct-detail-label {
  font-size: 14px; font-weight: 600; color: var(--text-heading);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
}
.ct-detail-link {
  display: block; font-size: 15px; color: var(--blue); line-height: 1.5;
  transition: opacity 200ms;
}
.ct-detail-link:hover { opacity: 0.8; }
.ct-detail-text { font-size: 15px; color: var(--text-muted); line-height: 1.5; margin-bottom: 4px; }
.ct-book-btn { margin-top: 8px; }
.ct-book-btn svg { width: 16px; height: 16px; }

/* Map */
.ct-map { margin-bottom: 24px; border-radius: 12px; overflow: hidden; }

/* Callout */
.ct-callout {
  display: flex; gap: 12px; align-items: center;
  background: var(--blue-bg); border: 1px solid rgba(23,102,255,0.15);
  border-radius: 12px; padding: 16px 20px;
  font-size: 15px; color: var(--text-body); line-height: 1.5;
}
.ct-callout-icon { flex-shrink: 0; }
.ct-callout-icon svg { width: 20px; height: 20px; color: var(--blue); }

/* --- Form card (right) --- */
.ct-form-card {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-lg);
}
.ct-form-card h2 { font-size: 24px; color: var(--text-heading); margin-bottom: 8px; }
.ct-form-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.ct-field { margin-bottom: 20px; }
.ct-field label {
  display: block; font-size: 14px; font-weight: 600; color: var(--text-heading);
  margin-bottom: 6px;
}
.ct-req { color: #EF4444; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--light-border);
  border-radius: 8px; font-size: 15px; color: var(--text-heading);
  background: #fff; transition: border-color 200ms;
  font-family: inherit;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,102,255,0.12);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #9CA3AF; }
.ct-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-submit { width: 100%; justify-content: center; }
.ct-form-micro {
  font-size: 13px; color: var(--text-muted); text-align: center;
  margin-top: 12px; opacity: 0.7;
}
.ct-error {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 16px;
  font-size: 14px; color: #EF4444;
}

/* --- Success state --- */
.ct-success-inner {
  background: var(--light); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 60px 36px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.ct-success-icon svg { width: 56px; height: 56px; color: #10B981; margin-bottom: 20px; }
.ct-success-inner h2 { font-size: 28px; color: var(--text-heading); margin-bottom: 12px; }
.ct-success-inner p { font-size: 16px; color: var(--text-muted); line-height: 1.6; max-width: 400px; margin: 0 auto; }

/* --- Calendly embed --- */
.ct-calendly { padding: 100px 0; }
.ct-calendly-sub {
  font-size: 17px; color: var(--text-light-muted); line-height: 1.65;
  max-width: 560px; margin: 0 auto;
}
.ct-calendly-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--dark-border);
}

/* --- Bottom CTA --- */
.ct-bottom { padding: 80px 0; }
.ct-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.ct-bottom h2 {
  font-size: clamp(24px, 3vw, 36px); color: var(--text-heading);
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.ct-bottom h2 em { font-style: italic; color: var(--blue); }
.ct-bottom p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.ct-bottom-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* --- Contact Responsive --- */
@media(max-width:900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 48px; }
  .ct-bottom-inner { flex-direction: column; text-align: center; }
  .ct-bottom-btns { justify-content: center; }
}
@media(max-width:700px) {
  .ct-hero { padding: 110px 0 60px; }
  .ct-main, .ct-calendly { padding: 72px 0; }
  .ct-form-card { padding: 28px 20px; }
  .ct-bottom { padding: 60px 0; }
  .ct-bottom-btns { flex-direction: column; width: 100%; }
  .ct-bottom-btns .btn { width: 100%; justify-content: center; }
}
@media(max-width:500px) {
  .ct-hero h1 { font-size: 28px; }
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms of Service & Privacy Policy)
═══════════════════════════════════════════════════════════════ */

/* --- Legal Hero --- */
.legal-hero { padding: 140px 0 72px; text-align: center; }
.legal-hero-inner { max-width: 720px; margin: 0 auto; }
.legal-hero h1 { font-size: 48px; font-weight: 700; color: #fff; margin: 16px 0 20px; letter-spacing: -0.5px; }
.legal-hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.legal-updated { font-size: 14px; color: var(--text-muted); opacity: 0.7; }

/* --- Legal Body --- */
.legal-body { padding: 80px 0 100px; }
.legal-content { max-width: 800px; margin: 0 auto; }

/* --- Table of Contents --- */
.legal-toc { background: var(--light-alt); border: 1px solid #e5e7eb; border-radius: 12px; padding: 32px 36px; margin-bottom: 56px; }
.legal-toc h2 { font-size: 16px; font-weight: 600; color: var(--heading-dark); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.legal-toc ol { counter-reset: toc; list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.legal-toc li { padding: 4px 0; }
.legal-toc a { font-size: 15px; color: var(--blue); text-decoration: none; transition: color 0.2s; }
.legal-toc a:hover { color: #0d4ecc; text-decoration: underline; }

/* --- Legal Article --- */
.legal-article { color: var(--text-body); }
.legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #e5e7eb; }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-section h2 { font-size: 24px; font-weight: 700; color: var(--heading-dark); margin-bottom: 20px; letter-spacing: -0.3px; }
.legal-section h3 { font-size: 18px; font-weight: 600; color: var(--heading-dark); margin: 28px 0 12px; }
.legal-section p { font-size: 16px; line-height: 1.75; color: #4b5563; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--heading-dark); }
.legal-section a { color: var(--blue); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.legal-section a:hover { border-bottom-color: var(--blue); }

.legal-section ul, .legal-section ol { padding-left: 24px; margin: 12px 0 20px; }
.legal-section li { font-size: 16px; line-height: 1.75; color: #4b5563; padding: 3px 0; }

/* --- Legal Callout (Short Version) --- */
.legal-callout { background: var(--light-alt); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 28px 32px; }
.legal-callout ol { counter-reset: callout; list-style: none; padding: 0; margin: 16px 0; }
.legal-callout ol li { counter-increment: callout; padding: 8px 0 8px 36px; position: relative; font-size: 16px; line-height: 1.7; color: #4b5563; }
.legal-callout ol li::before { content: counter(callout); position: absolute; left: 0; top: 8px; width: 24px; height: 24px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 600; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* --- Legal Table --- */
.legal-table-wrap { overflow-x: auto; margin: 16px 0 20px; border-radius: 8px; border: 1px solid #e5e7eb; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.legal-table th { background: var(--light-alt); text-align: left; padding: 12px 20px; font-weight: 600; color: var(--heading-dark); border-bottom: 2px solid #e5e7eb; }
.legal-table td { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; color: #4b5563; line-height: 1.6; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: #fafbfc; }

/* --- Legal Responsive --- */
@media(max-width:900px) {
  .legal-toc ol { columns: 1; }
}
@media(max-width:700px) {
  .legal-hero { padding: 110px 0 56px; }
  .legal-hero h1 { font-size: 36px; }
  .legal-body { padding: 56px 0 72px; }
  .legal-toc { padding: 24px; }
  .legal-section { margin-bottom: 36px; padding-bottom: 36px; }
  .legal-section h2 { font-size: 20px; }
  .legal-callout { padding: 20px 24px; }
}
@media(max-width:500px) {
  .legal-hero h1 { font-size: 28px; }
  .legal-hero-sub { font-size: 16px; }
  .legal-toc { padding: 20px 16px; }
  .legal-table th, .legal-table td { padding: 10px 14px; font-size: 14px; }
}
