/* ═══════════════════════════════════════
   home.css — Homepage fixes
   Upload to: public_html/
   ═══════════════════════════════════════ */

/* ── GLOBAL BOX FIX ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── HERO LAYOUT ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1rem;
  color: #8892a4;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ── HERO BUTTONS ── */
.hbtns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.bg {
  background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
  color: #fff !important;
  padding: 0.9rem 2rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 0 28px rgba(124,58,237,0.35) !important;
  transition: all 0.3s !important;
  font-family: inherit !important;
}
.bg:hover {
  box-shadow: 0 0 48px rgba(124,58,237,0.55) !important;
  transform: translateY(-2px) !important;
}
.bo {
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
  padding: 0.9rem 2rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s !important;
  font-family: inherit !important;
}
.bo:hover {
  border-color: rgba(124,58,237,0.5) !important;
  background: rgba(124,58,237,0.1) !important;
}

/* ── HERO TRUST ── */
.trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.avs { display: flex; }
.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #06091a;
  margin-left: -10px;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.stars { color: #fbbf24; font-size: 0.88rem; margin-bottom: 2px; }
.tmuted { font-size: 0.82rem; color: #8892a4; }
.tmuted strong { color: #fff; }

/* ── HERO RIGHT CARD ── */
.hero-right-wrap {
  position: relative;
  z-index: 2;
}
.hcard {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  backdrop-filter: blur(24px) !important;
  position: relative !important;
  overflow: hidden !important;
}
.hcard::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.7), transparent);
}
.gc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.gbadge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
}
.ldot {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #8892a4;
}
.ldot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.2s infinite;
  display: inline-block;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* KPI counter */
.gc-kpi {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #a855f7, #22d3ee) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1 !important;
  margin-bottom: 0.25rem !important;
  display: block !important;
}
.gc-label {
  font-size: 0.8rem;
  color: #8892a4;
  margin-bottom: 1.5rem;
}

