/* ============================================================
   home.css — Landing page styles
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position:   relative;
  min-height: 72vh;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  padding:    100px 0 60px;
}
.hero-bg {
  position:   absolute;
  inset:      0;
  background: linear-gradient(125deg, #060c18 0%, #0a1628 40%, #060d1e 70%, #080f1f 100%);
  z-index:    0;
}

/* Cloud orbs */
.hero-orbs {
  position:       absolute;
  inset:          0;
  overflow:       hidden;
  z-index:        1;
  pointer-events: none;
}
.orb {
  position:      absolute;
  border-radius: 50%;
  filter:        blur(80px);
  opacity:       0;
  animation:     orbFloat linear infinite;
}
.orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(37,99,235,.42) 0%, rgba(37,99,235,.08) 50%, transparent 70%);
  top: -180px; left: -120px;
  animation-duration: 18s;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(56,189,248,.32) 0%, rgba(56,189,248,.06) 50%, transparent 70%);
  top: 8%; right: -80px;
  animation-duration: 22s;
  animation-delay: -6s;
}
.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(99,102,241,.26) 0%, rgba(99,102,241,.05) 50%, transparent 70%);
  bottom: 8%; left: 30%;
  animation-duration: 26s;
  animation-delay: -12s;
}
.orb-4 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(34,197,94,.18) 0%, rgba(34,197,94,.04) 50%, transparent 70%);
  bottom: -60px; right: 22%;
  animation-duration: 20s;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%   { opacity: 0; transform: scale(.85) translateY(28px); }
  10%  { opacity: 1; }
  50%  { transform: scale(1.07) translateY(-18px) translateX(12px); }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: scale(.9) translateY(28px); }
}

