/* =====================================================
   TOKENS
===================================================== */
:root {
  --primary: #2563EB;
  --secondary: #7C3AED;
  --accent: #06B6D4;
  --highlight: #F59E0B;
  --bg: #F8FAFC;
  --text: #0F172A;
  --text-soft: #475569;
  --text-faint: #94A3B8;
  --white: #FFFFFF;

  --grad-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --grad-accent: linear-gradient(135deg, var(--accent), var(--primary));
  --grad-warm: linear-gradient(135deg, var(--highlight), #f97316);
  --grad-hero: linear-gradient(120deg, #eff4ff 0%, #f8fafc 45%, #eafcff 100%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, 0.14);

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-pad: clamp(64px, 9vw, 120px);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow.light { color: #C7D2FE; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 12px;
}
.lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead.light { color: #DBEAFE; }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 99, 235, 0.4); }

.btn-light { background: var(--white); color: var(--primary); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-light:hover { color: var(--secondary); }

.btn-ghost {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.btn-ghost:hover { background: rgba(37, 99, 235, 0.12); transform: translateY(-3px); }

/* glass */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}
.glass-dark {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: var(--grad-primary);
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--grad-primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(37,99,235,0.28);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: radial-gradient(circle, #93c5fd, transparent 70%); top: -120px; left: -100px; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, #c4b5fd, transparent 70%); bottom: -140px; right: -80px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, #67e8f9, transparent 70%); top: 30%; right: 18%; animation-delay: -9s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.08); }
  66% { transform: translate(-25px, 20px) scale(0.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-sub { font-size: 1.15rem; color: var(--text-soft); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; max-width: 180px; }
.hero-stat strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--text); }
.hero-stat span { font-size: 0.85rem; color: var(--text-faint); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-card {
  position: relative;
  width: min(100%, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grad-primary);
  padding: 6px;
}
.hero-photo { border-radius: 24px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: bob 5s ease-in-out infinite;
}
.badge-top { top: 8%; left: -8%; }
.badge-bottom { bottom: 8%; right: -10%; animation-delay: -2.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-live { background: #22C55E; box-shadow: 0 0 0 rgba(34,197,94,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(15,23,42,0.25);
  border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

/* =====================================================
   ABOUT
===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.about-visual { position: relative; }
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }

.quick-facts {
  margin-top: -50px;
  margin-left: 24px;
  margin-right: -20px;
  position: relative;
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.quick-facts-title { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.quick-facts ul { display: flex; flex-direction: column; gap: 10px; }
.quick-facts li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.85rem; border-bottom: 1px dashed rgba(15,23,42,0.08); padding-bottom: 8px; }
.quick-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.quick-facts li span { color: var(--text-faint); }
.quick-facts li strong { text-align: right; font-weight: 600; max-width: 62%; }

.about-content p { color: var(--text-soft); margin-bottom: 16px; }
.about-content .lead { color: var(--text); font-weight: 500; }

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.tag {
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,0.09), rgba(124,58,237,0.09));
  color: var(--primary);
  border: 1px solid rgba(37,99,235,0.15);
}

/* =====================================================
   RESULTS + STAT CARDS
===================================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,23,42,0.04);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.icon-purple { background: rgba(124,58,237,0.1); color: var(--secondary); }
.icon-cyan { background: rgba(6,182,212,0.12); color: #0891B2; }
.icon-amber { background: rgba(245,158,11,0.14); color: #B45309; }

.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; margin-bottom: 10px; }
.stat-card p { color: var(--text-soft); font-size: 0.95rem; }

/* dashboard / workflow container */
.dashboard {
  margin-top: 50px;
  background: linear-gradient(160deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.dashboard::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(37,99,235,0.35), transparent 55%),
              radial-gradient(circle at 0% 110%, rgba(124,58,237,0.3), transparent 55%);
  pointer-events: none;
}
.dashboard-head { position: relative; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.dashboard-title { display: flex; align-items: center; gap: 14px; }
.dash-dot { width: 12px; height: 12px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 rgba(34,197,94,0.6); animation: pulse 2s infinite; flex-shrink: 0; }
.dash-kicker { font-size: 0.72rem; letter-spacing: 0.14em; color: #93C5FD; font-weight: 700; margin-bottom: 4px; }
.dashboard-title h3 { font-family: var(--font-display); font-size: 1.4rem; }

.workflow-block { position: relative; margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.workflow-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.workflow-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; }
.workflow-title span { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: #93C5FD; }

.pipeline-bar { display: flex; flex-direction: column; gap: 10px; }
.pipe-seg { position: relative; height: 46px; border-radius: 10px; width: var(--w); display: flex; align-items: center; padding-left: 16px; font-size: 0.86rem; color: #0F172A; font-weight: 600; transition: width 1.2s ease; }
.pipe-seg i { font-style: normal; }
.pipe-1 { background: #93C5FD; }
.pipe-2 { background: #67E8F9; }
.pipe-3 { background: #C4B5FD; color: #1E1B4B; }
.pipe-4 { background: #FCD34D; }
.pipe-5 { background: #86EFAC; }

.ticket-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag-mini { font-size: 0.76rem; padding: 6px 14px; border-radius: 999px; font-weight: 600; }
.tag-red { background: rgba(248,113,113,0.16); color: #FCA5A5; }
.tag-amber { background: rgba(251,191,36,0.16); color: #FCD34D; }
.tag-green { background: rgba(74,222,128,0.16); color: #86EFAC; }

.before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: stretch; }
.ba-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); padding: 22px; }
.ba-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.ba-before .ba-label { color: #FCA5A5; }
.ba-after .ba-label { color: #86EFAC; }
.ba-card p:not(.ba-label) { color: #E2E8F0; font-size: 0.94rem; }
.ba-arrow { display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #93C5FD; }

/* tools */
.tools { margin-top: 60px; text-align: center; }
.tools-title { font-weight: 700; margin-bottom: 20px; color: var(--text-soft); }
.tool-chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.chip:hover { transform: translateY(-4px); border-color: var(--primary); color: var(--primary); }

/* =====================================================
   HOW I WORK / CAREER JOURNEY / TIMELINE
===================================================== */
.how-it-works { background: linear-gradient(180deg, #ffffff, #f2f6ff); }
.timeline { position: relative; max-width: 760px; margin: 60px auto 0; }
.timeline-line {
  position: absolute; left: 23px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: 3px;
}
.timeline-item { position: relative; display: flex; gap: 26px; margin-bottom: 30px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  box-shadow: 0 8px 18px rgba(37,99,235,0.3);
  position: relative; z-index: 1;
}
.marker-purple { background: linear-gradient(135deg, var(--secondary), #a855f7); box-shadow: 0 8px 18px rgba(124,58,237,0.3); }
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.timeline-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.timeline-meta { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; color: var(--secondary); margin-bottom: 8px; text-transform: none; }
.timeline-card h4 { font-family: var(--font-display); margin-bottom: 8px; font-size: 1.1rem; }
.timeline-card p { color: var(--text-soft); font-size: 0.95rem; }
.timeline-compact { max-width: 680px; }

.expect-box {
  max-width: 900px;
  margin: 60px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.expect-box h3 { font-family: var(--font-display); text-align: center; margin-bottom: 26px; font-size: 1.4rem; }
.expect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; }
.expect-grid div { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text-soft); }

/* =====================================================
   CASE STUDIES
===================================================== */
.case-intro { padding-bottom: 20px; }
.case-study { padding-top: 30px; }
.case-cs { background: linear-gradient(180deg, #eff6ff, #ffffff); }
.case-sales { background: linear-gradient(180deg, #f5f3ff, #ffffff); }
.case-support { background: linear-gradient(180deg, #ecfeff, #ffffff); }

.case-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.case-number {
  display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 12px;
}
.case-head h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; letter-spacing: -0.01em; }
.case-head p { color: var(--text-soft); }

.case-card.challenge-card {
  max-width: 900px; margin: 0 auto 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  display: flex; gap: 22px; align-items: flex-start;
  border-left: 5px solid var(--primary);
}
.case-sales .challenge-card { border-left-color: var(--secondary); }
.case-support .challenge-card { border-left-color: var(--accent); }

.case-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.case-label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 8px; }
.case-label.light { color: rgba(255,255,255,0.7); }
.case-card p, .case-approach-card p { color: var(--text-soft); font-size: 0.96rem; }

.case-approach-grid {
  max-width: 1000px; margin: 0 auto 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.case-approach-grid.five { grid-template-columns: repeat(5, 1fr); }
.case-approach-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-approach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-approach-card h4 { font-family: var(--font-display); font-size: 1rem; margin: 14px 0 8px; }

.outcome-row {
  max-width: 1000px; margin: 0 auto 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.outcome-chip {
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.outcome-chip span { display: block; font-size: 1.3rem; margin-bottom: 6px; }
.outcome-chip.purple { background: rgba(124,58,237,0.07); border-color: rgba(124,58,237,0.16); color: var(--secondary); }
.outcome-chip.cyan { background: rgba(6,182,212,0.08); border-color: rgba(6,182,212,0.18); color: #0891B2; }

.takeaway-card {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.takeaway-card p:last-child { font-size: 1.05rem; }
.purple-bg { background: linear-gradient(135deg, var(--secondary), #a855f7); }
.cyan-bg { background: linear-gradient(135deg, #0891B2, var(--accent)); }

/* =====================================================
   WORK WITH ME
===================================================== */
.work-with-me { background: linear-gradient(180deg, #ffffff, #f5f8ff); }
.work-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: start; }
.work-content p { color: var(--text-soft); margin-bottom: 16px; }
.highlight-line { font-weight: 600; color: var(--text); font-size: 1.05rem; }

.impact-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px clamp(22px, 4vw, 38px);
}
.impact-box h4 { font-family: var(--font-display); margin-bottom: 12px; font-size: 1.2rem; }
.impact-box p { color: #CBD5E1; }
.impact-highlight { color: var(--highlight) !important; font-weight: 700; margin-top: 10px; }

.work-visual { position: relative; }
.work-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.work-photo { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.style-card {
  margin-top: -40px; margin-left: -20px; margin-right: 20px;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  position: relative;
}
.style-list { display: flex; flex-direction: column; gap: 9px; }
.style-list li { font-size: 0.9rem; font-weight: 500; padding-left: 22px; position: relative; }
.style-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--highlight); font-weight: 700;
}

.closing-quote {
  max-width: 760px; margin: 60px auto 0; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--text-soft);
  padding: 0 24px;
}

/* =====================================================
   CONTACT
===================================================== */
.contact {
  background: linear-gradient(160deg, #0F172A 0%, #1E1B4B 55%, #0F172A 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.contact-blobs {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(37,99,235,0.35), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(124,58,237,0.35), transparent 45%),
              radial-gradient(circle at 85% 10%, rgba(6,182,212,0.25), transparent 40%);
}
.contact-inner { position: relative; z-index: 1; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 50px 0;
}
.contact-card {
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-card svg { margin: 0 auto 14px; color: var(--accent); }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #94A3B8; margin-bottom: 8px; }
.contact-card a { font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }

.contact-bottom {
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  max-width: 760px; margin: 0 auto 50px;
}
.qr-card { padding: 20px; border-radius: var(--radius-md); text-align: center; }
.qr-card img { width: 120px; height: 120px; border-radius: 10px; margin: 0 auto 10px; background: var(--white); padding: 8px; }
.qr-card p { font-size: 0.82rem; color: #CBD5E1; }
.contact-cta { text-align: left; }
.contact-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.contact-role { color: #93C5FD; margin-bottom: 18px; }

.footer-quote {
  text-align: center; font-style: italic; font-family: var(--font-display);
  font-size: 1.1rem; color: #CBD5E1; max-width: 640px; margin: 0 auto 20px;
}
.footer-copy { text-align: center; font-size: 0.82rem; color: #64748B; padding-bottom: 10px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-photo-card { width: min(80%, 320px); }
  .about-grid, .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual, .work-visual { max-width: 420px; margin: 0 auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .case-approach-grid, .case-approach-grid.five { grid-template-columns: repeat(2, 1fr); }
  .outcome-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; text-align: center; }
  .contact-cta { text-align: center; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(248,250,252,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .expect-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .case-approach-grid, .case-approach-grid.five { grid-template-columns: 1fr; }
  .outcome-row { grid-template-columns: 1fr; }
  .quick-facts, .style-card { margin-left: 0; margin-right: 0; margin-top: 20px; }
  .floating-badge { position: static; margin-top: 12px; display: inline-flex; }
  .badge-top, .badge-bottom { position: static; }
  .hero-photo-card { display: flex; flex-direction: column; align-items: center; gap: 10px; background: none; padding: 0; box-shadow: none; }
  .hero-photo { box-shadow: var(--shadow-lg); }
  .pipe-seg { font-size: 0.78rem; padding-left: 12px; }
}
