/* AstraStack — Bootstrap-driven custom theme */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --astra-bg: #fbfaf7;
  --astra-surface: #ffffff;
  --astra-ink: #0e1426;
  --astra-ink-soft: #4a526a;
  --astra-muted: #8b91a3;
  --astra-line: #ececea;
  --astra-indigo: #4f46e5;
  --astra-indigo-soft: #eef2ff;
  --astra-coral: #ff7a59;
  --astra-mint: #10b981;
  --astra-amber: #fbbf24;
  --astra-grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ff7a59 100%);
  --astra-grad-soft: linear-gradient(135deg, #eef2ff 0%, #fff1ec 100%);
  --astra-shadow-sm: 0 4px 14px rgba(14, 20, 38, 0.06);
  --astra-shadow: 0 18px 40px -18px rgba(14, 20, 38, 0.18);
  --astra-shadow-lg: 0 30px 60px -20px rgba(79, 70, 229, 0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--astra-bg);
  color: var(--astra-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--astra-ink);
}

.text-ink { color: var(--astra-ink) !important; }
.text-ink-soft { color: var(--astra-ink-soft) !important; }
.text-muted-2 { color: var(--astra-muted) !important; }
.text-indigo { color: var(--astra-indigo) !important; }
.text-coral { color: var(--astra-coral) !important; }
.text-mint { color: var(--astra-mint) !important; }
.bg-astra { background: var(--astra-bg) !important; }
.bg-ink { background: var(--astra-ink) !important; color: #fff; }
.bg-indigo-soft { background: var(--astra-indigo-soft) !important; }
.bg-grad-soft { background: var(--astra-grad-soft) !important; }

.text-gradient {
  background: var(--astra-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.astra-nav {
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  z-index: 1030;
}
.astra-nav.scrolled {
  border-bottom-color: var(--astra-line);
  box-shadow: var(--astra-shadow-sm);
}
.astra-nav .navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--astra-ink);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.astra-nav .navbar-brand .brand-mark {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  background: var(--astra-grad);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 6px 18px -4px rgba(79, 70, 229, .55);
}
.astra-nav .nav-link {
  color: var(--astra-ink-soft) !important;
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .2s;
}
.astra-nav .nav-link:hover,
.astra-nav .nav-link[data-status="active"] {
  color: var(--astra-ink) !important;
}
.astra-nav .nav-link[data-status="active"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 18px; height: 3px;
  margin-left: -9px;
  background: var(--astra-grad);
  border-radius: 99px;
}

/* Buttons */
.btn { font-weight: 600; border-radius: 999px; padding: .7rem 1.4rem; transition: all .25s ease; }
.btn-primary-astra {
  background: var(--astra-ink);
  color: #fff;
  border: none;
}
.btn-primary-astra:hover {
  background: var(--astra-indigo);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--astra-shadow-lg);
}
.btn-grad {
  background: var(--astra-grad);
  color: #fff !important;
  border: none;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: var(--astra-shadow-lg); color: #fff; }
.btn-outline-ink {
  background: transparent;
  color: var(--astra-ink);
  border: 1.5px solid var(--astra-ink);
}
.btn-outline-ink:hover { background: var(--astra-ink); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--astra-ink);
  border: 1.5px solid var(--astra-line);
}
.btn-ghost:hover { border-color: var(--astra-ink); }

/* Sections */
section { position: relative; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem;
  background: var(--astra-indigo-soft);
  color: var(--astra-indigo);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow .dot { width:6px; height:6px; border-radius:99px; background: var(--astra-indigo); display: inline-block; position: relative;}
.dot::before { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: rgba(99, 102, 241, 0.5); transform: translate(-50%, -50%); animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 100% { transform: translate(-50%, -50%) scale(3); opacity: 0; } }

/* Cards */
.astra-card {
  background: var(--astra-surface);
  border: 1px solid var(--astra-line);
  border-radius: 24px;
  padding: 2rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.astra-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--astra-shadow);
  border-color: transparent;
}

.astra-card::before{ content:''; position:absolute; inset:0; border-radius:inherit; border:2px solid transparent; background: linear-gradient(135deg,#4f46e5,#7c3aed,#ff7a59) border-box; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; clip-path: inset(0 100% 100% 0); transition:clip-path .7s ease; }
.astra-card::after{ content:''; position:absolute; inset:0; border-radius:inherit; border:2px solid transparent; background: linear-gradient(135deg,#4f46e5,#7c3aed,#ff7a59) border-box; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; clip-path: inset(100% 0 0 100%); transition:clip-path .7s ease; }
.astra-card:hover::before{ clip-path: inset(0 0 0 0); }
.astra-card:hover::after{ clip-path: inset(0 0 0 0); }
.astra-card .card-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4/3;
  background: var(--astra-grad-soft);
}
.astra-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.astra-card:hover .card-image img { transform: scale(1.06); }

/* Hero */
.astra-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.astra-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); line-height: 1.05; }
.astra-hero .hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--astra-shadow-lg);
}
.astra-hero .hero-image-wrap img { width: 100%; height: auto; display: block; }

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.blob-indigo { background: #a5b4fc; }
.blob-coral { background: #fda4a4; }
.blob-mint { background: #a7f3d0; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}

/* Stats */
.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  background: var(--astra-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* Marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--astra-ink-soft);
  white-space: nowrap;
  display: flex; align-items: center; gap: 1rem;
  position: relative;
}
.marquee-track span::after {    content: "✦";
    color: var(--astra-coral);
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    right: -40px;
    font-size: 14px; 
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Process steps */
.step-num {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--astra-grad);
  color: #fff;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(79,70,229,.55);
}

/* Service item large */
.service-large {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 32px;
  background: var(--astra-surface);
  border: 1px solid var(--astra-line);
  transition: all .4s;
}
.service-large:hover { box-shadow: var(--astra-shadow); transform: translateY(-4px); }
.service-large .visual {
  border-radius: 22px;
  overflow: hidden;
  background: var(--astra-grad-soft);
  aspect-ratio: 4/3;
}
.service-large .visual img { width:100%; height:100%; object-fit: cover; }
@media (max-width: 991px) {
    .container {
        max-width: 90% !important;
        width: 100% !important;
    }
}

/* @media (max-width: 767px) {
  .container, .container-md, .container-sm {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}
} */


/* Tags */
.tag-pill {
  display: inline-block;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--astra-indigo-soft);
  color: var(--astra-indigo);
  font-size: .78rem;
  font-weight: 600;
  margin: .2rem;
}

/* Footer */
.astra-footer {
  background: var(--astra-ink);
  color: #cdd2dc;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.astra-footer h5 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; }
.astra-footer a { color: #cdd2dc; text-decoration: none; transition: color .2s; }
.astra-footer a:hover { color: #fff; }
.astra-footer .social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: inline-grid; place-items: center;
  transition: all .25s;
}
.astra-footer .social-btn:hover { background: var(--astra-indigo); transform: translateY(-3px); }

/* Page hero */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--astra-grad-soft);
  position: relative;
  overflow: hidden;
}

/* Blog */
.blog-card {
  background: #fff;
  border: 1px solid var(--astra-line);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: all .35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--astra-shadow); }
