/*
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
═══════════════════════════════════════════ */
.fi { opacity: 0; transform: translateY(20px); transition: opacity 500ms cubic-bezier(.16,1,.3,1), transform 500ms cubic-bezier(.16,1,.3,1); }
.fi.v { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 60ms; } .fi-d2 { transition-delay: 120ms; } .fi-d3 { transition-delay: 180ms; }
.fi-d4 { transition-delay: 240ms; } .fi-d5 { transition-delay: 300ms; } .fi-d6 { transition-delay: 360ms; }
.fi-d7 { transition-delay: 420ms; }
@media(prefers-reduced-motion:reduce){ .fi { transition:none; opacity:1; transform:none; } }

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