/* ═══════════════════════════════════════
   OLVEX — home.css
═══════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 70px;
}
#orbCanvas {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 0; }
.hero-eyebrow { margin-bottom: 28px; animation: fadeUp .8s .3s both; }
.hero-title {
  font-size: clamp(52px,8vw,100px); font-weight: 900;
  line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 28px;
  animation: fadeUp .9s .5s both;
}
.hero-sub {
  font-size: clamp(16px,1.8vw,19px); font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 580px; margin: 0 auto 40px;
  animation: fadeUp .9s .7s both;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp .9s .9s both; }
.hero-trust { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; animation: fadeUp .9s 1.1s both; }
.hero-trust > span { font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }
.trust-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-pills span { font-size: 12px; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 5px 14px; border-radius: 100px; }

/* ── Stats bar ── */
.stats-bar { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.stat-block { text-align: center; padding: 8px 0; }
.stat-sep { width: 1px; height: 50px; background: var(--border); justify-self: center; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.service-more { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--purple); transition: gap var(--t); }
.service-more svg { width: 14px; height: 14px; }
.service-card:hover .service-more { gap: 10px; }

/* ── Why grid ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-card-stack { display: flex; flex-direction: column; gap: 14px; }
.why-card { display: flex; align-items: center; gap: 18px; background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; transition: border-color var(--t), transform var(--t); }
.why-card:hover { border-color: var(--border-2); transform: translateX(6px); }
.wc-icon { font-size: 24px; flex-shrink: 0; }
.why-card strong { font-size: 15px; font-weight: 600; display: block; margin-bottom: 4px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }

/* ── Tech ── */
.tech-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-align: center; }

/* ── Process preview ── */
.process-preview { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.pp-step { text-align: center; padding: 0 16px; }
.pp-num { font-size: 42px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.pp-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pp-step p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.pp-arrow { color: rgba(123,47,255,0.4); font-size: 22px; padding-top: 14px; align-self: start; }

/* ── CTA section ── */
.cta-section { padding: 80px 0 120px; }
.cta-box {
  background: linear-gradient(135deg,rgba(123,47,255,0.15),rgba(47,107,255,0.1));
  border: 1px solid rgba(123,47,255,0.25);
  border-radius: 28px; padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(36px,5vw,60px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; margin: 20px 0 18px; }
.cta-box p { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 36px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  #orbCanvas { width: 480px; height: 480px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card[style*="span 2"] { grid-column: span 1; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-sep { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-preview { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pp-arrow { display: none; }
}
@media (max-width: 640px) {
  #orbCanvas { width: 320px; height: 320px; }
  .hero-title { font-size: clamp(44px,12vw,72px); }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 48px 24px; }
  .process-preview { grid-template-columns: 1fr; }
}