.blog-card .cover { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .cover img { width:100%; height:100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .cover img { transform: scale(1.06); }
.blog-card .body { padding: 1.5rem; }

/* Form */
.astra-input {
  border: 1.5px solid var(--astra-line);
  border-radius: 14px;
  padding: .9rem 1.1rem;
  background: #fff;
  font-size: 1rem;
  color: var(--astra-ink);
  transition: all .2s;
  width: 100%;
}
.astra-input:focus {
  outline: none;
  border-color: var(--astra-indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.1);
}
textarea.astra-input { min-height: 140px; resize: vertical; }

/* Story link arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--astra-ink); font-weight: 600;
  text-decoration: none;
  transition: gap .25s;
}
.arrow-link:hover { gap: .8rem; color: var(--astra-indigo); }

/* AOS overrides */
[data-aos] { pointer-events: auto; }

/* Misc */
.divider { height:1px; background: var(--astra-line); border:0; margin: 0; }
.rounded-2xl { border-radius: 22px !important; }
.rounded-3xl { border-radius: 28px !important; }

/* Tech badge grid */
.tech-badge {
  background:#fff;
  border:1px solid var(--astra-line);
  border-radius:14px;
  padding:1rem;
  text-align:center;
  font-weight:600;
  color: var(--astra-ink);
  transition: all .25s;
}
.tech-badge:hover { transform: translateY(-4px); border-color: var(--astra-indigo); color: var(--astra-indigo); }

/* Numbered list */
.num-list { counter-reset: nl; list-style: none; padding-left: 0; }
.num-list li {
  counter-increment: nl;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--astra-line);
}
.num-list li::before {
  content: counter(nl, decimal-leading-zero);
  position: absolute; left: 0; top: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--astra-indigo);
}
.num-list li:last-child { border-bottom: 0; }