/* Grid */
.hero-grid {
  position:    absolute;
  inset:       0;
  z-index:     1;
  background-image:
    linear-gradient(rgba(56,189,248,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image:  radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

/* Particles */
.particles       { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.particle {
  position:      absolute;
  width: 2px; height: 2px;
  background:    rgba(56,189,248,.55);
  border-radius: 50%;
  animation:     particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .35; }
  100% { transform: translateY(-100px) translateX(38px); opacity: 0; }
}

/* Hero content */
.hero-content { position: relative; z-index: 10; text-align: center; }

.hero-eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  background:     rgba(56,189,248,.09);
  border:         1px solid rgba(56,189,248,.22);
  color:          #7dd3fc;
  font-size:      .72rem;
  font-weight:    600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:        6px 15px;
  border-radius:  999px;
  margin-bottom:  24px;
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background:    #38bdf8;
  border-radius: 50%;
  animation:     pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(56,189,248,0); }
}

.hero-title {
  font-size:     clamp(2.2rem, 5vw, 3.8rem);
  font-weight:   900;
  line-height:   1.08;
  letter-spacing: -2px;
  color:         #f1f5f9;
  margin-bottom: 20px;
}
.hero-title .grad {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size:     clamp(.95rem, 1.8vw, 1.1rem);
  color:         #94a3b8;
  max-width:     560px;
  margin:        0 auto 34px;
  line-height:   1.75;
}
.hero-btns {
  display:         flex;
  justify-content: center;
  gap:             12px;
  flex-wrap:       wrap;
  margin-bottom:   44px;
}
.btn-hero-p {
  background:    linear-gradient(135deg, #2563eb, #1d4ed8);
  color:         #fff;
  border:        none;
  border-radius: 11px;
  padding:       14px 30px;
  font-weight:   700;
  font-size:     .95rem;
  text-decoration: none;
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  transition:    all .25s;
  box-shadow:    0 4px 20px rgba(37,99,235,.4);
}
.btn-hero-p:hover {
  transform:  translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,99,235,.55);
  color:      #fff;
}
.btn-hero-s {
  background:    rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  color:         #cbd5e1;
  border:        1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  padding:       14px 26px;
  font-weight:   600;
  font-size:     .95rem;
  text-decoration: none;
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  transition:    all .25s;
}
.btn-hero-s:hover {
  background: rgba(255,255,255,.1);
  color:      #fff;
  transform:  translateY(-2px);
}
.hero-stats {
  display:         flex;
  justify-content: center;
  border:          1px solid rgba(255,255,255,.07);
  background:      rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  border-radius:   14px;
  padding:         4px;
  max-width:       520px;
  margin:          0 auto;
}
.hero-stat {
  flex:       1;
  min-width:  100px;
  text-align: center;
  padding:    16px 14px;
  position:   relative;
}
.hero-stat:not(:last-child)::after {
  content:    '';
  position:   absolute;
  right:      0; top: 20%;
  height:     60%; width: 1px;
  background: rgba(255,255,255,.07);
}
.hero-stat .stn {
  font-size:     1.55rem;
  font-weight:   800;
  color:         #f1f5f9;
  display:       block;
  line-height:   1;
  margin-bottom: 3px;
}
.hero-stat .stl {
  font-size:      .68rem;
  color:          #64748b;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight:    500;
}

/* ── TRUST BAR ────────────────────────────────────────── */
.trust-bar {
  padding:      22px 0;
  border-top:   1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  overflow:     hidden;
}
.trust-scroll {
  display:   flex;
  gap:       44px;
  animation: scrollLoop 22s linear infinite;
  width:     max-content;
}
.trust-item {
  display:        flex;
  align-items:    center;
  gap:            7px;
  color:          #334155;
  font-size:      .78rem;
  font-weight:    600;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space:    nowrap;
}
@keyframes scrollLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION HELPERS ─────────────────────────────────── */
.section-chip {
  display:        inline-block;
  font-size:      .7rem;
  font-weight:    600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:        4px 13px;
  border-radius:  999px;
  margin-bottom:  12px;
}
.chip-red   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.2);  color: #f87171; }
.chip-blue  { background: rgba(37,99,235,.1);  border: 1px solid rgba(37,99,235,.2);  color: #60a5fa; }
.chip-green { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.2);  color: #4ade80; }

.section-title {
  font-size:      clamp(1.6rem, 3vw, 2.4rem);
  font-weight:    800;
  letter-spacing: -1px;
  line-height:    1.15;
  color:          #f1f5f9;
  margin-bottom:  12px;
}
.section-sub {
  color:       #64748b;
  font-size:   .9rem;
  max-width:   480px;
  line-height: 1.7;
}

/* ── WIZARD ──────────────────────────────────────────── */
#website-check { padding: 72px 0; background: linear-gradient(180deg, rgba(37,99,235,.04) 0%, transparent 100%); }

.wizard-wrap {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: 20px;
  overflow:      hidden;
  box-shadow:    0 24px 80px rgba(0,0,0,.4);
}
.wizard-top {
  background:    linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.05));
  border-bottom: 1px solid var(--border);
  padding:       18px 26px;
  display:       flex;
  align-items:   center;
  justify-content: space-between;
  flex-wrap:     wrap;
  gap:           10px;
}
.step-pills   { display: flex; gap: 5px; }
.step-pill {
  display:       flex;
  align-items:   center;
  gap:           6px;
  padding:       5px 13px;
  border-radius: 999px;
  font-size:     .72rem;
  font-weight:   600;
  border:        1px solid var(--border);
  color:         #475569;
  background:    transparent;
  transition:    .3s;
  white-space:   nowrap;
}
.step-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.step-pill.done   { background: rgba(34,197,94,.13); border-color: rgba(34,197,94,.28); color: #4ade80; }
.step-pill-n {
  width: 17px; height: 17px;
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       .6rem;
  font-weight:     800;
  background:      rgba(255,255,255,.13);
}
.wizard-body { padding: 30px 26px; }

.cms-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap:                   9px;
  margin-bottom:         20px;
}
.cms-card {
  border:        1.5px solid var(--border);
  border-radius: 9px;
  padding:       13px 8px;
  text-align:    center;
  cursor:        pointer;
  transition:    all .2s;
  background:    var(--surface);
}
.cms-card:hover    { border-color: rgba(37,99,235,.45); background: rgba(37,99,235,.05); }
.cms-card.selected { border-color: var(--primary); background: rgba(37,99,235,.1); }
.cms-card i        { font-size: 1.3rem; margin-bottom: 5px; display: block; }
.cms-card span     { font-size: .72rem; font-weight: 600; color: #94a3b8; display: block; }
.cms-card.selected span { color: #93c5fd; }

.fgt {
  font-size:      .68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:          #475569;
  font-weight:    600;
  margin:         18px 0 9px;
  display:        flex;
  align-items:    center;
  gap:            7px;
}
.fgt::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.w-alert {
  border-radius: 8px;
  padding:       10px 14px;
  font-size:     .83rem;
  margin-bottom: 16px;
  display:       none;
  align-items:   center;
  gap:           8px;
}
.w-alert.show      { display: flex; }
.w-alert-danger    { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.2);  color: #fca5a5; }
.w-alert-success   { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.2);  color: #86efac; }

/* ── PRICING BOX ─────────────────────────────────────── */
.pricing-box {
  background:    linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.05));
  border:        1px solid rgba(37,99,235,.22);
  border-radius: 16px;
  padding:       40px;
  margin:        72px 0;
  position:      relative;
  overflow:      hidden;
}
.pricing-box::before {
  content:       '';
  position:      absolute;
  width: 280px; height: 280px;
  background:    radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  top: -80px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}
