/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,100,200,0.18) 0%, transparent 70%);
  top: -200px; right: -100px; animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,180,0.12) 0%, transparent 70%);
  bottom: -100px; left: 10%; animation-delay: -3s;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(0,180,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,255,0.8) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}
.hero-content h1 {
  font-size: clamp(44px, 5.5vw, 76px);
  margin: 20px 0 24px; line-height: 1.05;
}
.hero-sub { font-size: 18px; color: var(--text); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* AUDIT CARD */
.hero-visual { display: flex; justify-content: center; }
.audit-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  width: 100%; max-width: 380px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), var(--glow-blue);
  animation: float 6s ease-in-out infinite;
}
.audit-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: var(--gray); }
.audit-dot { width: 8px; height: 8px; border-radius: 50%; }
.audit-dot.green { background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 2s infinite; }
.audit-domain { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.audit-items { display: flex; flex-direction: column; gap: 12px; }
.audit-item { display: flex; align-items: center; gap: 10px; }
.audit-label { font-size: 12px; color: var(--gray); min-width: 80px; }
.audit-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.audit-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.audit-val { font-size: 12px; font-weight: 700; min-width: 28px; text-align: right; }
.audit-val.bad { color: #ef4444; }
.audit-val.warn { color: #eab308; }
.audit-result { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.audit-opportunity { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(0,119,230,0.15); color: var(--teal); padding: 5px 12px; border-radius: 2px; }
.audit-cta { font-size: 13px; font-weight: 600; color: var(--white); cursor: pointer; }

/* MARQUEE */
.marquee-wrap { background: var(--grad); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee 24s linear infinite; }
.marquee-track span { font-family: 'Syne', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); padding: 0 20px; }
.marquee-track .mx { color: rgba(255,255,255,0.4); padding: 0 4px; }

/* STATS */
.stats-section { border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: 40px 0; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--gray); letter-spacing: 0.5px; }

/* SERVICES OVERVIEW */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.services-header h2 { font-size: clamp(36px, 4vw, 52px); }
.section-intro { font-size: 16px; color: var(--text); max-width: 400px; line-height: 1.7; }
.service-card { text-decoration: none; display: block; }
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(0,119,230,0.1);
  border: 1px solid rgba(0,119,230,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--white); }
.service-card p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
.service-price { font-size: 13px; font-weight: 600; color: var(--teal); }
.cta-card { background: var(--grad) !important; border-color: transparent !important; }
.cta-card:hover { box-shadow: 0 20px 60px rgba(0,119,230,0.4) !important; }
.cta-card .cta-card-inner { display: flex; flex-direction: column; height: 100%; }
.cta-card h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,0.85); flex: 1; }
.cta-card .btn { margin-top: 24px; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }

/* PROCESS */
.process-section { background: var(--dark-2); }
.process-section h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { padding: 0 32px; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.step-num { font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 4px; }
.step-line { width: 32px; height: 2px; background: var(--grad); margin-bottom: 20px; }
.process-step h3 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* CTA BAND */
.cta-band { background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; }
.cta-band p { color: var(--text); font-size: 16px; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 32px; }
  .process-step:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
