/* ========================================
   OSBORN ONLINE - UNIFIED STYLESHEET
   ======================================== */

/* --- Design Tokens --- */
:root {
  --ink: #111;
  --ink-soft: #2a2a2a;
  --cream: #f5f2ed;
  --cream-dark: #eae5dd;
  --gold: #b89a45;
  --gold-light: #d4b85e;
  --green: #4aba6a;
  --text-body: #555;
  --text-mid: #888;
  --text-light: #999;
  --text-pale: #bbb;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.06);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: clamp(80px, 9vw, 130px);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 40px;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.dark .label,
.services .label,
.process .label,
.cta .label { color: #666; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-dark {
  color: var(--cream);
  background: var(--ink);
}

.btn-dark:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--text-body);
  background: transparent;
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: #333;
}

.btn-light {
  color: var(--ink);
  background: var(--cream);
}

.btn-light:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-wrap.scrolled {
  background: rgba(17, 17, 17, 0.97);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: padding 0.3s ease;
}

.nav-wrap.scrolled .nav { padding: 12px 40px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 68px; width: auto; transition: height 0.3s ease; }
.nav-wrap.scrolled .nav-logo img { height: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(245, 242, 237, 0.55);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: rgba(245, 242, 237, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--cream);
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--cream);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.nav-cta:hover { background: var(--cream-dark); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease;
}

.hamburger:hover { border-color: rgba(255, 255, 255, 0.2); }

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  transition: all 0.3s var(--ease);
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.hamburger.open { border-color: rgba(255, 255, 255, 0.15); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-inner { display: flex; flex-direction: column; gap: 8px; }

.mobile-nav-inner a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: rgba(245, 242, 237, 0.5);
  text-decoration: none;
  padding: 8px 0;
  transform: translateY(16px);
  opacity: 0;
  transition: color 0.2s ease, transform 0.4s var(--ease), opacity 0.4s ease;
}