.pricing-tick {
  display:       flex;
  align-items:   flex-start;
  gap:           12px;
  margin-bottom: 14px;
}
.pricing-tick i { color: var(--success); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.pricing-tick p { color: #94a3b8; font-size: .875rem; margin: 0; line-height: 1.65; }

/* ── PROBLEMS ────────────────────────────────────────── */
.problems-section { padding: 72px 0; }
.problem-card {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: 13px;
  padding:       22px;
  height:        100%;
  transition:    border-color .2s, transform .2s;
  position:      relative;
  overflow:      hidden;
}
.problem-card::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     3px;
  background: linear-gradient(90deg, transparent, var(--pc, #ef4444), transparent);
  opacity:    0;
  transition: opacity .3s;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.09); }
.prob-icon {
  width: 42px; height: 42px;
  border-radius:  10px;
  display:        flex;
  align-items:    center;
  justify-content: center;
  font-size:      1rem;
  margin-bottom:  12px;
}
.problem-card h5 { font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: #e2e8f0; }
.problem-card p  { color: #64748b; font-size: .82rem; line-height: 1.65; margin: 0; }

/* ── SERVICES ────────────────────────────────────────── */
#services { padding: 72px 0; }
.service-card {
  background:    var(--card);
  border:        1px solid var(--border);
  border-radius: 15px;
  padding:       28px;
  height:        100%;
  transition:    all .25s;
  position:      relative;
  overflow:      hidden;
}
.service-card::after {
  content:       '';
  position:      absolute;
  inset:         0;
  border-radius: 15px;
  background:    linear-gradient(135deg, rgba(37,99,235,.05), transparent);
  opacity:       0;
  transition:    opacity .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.28); }
.service-card:hover::after { opacity: 1; }
.svc-icon {
  width: 50px; height: 50px;
  border-radius:  12px;
  display:        flex;
  align-items:    center;
  justify-content: center;
  font-size:      1.2rem;
  margin-bottom:  16px;
  position:       relative;
  z-index:        1;
}
.service-card h5 { font-weight: 700; font-size: .95rem; margin-bottom: 9px; position: relative; z-index: 1; }
.service-card p  { color: #64748b; font-size: .85rem; margin: 0; line-height: 1.7; position: relative; z-index: 1; }

/* ── HOW IT WORKS ────────────────────────────────────── */
#how { padding: 72px 0; }
.how-timeline {
  position:   relative;
  max-width:  620px;
  margin:     0 auto;
}
.how-timeline::before {
  content:    '';
  position:   absolute;
  left:       19px; top: 0; bottom: 0;
  width:      2px;
  background: linear-gradient(180deg, var(--primary), rgba(56,189,248,.25), transparent);
}
.how-step {
  display:       flex;
  gap:           22px;
  margin-bottom: 32px;
  position:      relative;
}
.how-num {
  width: 40px; height: 40px;
  border-radius:   50%;
  background:      linear-gradient(135deg, var(--primary), #1d4ed8);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-weight:     800;
  font-size:       .82rem;
  color:           #fff;
  flex-shrink:     0;
  box-shadow:      0 0 0 4px rgba(37,99,235,.18), 0 0 18px rgba(37,99,235,.28);
  position:        relative;
  z-index:         1;
}
.how-step h6 { font-weight: 700; font-size: .92rem; margin-bottom: 4px; color: #e2e8f0; }
.how-step p  { color: #64748b; font-size: .85rem; margin: 0; line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────── */
#contact { padding: 72px 0; }
.contact-card {
  background:    linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.05));
  border:        1px solid rgba(37,99,235,.22);
  border-radius: 18px;
  padding:       52px 36px;
  text-align:    center;
  position:      relative;
  overflow:      hidden;
}
.contact-card::before {
  content:       '';
  position:      absolute;
  width: 280px; height: 280px;
  background:    radial-gradient(circle, rgba(37,99,235,.13), transparent 70%);
  top: -80px; right: -70px;
  border-radius: 50%;
  pointer-events: none;
}
