/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0B0B0B;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes fadeUp { to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { 0%{left:-100%} 50%{left:100%} 100%{left:100%} }
@keyframes typing { 0%,60%,100%{opacity:0.3;transform:translateY(0)} 30%{opacity:1;transform:translateY(-2px)} }
@keyframes aiSpin {
  0%{transform:rotate(0) scale(1);opacity:0.5}
  25%{transform:rotate(10deg) scale(1.3);opacity:1}
  50%{transform:rotate(-5deg) scale(0.9);opacity:0.6}
  75%{transform:rotate(8deg) scale(1.2);opacity:1}
  100%{transform:rotate(0) scale(1);opacity:0.5}
}
@keyframes iconPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ===== HEADER ===== */
.header { position:fixed; top:0; left:0; right:0; z-index:100; height:64px; display:flex; align-items:center; justify-content:center; background:rgba(11,11,11,0.7); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid rgba(255,255,255,0.06); }
.header-inner { max-width:1140px; width:100%; padding:0 24px; display:flex; align-items:center; justify-content:space-between; }
.header-logo { font-size:22px; font-weight:700; color:#FFF; text-decoration:none; letter-spacing:-0.04em; }
.header-nav { display:flex; align-items:center; gap:32px; }
.header-nav a { font-size:14px; font-weight:450; color:#9CA3AF; text-decoration:none; transition:color 0.2s; }
.header-nav a:hover { color:#FFF; }
.header-right { display:flex; align-items:center; gap:20px; }
.header-login { font-size:14px; font-weight:450; color:#9CA3AF; text-decoration:none; transition:color 0.2s; }
.header-login:hover { color:#FFF; }
.header-cta { display:inline-flex; align-items:center; padding:8px 18px; font-size:13px; font-weight:600; color:#0B0B0B; background:#FFF; border-radius:8px; text-decoration:none; transition:all 0.2s; }
.header-cta:hover { background:#E5E5E5; transform:translateY(-1px); }
.header-menu-btn { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.header-menu-btn svg { width:22px; height:22px; color:#FFF; }

/* ===== BUTTONS ===== */
.btn-primary { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; background:#FFF; color:#0B0B0B; font-size:15px; font-weight:600; border:none; border-radius:10px; cursor:pointer; transition:all 0.2s; text-decoration:none; }
.btn-primary:hover { background:#E5E5E5; transform:translateY(-1px); box-shadow:0 4px 20px rgba(255,255,255,0.1); }
.btn-primary svg { width:16px; height:16px; transition:transform 0.2s; }
.btn-primary:hover svg { transform:translateX(2px); }
.btn-ghost { display:inline-flex; align-items:center; gap:6px; padding:14px 20px; background:transparent; color:#9CA3AF; font-size:15px; font-weight:500; border:1px solid rgba(255,255,255,0.1); border-radius:10px; cursor:pointer; transition:all 0.2s; text-decoration:none; }
.btn-ghost:hover { color:#FFF; border-color:rgba(255,255,255,0.25); }

/* ===== HERO ===== */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center; }
.hero::before { content:''; position:absolute; inset:0; background:#0B0B0B; pointer-events:none; z-index:0; }
.hero-container { position:relative; z-index:1; max-width:1140px; width:100%; margin:0 auto; padding:120px 24px 100px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.hero-content { display:flex; flex-direction:column; gap:28px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:6px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:100px; font-size:13px; font-weight:500; color:#888; width:fit-content; }
.hero-badge .dot { width:6px; height:6px; background:#34D399; border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.hero-headline { font-size:clamp(32px,3.8vw,52px); font-weight:700; line-height:1.08; letter-spacing:-0.03em; color:#FFF; }
.hero-sub { font-size:18px; line-height:1.6; color:#9CA3AF; max-width:480px; }
.hero-ctas { display:flex; align-items:center; gap:16px; margin-top:8px; }

/* ===== HERO VISUAL ===== */
.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.visual-wrapper { position:relative; width:100%; max-width:580px; display:flex; gap:0; align-items:stretch; opacity:0; animation:fadeUp 0.6s ease forwards 0.3s; }

/* Agents sidebar */
.agents-sidebar { display:flex; flex-direction:column; gap:8px; width:170px; flex-shrink:0; }
.agents-title { font-size:10px; font-weight:500; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; display:flex; align-items:center; gap:8px; opacity:0; animation:fadeUp 0.5s ease forwards 0.15s; }
.agents-title .dot-sm { width:5px; height:5px; background:#34D399; border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.sidebar-agent { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07); border-radius:12px; padding:12px; display:flex; align-items:center; gap:10px; transition:border-color 0.3s; position:relative; overflow:hidden; cursor:default; }
.sidebar-agent:hover { border-color:rgba(255,255,255,0.14); }
.sidebar-agent::after { display:none; }
.sidebar-agent:nth-child(2)::after { display:none; }
.sidebar-agent:nth-child(3)::after { display:none; }
.sidebar-agent:nth-child(4)::after { display:none; }
.sidebar-agent.sending { border-color:rgba(52,211,153,0.3)!important; box-shadow:0 0 12px rgba(52,211,153,0.1); transition:all 0.6s; }
.sidebar-agent.sending .sidebar-name { color:#FFF; }
.sidebar-agent.dimming { border-color:rgba(255,255,255,0.07)!important; box-shadow:none; transition:all 0.8s; }
.sidebar-avatar { width:30px; height:30px; border-radius:50%; overflow:hidden; flex-shrink:0; position:relative; }
.sidebar-avatar img { width:100%; height:100%; object-fit:cover; }
.sidebar-avatar .active-dot { position:absolute; bottom:-1px; right:-1px; width:7px; height:7px; border-radius:50%; border:1.5px solid #0B0B0B; z-index:1; }
.sidebar-info { min-width:0; flex:1; }
.sidebar-name { font-size:12px; font-weight:600; color:#E5E7EB; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sidebar-role { font-size:10px; color:#6B7280; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:flex; align-items:center; gap:4px; }
.typing-dots { display:inline-flex; gap:2px; align-items:center; }
.typing-dots span { width:3px; height:3px; background:#6B7280; border-radius:50%; animation:typing 1.4s ease-in-out infinite; }
.typing-dots span:nth-child(2) { animation-delay:0.2s; }
.typing-dots span:nth-child(3) { animation-delay:0.4s; }
.ai-indicator { display:inline-flex; align-items:center; gap:4px; }
.ai-indicator svg { width:15px; height:15px; color:#818CF8; animation:aiSpin 2s ease-in-out infinite; filter:drop-shadow(0 0 4px rgba(129,140,248,0.5)); }

/* Power core connector */
@keyframes coreGlow { 0%,100%{box-shadow:0 0 12px rgba(129,140,248,0.4),0 0 24px rgba(129,140,248,0.15);transform:scale(1)} 50%{box-shadow:0 0 20px rgba(129,140,248,0.7),0 0 40px rgba(129,140,248,0.25);transform:scale(1.1)} }

.power-core-connector { display:flex; align-items:center; flex-shrink:0; width:80px; margin:0 2px; padding-top:28px; gap:0; }
.power-core { position:relative; width:52px; height:52px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.core-center { width:14px; height:14px; border-radius:50%; background:#818CF8; animation:coreGlow 2s ease-in-out infinite; z-index:2; position:relative; }

/* Agent wires & pulses */
.wires-svg { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:5; overflow:visible; }
.wire-line { fill:none; stroke:rgba(129,140,248,0.08); stroke-width:1.5; }
.wire-pulse { fill:none; stroke-width:2.5; stroke-linecap:round; opacity:0; }

/* Card flash effect — firing (blue stroke + strong shadow) */
.sidebar-agent.firing {
  border-color:rgba(99,130,255,0.7) !important;
  box-shadow:0 0 20px rgba(99,130,255,0.35), 0 4px 24px rgba(99,130,255,0.15);
  transition:border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.sidebar-agent.firing::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:rgba(99,130,255,0.06);
  border-radius:12px;
  animation:cardShadowPass 0.7s ease-out forwards;
  z-index:1;
  pointer-events:none;
}
@keyframes cardShadowPass {
  0% { opacity:0; box-shadow:inset -60px 0 30px -20px rgba(99,130,255,0.15); }
  30% { opacity:1; box-shadow:inset 0 0 30px -10px rgba(99,130,255,0.2); }
  100% { opacity:0; box-shadow:inset 60px 0 30px -20px rgba(99,130,255,0.15); }
}

/* Card done state — green confirmation pulse */
.sidebar-agent.done {
  border-color:rgba(52,211,153,0.6) !important;
  box-shadow:0 0 18px rgba(52,211,153,0.25), 0 2px 16px rgba(52,211,153,0.1);
  transition:border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}
@keyframes greenFade {
  0% { border-color:rgba(52,211,153,0.6); box-shadow:0 0 18px rgba(52,211,153,0.25); }
  100% { border-color:rgba(255,255,255,0.07); box-shadow:none; }
}

/* "New lead" notification tag */
.new-lead-tag {
  position:absolute;
  top:12px;
  right:12px;
  padding:4px 10px;
  font-size:10px;
  font-weight:600;
  color:#FFF;
  background:#6382FF;
  border-radius:100px;
  z-index:10;
  opacity:0;
  transform:scale(0.85);
  transition:opacity 0.25s ease, transform 0.25s ease;
  pointer-events:none;
  box-shadow:0 2px 10px rgba(99,130,255,0.4);
  letter-spacing:0.02em;
}
.new-lead-tag.show {
  opacity:1;
  transform:scale(1);
}

/* Core energy states */
.core-center { transition:all 0.4s ease; }
.core-center.charged-1 { width:16px; height:16px; box-shadow:0 0 14px rgba(129,140,248,0.5),0 0 28px rgba(129,140,248,0.2) !important; }
.core-center.charged-2 { width:18px; height:18px; box-shadow:0 0 18px rgba(129,140,248,0.6),0 0 32px rgba(129,140,248,0.25) !important; }
.core-center.charged-3 { width:20px; height:20px; box-shadow:0 0 22px rgba(129,140,248,0.7),0 0 38px rgba(52,211,153,0.2) !important; }
.core-center.charged-4 { width:22px; height:22px; box-shadow:0 0 26px rgba(129,140,248,0.8),0 0 44px rgba(52,211,153,0.3) !important; }
.core-center.charged-5 { width:26px; height:26px; box-shadow:0 0 32px rgba(129,140,248,1),0 0 56px rgba(52,211,153,0.5),0 0 80px rgba(129,140,248,0.3) !important; }
.core-center.releasing {
  width:14px; height:14px;
  box-shadow:0 0 12px rgba(129,140,248,0.4),0 0 24px rgba(129,140,248,0.15) !important;
  transition:all 0.8s ease;
}

/* Pipeline card flash on receive */
.pipeline-result.receiving {
  border-color:rgba(52,211,153,0.4) !important;
  box-shadow:0 0 20px rgba(52,211,153,0.1);
  transition:all 0.3s;
}

/* Pipeline result card */
.main-panel { flex:1; min-width:0; display:flex; flex-direction:column; align-self:stretch; overflow:hidden; }
.pipeline-result { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07); border-radius:14px; padding:18px 20px; opacity:0; transform:translateY(16px); animation:fadeUp 0.7s ease forwards 0.8s; transition:border-color 0.3s; flex:1; display:flex; flex-direction:column; overflow:hidden; max-height:100%; position:relative; }
.pipeline-result:hover { border-color:rgba(255,255,255,0.12); }
.result-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:4px; }
.pipeline-stats-row { display:flex; align-items:center; gap:0; padding:0; margin-bottom:10px; border-bottom:1px solid rgba(255,255,255,0.05); }
.pipeline-stat-block { flex:1; padding:10px 0; text-align:center; }
.pipeline-stat-block:first-child { border-right:1px solid rgba(255,255,255,0.05); }
.pipeline-stat-big { font-size:22px; font-weight:700; color:#FFF; letter-spacing:-0.02em; line-height:1; }
.pipeline-stat-label { font-size:10px; color:#6B7280; margin-top:3px; }
.result-label { font-size:12px; font-weight:500; color:#6B7280; text-transform:uppercase; letter-spacing:0.06em; }
.result-live { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:500; color:#34D399; }
.result-live .dot-sm { width:5px; height:5px; background:#34D399; border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.result-stats { display:flex; align-items:baseline; gap:16px; margin-bottom:12px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,0.05); }
.result-number { font-size:28px; font-weight:700; color:#FFF; letter-spacing:-0.02em; }
.result-change { font-size:13px; font-weight:500; color:#34D399; }

/* Lead rows */
.leads-container { position:relative; overflow:hidden; flex:1; min-height:0; }
.lead-row { display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.04); transition:all 0.8s cubic-bezier(0.4,0,0.2,1); max-height:50px; opacity:1; transform:translateY(0); }
.lead-row:last-child { border-bottom:none; }
.lead-row.exiting { opacity:0; transform:translateY(16px); max-height:0; padding:0; border-bottom-width:0; overflow:hidden; }
.lead-row.entering { opacity:0; transform:translateY(-12px); max-height:0; padding:0; overflow:hidden; }
.lead-row.entering.show { opacity:1; transform:translateY(0); max-height:50px; padding:8px 0; }
.lead-avatar { width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,0.07); display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:600; color:#9CA3AF; flex-shrink:0; }
.lead-info { flex:1; min-width:0; }
.lead-name { font-size:12px; font-weight:500; color:#E5E7EB; }
.lead-company { font-size:10px; color:#6B7280; margin-top:1px; }
.lead-tag { font-size:9px; font-weight:500; padding:2px 8px; border-radius:100px; white-space:nowrap; }
.lead-tag.ready { background:rgba(52,211,153,0.1); color:#34D399; }
.lead-tag.new { background:rgba(99,102,241,0.1); color:#818CF8; }

/* ===== SOCIAL PROOF ===== */
.social-proof { position:relative; z-index:1; padding:100px 24px 80px; text-align:center; }
.social-proof-text { font-size:17px; color:#6B7280; margin-bottom:56px; }
.logos-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(5,1fr); gap:48px 32px; align-items:center; justify-items:center; }
.logos-grid img { height:72px; width:auto; object-fit:contain; opacity:0.6; filter:grayscale(100%) brightness(2); transition:opacity 0.25s; }
.logos-grid img:hover { opacity:0.9; }

/* ===== PROBLEM SECTION ===== */
.problem-section { position:relative; z-index:1; padding:100px 24px 80px; }
.problem-container { max-width:1140px; margin:0 auto; }
.problem-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.15); border-radius:100px; font-size:11px; font-weight:600; color:#EF4444; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.problem-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:48px; }
.problem-headline .red { color:#EF4444; }
.problem-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.problem-card { background:rgba(239,68,68,0.05); border:1px solid rgba(239,68,68,0.15); border-radius:16px; padding:28px 24px; position:relative; overflow:hidden; transition:border-color 0.3s; }
.problem-card:hover { border-color:rgba(239,68,68,0.3); }
.problem-card::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(239,68,68,0.04),transparent); animation:shimmer 5s ease-in-out infinite; }
.problem-card:nth-child(2)::after { animation-delay:1.2s; }
.problem-card:nth-child(3)::after { animation-delay:2.4s; }
.problem-card:nth-child(4)::after { animation-delay:3.6s; }
.problem-card-icon { width:40px; height:40px; border-radius:10px; background:rgba(239,68,68,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:#EF4444; }
.problem-card-icon svg { width:20px; height:20px; }
.problem-card-title { font-size:16px; font-weight:600; color:#FFF; margin-bottom:8px; }
.problem-card-text { font-size:14px; color:#9CA3AF; line-height:1.5; }

/* Transition arrow red → green */
.transition-arrow { display:flex; align-items:center; justify-content:center; padding:48px 0; }
.transition-arrow svg { width:32px; height:32px; color:#34D399; animation:arrowPulse 2s ease-in-out infinite; }

/* ===== SOLUTION SECTION ===== */
.solution-section { position:relative; z-index:1; padding:0 24px 100px; }
.solution-container { max-width:1140px; margin:0 auto; }
.solution-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(52,211,153,0.08); border:1px solid rgba(52,211,153,0.15); border-radius:100px; font-size:11px; font-weight:600; color:#34D399; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.solution-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.solution-sub { font-size:17px; color:#9CA3AF; line-height:1.6; max-width:520px; margin-bottom:48px; }

/* Solution visual */
.solution-visual { display:flex; align-items:center; justify-content:center; gap:0; padding:20px 0; }
.sv-left, .sv-right { flex:1; max-width:380px; }
.sv-label { font-size:10px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:20px; text-align:center; }

/* Gabriel + agents cluster */
.sv-cluster { position:relative; display:flex; align-items:center; justify-content:center; min-height:240px; }
.sv-connections { position:absolute; width:240px; height:240px; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.sv-gabriel { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; gap:6px; }
.sv-gabriel img { width:56px; height:56px; border-radius:50%; border:2px solid rgba(129,140,248,0.4); box-shadow:0 0 16px rgba(129,140,248,0.2); }
.sv-name { font-size:11px; font-weight:600; color:#E5E7EB; }
.sv-agent-ring { position:absolute; width:240px; height:240px; top:50%; left:50%; transform:translate(-50%,-50%); }
.sv-agent { position:absolute; display:flex; flex-direction:column; align-items:center; gap:4px; transform:translate(-50%,-50%); }
.sv-agent img { width:32px; height:32px; border-radius:50%; border:1.5px solid rgba(129,140,248,0.25); opacity:0.85; }
.sv-agent span { font-size:9px; color:#6B7280; white-space:nowrap; }
.sv-agent.a1 { top:8%; left:50%; }
.sv-agent.a2 { top:30%; left:95%; }
.sv-agent.a3 { top:72%; left:90%; }
.sv-agent.a4 { top:72%; left:10%; }
.sv-agent.a5 { top:30%; left:5%; }

/* Center arrow */
.sv-arrow { display:flex; flex-direction:column; align-items:center; gap:8px; flex-shrink:0; width:100px; padding:0 8px; }
.sv-arrow-line { width:60px; height:2px; background:rgba(129,140,248,0.15); border-radius:2px; position:relative; overflow:hidden; }
.sv-arrow-line::after { content:''; position:absolute; left:-40%; top:-1px; width:40%; height:4px; background:linear-gradient(90deg,transparent,rgba(129,140,248,0.5),transparent); border-radius:2px; animation:svPulse 2s ease-in-out infinite; }
@keyframes svPulse { 0%{left:-40%;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{left:100%;opacity:0} }
.sv-arrow-label { font-size:10px; font-weight:600; color:#818CF8; text-transform:uppercase; letter-spacing:0.06em; }
.sv-arrow svg { width:20px; height:20px; color:#818CF8; }

/* Client side */
.sv-client-group { display:flex; align-items:center; justify-content:center; gap:24px; margin-bottom:20px; }
.sv-client { display:flex; flex-direction:column; align-items:center; gap:6px; }
.sv-client img { width:48px; height:48px; border-radius:50%; border:2px solid rgba(52,211,153,0.3); }
.sv-client .sv-name { color:#34D399; }
.sv-team { display:flex; flex-direction:column; gap:8px; }
.sv-team-member { display:flex; align-items:center; gap:8px; }
.sv-team-member img { width:28px; height:28px; border-radius:50%; opacity:0.7; }
.sv-team-member span { font-size:11px; color:#6B7280; }

/* Mini pipeline card */
.sv-mini-pipeline { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:12px; padding:14px 16px; max-width:200px; margin:0 auto; }
.sv-pipe-header { font-size:10px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.sv-pipe-dot { width:5px; height:5px; background:#34D399; border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.sv-pipe-bar { height:6px; background:rgba(255,255,255,0.06); border-radius:3px; overflow:hidden; margin-bottom:8px; }
.sv-pipe-fill { height:100%; background:#34D399; border-radius:3px; }
.sv-pipe-stats { display:flex; justify-content:space-between; font-size:11px; color:#9CA3AF; }
.sv-pipe-stats span:first-child { color:#FFF; font-weight:600; }

@media (max-width:700px) {
  .solution-visual { flex-direction:column; gap:32px; }
  .sv-arrow { flex-direction:row; width:auto; }
  .sv-arrow-line { width:2px; height:40px; }
  .sv-arrow svg { transform:rotate(90deg); }
}

/* Solution premium flow visual */
.sol-flow { display:grid; grid-template-columns:200px 1fr 240px; gap:0; align-items:center; margin-top:56px; padding:40px 0; }
.sol-flow-label { font-size:10px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:14px; }
.sol-flow-label.sol-label-green { color:#34D399; }

/* Left: user input bubble */
.sol-flow-input { display:flex; flex-direction:column; align-items:center; text-align:center; }
.sol-input-bubble { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:16px 20px; font-size:14px; color:#E5E7EB; min-height:52px; min-width:180px; display:flex; align-items:center; position:relative; }
.sol-input-cursor { display:inline-block; width:2px; height:18px; background:#6382FF; animation:cursorBlink 1s step-end infinite; margin-left:2px; }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.sol-typed-text { color:#E5E7EB; }
.sol-input-hint { font-size:11px; color:#4B5563; margin-top:10px; font-style:italic; }

/* Center: orchestrator */
.sol-flow-center { display:flex; align-items:center; gap:0; justify-content:center; }
.sol-flow-arrow-in, .sol-flow-arrow-out { width:48px; height:2px; background:rgba(99,130,255,0.12); position:relative; overflow:hidden; flex-shrink:0; }
.sol-arrow-pulse { position:absolute; top:-1px; left:-40%; width:40%; height:4px; background:rgba(99,130,255,0.5); border-radius:2px; animation:solPulseMove 2s ease-in-out infinite; }
@keyframes solPulseMove { 0%{left:-40%;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{left:100%;opacity:0} }
.sol-orchestrator { background:rgba(255,255,255,0.02); border:1px solid rgba(99,130,255,0.12); border-radius:20px; padding:28px 24px; text-align:center; min-width:280px; }
.sol-gabriel-hub { display:flex; flex-direction:column; align-items:center; gap:6px; margin-bottom:18px; }
.sol-gabriel-hub img { width:52px; height:52px; border-radius:50%; border:2px solid rgba(99,130,255,0.3); box-shadow:0 0 14px rgba(99,130,255,0.15); }
.sol-gabriel-hub span { font-size:13px; font-weight:600; color:#E5E7EB; }
.sol-agents-grid { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:14px; }
.sol-agent-chip { display:flex; align-items:center; gap:6px; padding:6px 10px; font-size:11px; font-weight:500; color:#9CA3AF; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:8px; white-space:nowrap; }
.sol-chip-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; animation:pulse 2s ease-in-out infinite; }
.sol-chip-dot.paid { background:#818CF8; }
.sol-chip-dot.organic { background:#34D399; }
.sol-chip-dot.outbound { background:#FBBF24; }
.sol-chip-dot.website { background:#22D3EE; }
.sol-chip-dot.crm { background:#F472B6; }
.sol-chip-dot.support { background:#FB923C; }
.sol-center-tag { font-size:11px; color:#4B5563; font-style:italic; }

/* Right: output basket */
.sol-flow-output { display:flex; flex-direction:column; align-items:center; text-align:left; }
.sol-output-basket { background:rgba(52,211,153,0.03); border:1px solid rgba(52,211,153,0.12); border-radius:14px; padding:18px 20px; display:flex; flex-direction:column; gap:10px; }
.sol-output-item { display:flex; align-items:center; gap:8px; font-size:13px; color:#D1D5DB; }
.sol-out-icon { color:#34D399; font-size:12px; font-weight:700; flex-shrink:0; }
.sol-basket-tag { font-size:11px; color:#4B5563; margin-top:10px; font-style:italic; text-align:center; }

@media (max-width:900px) {
  .sol-flow { grid-template-columns:1fr; gap:32px; }
  .sol-flow-arrow-in, .sol-flow-arrow-out { width:2px; height:32px; margin:0 auto; }
  .sol-arrow-pulse { width:4px; height:40%; top:auto; left:auto; animation:solPulseMoveV 2s ease-in-out infinite; }
  @keyframes solPulseMoveV { 0%{top:-40%;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{top:100%;opacity:0} }
  .sol-flow-center { flex-direction:column; }
}

/* ===== JUSTIFY / WHY THIS MODEL ===== */
.justify-section { position:relative; z-index:1; padding:100px 24px 80px; }
.justify-container { max-width:1140px; margin:0 auto; }
.justify-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:100px; font-size:11px; font-weight:600; color:#9CA3AF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.justify-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.justify-headline .green { color:#34D399; }
.justify-headline .g4blue { color:#6382FF; }

/* Compare table */
.compare-table { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.compare-col { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:14px; padding:24px 18px; }
.compare-col.bad { border-color:rgba(239,68,68,0.1); }
.compare-col.featured { border-color:rgba(52,211,153,0.25); background:rgba(52,211,153,0.03); }
.compare-col-tag { font-size:13px; font-weight:600; color:#9CA3AF; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.05); }
.compare-col-tag.g4 { color:#34D399; }
.compare-desc { font-size:14px; color:#9CA3AF; line-height:1.55; }
.compare-desc.good { color:#D1D5DB; }
.compare-price { font-size:13px; font-weight:700; color:#EF4444; margin-top:12px; letter-spacing:0.04em; }
.compare-bottom-line { margin-top:16px; padding-top:12px; border-top:1px solid rgba(52,211,153,0.12); font-size:13px; font-weight:500; color:#34D399; line-height:1.5; }

/* G4 reinforcement block */
.g4-reinforce { margin-top:64px; }
.g4-reinforce-inner { display:flex; align-items:flex-start; gap:32px; background:rgba(255,255,255,0.02); border:1px solid rgba(99,130,255,0.15); border-radius:16px; padding:36px 32px; }
.g4-reinforce-avatar { flex-shrink:0; }
.g4-reinforce-avatar img { width:72px; height:72px; border-radius:50%; border:2px solid rgba(99,130,255,0.3); }
.g4-reinforce-content { flex:1; min-width:0; }
.g4-reinforce-tag { font-size:11px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; }
.g4-reinforce-title { font-size:20px; font-weight:700; color:#FFF; letter-spacing:-0.02em; line-height:1.3; margin-bottom:12px; }
.g4-reinforce-text { font-size:15px; color:#9CA3AF; line-height:1.6; margin-bottom:20px; max-width:600px; }
.g4-reinforce-pills { display:flex; flex-wrap:wrap; gap:8px; }
.g4-pill { padding:5px 14px; font-size:12px; font-weight:500; color:#9CA3AF; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:100px; }
.g4-pill.accent { color:#6382FF; border-color:rgba(99,130,255,0.25); background:rgba(99,130,255,0.06); }

@media (max-width:700px) {
  .g4-reinforce-inner { flex-direction:column; align-items:center; text-align:center; gap:20px; padding:28px 24px; }
  .g4-reinforce-pills { justify-content:center; }
}

@media (max-width:900px) {
  .compare-table { grid-template-columns:repeat(2,1fr); }
  .compare-col.featured { grid-column:1/-1; }
}
@media (max-width:480px) {
  .compare-table { grid-template-columns:1fr; }
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section { position:relative; z-index:1; padding:80px 24px; }
.disclaimer-container { max-width:1140px; margin:0 auto; text-align:center; }
.disclaimer-quote { font-size:clamp(20px,2.5vw,28px); font-weight:600; color:#FFF; letter-spacing:-0.02em; line-height:1.35; margin-bottom:48px; font-style:italic; }
.disclaimer-details { display:grid; grid-template-columns:1fr 1fr; gap:24px; text-align:left; }
.disclaimer-item { display:flex; align-items:flex-start; gap:14px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:14px; padding:24px 20px; }
.disclaimer-icon { width:40px; height:40px; border-radius:10px; background:rgba(99,130,255,0.08); border:1px solid rgba(99,130,255,0.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#6382FF; }
.disclaimer-icon svg { width:20px; height:20px; }
.disclaimer-text { font-size:14px; color:#9CA3AF; line-height:1.55; }
.disclaimer-highlight { color:#FFF; font-weight:600; }

@media (max-width:600px) {
  .disclaimer-details { grid-template-columns:1fr; }
}

/* ===== WITH / WITHOUT ===== */
.withwithout-section { position:relative; z-index:1; padding:0 24px 100px; }
.withwithout-container { max-width:1140px; margin:0 auto; }
.withwithout-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.ww-col { border-radius:16px; padding:32px 28px; }
.ww-col.without { background:rgba(239,68,68,0.02); border:1px solid rgba(239,68,68,0.1); }
.ww-col.with { background:rgba(52,211,153,0.02); border:1px solid rgba(52,211,153,0.15); }
.ww-header { font-size:14px; font-weight:600; margin-bottom:20px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,0.05); }
.ww-header.without { color:#EF4444; }
.ww-header.with { color:#34D399; }
.ww-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.ww-list li { font-size:14px; color:#9CA3AF; line-height:1.55; padding-left:16px; position:relative; }
.ww-col.without .ww-list li::before { content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:rgba(239,68,68,0.3); }
.ww-col.with .ww-list li::before { content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:rgba(52,211,153,0.4); }
.ww-col.with .ww-list li { color:#D1D5DB; }

@media (max-width:600px) {
  .withwithout-grid { grid-template-columns:1fr; }
}

/* ===== IDEAL FOR ===== */
.idealfor-section { position:relative; z-index:1; padding:100px 24px 80px; }
.idealfor-container { max-width:1140px; margin:0 auto; }
.idealfor-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(99,130,255,0.08); border:1px solid rgba(99,130,255,0.15); border-radius:100px; font-size:11px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.idealfor-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.idealfor-sub { font-size:17px; color:#9CA3AF; line-height:1.6; max-width:620px; margin-bottom:48px; }
.idealfor-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:48px; }
.idealfor-card { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:28px 24px; position:relative; transition:border-color 0.3s; }
.idealfor-card:hover { border-color:rgba(255,255,255,0.12); }
.idealfor-card.highlight { border-color:rgba(99,130,255,0.25); background:rgba(99,130,255,0.03); }
.idealfor-card-icon { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; margin-bottom:16px; }
.idealfor-card-icon.solo { background:rgba(255,255,255,0.05); color:#9CA3AF; }
.idealfor-card-icon.sweet { background:rgba(99,130,255,0.1); color:#6382FF; }
.idealfor-card-icon.mid { background:rgba(255,255,255,0.05); color:#9CA3AF; }
.idealfor-card-best { font-size:10px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; }
.idealfor-card-title { font-size:16px; font-weight:600; color:#FFF; margin-bottom:10px; }
.idealfor-card-text { font-size:14px; color:#9CA3AF; line-height:1.55; }
.idealfor-footer { text-align:center; padding-top:24px; border-top:1px solid rgba(255,255,255,0.04); }
.idealfor-footer-text { font-size:15px; color:#6B7280; font-style:italic; }

@media (max-width:700px) {
  .idealfor-grid { grid-template-columns:1fr; }
}

/* ===== TYPICAL RESULTS ===== */
.typresults-section { position:relative; z-index:1; padding:100px 24px 80px; }
.typresults-container { max-width:1140px; margin:0 auto; }
.typresults-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:100px; font-size:11px; font-weight:600; color:#9CA3AF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.typresults-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:48px; }
.typresults-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.typresults-card { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:0; overflow:hidden; transition:border-color 0.3s; }
.typresults-card:hover { border-color:rgba(255,255,255,0.12); }
.typresults-video { position:relative; width:100%; aspect-ratio:16/9; background:rgba(255,255,255,0.03); display:flex; align-items:center; justify-content:center; cursor:pointer; }
.typresults-play { width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.typresults-play svg { width:20px; height:20px; color:#FFF; margin-left:2px; }
.typresults-card:hover .typresults-play { background:rgba(99,130,255,0.15); border-color:rgba(99,130,255,0.3); }
.typresults-video-label { position:absolute; bottom:10px; left:50%; transform:translateX(-50%); font-size:10px; font-weight:500; color:#6B7280; }
.typresults-card-tag { font-size:13px; font-weight:600; color:#FFF; padding:20px 24px 8px; }
.typresults-card-text { font-size:14px; color:#9CA3AF; line-height:1.55; padding:0 24px 24px; }

@media (max-width:700px) {
  .typresults-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
}

/* ===== HOW TO START ===== */
.howto-section { position:relative; z-index:1; padding:100px 24px 80px; }
.howto-container { max-width:1140px; margin:0 auto; }
.howto-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:100px; font-size:11px; font-weight:600; color:#9CA3AF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.howto-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:48px; }
.howto-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.howto-card { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:28px 24px; transition:border-color 0.3s; }
.howto-card:hover { border-color:rgba(255,255,255,0.12); }
.howto-step { font-size:11px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; }
.howto-card-title { font-size:16px; font-weight:600; color:#FFF; margin-bottom:8px; }
.howto-card-text { font-size:14px; color:#9CA3AF; line-height:1.5; }

/* ===== AGENTS CAROUSEL ===== */
.carousel-section { position:relative; z-index:1; padding:100px 0 80px; overflow:hidden; }
.carousel-header { max-width:1140px; margin:0 auto 48px; padding:0 24px; }
.carousel-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; }
.carousel-track-wrapper { position:relative; overflow:visible; }
.carousel-track { display:flex; gap:24px; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1); cursor:grab; user-select:none; padding:20px 0; }
.carousel-track.dragging { transition:none; cursor:grabbing; }
.carousel-card { width:70vw; max-width:900px; min-width:320px; flex-shrink:0; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:20px; overflow:hidden; transition:all 0.4s; transform:scale(0.92); opacity:0.5; }
.carousel-card.active { transform:scale(1); opacity:1; border-color:rgba(255,255,255,0.12); }
.carousel-card-body { padding:32px; padding-right:260px; position:relative; min-height:320px; }
.carousel-card-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.carousel-card-icon svg { width:24px; height:24px; }
.carousel-card-name { font-size:22px; font-weight:700; color:#FFF; letter-spacing:-0.02em; margin-bottom:4px; }
.carousel-card-role { font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:20px; }
.carousel-card-gif-inline { position:absolute; right:28px; top:50%; transform:translateY(-50%); width:220px; border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,0.08); }
.carousel-card-gif-inline img { width:100%; height:auto; aspect-ratio:16/9; object-fit:cover; display:block; }
.carousel-card-divider { width:100%; height:1px; background:rgba(255,255,255,0.06); margin-bottom:20px; }
.carousel-card-label { font-size:10px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:12px; }
.carousel-card-delivers { list-style:none; display:flex; flex-direction:column; gap:10px; }
.carousel-card-delivers li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#D1D5DB; line-height:1.45; }
.carousel-card-delivers li .deliver-icon { flex-shrink:0; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; font-size:10px; }
.carousel-card-tag { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:100px; font-size:10px; font-weight:600; letter-spacing:0.04em; margin-top:20px; }
.carousel-card-tag .tag-dot { width:5px; height:5px; border-radius:50%; animation:pulse 2s ease-in-out infinite; }

/* Carousel nav */
.carousel-nav { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:40px; padding:0 24px; }
.carousel-btn { width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.2s; color:#9CA3AF; flex-shrink:0; }
.carousel-btn:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.15); color:#FFF; }
.carousel-btn svg { width:20px; height:20px; }
.carousel-dots { display:flex; gap:8px; align-items:center; }
.carousel-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.1); border:none; cursor:pointer; transition:all 0.3s; padding:0; }
.carousel-dot.active { background:#FFF; width:24px; border-radius:4px; }

/* Carousel color themes */
.carousel-card[data-color="indigo"] .carousel-card-icon { background:rgba(99,102,241,0.1); color:#818CF8; }
.carousel-card[data-color="indigo"] .carousel-card-role { color:#818CF8; }
.carousel-card[data-color="indigo"] .deliver-icon { background:rgba(99,102,241,0.1); color:#818CF8; }
.carousel-card[data-color="indigo"] .carousel-card-tag { background:rgba(99,102,241,0.08); color:#818CF8; }
.carousel-card[data-color="indigo"] .tag-dot { background:#818CF8; }

.carousel-card[data-color="green"] .carousel-card-icon { background:rgba(52,211,153,0.1); color:#34D399; }
.carousel-card[data-color="green"] .carousel-card-role { color:#34D399; }
.carousel-card[data-color="green"] .deliver-icon { background:rgba(52,211,153,0.1); color:#34D399; }
.carousel-card[data-color="green"] .carousel-card-tag { background:rgba(52,211,153,0.08); color:#34D399; }
.carousel-card[data-color="green"] .tag-dot { background:#34D399; }

.carousel-card[data-color="cyan"] .carousel-card-icon { background:rgba(34,211,238,0.1); color:#22D3EE; }
.carousel-card[data-color="cyan"] .carousel-card-role { color:#22D3EE; }
.carousel-card[data-color="cyan"] .deliver-icon { background:rgba(34,211,238,0.1); color:#22D3EE; }
.carousel-card[data-color="cyan"] .carousel-card-tag { background:rgba(34,211,238,0.08); color:#22D3EE; }
.carousel-card[data-color="cyan"] .tag-dot { background:#22D3EE; }

.carousel-card[data-color="amber"] .carousel-card-icon { background:rgba(251,191,36,0.1); color:#FBBF24; }
.carousel-card[data-color="amber"] .carousel-card-role { color:#FBBF24; }
.carousel-card[data-color="amber"] .deliver-icon { background:rgba(251,191,36,0.1); color:#FBBF24; }
.carousel-card[data-color="amber"] .carousel-card-tag { background:rgba(251,191,36,0.08); color:#FBBF24; }
.carousel-card[data-color="amber"] .tag-dot { background:#FBBF24; }

.carousel-card[data-color="pink"] .carousel-card-icon { background:rgba(244,114,182,0.1); color:#F472B6; }
.carousel-card[data-color="pink"] .carousel-card-role { color:#F472B6; }
.carousel-card[data-color="pink"] .deliver-icon { background:rgba(244,114,182,0.1); color:#F472B6; }
.carousel-card[data-color="pink"] .carousel-card-tag { background:rgba(244,114,182,0.08); color:#F472B6; }
.carousel-card[data-color="pink"] .tag-dot { background:#F472B6; }

.carousel-card[data-color="sky"] .carousel-card-icon { background:rgba(56,189,248,0.1); color:#38BDF8; }
.carousel-card[data-color="sky"] .carousel-card-role { color:#38BDF8; }
.carousel-card[data-color="sky"] .deliver-icon { background:rgba(56,189,248,0.1); color:#38BDF8; }
.carousel-card[data-color="sky"] .carousel-card-tag { background:rgba(56,189,248,0.08); color:#38BDF8; }
.carousel-card[data-color="sky"] .tag-dot { background:#38BDF8; }

.carousel-card[data-color="violet"] .carousel-card-icon { background:rgba(167,139,250,0.1); color:#A78BFA; }
.carousel-card[data-color="violet"] .carousel-card-role { color:#A78BFA; }
.carousel-card[data-color="violet"] .deliver-icon { background:rgba(167,139,250,0.1); color:#A78BFA; }
.carousel-card[data-color="violet"] .carousel-card-tag { background:rgba(167,139,250,0.08); color:#A78BFA; }
.carousel-card[data-color="violet"] .tag-dot { background:#A78BFA; }

.carousel-card[data-color="rose"] .carousel-card-icon { background:rgba(251,113,133,0.1); color:#FB7185; }
.carousel-card[data-color="rose"] .carousel-card-role { color:#FB7185; }
.carousel-card[data-color="rose"] .deliver-icon { background:rgba(251,113,133,0.1); color:#FB7185; }
.carousel-card[data-color="rose"] .carousel-card-tag { background:rgba(251,113,133,0.08); color:#FB7185; }
.carousel-card[data-color="rose"] .tag-dot { background:#FB7185; }

.carousel-card[data-color="teal"] .carousel-card-icon { background:rgba(45,212,191,0.1); color:#2DD4BF; }
.carousel-card[data-color="teal"] .carousel-card-role { color:#2DD4BF; }
.carousel-card[data-color="teal"] .deliver-icon { background:rgba(45,212,191,0.1); color:#2DD4BF; }
.carousel-card[data-color="teal"] .carousel-card-tag { background:rgba(45,212,191,0.08); color:#2DD4BF; }
.carousel-card[data-color="teal"] .tag-dot { background:#2DD4BF; }

.carousel-card[data-color="orange"] .carousel-card-icon { background:rgba(251,146,60,0.1); color:#FB923C; }
.carousel-card[data-color="orange"] .carousel-card-role { color:#FB923C; }
.carousel-card[data-color="orange"] .deliver-icon { background:rgba(251,146,60,0.1); color:#FB923C; }
.carousel-card[data-color="orange"] .carousel-card-tag { background:rgba(251,146,60,0.08); color:#FB923C; }
.carousel-card[data-color="orange"] .tag-dot { background:#FB923C; }

/* ===== RESULTS SECTION ===== */
.results-section { position:relative; z-index:1; padding:0; overflow:hidden; }
.results-inner { position:relative; padding:120px 24px 100px; background:rgba(52,211,153,0.03); border-top:1px solid rgba(52,211,153,0.08); border-bottom:1px solid rgba(52,211,153,0.08); }
.results-container { max-width:1140px; margin:0 auto; text-align:center; }
.results-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(52,211,153,0.08); border:1px solid rgba(52,211,153,0.15); border-radius:100px; font-size:11px; font-weight:600; color:#34D399; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.results-badge svg { width:14px; height:14px; }
.results-headline { font-size:clamp(32px,4vw,52px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.1; margin-bottom:16px; }
.results-headline .green { color:#34D399; }
.results-sub { font-size:17px; color:#9CA3AF; line-height:1.6; max-width:480px; margin:0 auto 72px; }
.results-metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-bottom:80px; }
.results-metric { padding:40px 20px; text-align:center; position:relative; }
.results-metric::after { content:''; position:absolute; top:20%; right:0; height:60%; width:1px; background:rgba(255,255,255,0.06); }
.results-metric:last-child::after { display:none; }
.results-metric-number { font-size:clamp(40px,5vw,64px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1; margin-bottom:8px; }
.results-metric-number .accent { color:#34D399; }
.results-metric-label { font-size:14px; color:#6B7280; line-height:1.4; max-width:160px; margin:0 auto; }
.results-testimonial-strip { display:flex; align-items:center; justify-content:center; gap:48px; padding:40px 0; margin-bottom:64px; border-top:1px solid rgba(255,255,255,0.04); border-bottom:1px solid rgba(255,255,255,0.04); }
.results-testimonial-item { display:flex; align-items:center; gap:16px; max-width:400px; }
.results-testimonial-avatar { width:48px; height:48px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid rgba(52,211,153,0.2); }
.results-testimonial-avatar img { width:100%; height:100%; object-fit:cover; }
.results-testimonial-text { font-size:14px; color:#D1D5DB; line-height:1.5; font-style:italic; text-align:left; }
.results-testimonial-author { font-size:12px; color:#6B7280; margin-top:4px; font-style:normal; text-align:left; }
.results-cta-block { display:flex; flex-direction:column; align-items:center; gap:20px; }
.results-cta-text { font-size:20px; font-weight:600; color:#FFF; }
.results-cta-btn { display:inline-flex; align-items:center; gap:10px; padding:16px 32px; font-size:15px; font-weight:600; color:#0B0B0B; background:#34D399; border:none; border-radius:12px; cursor:pointer; transition:all 0.25s; text-decoration:none; }
.results-cta-btn:hover { background:#2CC48A; transform:translateY(-2px); box-shadow:0 8px 30px rgba(52,211,153,0.25); }
.results-cta-btn svg { width:18px; height:18px; transition:transform 0.2s; }
.results-cta-btn:hover svg { transform:translateX(3px); }
.results-cta-hint { font-size:13px; color:#6B7280; }

/* ===== PRICING ===== */
.pricing-section { position:relative; z-index:1; padding:100px 24px 60px; }
.pricing-container { max-width:1140px; margin:0 auto; }
.pricing-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.pricing-sub { font-size:17px; color:#9CA3AF; line-height:1.6; max-width:480px; margin-bottom:56px; }
.pricing-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-bottom:100px; }
.pricing-card { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:36px 28px; display:flex; flex-direction:column; transition:all 0.3s; }
.pricing-card:hover { border-color:rgba(255,255,255,0.12); }
.pricing-card.featured { border-color:rgba(52,211,153,0.3); background:rgba(52,211,153,0.04); position:relative; }
.pricing-card.featured::before { content:'Most popular'; position:absolute; top:-11px; left:28px; padding:3px 12px; font-size:11px; font-weight:600; color:#0B0B0B; background:#34D399; border-radius:100px; }
.pricing-tier-name { font-size:15px; font-weight:600; color:#9CA3AF; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:16px; }
.pricing-price { display:flex; align-items:baseline; gap:4px; margin-bottom:8px; }
.pricing-amount { font-size:40px; font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1; }
.pricing-period { font-size:15px; color:#6B7280; }
.pricing-value { font-size:14px; color:#9CA3AF; margin-bottom:28px; line-height:1.5; }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; flex:1; }
.pricing-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#D1D5DB; line-height:1.4; }
.pricing-features li svg { width:16px; height:16px; color:#34D399; flex-shrink:0; margin-top:1px; }
.pricing-cta { display:inline-flex; align-items:center; justify-content:center; padding:12px 24px; font-size:14px; font-weight:600; border-radius:10px; text-decoration:none; transition:all 0.2s; }
.pricing-cta.primary { background:#FFF; color:#0B0B0B; }
.pricing-cta.primary:hover { background:#E5E5E5; transform:translateY(-1px); }
.pricing-cta.secondary { background:transparent; color:#9CA3AF; border:1px solid rgba(255,255,255,0.1); }
.pricing-cta.secondary:hover { color:#FFF; border-color:rgba(255,255,255,0.25); }

/* ===== PROPOSAL BUILDER ===== */
.proposal-section { position:relative; z-index:1; padding:100px 24px 80px; }
.proposal-container { max-width:1140px; margin:0 auto; }
.proposal-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(99,130,255,0.08); border:1px solid rgba(99,130,255,0.15); border-radius:100px; font-size:11px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.proposal-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.proposal-sub { font-size:17px; color:#9CA3AF; line-height:1.6; margin-bottom:48px; }
.proposal-layout { display:grid; grid-template-columns:1fr 340px; gap:32px; align-items:start; }
.proposal-agents { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.proposal-card { position:relative; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); border-radius:14px; padding:20px 20px 20px 52px; cursor:pointer; transition:border-color 0.2s, background 0.2s; user-select:none; }
.proposal-card:hover { border-color:rgba(255,255,255,0.12); }
.proposal-card.selected { border-color:rgba(99,130,255,0.4); background:rgba(99,130,255,0.04); }
.proposal-card-check { position:absolute; top:20px; left:18px; width:22px; height:22px; border-radius:6px; border:1.5px solid rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.proposal-card-check svg { width:14px; height:14px; color:transparent; transition:color 0.2s; }
.proposal-card.selected .proposal-card-check { background:#6382FF; border-color:#6382FF; }
.proposal-card.selected .proposal-card-check svg { color:#FFF; }
.proposal-card-name { font-size:15px; font-weight:600; color:#FFF; margin-bottom:2px; }
.proposal-card-area { font-size:11px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:10px; }
.proposal-card-help { font-size:13px; color:#9CA3AF; line-height:1.45; margin-bottom:12px; font-style:italic; }
.proposal-card-delivers { list-style:none; display:flex; flex-direction:column; gap:6px; }
.proposal-card-delivers li { font-size:12px; color:#6B7280; line-height:1.4; padding-left:14px; position:relative; }
.proposal-card-delivers li::before { content:''; position:absolute; left:0; top:6px; width:5px; height:5px; border-radius:50%; background:rgba(99,130,255,0.3); }
.proposal-card.selected .proposal-card-delivers li::before { background:rgba(99,130,255,0.6); }

/* Proposal summary sidebar */
.proposal-summary { position:sticky; top:88px; }
.proposal-summary-inner { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:28px 24px; }
.proposal-summary-title { font-size:16px; font-weight:600; color:#FFF; margin-bottom:20px; }
.proposal-summary-empty { font-size:14px; color:#6B7280; line-height:1.5; }
.proposal-summary-list { display:flex; flex-direction:column; gap:10px; }
.proposal-summary-item { display:flex; align-items:center; justify-content:space-between; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.04); }
.proposal-summary-item-name { font-size:13px; font-weight:500; color:#E5E7EB; }
.proposal-summary-item-price { font-size:13px; font-weight:600; color:#9CA3AF; }
.proposal-summary-divider { height:1px; background:rgba(255,255,255,0.08); margin:20px 0; }
.proposal-summary-total { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.proposal-summary-total span:first-child { font-size:14px; font-weight:500; color:#9CA3AF; }
.proposal-total-value { font-size:28px; font-weight:700; color:#FFF; letter-spacing:-0.02em; }
.proposal-summary-cta { display:flex; align-items:center; justify-content:center; width:100%; padding:14px 24px; font-size:14px; font-weight:600; color:#0B0B0B; background:#FFF; border-radius:10px; text-decoration:none; transition:all 0.2s; }
.proposal-summary-cta:hover { background:#E5E5E5; transform:translateY(-1px); }

@media (max-width:900px) {
  .proposal-layout { grid-template-columns:1fr; }
  .proposal-summary { position:relative; top:0; }
}
@media (max-width:600px) {
  .proposal-agents { grid-template-columns:1fr; }
}

/* ===== HOW IT WORKS (new) ===== */
.hiw-section { position:relative; z-index:1; padding:100px 24px 80px; }
.hiw-container { max-width:1140px; margin:0 auto; }
.hiw-badge { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:100px; font-size:11px; font-weight:600; color:#9CA3AF; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:24px; }
.hiw-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:56px; }
/* HIW 3-column visual */
.hiw-visual-3col { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:0; align-items:center; margin-bottom:56px; padding:32px 0; }
.hiw-col { display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; }
.hiw-col-label { font-size:11px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.08em; }
.hiw-col-label.green { color:#34D399; }
.hiw-col-visual { min-height:160px; display:flex; align-items:center; justify-content:center; }
.hiw-col-footer { font-size:12px; color:#6B7280; }
.hiw-col-footer.red { color:#EF4444; }
.hiw-col-footer.green { color:#34D399; }

/* Team group */
.hiw-team-group { display:flex; flex-direction:column; align-items:center; gap:12px; }
.hiw-person { display:flex; flex-direction:column; align-items:center; gap:4px; }
.hiw-person.main img { width:48px; height:48px; border-radius:50%; border:2px solid rgba(255,255,255,0.12); }
.hiw-person.main span { font-size:11px; font-weight:500; color:#E5E7EB; }
.hiw-person-sm { display:flex; align-items:center; gap:6px; }
.hiw-person-sm img { width:28px; height:28px; border-radius:50%; opacity:0.7; }
.hiw-person-sm span { font-size:11px; color:#6B7280; }
.hiw-person-sm.ai img { border:1.5px solid rgba(129,140,248,0.3); opacity:0.8; }

/* Struggling pipeline mini */
.hiw-pipe-mini { display:flex; flex-direction:column; gap:6px; align-items:center; }
.hiw-pipe-bar-mini { width:120px; height:6px; background:rgba(255,255,255,0.06); border-radius:3px; overflow:hidden; }
.hiw-pipe-mini.struggling .hiw-pipe-fill-mini { height:100%; background:#EF4444; border-radius:3px; opacity:0.6; }
.hiw-pipe-mini.healthy .hiw-pipe-fill-mini { height:100%; background:#34D399; border-radius:3px; }
.hiw-pipe-mini span { font-size:11px; }

/* G4 hub */
.hiw-g4-hub { display:flex; flex-direction:column; align-items:center; gap:14px; }
.hiw-gabriel { display:flex; flex-direction:column; align-items:center; gap:4px; }
.hiw-gabriel img { width:52px; height:52px; border-radius:50%; border:2px solid rgba(99,130,255,0.35); box-shadow:0 0 14px rgba(99,130,255,0.15); }
.hiw-gabriel span { font-size:12px; font-weight:600; color:#E5E7EB; }
.hiw-ai-ring { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; max-width:200px; }
.hiw-ai-dot { display:flex; align-items:center; gap:4px; padding:4px 8px; font-size:10px; font-weight:500; color:#9CA3AF; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:6px; }
.hiw-dot-c { width:5px; height:5px; border-radius:50%; flex-shrink:0; animation:pulse 2s ease-in-out infinite; }
.hiw-dot-c.paid { background:#818CF8; }
.hiw-dot-c.outbound { background:#FBBF24; }
.hiw-dot-c.organic { background:#34D399; }
.hiw-dot-c.crm { background:#F472B6; }
.hiw-dot-c.web { background:#22D3EE; }

/* Unified group */
.hiw-unified-group { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; align-items:center; max-width:200px; }
.hiw-person.g4-border img { border-color:rgba(99,130,255,0.4); box-shadow:0 0 10px rgba(99,130,255,0.15); }

/* Arrows between columns */
.hiw-col-arrow { display:flex; flex-direction:column; align-items:center; gap:6px; padding:0 12px; flex-shrink:0; }
.hiw-arrow-line-h { width:48px; height:2px; background:rgba(99,130,255,0.12); position:relative; overflow:hidden; }
.hiw-arrow-pulse-h { position:absolute; top:-1px; left:-40%; width:40%; height:4px; background:rgba(99,130,255,0.5); border-radius:2px; animation:solPulseMove 2s ease-in-out infinite; }
.hiw-arrow-text { font-size:10px; font-weight:600; color:#6382FF; text-transform:uppercase; letter-spacing:0.06em; white-space:nowrap; }
.hiw-arrow-icon { width:16px; height:16px; color:#6382FF; }

@media (max-width:800px) {
  .hiw-visual-3col { grid-template-columns:1fr; gap:24px; }
  .hiw-col-arrow { flex-direction:row; padding:8px 0; }
  .hiw-arrow-line-h { width:2px; height:32px; }
  .hiw-arrow-icon { transform:rotate(90deg); }
}

.hiw-timeline { display:flex; flex-direction:column; gap:0; }
.hiw-step { display:flex; align-items:flex-start; gap:20px; }
.hiw-step-number { width:40px; height:40px; border-radius:50%; background:rgba(99,130,255,0.08); border:1.5px solid rgba(99,130,255,0.2); display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700; color:#6382FF; flex-shrink:0; }
.hiw-step-content { padding-top:6px; }
.hiw-step-title { font-size:17px; font-weight:600; color:#FFF; margin-bottom:6px; }
.hiw-step-text { font-size:14px; color:#9CA3AF; line-height:1.55; }
.hiw-connector { width:1.5px; height:32px; background:rgba(99,130,255,0.12); margin-left:19px; }

/* ===== FAQ ===== */
.faq-section { position:relative; z-index:1; padding:100px 24px 80px; }
.faq-container { max-width:1140px; margin:0 auto; }
.faq-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:48px; }
.faq-item { border-bottom:1px solid rgba(255,255,255,0.06); }
.faq-question { width:100%; background:none; border:none; padding:24px 0; display:flex; align-items:center; justify-content:space-between; cursor:pointer; gap:16px; }
.faq-question span { font-size:16px; font-weight:500; color:#E5E7EB; text-align:left; }
.faq-question svg { width:18px; height:18px; color:#6B7280; flex-shrink:0; transition:transform 0.3s; }
.faq-item.open .faq-question svg { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease,padding 0.35s ease; }
.faq-item.open .faq-answer { max-height:200px; }
.faq-answer p { font-size:15px; color:#9CA3AF; line-height:1.6; padding-bottom:24px; max-width:600px; }

/* ===== LEAD CAPTURE ===== */
.final-cta { text-align:center; padding:100px 24px 120px; }
.final-cta-headline { font-size:clamp(28px,3.5vw,42px); font-weight:700; color:#FFF; letter-spacing:-0.03em; line-height:1.15; margin-bottom:16px; }
.final-cta-sub { font-size:17px; color:#9CA3AF; line-height:1.6; max-width:440px; margin:0 auto 40px; }
.lead-form { max-width:480px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.lead-form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.lead-input { width:100%; padding:14px 16px; font-size:14px; font-family:'Inter',sans-serif; color:#FFF; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:10px; outline:none; transition:all 0.2s; }
.lead-input::placeholder { color:#6B7280; }
.lead-input:focus { border-color:rgba(255,255,255,0.2); background:rgba(255,255,255,0.07); }
.lead-submit { width:100%; padding:15px 24px; font-size:15px; font-family:'Inter',sans-serif; font-weight:600; color:#0B0B0B; background:#FFF; border:none; border-radius:10px; cursor:pointer; transition:all 0.2s; margin-top:4px; }
.lead-submit:hover { background:#E5E5E5; transform:translateY(-1px); box-shadow:0 4px 20px rgba(255,255,255,0.1); }
.lead-trust { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:16px; }
.lead-trust span { display:flex; align-items:center; gap:6px; font-size:12px; color:#6B7280; }
.lead-trust svg { width:14px; height:14px; color:#4B5563; }

/* ===== FOOTER ===== */
.footer { position:relative; z-index:1; padding:80px 24px 40px; border-top:1px solid rgba(255,255,255,0.05); }
.footer-container { max-width:1140px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:64px; }
.footer-brand-name { font-size:20px; font-weight:700; color:#FFF; letter-spacing:-0.04em; margin-bottom:12px; }
.footer-brand-desc { font-size:14px; color:#6B7280; line-height:1.5; max-width:260px; }
.footer-col-title { font-size:12px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:20px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:14px; color:#9CA3AF; text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:#FFF; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:32px; border-top:1px solid rgba(255,255,255,0.05); }
.footer-copy { font-size:13px; color:#4B5563; }
.footer-socials { display:flex; gap:16px; }
.footer-socials a { color:#6B7280; transition:color 0.2s; }
.footer-socials a:hover { color:#FFF; }
.footer-socials svg { width:18px; height:18px; }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .hero-container { grid-template-columns:1fr; gap:60px; padding:80px 20px 60px; text-align:center; }
  .hero-content { align-items:center; }
  .hero-sub { max-width:520px; }
  .hero-ctas { justify-content:center; }
  .visual-wrapper { max-width:400px; margin:0 auto; }
  .problem-grid { grid-template-columns:1fr; }
  .solution-visual { flex-direction:column; gap:32px; }
  .howto-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:800px) {
  .pricing-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }
}

@media (max-width:768px) {
  .header-nav, .header-login { display:none; }
  .header-menu-btn { display:flex; }
}

@media (max-width:700px) {
  .carousel-card { width:85vw; }
  .carousel-card-body { padding:24px; padding-right:24px; min-height:auto; }
  .carousel-card-gif-inline { position:relative; top:auto; right:auto; transform:none; width:100%; max-width:100%; margin-top:16px; }
  .carousel-card-name { font-size:18px; }
  .results-metrics { grid-template-columns:1fr 1fr; }
  .results-metric::after { display:none; }
  .results-testimonial-strip { flex-direction:column; gap:24px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
}

@media (max-width:480px) {
  .hero-ctas { flex-direction:column; width:100%; }
  .btn-primary, .btn-ghost { width:100%; justify-content:center; }
  .logos-grid { grid-template-columns:repeat(3,1fr); gap:32px 20px; }
  .logos-grid img { height:36px; }
  .howto-grid { grid-template-columns:1fr; }
  .results-metrics { grid-template-columns:1fr; }
  .lead-form-row { grid-template-columns:1fr; }
  .lead-trust { flex-direction:column; gap:8px; }
  .footer-top { grid-template-columns:1fr; }
}