.mobile-nav.open .mobile-nav-inner a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.open .mobile-nav-inner a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(3) { transition-delay: 0.11s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(4) { transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(5) { transition-delay: 0.17s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(6) { transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(7) { transition-delay: 0.23s; }
.mobile-nav.open .mobile-nav-inner a:nth-child(8) { transition-delay: 0.26s; }

.mobile-nav-inner a:hover,
.mobile-nav-inner a.active { color: var(--cream); }

.mobile-nav-cta {
  margin-top: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 500;
  color: var(--ink) !important;
  background: var(--cream);
  border-radius: 10px;
  text-decoration: none;
  text-align: center !important;
  align-self: flex-start;
  width: auto !important;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.4s var(--ease) 0.30s, opacity 0.4s ease 0.30s, background 0.2s ease;
}

.mobile-nav.open .mobile-nav-cta { transform: translateY(0); opacity: 1; }
.mobile-nav-cta:hover { background: var(--cream-dark); }

/* ========================================
   HERO
   ======================================== */
.hero {
  background: var(--cream);
  padding: 160px 40px 100px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-status-sep { color: var(--text-pale); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  max-width: 900px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: #666;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero markers */
.hero-markers {
  position: absolute;
  top: 50px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.hero-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-body);
  backdrop-filter: blur(8px);
}

.hero-marker-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Hero stats strip */
.hero-strip {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero-strip-val {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hero-strip-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--ink);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.services .container { padding-inline: 40px; }

.services-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.services-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.services-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 440px;
}

/* Browser mockup */
.browser-mockup {
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.browser-dot { width: 8px; height: 8px; border-radius: 50%; }
.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #28c840; }

.browser-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  font-size: 11px;
  color: #555;
}

.browser-body { padding: 24px; min-height: 280px; }
.wireframe { width: 100%; display: block; }

/* Floating elements */
.float-mobile {
  position: absolute;
  bottom: -24px;
  left: -32px;
  width: 120px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.float-mobile-screen {
  background: #2a2a2a;
  border-radius: 10px;
  height: 180px;
  padding: 12px;
}

.fm-bar { height: 4px; background: rgba(255, 255, 255, 0.06); border-radius: 2px; margin-bottom: 10px; }
.fm-line { height: 3px; background: rgba(255, 255, 255, 0.04); border-radius: 2px; margin-bottom: 6px; }
.fm-line.short { width: 70%; }
.fm-block { height: 40px; background: rgba(184, 154, 69, 0.12); border-radius: 6px; margin-top: 12px; }
.fm-btn { height: 22px; width: 60%; background: var(--gold); border-radius: 4px; margin-top: 10px; }

.float-analytics {
  position: absolute;
  top: -16px;
  right: -24px;
  background: #1e1e1e;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  animation: float 7s ease-in-out 1s infinite;
}

.float-analytics-label { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.float-analytics-val { font-size: 24px; font-weight: 600; color: var(--cream); letter-spacing: -0.02em; }
.float-analytics-change { font-size: 11px; color: var(--green); margin-top: 4px; }

.float-chat {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #1e1e1e;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  max-width: 180px;
  animation: float 8s ease-in-out 2s infinite;
}

.float-chat-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.float-chat-avatar { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; }
.float-chat-name { font-size: 11px; color: var(--text-mid); }
.float-chat-bubble { background: rgba(255, 255, 255, 0.04); border-radius: 8px; padding: 8px 10px; font-size: 11px; color: var(--text-light); line-height: 1.5; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Service strip */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
}

.strip-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border-dark);
}

.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; padding-right: 0; }

.strip-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.strip-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.strip-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 16px;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.strip-link:hover { color: var(--gold); gap: 8px; }
.strip-link svg { width: 12px; height: 12px; }

/* ========================================
   WHY ME
   ======================================== */
.why {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.why-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.why-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 36px;
  max-width: 460px;
}

.why-props { display: flex; flex-direction: column; margin-bottom: 36px; }

.why-prop {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: #444;
}

.why-prop:last-child { border-bottom: none; }

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2px;
}

.check-icon svg { width: 10px; height: 10px; color: var(--cream); }

/* Dashboard panel */
.why-panel {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.panel-title { font-size: 12px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; }

.panel-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
}

.panel-live::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

.panel-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }

.panel-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 20px;
}

.panel-metric-label { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.panel-metric-val { font-size: 28px; font-weight: 600; color: var(--cream); letter-spacing: -0.02em; line-height: 1; }
.panel-metric-sub { font-size: 11px; color: #555; margin-top: 4px; }

.panel-pipeline-label { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }

.panel-pipeline { display: flex; gap: 4px; }

.panel-stage {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.panel-stage:hover { transform: scaleY(1.08); }
.panel-stage.done { background: rgba(184, 154, 69, 0.2); color: var(--gold); }
.panel-stage.active { background: var(--gold); color: var(--ink); font-weight: 600; }
.panel-stage.pending { background: rgba(255, 255, 255, 0.04); color: #555; }

.panel-feed { margin-top: 24px; }
.panel-feed-label { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }

.panel-feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--text-mid);
}

.panel-feed-item:last-child { border-bottom: none; }

.feed-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
}

.feed-icon-site { background: rgba(184, 154, 69, 0.12); color: var(--gold); }
.feed-icon-seo { background: rgba(74, 122, 138, 0.12); color: #4a7a8a; }
.feed-icon-ads { background: rgba(122, 90, 138, 0.12); color: #7a5a8a; }

.feed-time { margin-left: auto; color: #555; font-size: 11px; white-space: nowrap; }

/* ========================================
   PROCESS
   ======================================== */
.process {
  background: var(--ink);
  padding: var(--section-pad) 0;
}

.process .container { padding-inline: 40px; }

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 40px;
}

.process-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.process-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 340px;
  text-align: right;
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
}

.process-step:last-child { padding-bottom: 0; }
.process-step:nth-child(even) { direction: rtl; }
.process-step:nth-child(even) > * { direction: ltr; }

.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 400px;
}

/* Artifacts */
.artifact {
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
}

.artifact-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.artifact-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }

.artifact-form-row { margin-bottom: 14px; }
.artifact-form-label { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.artifact-form-input { height: 32px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dark); border-radius: 6px; display: flex; align-items: center; padding: 0 10px; font-size: 12px; color: var(--text-mid); }
.artifact-form-textarea { height: 52px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dark); border-radius: 6px; padding: 8px 10px; font-size: 12px; color: #666; }

.artifact-doc-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--text-mid);
}