/* ============ ATTRACTIVE NAVBAR ============ */
.astra-nav { padding: .75rem 0; }
.astra-brand-anim .brand-mark {
  background: var(--astra-grad);
  background-size: 200% 200%;
  animation: brandGrad 6s ease infinite;
}
@keyframes brandGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.astra-brand-anim:hover .brand-mark { transform: rotate(-8deg) scale(1.06); transition: transform .35s; }

.astra-nav-collapse {
  display: flex; align-items: center; gap: 1.25rem;
  margin-left: auto;
}
.astra-nav-list {
  display: flex; gap: .25rem; list-style: none; padding: 0; margin: 0;
}
.astra-nav-link {
  position: relative;
  display: inline-block;
  padding: .55rem 1rem;
  color: var(--astra-ink-soft);
  text-decoration: none;
  font-weight: 500;
  border-radius: 999px;
  transition: color .3s ease, background-color .3s ease;
}
.astra-nav-link .label {
  position: relative;
  display: inline-block;
  background-image: var(--astra-grad);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--astra-ink-soft);
  transition: color .3s ease;
}
.astra-nav-link::after {
  content: ""; position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 2px;
  background: var(--astra-grad);
  border-radius: 99px;
  transition: width .3s ease, margin-left .3s ease;
}
.astra-nav-link:hover::after { width: 22px; margin-left: -11px; }
.astra-nav-link:hover .label { color: transparent; }
.astra-nav-link[data-status="active"] .label { color: transparent; }
.astra-nav-link[data-status="active"]::after { width: 22px; margin-left: -11px; }