/* BARS */
.gc-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.gc-row  { display: flex; align-items: center; gap: 0.75rem; }
.gc-name { font-size: 0.75rem; color: #8892a4; min-width: 100px; }
.gc-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.gc-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fp  { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.fc  { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.fpk { background: linear-gradient(90deg, #ec4899, #f472b6); }
.fo  { background: linear-gradient(90deg, #f97316, #fb923c); }
.gc-val { font-size: 0.74rem; font-weight: 700; color: #fff; min-width: 32px; text-align: right; }

/* FLOATING PILLS */
.pill {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  z-index: 3;
}
.pill1 { top: -22px; left: -10px; animation: floatY 4s ease-in-out infinite; }
.pill2 { bottom: -22px; right: -10px; animation: floatY 4s ease-in-out 2s infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.pi { font-size: 1.1rem; }
.pt { font-size: 0.8rem; font-weight: 700; color: #fff; }
.ps { font-size: 0.68rem; color: #8892a4; }

/* ── LOGOS ── */
.logos-strip {
  position: relative; z-index: 1;
  padding: 2.25rem 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logos-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.logos-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: #8892a4; margin-bottom: 1.25rem; font-weight: 600; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.logos-row span { font-weight: 800; font-size: 0.95rem; color: rgba(255,255,255,0.16); text-transform: uppercase; letter-spacing: 0.04em; }

/* ── STATS BAR ── */
.statsbar {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.07));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sgrid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; }
.sbox { padding: 2.75rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.sbox:last-child { border-right: none; }
.sn {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, #a855f7, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 0.3rem;
}
.sl { font-size: 0.78rem; color: #8892a4; }

/* ── SECTIONS ── */
.sec { padding: 6rem 5%; position: relative; z-index: 1; }
.sec-in { max-width: 1260px; margin: 0 auto; }
.stag {
  display: inline-flex; align-items: center;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #a855f7; background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25);
  padding: 0.3rem 0.85rem; border-radius: 50px; margin-bottom: 1rem;
}
.sh {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.15;
}
.g {
  background: linear-gradient(135deg, #a855f7, #22d3ee, #a5f3fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sp { color: #8892a4; font-size: 0.98rem; line-height: 1.8; margin-top: 0.75rem; max-width: 540px; }
.sp.c, .sp.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.dark2 { background: #080c1f; }
.shead { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }

/* ── SERVICE GRID — FIXED ── */
.svgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.svc {
  background: #080c1f;
  padding: 2.25rem;
  transition: background 0.3s;
  cursor: default;
}
.svc:hover { background: rgba(255,255,255,0.03); }
.svc .sic {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.25rem !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}
.svc .sic svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #fff !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  flex-shrink: 0 !important;
}
.svc h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; line-height: 1.35; }
.svc p  { font-size: 0.875rem; color: #8892a4; line-height: 1.75; }
.trow { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; align-items: center; }
.t { font-size: 0.7rem; font-weight: 600; padding: 0.24rem 0.7rem; border-radius: 50px; border: 1px solid; display: inline-block; white-space: nowrap; }
.tp  { color: #a855f7; border-color: rgba(124,58,237,0.3);  background: rgba(124,58,237,0.08); }
.tcy { color: #22d3ee; border-color: rgba(6,182,212,0.3);   background: rgba(6,182,212,0.08); }
.tpk { color: #f472b6; border-color: rgba(236,72,153,0.3);  background: rgba(236,72,153,0.08); }
.to  { color: #fb923c; border-color: rgba(249,115,22,0.3);  background: rgba(249,115,22,0.08); }
.clink { display: inline-flex; align-items: center; gap: 0.35rem; color: #8892a4; font-size: 0.82rem; font-weight: 600; margin-top: 1.25rem; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.clink:hover { color: #a855f7; }

/* ── PROSE SECTIONS ── */
.prose-sec { padding: 5rem 5%; position: relative; z-index: 1; }
.prose-sec .sin { max-width: 1100px; margin: 0 auto; }
.prose-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 1rem; }
.prose-h2 span { background: linear-gradient(135deg, #a855f7, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.prose-h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 1.75rem 0 0.6rem; }
.prose-p { font-size: 0.95rem; color: #8892a4; line-height: 1.85; margin-bottom: 1rem; }
.prose-ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin: 0.75rem 0 1.25rem; }
.prose-ul li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.92rem; color: #8892a4; line-height: 1.65; }
.prose-ul li::before { content: '✓'; color: #22d3ee; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.prose-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.prose-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 1.75rem; backdrop-filter: blur(12px); }
.prose-box-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #a855f7; font-weight: 700; margin-bottom: 0.75rem; }

/* ── CASE GRID ── */
.cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ccard { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; backdrop-filter: blur(16px); transition: all 0.35s; position: relative; overflow: hidden; }
.ccard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.cc1::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.cc2::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.cc3::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.ccard:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.cwhat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8892a4; margin-bottom: 0.35rem; font-weight: 600; }
.ckpi { font-size: 2.6rem; font-weight: 900; line-height: 1; margin-bottom: 0.3rem; }
.cwho { font-size: 0.9rem; color: #fff; font-weight: 700; margin-top: 0.6rem; }
.ctype { font-size: 0.75rem; color: #8892a4; margin-top: 0.15rem; }

/* ── COMPARISON TABLE ── */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 2rem; border-radius: 16px; overflow: hidden; }
.comp-table th { padding: 1rem 1.25rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.comp-table th:first-child { background: rgba(255,255,255,0.04); color: #8892a4; text-align: left; }
.comp-table th:nth-child(2) { background: linear-gradient(135deg, #7c3aed, #06b6d4); color: #fff; text-align: center; }
.comp-table th:nth-child(3), .comp-table th:nth-child(4) { background: rgba(255,255,255,0.04); color: #8892a4; text-align: center; }
.comp-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.875rem; color: #8892a4; }
.comp-table td:first-child { color: rgba(255,255,255,0.75); font-weight: 500; }
.comp-table td:nth-child(2) { background: rgba(124,58,237,0.06); text-align: center; font-weight: 700; }
.comp-table td:nth-child(3), .comp-table td:nth-child(4) { text-align: center; }
.comp-table tr:last-child td { border-bottom: none; }
.check { color: #22c55e; font-size: 1rem; font-weight: 800; }
.cross { color: #ef4444; font-size: 1rem; }
.partial { color: #f59e0b; font-size: 0.85rem; font-weight: 600; }

/* ── PROCESS ── */
.psteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
.psteps::before { content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, #7c3aed, #06b6d4); opacity: 0.25; }
.ps { text-align: center; padding: 0 0.5rem; }
.psn { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.25rem; font-weight: 900; background: linear-gradient(135deg, #7c3aed, #06b6d4); color: #fff; position: relative; z-index: 1; box-shadow: 0 0 24px rgba(124,58,237,0.3); }
.ps h4 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 0.45rem; }
.ps p  { font-size: 0.82rem; color: #8892a4; line-height: 1.65; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.price-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.3s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border: 2px solid transparent; background: linear-gradient(#080c1f, #080c1f) padding-box, linear-gradient(135deg, #7c3aed, #06b6d4) border-box; box-shadow: 0 0 40px rgba(124,58,237,0.2); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #7c3aed, #06b6d4); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 1.1rem; border-radius: 50px; white-space: nowrap; text-transform: uppercase; }
.price-tier { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: #8892a4; font-weight: 700; margin-bottom: 0.75rem; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.price-amount span { font-size: 1rem; color: #8892a4; font-weight: 400; }
.price-desc { font-size: 0.82rem; color: #8892a4; margin-bottom: 1.5rem; line-height: 1.6; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.price-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: #8892a4; }
.pf-yes { color: #22c55e; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.pf-no  { color: #4b5563; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.price-note { font-size: 0.72rem; color: #8892a4; text-align: center; margin-top: 1rem; opacity: 0.7; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 1.75rem; transition: all 0.3s; }
.review-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.review-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.review-meta { flex: 1; margin-left: 0.75rem; }
.review-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.review-role { font-size: 0.73rem; color: #8892a4; margin-top: 1px; }
.review-source { font-size: 0.7rem; color: #8892a4; background: rgba(255,255,255,0.06); padding: 0.2rem 0.6rem; border-radius: 50px; white-space: nowrap; }
.review-stars { color: #fbbf24; font-size: 0.88rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.875rem; color: #8892a4; line-height: 1.8; font-style: italic; }
.review-kw { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); color: #a855f7; font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 50px; font-weight: 600; margin-top: 0.9rem; display: inline-block; }
.review-date { font-size: 0.7rem; color: #8892a4; margin-top: 0.5rem; opacity: 0.6; }

/* ── FAQ ── */
.faq-enhanced { max-width: 900px; margin: 2.5rem auto 0; }
.faq-cat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: #a855f7; font-weight: 700; margin: 2rem 0 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.faq-cat-label::after { content: ''; flex: 1; height: 1px; background: rgba(124,58,237,0.2); }

/* ── INTERNAL LINKS ── */
.ilinks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.ilink-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem; text-decoration: none; transition: all 0.3s; display: block; }
.ilink-card:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.08); transform: translateY(-2px); }
.ilink-icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.ilink-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.ilink-desc { font-size: 0.78rem; color: #8892a4; line-height: 1.5; }
.ilink-arrow { font-size: 0.8rem; color: #a855f7; font-weight: 600; margin-top: 0.5rem; display: block; }

/* ── CTA SECTION — FULLY FIXED ── */
.ctasec {
  position: relative;
  z-index: 1;
  padding: 7rem 5%;
  text-align: center;
  overflow: hidden;
}
.ctasec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.12), transparent 70%);
}
.ctaglow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.08), transparent 70%);
  pointer-events: none;
}
.ctain {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ctain .sh {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  color: #fff !important;
  margin-top: 0.75rem;
}
.ctain .sp {
  color: #8892a4;
  margin: 0.75rem auto;
  text-align: center;
  max-width: 560px;
}
.ctaform {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 2.5rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ctainput {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
}
.ctainput::placeholder { color: #8892a4; }
.ctainput:focus { border-color: rgba(124,58,237,0.5); }
.ctatrust {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cti {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #8892a4;
}

/* ── FOOTER ── */
footer { position: relative; z-index: 1; background: #080c1f; border-top: 1px solid rgba(255,255,255,0.08); padding: 4rem 5% 2rem; }
.footer-inner { max-width: 1260px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.fb p { font-size: 0.82rem; color: #8892a4; line-height: 1.75; max-width: 240px; margin-top: 1rem; }
.fcol h5 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 0.9rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.fcol ul a { font-size: 0.82rem; color: #8892a4; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.fcol ul a:hover { color: #a855f7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: #8892a4; }
.footer-bottom a { color: #8892a4; text-decoration: none; }
.footer-bottom a:hover { color: #a855f7; }

/* ── ANIMATIONS ── */
.rev { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rev.up { opacity: 1; transform: translateY(0); }
.rev-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rev-l.up { opacity: 1; transform: translateX(0); }
.rev-r { opacity: 0; transform: translateX(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rev-r.up { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right-wrap { display: none; }
  .svgrid { grid-template-columns: 1fr; }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .sbox:nth-child(2) { border-right: none; }
  .cgrid { grid-template-columns: 1fr; }
  .psteps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .psteps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .prose-2col { grid-template-columns: 1fr; gap: 1.5rem; }
  .ilinks-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comp-table th, .comp-table td { padding: 0.65rem 0.75rem; font-size: 0.78rem; }
}
@media (max-width: 580px) {
  .sgrid { grid-template-columns: 1fr; }
  .sbox { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ilinks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ctaform { flex-direction: column; }
  .ctainput { min-width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .hbtns { flex-direction: column; }
  .hbtns .bg, .hbtns .bo { width: 100%; justify-content: center; }
}