.doc-icon { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 600; }
.doc-w { background: rgba(184, 154, 69, 0.15); color: var(--gold); }
.doc-s { background: rgba(74, 122, 138, 0.15); color: #4a7a8a; }
.doc-a { background: rgba(122, 90, 138, 0.15); color: #7a5a8a; }
.doc-g { background: rgba(74, 170, 106, 0.15); color: var(--green); }

.doc-status { margin-left: auto; font-size: 10px; padding: 2px 8px; border-radius: 4px; }
.doc-status.done { background: rgba(74, 186, 106, 0.1); color: var(--green); }
.doc-status.progress { background: rgba(184, 154, 69, 0.1); color: var(--gold); }

.artifact-code { font-family: var(--sans); font-size: 11px; line-height: 1.8; }
.code-line { display: flex; gap: 12px; }
.code-num { color: #444; width: 20px; text-align: right; flex-shrink: 0; user-select: none; }
.code-tag { color: var(--gold); }
.code-attr { color: #4a7a8a; }
.code-val { color: #7a5a8a; }
.code-txt { color: var(--text-mid); }

.artifact-dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.artifact-dash-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 8px; padding: 14px; }
.artifact-dash-label { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.artifact-dash-val { font-size: 20px; font-weight: 600; color: var(--cream); }
.artifact-dash-sub { font-size: 10px; color: var(--green); margin-top: 2px; }

.artifact-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-top: 12px; }
.artifact-bar-col { flex: 1; border-radius: 3px 3px 0 0; background: rgba(184, 154, 69, 0.2); }
.artifact-bar-col.highlight { background: var(--gold); }

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.faq-desc { font-size: 15px; line-height: 1.7; color: #777; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--ink); }
.faq-q::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-light);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.faq-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] .faq-toggle::before { background: var(--gold); }

.faq-a {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  max-width: 520px;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  background: #1a1a1a;
  padding: 80px 40px;
  text-align: center;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto 36px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ink);
}

.footer-grid {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #666; max-width: 280px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--cream); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-contact-row svg { width: 14px; height: 14px; color: #555; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a,
.footer-contact-row span { font-size: 14px; color: var(--text-mid); text-decoration: none; line-height: 1.5; }
.footer-contact-row a:hover { color: var(--cream); }

.footer-bottom { border-top: 1px solid var(--border-dark); }

.footer-bottom-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 12px; color: #555; line-height: 1.5; }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: #555; text-decoration: none; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--text-mid); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-markers { display: none; }
  .services-split { grid-template-columns: 1fr; gap: 48px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {
  .process-top { flex-direction: column; align-items: flex-start; }
  .process-intro { text-align: left; }
  .process-step { grid-template-columns: 1fr; gap: 32px; }
  .process-step:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .container { padding-inline: 24px; }
  .nav { padding: 16px 24px; }
  .nav-wrap.scrolled .nav { padding: 10px 24px; }
  .hero { padding: 130px 24px 72px; }
  .hero-strip { gap: 32px; flex-wrap: wrap; }
  .services .container { padding-inline: 24px; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item { padding: 24px 20px; }
  .strip-item:first-child { padding-left: 20px; }
  .process .container { padding-inline: 24px; }
  .cta { padding: 64px 24px; }
  .mobile-nav { padding: 0 24px; }
  .nav-logo img { height: 52px; }
  .nav-wrap.scrolled .nav-logo img { height: 40px; }
}

@media (max-width: 580px) {
  .container { padding-inline: 20px; }
  .nav { padding: 14px 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero-status { gap: 16px; font-size: 11px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-strip { gap: 24px; margin-top: 48px; }
  .hero-strip-val { font-size: 22px; }
  .services .container { padding-inline: 20px; }
  .services-strip { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 20px 0; }
  .strip-item:first-child { padding-left: 0; }
  .strip-item:last-child { border-bottom: none; }
  .float-mobile, .float-analytics, .float-chat { display: none; }
  .process .container { padding-inline: 20px; }
  .process-step { padding: 36px 0; }
  .artifact { padding: 16px; }
  .faq-q { font-size: 14px; padding: 20px 0; }
  .cta { padding: 52px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .why-panel { padding: 24px; }
  .panel-metrics { grid-template-columns: 1fr; }
  .panel-metric-val { font-size: 22px; }
  .panel-stage { font-size: 9px; height: 30px; }
  .mobile-nav-inner a { font-size: 28px; padding: 6px 0; }
}
