/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* Theme Tokens */
:root {
  --bg: #080e1a;
  --surface: #0d1525;
  --surface-2: #111e32;
  --border: rgba(0, 229, 195, 0.12);
  --border-strong: rgba(0, 229, 195, 0.25);
  --teal: #00E5C3;
  --teal-dim: rgba(0, 229, 195, 0.08);
  --teal-glow: rgba(0, 229, 195, 0.15);
  --amber: #F59E0B;
  --text: #e2e8f0;
  --text-muted: #7a9bb5;
  --text-dim: #4a6a85;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 10px;
}

/* Section helpers */
.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 195, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--teal); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--teal); }
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}
.meta-value {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* Stack Visualization */
.stack-viz {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stack-label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stack-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.tool-chip {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  animation: chipFloat 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.stack-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.stack-ordered {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stack-core {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.core-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--teal);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}
.core-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  opacity: 0.5;
}
.core-ring::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0.25;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 195, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(0, 229, 195, 0); }
}
.core-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
  z-index: 1;
}
.stack-labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stack-labels span {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* Stats Row */
.stats-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-block {
  padding: 0 32px;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-pct, .stat-plus, .stat-unit {
  color: var(--teal);
  font-size: 24px;
}
.stat-pct { font-size: 20px; }
.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Problem Section */
.problem-section {
  padding: 100px 32px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-card.accent-card {
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.problem-icon {
  margin-bottom: 4px;
}
.problem-stat {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.problem-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}
.problem-attr {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: auto;
}

/* Process Section */
.process-section {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.step-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.map-dot.active {
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.deploy-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  width: 100%;
}
.deploy-bar {
  flex: 1;
  background: var(--teal);
  opacity: 0.3;
  border-radius: 3px 3px 0 0;
  transition: opacity 0.3s;
}
.deploy-bar:hover { opacity: 0.6; }
.rhythm-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.rhythm-week {
  display: flex;
  align-items: center;
  gap: 8px;
}
.week-label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  width: 20px;
}
.week-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--teal), rgba(0,229,195,0.4));
  border-radius: 4px;
}
.transfer-flow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.transfer-node {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
}
.transfer-node.you {
  color: var(--teal);
  border-color: var(--border-strong);
}
.transfer-arrow {
  color: var(--teal);
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 100px 32px;
}
.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card.featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  position: relative;
}
.product-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.product-mark { margin-bottom: 4px; }
.product-badge {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 4px;
}
.product-badge.featured-badge { color: var(--amber); }
.product-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.product-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.product-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}
.product-tm, .product-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: auto;
  padding-top: 12px;
}
.product-guarantee { color: var(--amber); }

/* Outcomes */
.outcomes-section {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-icon {
  margin-bottom: 4px;
}
.outcome-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Closing */
.closing-section {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.closing-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 195, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.closing-philosophy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.philosophy-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stack-viz { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stat-block { padding: 0; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card.accent-card { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-headline { font-size: 32px; }
  .stats-inner { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card.accent-card { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing-philosophy { gap: 16px; }
  .section-headline { font-size: 26px; }
}

/* ====== NEW SECTIONS ====== */

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-link-dashboard {
  color: var(--teal) !important;
  border: 1px solid var(--border);
}
.nav-link-dashboard:hover {
  background: var(--teal-dim) !important;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--bg);
  background: var(--teal);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--teal);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

/* Hero right product cards */
.hero-product-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-nav-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.product-nav-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.product-nav-icon { flex-shrink: 0; }
.product-nav-info { flex: 1; }
.product-nav-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.product-nav-desc {
  font-size: 12px;
  color: var(--text-muted);
}
.crm-card { position: relative; }
.crm-link-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

/* Why section */
.why-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.why-team-photo img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.why-text { display: flex; flex-direction: column; gap: 16px; }
.why-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}
.why-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.why-pillars {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 32px;
}
.pillar { display: flex; flex-direction: column; gap: 8px; }
.pillar-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.pillar-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.services-section {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-link {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
}
.service-link:hover { opacity: 0.75; }
.tech-logos { margin-top: 56px; }
.logos-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
.logos-scroll img {
  width: 28px;
  height: 28px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.15s;
}
.logos-scroll img:hover { opacity: 1; filter: none; }

/* Products - card full style */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.product-card-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-card-full.crm-product {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.product-card-label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card-full h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.product-card-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.product-card-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.product-card-screenshot {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.product-card-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.product-card-logos span {
  font-size: 11px;
  color: var(--text-dim);
}
.product-card-logos img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.product-card-cta {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.product-card-cta:hover { opacity: 0.75; }
.crm-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crm-tool {
  font-size: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Need cards */
.need-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.need-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.need-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.need-card-icon { flex-shrink: 0; }
.need-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.need-card-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.need-card-text span {
  font-size: 12px;
  color: var(--text-muted);
}
.need-card-arrow { flex-shrink: 0; opacity: 0.5; }

/* Methodology */
.methodology-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.methodology-inner { max-width: 1200px; margin: 0 auto; }
.methodology-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}
.stackmap-section {
  max-width: 560px;
  margin: 0 auto 80px;
  text-align: center;
}
.stackmap-section .section-headline { text-align: center; }
.stackmap-section .section-desc { max-width: none; }
.stackmap-section .btn-primary { margin-top: 24px; }
.pack-principles { border-top: 1px solid var(--border); padding-top: 64px; }
.pack-principles .section-headline { font-size: clamp(22px, 3vw, 36px); }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.principle { display: flex; flex-direction: column; gap: 10px; }
.principle h4 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.principle p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.pain-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--teal);
}
.pain-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* Team */
.team-section {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.team-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.team-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.team-role {
  font-size: 12px;
  color: var(--text-muted);
}
.join-pack {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: inline-block;
  transition: background 0.15s;
}
.join-pack:hover { background: var(--teal-dim); }

/* CTA */
.cta-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.cta-inner { max-width: 1200px; margin: 0 auto; }
.cta-headline { margin-bottom: 48px; }
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-card-primary {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.cta-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.cta-card .btn-primary, .cta-card .btn-ghost { align-self: flex-start; }

/* FAQ */
.faq-section {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 1200px; margin: 0 auto; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-top: 48px;
}
.faq-item { display: flex; flex-direction: column; gap: 10px; }
.faq-q {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Proof */
.proof-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.proof-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  height: 72px;
  transition: border-color 0.15s;
}
.proof-logo:hover { border-color: var(--border-strong); }
.proof-logo img {
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.5);
  transition: filter 0.15s;
}
.proof-logo:hover img { filter: none; }

.case-studies {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.case-study {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}
.case-study:hover { border-color: var(--border-strong); }
.case-study-tag {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.case-study-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.case-study-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.view-all-link {
  display: block;
  text-align: center;
  margin-top: 48px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}

/* Footer */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  margin-top: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-team-photo { max-width: 320px; }
  .why-pillars { grid-column: span 1; grid-template-columns: 1fr 1fr 1fr; }
  .product-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-pillars { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr; }
  .need-cards { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .cta-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .case-studies { grid-template-columns: 1fr; }
  .proof-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-pillars { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
}