.btn-quote {
  position: relative;
  isolation: isolate;
  background: var(--astra-ink); color: #fff !important;
  padding: .65rem 1.4rem; border-radius: 999px;
  font-weight: 600;
  overflow: hidden;
  border: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-quote::before {
  content: ""; position: absolute; inset: 0;
  background: var(--astra-grad);
  opacity: 0; transition: opacity .35s;
  z-index: -1;
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(79,70,229,.55); color:#fff; }
.btn-quote:hover::before { opacity: 1; }
.quote-shine {
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: quoteShine 3.2s ease-in-out infinite;
}
@keyframes quoteShine {
  0% { left: -120%; }
  60%, 100% { left: 130%; }
}

/* burger */
.astra-burger {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--astra-line);
  background: #fff;
  display: inline-flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; padding: 0;
  margin-left: auto;
}
.astra-burger span {
  width: 20px; height: 2px;
  background: var(--astra-ink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.astra-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.astra-burger.is-open span:nth-child(2) { opacity: 0; }
.astra-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .astra-nav-collapse {
    position: fixed; inset: 70px 0 0 0;
    background: rgba(251, 250, 247, .98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.65,0,.35,1);
    overflow-y: auto;
  }
  .astra-nav-collapse.show { transform: translateX(0); }
  .astra-nav-list { flex-direction: column; gap: .25rem; }
  .astra-nav-list li {
    opacity: 0; transform: translateX(20px);
    transition: opacity .4s ease, transform .4s ease;
    transition-delay: calc(var(--i, 0) * 60ms);
  }
  .astra-nav-collapse.show .astra-nav-list li { opacity: 1; transform: translateX(0); }
  .astra-nav-link { font-size: 1.4rem; padding: .9rem 1rem; }
  .astra-nav-cta { margin-top: 1.5rem; }
  .astra-nav-cta .btn-quote { width: 100%; text-align: center; }
}

/* ============ CTA BANNER ============ */
.cta-banner-wrap { padding: 4rem 0 2rem; position: relative; }
.cta-banner {
  position: relative;
  border-radius: 32px;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, #0e1426 0%, #1e1b4b 60%, #4f46e5 130%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(79, 70, 229, .55);
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55;
  pointer-events: none;
}
.cta-orb-1 { width: 320px; height: 320px; background: #ff7a59; top: -80px; right: -60px; animation: orbFloat 9s ease-in-out infinite; }
.cta-orb-2 { width: 260px; height: 260px; background: #7c3aed; bottom: -100px; left: 10%; animation: orbFloat 11s ease-in-out infinite reverse; }
.cta-orb-3 { width: 200px; height: 200px; background: #10b981; top: 40%; right: 30%; opacity: .35; animation: orbFloat 13s ease-in-out infinite; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.1); }
}

.cta-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
  70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.cta-title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08; margin-bottom: 1.25rem;
}
.text-gradient-warm {
  background: linear-gradient(120deg, #ff7a59, #fbbf24 50%, #ff9bd2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }

.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.btn-cta-primary {
  position: relative;
  background: #fff; color: var(--astra-ink) !important;
  padding: .95rem 1.8rem;
  border-radius: 999px; font-weight: 700;
  border: 0; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(255,255,255,.5); }
.cta-shine {
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(79,70,229,.25), transparent);
  animation: quoteShine 2.6s ease-in-out infinite;
}
.btn-cta-ghost {
  background: transparent; color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600;
  transition: all .3s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.cta-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.cta-trust-item {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.7); font-size: .9rem;
}
.cta-trust-item i { color: #fbbf24; }

.cta-visual {
  position: relative; aspect-ratio: 1/1;
  border-radius: 24px; overflow: visible;
}
.cta-image {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.cta-card-float {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  color: var(--astra-ink);
  border-radius: 16px;
  padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.35);
  animation: floatY 5s ease-in-out infinite;
}
.cta-card-float i { font-size: 1.4rem; color: var(--astra-indigo); }
.cta-card-float small { display:block; color: var(--astra-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.cta-card-float strong { display:block; font-family: "Space Grotesk", sans-serif; font-size: 1rem; }
.cta-card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.cta-card-2 { bottom: 18%; right: -10%; animation-delay: 1.5s; }
.cta-card-2 i { color: var(--astra-mint); }
.cta-card-3 { bottom: -6%; left: 12%; animation-delay: 3s; }
.cta-card-3 i { color: var(--astra-coral); }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 767.98px) {
  .cta-banner { padding: 2.5rem 1.5rem; border-radius: 24px; }
}

/* ============ TESTIMONIAL CAROUSEL ============ */
.testi-carousel { position: relative; }
.testi-card {
  background: #fff;
  border: 1px solid var(--astra-line);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: var(--astra-shadow);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testi-card .quote-mark {
  position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--astra-grad);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px -10px rgba(79,70,229,.55);
}
.testi-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  color: var(--astra-ink);
  margin: .5rem 0 1.75rem;
}
.testi-author {
  display: inline-flex; align-items: center; gap: .9rem;
}
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px -6px rgba(14,20,38,.25);
  border: 3px solid #fff;
}
.testi-controls {
  display: flex; justify-content: center; gap: .75rem; margin-top: 2rem;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--astra-line);
  color: var(--astra-ink);
  display: inline-grid; place-items: center;
  transition: all .25s;
  cursor: pointer;
}
.testi-btn:hover { background: var(--astra-ink); color:#fff; transform: translateY(-2px); }
.testi-dots { display: flex; gap: .4rem; align-items: center; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--astra-line); border: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.testi-dot.active { width: 26px; background: var(--astra-grad); }

/* ============ TRUST AVATARS (overlap) ============ */
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  background: #eee;
}
.trust-avatars img + img { margin-left: -14px; }

/* ============ PAGE LOADER ============ */
.page-loader-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2000;
  background: transparent;
  pointer-events: none;
}
.page-loader-bar::before {
  content: "";
  display: block; height: 100%;
  width: 40%;
  background: var(--astra-grad);
  background-size: 200% 100%;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 12px rgba(79,70,229,.6);
  animation: loaderSlide 1.1s ease-in-out infinite, loaderShimmer 2s linear infinite;
}
@keyframes loaderSlide {
  0%   { margin-left: -40%; width: 40%; }
  50%  { width: 55%; }
  100% { margin-left: 100%; width: 40%; }
}
@keyframes loaderShimmer {
  to { background-position: -200% 0; }
}

.page-loader-overlay {
  position: fixed; inset: 0;
  background: rgba(251,250,247,.55);
  backdrop-filter: blur(2px);
  z-index: 1999;
  display: grid; place-items: center;
  pointer-events: none;
  opacity: 0;
  animation: loaderFadeIn .35s ease forwards .15s;
}
@keyframes loaderFadeIn { to { opacity: 1; } }
.page-loader-spinner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4f46e5, #ff7a59, #4f46e5);
  -webkit-mask: radial-gradient(circle 18px at center, transparent 98%, #000 100%);
          mask: radial-gradient(circle 18px at center, transparent 98%, #000 100%);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
