/* ==========================
   Base typography (system font)
========================== */
html {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
    
}


body { margin: 0; }

/* ==========================
   NAVBAR (Floating glass on scroll)
========================== */
/* ==========================
   NAVBAR (Floating glass on scroll)
========================== */
.navbar {
  width: 100%;
  position: fixed;  /* <--- CHANGE THIS from absolute */
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 12px 0;
  /* Ensure transition is present for the smooth glass effect */
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled .nav-container{
  background: rgba(255, 255, 255, 0.623);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius:4px;
  box-shadow:0 8px 24px rgba(0,0,0,0.10);
  padding:10px 16px;
}

/* LOGO */
.logo img{
  height:60px;
  width:auto;
  display:block;
}

/* NAV LINKS */
.nav-links{
  margin-left:auto;
  display:flex;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  font-size:18px;
  font-weight:400;
  color:#ffffff;
  position:relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover{
  opacity:1;
  color:#ff2dca;
}

.nav-links a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#ff2dca;
  left:0;
  bottom:-7px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after{ width:100%; }

/* NAV ACTION + BUTTONS */
.nav-action{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:70px;
}

.navbar a,
.nav-btn,
.nav-btn2{
  transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.2s ease;
}

/* Sign In */
.nav-btn{
  padding:10px 22px;
  border-radius:0px;
  background:#F50A9B;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  border:3px solid transparent;
  box-shadow:0 10px 24px rgba(153,0,204,0.35);
}
.nav-btn:hover{
  background:#ffffff;
  color:#9900cc;
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(122,0,163,0.45);
}

/* Register */
.nav-btn2{
  padding:10px 22px;
  border-radius:0px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border:2px solid #ffffff;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.nav-btn2:hover{
  background:#ffffff;
  color:#9900cc;
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(153,0,204,0.35);
}

/* ON SCROLL */
.navbar.scrolled a{ color:#9900cc; }
.navbar.scrolled .nav-links a::after{ background:#9900cc; }

.navbar.scrolled .nav-btn{
  background:#F50A9B;
  color:#ffffff;
}

.navbar.scrolled .nav-btn2{
  background:white;
  border-color:#a307b8d3;
  color:#a307b8;
}

@media (max-width: 900px){
  .nav-links{ display:none; }
}

/* ==========================
   HERO
========================== */
.hero{
  position:relative;
  width:100%;
  min-height:120vh;
  background: url("images/hero.png") no-repeat center bottom;
  background-size: cover;
  overflow: visible;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.hero-container{
  position:relative;
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:150px 0 70px; /* remove the 10% side padding */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
}

/* LEFT TEXT */
.hero-text{
  flex:1.2;
  color:#ffffff;
}

.hero-text h1{
  font-size:85px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:-4px;
  margin:0 0 18px;
  
}
.hero-text h1 span{
  color:#ffc6e0;
  display:block;
}

.hero-text2 h1{
  font-size:85px;
  font-weight:700;
  line-height:1.3;
  
  margin:0 0 18px;
  
}
.hero-text2 h1 span{
  color:#ffc6e0;
  display:block;
}

.hero-text p{
  font-size:29px;
  line-height:1.35;
  margin:0 0 26px;
  max-width:560px;
  opacity:0.95;
}

/* HERO BUTTONS */
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  font-size:1.2rem;
  padding:14px 26px;
  border-radius:3px;
  text-decoration:none;
  font-weight:600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn.primary{
  font-size:1.5rem;
  padding:14px 30px;
  background:#F50A9B;
  color:#ffffff;
  box-shadow:0 14px 30px rgba(255,90,247,0.22);
}
.btn.primary:hover{
  background:#fffdfb;
  color:#9900cc;
  transform:translateY(-2px);
}

.btn.outline{
  font-size:1.2rem;
  padding:14px 30px;
  border:2px solid rgba(255,255,255,0.95);
  color:#fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn.outline:hover{
  background:#fff;
  color:#0f172a;
  transform:translateY(-2px);
}

/* RIGHT IMAGE */
.hero-image{
  flex:0.9;
  text-align:right;
  transform: translateY(60px);
}
.hero-image img{
  width:min(520px, 100%);
  height:auto;
  
}

/* RESPONSIVE HERO */
@media (max-width: 900px){
  .hero-container{
    flex-direction:column;
    text-align:center;
    padding:120px 6% 60px;
  }
  .hero-image{ order:1; text-align:center; }
  .hero-text{ order:2; }
  .hero-text p{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
}

/* Slider core */
.hero-slider{ position: relative; }
.hero-slider img{
  position: absolute;
  inset: 0;
  width: min(520px, 100%);
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slider img.active{
  opacity: 1;
  position: relative; /* keeps layout height */
}

/* =========================================================
   MOTION & EMPHASIS LAYER (Commercial / Framer-like)
   - No UI/UX change. Only animation and polish.
========================================================= */

/* Motion variables */
:root{
  --ease-framer: cubic-bezier(.2,.9,.2,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation: none !important;
    transition: none !important;
  }
}

/* Shimmer on span (subtle highlight) */
.hero-text h1 span{
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.hero-text h1 span::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  pointer-events:none;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 45%,
    rgba(255,255,255,0.0) 80%
  );
  transform: skewX(-14deg);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: frShimmer 3.1s var(--ease-framer) infinite;
  animation-delay: 0.7s;
}
@keyframes frShimmer{
  0%{ left:-120%; }
  55%{ left:120%; }
  100%{ left:120%; }
}

/* Button glow (no layout change) */
.btn.primary, .nav-btn{ position: relative; }
.btn.primary::after, .nav-btn::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: inherit;
  pointer-events:none;
  opacity: 0;
  background: radial-gradient(
    closest-side,
    rgba(245,10,155,0.32),
    rgba(153,0,204,0.18),
    rgba(0,0,0,0)
  );
  filter: blur(10px);
  transition: opacity 420ms var(--ease-framer);
}
.btn.primary:hover::after, .nav-btn:hover::after{ opacity: 1; }

/* --- VERY NOTICEABLE HERO IMAGE EMPHASIS --- */
/* 1) On load: big "pop-in" + blur settle */
.hero-slider{
  will-change: transform, filter;
  transform: translate3d(0,0,0);
}

.hero-slider img{
  transition:
    opacity 700ms var(--ease-framer),
    transform 950ms var(--ease-framer),
    filter 950ms var(--ease-framer);
  will-change: opacity, transform, filter;
  filter: blur(0);
}

/* Make active slide feel premium: slight pop + crisp */
.hero-slider img.active{
  filter: blur(0);
  animation:
    heroPop 900ms var(--ease-framer) 1,
    heroFloat 3.2s var(--ease-soft) 900ms infinite;
}

/* Add a motion “spotlight” behind the active image (no layout change) */
.hero-slider::before{
  content:"";
  position:absolute;
  inset:-18px -22px;
  pointer-events:none;
  opacity: 0.0;
  filter: blur(18px);
  transform: translateZ(0);
  transition: opacity 600ms var(--ease-framer);
  background: radial-gradient(
    closest-side,
    rgba(245,10,155,0.20),
    rgba(153,0,204,0.12),
    rgba(0,0,0,0)
  );
}
.hero.is-ready .hero-slider::before{ opacity: 1; }

/* Keyframes for emphasis */
@keyframes heroPop{
  0%   { transform: scale(0.88) translateY(24px); filter: blur(4px); opacity: 0; }
  60%  { transform: scale(1.03) translateY(0px);  filter: blur(0px); opacity: 1; }
  100% { transform: scale(1.00) translateY(0px);  filter: blur(0px); opacity: 1; }
}

/* Float loop (very noticeable but still premium) */
@keyframes heroFloat{
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-10px) scale(1.01); }
  100% { transform: translateY(0px) scale(1); }
}




.auto-scroll-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.auto-scroll-track {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  margin: 20px 20px;
  will-change: transform;
}

.auto-scroll-track img {
  height: 90px;
  width: auto;
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
}
/* ==========================
   HERO IMAGE HOVER EFFECT (WORKING VERSION)
   - Fixes: animation overriding transform + hover not triggering cleanly
========================== */

/* Make hover always register on the slider */
.hero-slider{
  display: inline-block;
  position: relative;
  transform: translate3d(0,0,0);
  transition: transform 600ms cubic-bezier(.2,.9,.2,1), filter 600ms cubic-bezier(.2,.9,.2,1);
}

/* Prevent images from "stealing" hover */
.hero-slider img{
  pointer-events: none;
}

/* Lift the whole block on hover (no conflict with img animations) */
.hero-slider:hover{
  transform: translateY(-12px) scale(1.02);
}

/* Reuse your existing spotlight ::before and make it stronger on hover */
.hero-slider:hover::before{
  opacity: 1 !important;
}

/* Add a sheen sweep using ::after (since ::before already exists in your code) */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:-10px;
  pointer-events:none;
  opacity:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-130%);
  transition: opacity 250ms ease;
}

.hero-slider:hover::after{
  opacity: 1;
  animation: sheenSweep 900ms cubic-bezier(.22,.61,.36,1) 1;
}

@keyframes sheenSweep{
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

/* IMPORTANT: stop the active image animation on hover so transform can apply */
.hero-slider:hover img.active{
  animation: none !important;
  transform: scale(1.04) translateY(-6px) rotate(-1deg) !important;
  filter: drop-shadow(0 35px 70px rgba(0,0,0,0.40)) saturate(1.05);
}
/* =========================================
   Stripe/Paystack 3D Hover Tracking (WORKS)
========================================= */

/* Give the right hero area real 3D space */
.hero-image{
  perspective: 1200px;
}

/* Slider is the "card" */
.hero-slider{
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
}

/* IMPORTANT: let hover always trigger even though images are absolute */
.hero-slider img{
  pointer-events: none;
}

/* Subtle lift on hover */
.hero-slider:hover{
  transform: translateY(-10px);
}

/* We will control these with JS */
.hero-slider{
  --rx: 0deg;
  --ry: 0deg;
  --tz: 0px;
}

/* Active image becomes the 3D object */
.hero-slider img.active{
  transform-style: preserve-3d;
  will-change: transform, filter;
}

/* On hover: pause your float animation and apply 3D tilt */
.hero-slider:hover img.active{
  animation: none !important; /* stops heroFloat/heroPop from overriding transform */
  transform:
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateZ(var(--tz))
    scale(1.03) !important;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,0.40)) saturate(1.05);
}

/* Glow (behind) — premium bloom */
.hero-slider::before{
  /* you already have ::before; this enhances it on hover */
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.2,.9,.2,1);
}
.hero.is-ready .hero-slider::before{
  opacity: 0.55;
}
.hero-slider:hover::before{
  opacity: 1;
}

/* Sheen sweep (use ::after because ::before is already used) */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:-16px;
  pointer-events:none;
  opacity:0;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-130%);
}

.hero-slider:hover::after{
  opacity: 1;
  animation: sheenSweep 900ms cubic-bezier(.22,.61,.36,1) 1;
}

@keyframes sheenSweep{
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
/* ================================
   Magnetic Drift + 3D Tilt
================================ */

/* 3D space */
.hero-image{
  perspective: 1200px;
}

/* The magnetic card */
.hero-slider{
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
  --rx: 0deg;
  --ry: 0deg;
  --mx: 0px; /* magnetic X */
  --my: 0px; /* magnetic Y */
  --tz: 0px; /* Z depth */
}

/* Ensure hover always triggers */
.hero-slider img{
  pointer-events: none;
}

/* Magnetic drift (the whole block moves slightly) */
.hero-slider:hover{
  transform: translate3d(var(--mx), var(--my), 0);
}

/* Active image becomes the premium 3D object */
.hero-slider:hover img.active{
  animation: none !important; /* stops your heroFloat from overriding transforms */
  transform:
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateZ(var(--tz))
    scale(1.03) !important;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,0.40)) saturate(1.05);
}

/* Stronger spotlight on hover (you already have ::before; this just boosts it) */
.hero-slider:hover::before{
  opacity: 1 !important;
}

/* Sheen sweep */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:-16px;
  pointer-events:none;
  opacity:0;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-130%);
}

.hero-slider:hover::after{
  opacity: 1;
  animation: sheenSweep 900ms cubic-bezier(.22,.61,.36,1) 1;
}

@keyframes sheenSweep{
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
/* ========= HERO REPLICA (Exact style direction) ========= */
.hero-replica{
  background:#fff;
  padding: 70px 0 40px;
  overflow:hidden;
}

.hero-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items:center;
  padding: 0 20px;
}

/* LEFT */
.hero-title{
  margin:0;
  font-weight: 900;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color:#e91e63;
  
}
.hero-title .accent{
  color:#e91e63;
}

.hero-sub{
  margin: 12px 0 18px;
  font-size: clamp(16px, 1.25vw, 20px);
  color:#6b4a86;
  font-weight: 600;
}

/* STEPS */
.steps{ display:flex; flex-direction:column; gap:16px; margin-top:18px; }

.step-card{
  display:flex;
  gap:14px;
  padding:16px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(123,44,255,0.06), rgba(233,30,99,0.03));
  border: 1px solid rgba(123,44,255,0.14);
  
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.step-card:hover{
  transform: translateY(-6px) scale(1.01);
  
  border-color: rgba(233,30,99,0.22);
}

.step-ico{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  flex: 0 0 58px;
  background: radial-gradient(circle at 30% 20%, rgba(233,30,99,.24), rgba(123,44,255,.18));
  border: 1px solid rgba(123,44,255,.22);
  position:relative;
  overflow:hidden;
}
.step-ico i{
  font-size: 22px;
  color:#7b2cff;
  filter: drop-shadow(0 10px 20px rgba(123,44,255,.22));
  position:relative;
  z-index:2;
}
.step-ico::after{
  content:"";
  position:absolute;
  inset:-60%;
  background: conic-gradient(from 0deg, rgba(255,255,255,0), rgba(233,30,99,.35), rgba(255,255,255,0));
  animation: spinny 2.8s linear infinite;
  opacity: .8;
}

.step-body h3{
  margin: 2px 0 6px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 900;
  color:#3a0b63;
}
.step-body p{
  margin:0;
  color:#6b4a86;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.6;
}

/* Buttons (more “super”) */
.Btnsuper{
  background: linear-gradient(135deg, #7b2cff, #e91e63);
  border:0 !important;
  color:#fff !important;
  padding: 20px 45px !important;
  border-radius: 3px !important;
  font-weight: 500 !important;
  
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.superBtn:hover{
  transform: translateY(-4px) scale(1.03);
  
  filter: brightness(1.06);
}

.superBtn2{
  background: rgba(123,44,255,0.06) !important;
  border: 1px solid rgba(123,44,255,0.22) !important;
  color:#3a0b63 !important;
  padding: 12px 18px !important;
  border-radius: 14px !important;
  font-weight: 900 !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.superBtn2:hover{
  transform: translateY(-3px);
  background: rgba(233,30,99,0.06) !important;
  
}

/* RIGHT */
.hero-visual{
  position:relative;
  min-height: 520px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  padding-right: 12px;
}

.hero-girl{
  width: min(620px, 100%);
  transform: scale(1.15);   /* BIGGER girl only */
  transform-origin: bottom center;
  margin-top: 30px;
  margin-bottom: 30px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(20, 8, 35, 0.20));
  position: relative;
  z-index: 2;
}

/* glow */
.hero-glow{
  position:absolute;
  right: 60px;
  bottom: 30px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(123,44,255,0.22), rgba(255,255,255,0) 60%);
  filter: blur(8px);
  z-index:1;
}

/* Play button (big ring like image) */
.play-btn{
  position:absolute;
  left: 12%;
  top: 18%;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  border:0;
  background: transparent;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index: 4;
}
.play-btn .ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border: 2px solid rgba(172, 93, 255, 0.35);
}
.play-btn .ring2{
  position:absolute;
  inset:-16px;
  border-radius:999px;
  border: 2px solid rgba(233,30,99,0.22);
  animation: ripple 1.2s ease-out infinite;
}
.play-btn .core{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #e91e63, #7b2cff);
  display:grid;
  place-items:center;
  box-shadow: 0 30px 90px rgba(233,30,99,0.25);
  animation: thump 1.1s ease-in-out infinite;
}
.play-btn i{
  color:#fff;
  font-size: 22px;
}

/* Uptime badge */
.uptime-badge{
  position:absolute;
  right: 12%;
  top: 28%;
  background:#fff;
  border-radius: 14px;
  padding: 10px 14px;
  display:flex;
  gap:10px;
  align-items:center;
  box-shadow: 0 20px 60px rgba(20, 8, 35, 0.12);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 5;
}
.uptime-big{
  font-size: 34px;
  font-weight: 1000;
  color:#111;
  line-height:1;
}
.uptime-small{
  font-weight: 900;
  color:#222;
  line-height:1.05;
}

/* Stats card */
.stats-card{
  position:absolute;
  right: 2%;
  bottom: 5%;
  width: 200px;
  border-radius: 18px;
  padding: 10px 8px;
  color:#fff;
  background: linear-gradient(135deg, #7b2cff, #e91e63);
  box-shadow: 0 35px 110px rgba(123,44,255,0.30);
  z-index: 5;
  overflow:hidden;
  transform: translateZ(0);
}
.stats-card:hover{
  animation: superShake .35s ease-in-out 1;
}
.stat{ text-align:center; }
.stat-num{
  font-size: 15px;
  font-weight: 600;
  line-height:1.05;
  text-shadow: 0 18px 55px rgba(0,0,0,0.25);
}
.stat-label{
  margin-top: 6px;
  font-size: 8px;
  font-weight: 500;
  opacity: .95;
}
.stats-divider{
  height: 1px;
  margin: 14px 0;
  background: rgba(255,255,255,0.35);
}
.stats-card .shine{
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 65%);
  transform: rotate(18deg);
  animation: shine 2.2s ease-in-out infinite;
  pointer-events:none;
}

/* Toast */
.super-toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(20, 8, 35, 0.92);
  color:#fff;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}
.super-toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(-6px);
}

/* EXTRA SUPER EMPHASIS */
.superPulse{ animation: iconBounce 1.2s ease-in-out infinite; }
.superPop{ animation: popIn .8s cubic-bezier(.2,1.2,.2,1) both; }

@keyframes thump{ 0%,100%{transform:scale(1)} 50%{transform:scale(1.10)} }
@keyframes ripple{ 0%{transform:scale(.92);opacity:.75} 100%{transform:scale(1.16);opacity:0} }
@keyframes shine{
  0%{ transform: translateX(-30%) rotate(18deg); opacity: 0; }
  40%{ opacity: .9; }
  100%{ transform: translateX(30%) rotate(18deg); opacity: 0; }
}
@keyframes iconBounce{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px) scale(1.03)} }
@keyframes popIn{ 0%{transform:scale(.88);opacity:0} 100%{transform:scale(1);opacity:1} }
@keyframes superShake{
  0%{ transform: translateX(0) }
  25%{ transform: translateX(-6px) }
  50%{ transform: translateX(6px) }
  75%{ transform: translateX(-4px) }
  100%{ transform: translateX(0) }
}
@keyframes spinny{ to{ transform: rotate(360deg);} }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ justify-content:center; padding-right:0; }
  .uptime-badge{ right: 6%; top: 10%; }
  .stats-card{ right: 6%; bottom: 8%; }
  .play-btn{ left: 6%; top: 12%; }
}
@media (max-width: 520px){
  .stats-card{ width: 270px; }
  .play-btn{ transform: scale(.92); }
}
/* =========================
   TEXT SIZE CORRECTION PATCH
   (paste at end of styles.css)
========================= */

/* HERO TITLE */
.hero-title{
  font-size: clamp(32px, 3.2vw, 48px) !important;
  line-height: 1.08;
  
}

/* SUBTITLE */
.hero-sub{
  font-size: clamp(14px, 1.1vw, 17px) !important;
  margin-top: 10px;
}

/* STEP TITLES */
.step-body h3{
  font-size: clamp(16px, 1.25vw, 18px) !important;
}

/* STEP PARAGRAPHS */
.step-body p{
  font-size: clamp(13px, 1vw, 14.5px) !important;
  line-height: 1.55;
}

/* BUTTON TEXT */
.superBtn,
.superBtn2{
  font-size: 18px !important;
  padding: 18px 35px !important;
}

/* UPTIME BADGE */
.uptime-big{
  font-size: 26px !important;
}
.uptime-small{
  font-size: 13px !important;
}

/* STATS NUMBERS */
.stat-num{
  font-size: 36px !important;
}

/* STATS LABEL */
.stat-label{
  font-size: 14px !important;
}

/* OPTIONAL: navbar buttons consistency */
.nav-btn,
.nav-btn2{
  font-size: 14px;
}

/* MOBILE TUNING */
@media (max-width: 576px){
  .hero-title{
    font-size: 30px !important;
  }

  .stat-num{
    font-size: 32px !important;
  }

  .step-body p{
    font-size: 13px !important;
  }
}
/* =========================
   GLASS CARDS (retain color)
   + Move uptime away from girl
   (PASTE AT END)
========================= */

/* --- 99.9% Service Uptime: glass + reposition --- */
.uptime-badge{
  /* move away from girl's body */
  right: 16% !important;   /* increase = move left */
  top: 24% !important;     /* adjust up/down if needed */

  /* glass look */
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.55) !important;

  /* keep clean depth */
  box-shadow: 0 22px 70px rgba(20, 8, 35, 0.18) !important;
}

/* keep text strong on glass */
.uptime-big{ color:#111 !important; }
.uptime-small{ color:#222 !important; }


/* --- Stats box (100K+, 80+): glass BUT keep purple/pink gradient --- */
.stats-card{
  /* Layer gradient color + glass blur */
  background: linear-gradient(
      135deg,
      rgba(123,44,255,0.78),
      rgba(233,30,99,0.70)
    ) !important;

  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  border: 1px solid rgba(255,255,255,0.26) !important;
  box-shadow: 0 35px 120px rgba(123,44,255,0.28) !important;
}

/* sharper text contrast */
.stats-card .stat-num,
.stats-card .stat-label{
  text-shadow: 0 18px 55px rgba(0,0,0,0.30) !important;
}

/* Optional: glass highlight border inside (premium) */
.stats-card::before{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events:none;
}

/* Optional: make uptime also have inner highlight */
.uptime-badge::before{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.22);
  pointer-events:none;
}

/* Make sure badge stays above the girl */
.uptime-badge{ z-index: 8 !important; }
.stats-card{ z-index: 8 !important; }
/* =========================
   MOVE UPTIME BOX AWAY
   (PASTE AT END)
========================= */

.uptime-badge{
  right: 0 !important;  /* bigger % = moves LEFT away from the girl */
  top: 40% !important;    /* smaller % = moves UP */
  transform: translateX(-10px) !important; /* extra push away */
}
/* =========================
   PLAY BUTTON REPOSITION
   (PASTE AT END)
========================= */

.play-btn{
  /* move away from girl’s face / chest */
  left: -9% !important;     /* smaller = further left */
  top: 1% !important;     /* smaller = higher */

  transform: scale(0.95); /* slightly refined size */
}
/* =========================
   FIX CUT HEAD: bring girl in front
   (PASTE AT VERY BOTTOM)
========================= */

/* 1) Allow the girl to overflow outside the hero (prevents cutting) */
.hero-replica{
  overflow: visible !important;
}

/* 2) Make sure the hero background stays behind everything */
.hero-replica::before{
  z-index: 0 !important;
}

/* 3) Keep normal hero content above background */
.hero-grid,
.hero-visual{
  position: relative;
  z-index: 2 !important;
}

/* 4) Girl must be above all layers */
.hero-girl{
  position: relative;
  z-index: 10 !important;
}
/* =========================
   FIX LAYERING: stats above girl
   (PASTE AT VERY BOTTOM)
========================= */

/* Girl stays above background, but not above badges/cards */
.hero-girl{
  z-index: 6 !important;
}

/* Put these above the girl */
.stats-card{
  z-index: 20 !important;
}

.uptime-badge{
  z-index: 20 !important;
}

.play-btn{
  z-index: 20 !important;
}
/* =========================================================
   SUPER EMPHASIS + MAGNETIC MOUSE (Girl + Stats)
   Paste at VERY BOTTOM of styles.css
========================================================= */

.hero-visual{
  position: relative;
  perspective: 1200px;
}

/* ---------- GIRL: noticeable floating + glow breathing ---------- */
.hero-girl{
  will-change: transform, filter;
  transform-origin: bottom center;
  animation: girlFloatSuper 2.8s cubic-bezier(.22,.61,.36,1) infinite;
}

/* extra "spotlight" that breathes behind the girl */
.hero-visual::before{
  content:"";
  position:absolute;
  right: 80px;
  bottom: 70px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle,
    rgba(233,30,99,0.18),
    rgba(123,44,255,0.14),
    rgba(255,255,255,0) 62%
  );
  filter: blur(12px);
  opacity: .0;
  transform: translateZ(0);
  transition: opacity 420ms cubic-bezier(.2,.9,.2,1);
  z-index: 1;
  pointer-events:none;
}

/* when mouse is inside hero visual, spotlight shows */
.hero-visual.is-magnetic::before{
  opacity: 1;
  animation: glowBreath 1.6s ease-in-out infinite;
}

@keyframes girlFloatSuper{
  0%   { transform: translateY(0) rotate(-0.3deg) scale(1.15); }
  50%  { transform: translateY(-12px) rotate(0.4deg) scale(1.15); }
  100% { transform: translateY(0) rotate(-0.3deg) scale(1.15); }
}
@keyframes glowBreath{
  0%,100%{ filter: blur(12px); transform: scale(1); }
  50%{ filter: blur(16px); transform: scale(1.04); }
}

/* ---------- STATS: super emphasis + shimmer sweep ---------- */
.stats-card{
  will-change: transform, filter;
  animation: statsPulseSuper 1.35s ease-in-out infinite;
  transform-origin: center;
}

.stats-card:hover{
  animation: none; /* let magnetic effect take over on hover */
}

@keyframes statsPulseSuper{
  0%,100%{
    transform: translateY(0) scale(1);
    filter: brightness(1) saturate(1);
  }
  50%{
    transform: translateY(-6px) scale(1.03);
    filter: brightness(1.08) saturate(1.06);
  }
}

/* add a brighter moving sheen */
.stats-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.26) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: rotate(18deg) translateX(-40%);
  opacity: .0;
}
.hero-visual.is-magnetic .stats-card::after{
  opacity: 1;
  animation: sheenLoop 1.2s cubic-bezier(.22,.61,.36,1) infinite;
}
@keyframes sheenLoop{
  0%   { transform: rotate(18deg) translateX(-40%); }
  100% { transform: rotate(18deg) translateX(40%); }
}

/* =========================================================
   ULTRA DRAMATIC MAGNETIC + SNAP (Girl + Stats)
   Paste at VERY BOTTOM (overrides earlier)
========================================================= */

.hero-visual{
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}

/* Keep layers correct */
.hero-girl{ z-index: 8 !important; }
.stats-card{ z-index: 30 !important; }
.play-btn{ z-index: 40 !important; }
.uptime-badge{ z-index: 40 !important; }

/* ---------------- GIRL: stronger float + depth ---------------- */
.hero-girl{
  will-change: transform, filter;
  transform-origin: bottom center;
  animation: girlFloatUltra 2.2s cubic-bezier(.22,.61,.36,1) infinite;
  filter: drop-shadow(0 45px 110px rgba(0,0,0,0.35));
}

/* When magnetic active, add extra punch */
.hero-visual.is-magnetic .hero-girl{
  filter: drop-shadow(0 60px 140px rgba(0,0,0,0.42)) saturate(1.08);
}

@keyframes girlFloatUltra{
  0%   { transform: translateY(0) rotate(-0.6deg) scale(1.15); }
  50%  { transform: translateY(-18px) rotate(0.7deg) scale(1.15); }
  100% { transform: translateY(0) rotate(-0.6deg) scale(1.15); }
}

/* ---------------- STATS: more alive ---------------- */
.stats-card{
  transform-origin: center;
  will-change: transform, filter;
  animation: statsPulseUltra 1.05s ease-in-out infinite;
}

@keyframes statsPulseUltra{
  0%,100%{ transform: translateY(0) scale(1); filter: brightness(1) saturate(1); }
  50%{ transform: translateY(-10px) scale(1.05); filter: brightness(1.12) saturate(1.12); }
}

/* Stop pulsing while user interacts (magnetic takes over) */
.hero-visual.is-magnetic .stats-card{ animation: none !important; }

/* Strong sheen loop */
.stats-card::after{
  content:"";
  position:absolute;
  inset:-55%;
  pointer-events:none;
  border-radius: 26px;
  opacity: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.34) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: rotate(18deg) translateX(-60%);
}
.hero-visual.is-magnetic .stats-card::after{
  opacity: 1;
  animation: sheenUltra 0.9s cubic-bezier(.22,.61,.36,1) infinite;
}
@keyframes sheenUltra{
  0%   { transform: rotate(18deg) translateX(-60%); }
  100% { transform: rotate(18deg) translateX(60%); }
}

/* SNAP shockwave burst */
.stats-card::before{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius: 26px;
  pointer-events:none;
  opacity: 0;
  border: 2px solid rgba(255,255,255,0.28);
  filter: blur(0px);
  transform: scale(0.92);
}
.stats-card.is-snap::before{
  animation: snapBurst 420ms cubic-bezier(.2,.9,.2,1) 1;
}
@keyframes snapBurst{
  0%{ opacity: 0; transform: scale(0.90); }
  35%{ opacity: 1; transform: scale(1.02); }
  100%{ opacity: 0; transform: scale(1.10); }
}

/* --- Magnetic variables applied by JS --- */
.hero-visual .hero-girl{
  transform:
    translate3d(var(--g-mx, 0px), var(--g-my, 0px), 0)
    rotateX(var(--g-rx, 0deg))
    rotateY(var(--g-ry, 0deg))
    scale(1.15);
}

.hero-visual .stats-card{
  transform:
    translate3d(var(--s-mx, 0px), var(--s-my, 0px), 0)
    rotateX(var(--s-rx, 0deg))
    rotateY(var(--s-ry, 0deg))
    translateZ(var(--s-z, 0px))
    scale(var(--s-scale, 1));
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  .hero-girl, .stats-card, .stats-card::after, .stats-card::before{
    animation: none !important;
  }
}
:root {
  --magenta: #ff00b8;
  --muted: #6b7280;
  --bg: #ffffff;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SECTION */
.features-wrap {
  background: var(--bg);
  padding: 60px 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* GRID */
.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px) 1fr;
  gap: 40px;
  align-items: center;
}

/* COLUMNS */
.col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* FEATURE ITEM */
.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 8px;
  border-bottom: 1px solid #e5e7eb;
}

.feature .txt h3 {
  color: var(--magenta);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 6px;
}

.feature .txt p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.feature .ico {
  width: 74px;
  min-width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
}

.feature .ico img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* ICON ALIGNMENT */
.right-icon {
  justify-content: space-between;
}

/* CENTER PHONE (NO TILT) */
.phone-stage {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stage .phone {
  height: 680px;
  width: auto;
  transform: none; /* NO ROTATION */
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .col.center {
    order: -1;
  }

  .phone-stage {
    height: 600px;
  }

  .phone-stage .phone {
    height: 600px;
  }
}

@media (max-width: 520px) {
  .phone-stage {
    height: 480px;
  }

  .phone-stage .phone {
    height: 480px;
  }
}
/* FIX OVERLAP – GIVE PHONE MORE SPACE */
.features-grid {
  grid-template-columns: 1fr 520px 1fr; /* wider center */
  column-gap: 80px; /* push icons away from phone */
}

/* KEEP PHONE BIG BUT CENTERED */
.phone-stage {
  height: 600px;
}

.phone-stage .phone {
  height: 600px;
  width: auto;
  transform: none;
}

/* ENSURE ICONS STAY ABOVE PHONE */
.feature {
  position: relative;
  z-index: 5;
}

/* ===== GLOBAL WIDTH EXPANSION (override) ===== */
:root { --site-max: 1400px; } /* change to 1600px if you want wider */

/* main containers you have set to 1200px */
.nav-container,
.hero-container,
.hero-grid,
.features-grid{
  max-width: var(--site-max) !important;
  width: 94% !important;       /* use more of the screen */
  margin-left: auto !important;
  margin-right: auto !important;
}

/* optional: give a little more breathing room on very large screens */
@media (min-width: 1600px){
  .nav-container,
  .hero-container,
  .hero-grid,
  .features-grid{
    width: 92% !important;
  }
}
/* ===== WORKING: EMPHASIS + MAGNETIC (NO TILT) ===== */
.phone-stage { position: relative; overflow: visible; }

/* Entrance emphasis on wrapper (not affected by image transforms) */
.phone-pop{
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(120px) scale(.65);
  animation: phonePopIn 1200ms cubic-bezier(.12,1.25,.22,1) 120ms forwards;
}

@keyframes phonePopIn{
  0%   { opacity:0; transform: translateY(120px) scale(.65); }
  60%  { opacity:1; transform: translateY(-22px) scale(1.14); }
  80%  { opacity:1; transform: translateY(10px)  scale(.98); }
  100% { opacity:1; transform: translateY(0)     scale(1); }
}

/* Magnetic hover will move ONLY this image */
.phone-img{
  display:block;
  height: 900px;        /* keep your big size */
  width: auto;
  transform: translate3d(0,0,0) scale(1);
  will-change: transform, filter;
  transition: filter 200ms ease;
  
}

.phone-stage.is-magnet .phone-img{
  filter: drop-shadow(0 55px 95px rgba(0,0,0,.34));
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .phone-pop{ animation: none !important; opacity: 1 !important; transform: none !important; }
  .phone-img{ transform: none !important; }
}
/* CONTINUOUS EMPHASIS (wrapper only) */
.phone-pop{
  /* keep your entrance, then loop */
  animation:
    phonePopIn 1200ms cubic-bezier(.12,1.25,.22,1) 120ms forwards,
    phoneBreath 1800ms ease-in-out 1400ms infinite;
}

/* noticeable “breathing” emphasis */
@keyframes phoneBreath{
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-14px) scale(1.035); }
}

/* pause breathing while hovering (magnet is the focus) */
.phone-stage.is-magnet .phone-pop{
  animation-play-state: paused;
}
/* FEATURES TITLE */
.features-title{
  text-align: left;
  max-width: 720px;
  margin: 0 auto 48px;
}

.features-title h2{
  font-size: 60px;
  font-weight: 700;
  color: #ff00b8; /* magenta */
  margin-bottom: 12px;
}

.features-title p{
  font-size: 20px;
  line-height: 1.5;
  color: #6b7280;
}


/* TRUST SECTION */
.trust-section{
  background: linear-gradient(135deg,#7b2cff 0%,#b100d4 45%,#ff00b8 100%);
  padding: 90px 16px;
 
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.trust-container{ max-width: 1400px; margin: 0 auto; }

.trust-title{
  text-align:center;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color:#fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.trust-lead{
  max-width: 820px;
  margin: 0 auto 60px;
  text-align:center;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.65;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  overflow: visible;
}

/* CARD BASE */
.trust-card{
  --mx: 0px;
  --my: 0px;

  position:relative;
  padding: 44px 34px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);

  transform: translate3d(var(--mx), var(--my), 0) scale(1);
  will-change: transform, filter, box-shadow;
  transition: transform .22s cubic-bezier(.2,.9,.2,1),
              box-shadow .22s cubic-bezier(.2,.9,.2,1),
              filter .22s cubic-bezier(.2,.9,.2,1);

  animation: trustFloat 4.8s ease-in-out infinite;
}

/* CONTINUOUS MOTION (doesn't conflict with magnetic) */
@keyframes trustFloat{
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -10px; }
}

/* make others smaller when hovering grid */
.trust-grid:hover .trust-card{
  transform: translate3d(0,0,0) scale(.95);
  filter: brightness(.98) saturate(.98);
  animation-play-state: paused;
}

/* hovered card: magnetic + bigger */
.trust-grid:hover .trust-card:hover{
  z-index: 50;
  transform: translate3d(var(--mx), var(--my), 0) scale(1.13);
  filter: brightness(1.06) saturate(1.06);
  box-shadow: 0 45px 140px rgba(255,0,184,.28);
}

/* glow */
.trust-card::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 26px;
  pointer-events:none;
  opacity:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,0,184,.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(123,44,255,.18), transparent 58%);
  filter: blur(14px);
  transition: opacity .22s cubic-bezier(.2,.9,.2,1);
}
.trust-grid:hover .trust-card:hover::after{ opacity: 1; }

/* number + icon */
.trust-number{
  position:absolute;
  top:18px;
  right:22px;
  font-size: 46px;
  font-weight: 800;
  color: rgba(255,0,184,0.22);
}
.trust-icon{
  font-size: 58px;
  margin-bottom: 20px;
  background: linear-gradient(135deg,#7b2cff,#ff00b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-card h3{
  font-size:22px;
  font-weight:700;
  margin: 0 0 10px;
  color:#1f093a;
}
.trust-card p{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#5b3a73;
}

@media (prefers-reduced-motion: reduce){
  .trust-card{ animation: none !important; transition: none !important; }
  .trust-grid:hover .trust-card,
  .trust-grid:hover .trust-card:hover{ transform: none !important; }
}


/* =========================
   PAY BILLS – MATCH IMAGE HEIGHT TO TEXT + CARDS
========================= */

:root{
  --brand-magenta:#ff00b8;
  --ink:#0b1220;
  --ink-muted:#6b7280;
  --card:#ffffff;
  --stroke:#eef2f7;
}

/* SECTION */
.pay-bills{
  padding: clamp(80px, 9vw, 120px) 16px;
  background:#fff;
}

/* GRID WRAPPER */
.pay-bills__wrap{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 80px);
  align-items: stretch; /* 🔑 KEY LINE */
}

/* IMAGE COLUMN */
.pay-bills__media{
  height: 100%;          /* 🔑 fill grid row height */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 40px 90px rgba(15,23,42,.14),
    0 6px 20px rgba(15,23,42,.06);
}

/* IMAGE FILLS ENTIRE COLUMN HEIGHT */
.pay-bills__img{
  width: 100%;
  height: 100%;          /* 🔑 matches text + cards height */
  object-fit: cover;     /* clean crop */
  display: block;
}

/* RIGHT CONTENT */
.pay-bills__title{
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 70px;
  color: var(--brand-magenta);
}

.pay-bills__text{
  margin: 0 0 36px;
  max-width: 80ch;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* CARDS GRID */
.pay-bills__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD */
.pay-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

/* ICON */
.pay-card__icon{
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,0,184,.10);
  border: 1px solid rgba(255,0,184,.14);
}

.pay-card__icon i{
  font-size: 26px;
  color: var(--brand-magenta);
}

/* CARD TITLE */
.pay-card__title{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-magenta);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .pay-bills__wrap{
    grid-template-columns: 1fr;
  }

  .pay-bills__media{
    height: auto;
  }

  .pay-bills__img{
    height: auto;
  }

  .pay-bills__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .pay-bills__grid{
    grid-template-columns: 1fr;
  }

  .pay-bills__text{
    font-size: 18px;
  }
}
/* MAGNETIC IMAGE EFFECT */
.pay-bills__media{
  position: relative;
  overflow: hidden;
}


/* MAGNETIC EFFECT – IMAGE + CARDS */
.pay-bills__img,
.pay-card{
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  padding: clamp(80px, 9vw, 120px) 16px;
  background: #f6f9fc;
  font-family: "Inter", system-ui, sans-serif;
}

.contact-wrap{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

/* LEFT */
.contact-hero{
  padding-left: 12px;
}

.contact-dash{
  width: 36px;
  height: 4px;
  background: rgba(11,37,48,.35);
  border-radius: 999px;
  margin-bottom: 18px;
}

.contact-title{
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: #270025;
}

.contact-sub{
  margin: 0;
  color: #5d7682;
  font-size: 21px;
  line-height: 1.6;
  max-width: 36ch;
}

/* CARD */
.contact-card{
  position: relative;
  background: #430050;
  border-radius: 10px;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 18px 40px rgba(2,12,20,.22);
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.card-title{
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 24px;
  color: rgba(255,255,255,.9);
}

/* INPUT FIELDS */
.field{
  height: 46px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.field input,
.field textarea{
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255,255,255,.95);
  font-size: 17px;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(255,255,255,.55);
}

.field-textarea{
  height: auto;
  padding: 12px 16px;
}

/* BUTTON */
.btne{
  height: 54px;
  border: 0;
  border-radius: 6px;
  width: 100%;
  background: #ff00b8;
  color: #2b2b2b;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.btne:hover{ transform: translateY(-2px);
background: #730077;
  color:  #ff00b8; }
.btne:active{ transform: scale(.98); }

/* DECOR */
.contact-blob{
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  pointer-events: none;
   fill:  #ff00b8;
}


.contact-dots{
  position: absolute;
  left: 26px;
  bottom: 22px;
  width: 120px;
  height: 85px;
  background:
    radial-gradient(circle, rgba(255,255,255,.18) 2px, transparent 3px) 0 0/12px 12px;
  opacity: .25;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .contact-wrap{
    grid-template-columns: 1fr;
  }

  .contact-hero{
    text-align: center;
    padding-left: 0;
  }

  .contact-dash{
    margin: 0 auto 18px;
  }

  .contact-sub{
    margin: 0 auto;
  }
}
.form-error{
  margin: 6px 0 0;
  font-size: 13px;
  color: #ff00b8;
  display: none;
}

.form-error.show{
  display: block;
}
.contact-details{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;

  font-size: 24px;
  font-weight: 500;
  color: #5d7682;
  line-height: 1.6;
}

/* Row */
.contact-details p{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 14px 18px;

  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.05);

  transition:
    transform .25s cubic-bezier(.22,.61,.36,1),
    box-shadow .25s cubic-bezier(.22,.61,.36,1),
    background .25s ease;
}

/* Hover lift (Framer feel) */
.contact-details p:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
}

/* Icon */
.contact-details i{
  color: #ff00b8;
  font-size: 27px;
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: rgba(255,0,184,0.12);

  box-shadow:
    inset 0 0 0 1px rgba(255,0,184,0.18);
}

/* Text / links */
.contact-details a{
  color: #0b2530;
  text-decoration: none;
  transition: color .2s ease;
}

.contact-details p:hover a{
  color: #ff00b8;
}

/* Mobile refinement */
@media (max-width: 600px){
  .contact-details{
    font-size: 20px;
  }

  .contact-details i{
    font-size: 22px;
    width: 38px;
    height: 38px;
  }
}
/* =========================
   MAGNETIC FIX (NO CONFLICT)
   Put at VERY BOTTOM
========================= */

/* 1) HERO VISUAL magnetic uses CSS variables (wrapper controls) */
.hero-visual{
  --g-mx: 0px; --g-my: 0px; --g-rx: 0deg; --g-ry: 0deg;
  --s-mx: 0px; --s-my: 0px; --s-rx: 0deg; --s-ry: 0deg;
  --p-mx: 0px; --p-my: 0px; --p-rx: 0deg; --p-ry: 0deg;
}

/* GIRL: keep your scale(1.15) but ADD magnetic vars */
.hero-girl{
  transform:
    translate3d(var(--g-mx), var(--g-my), 0)
    rotateX(var(--g-rx))
    rotateY(var(--g-ry))
    scale(1.15) !important;
}

/* STATS: magnetic vars + existing look */
.stats-card{
  transform:
    translate3d(var(--s-mx), var(--s-my), 0)
    rotateX(var(--s-rx))
    rotateY(var(--s-ry))
    scale(var(--s-scale, 1)) !important;
}

/* PHONE: move wrapper instead of image */
.phone-pop{
  transform: translate3d(var(--p-mx), var(--p-my), 0) scale(1) !important;
}

/* Disable transform-animations while user is interacting */
.hero-visual.is-magnetic .hero-girl,
.hero-visual.is-magnetic .stats-card{
  animation: none !important;
}

.phone-stage.is-magnet .phone-pop{
  animation-play-state: paused !important;
}
/* =========================
   CONTINUOUS MOTION FIX
   Paste at VERY BOTTOM
========================= */

/* --- DATA GIRL: continuous float always --- */
.hero-girl{
  animation: girlFloatLoop 2.8s cubic-bezier(.22,.61,.36,1) infinite !important;
}

@keyframes girlFloatLoop{
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -16px; }
}
/* --- STEP ICONS: continuous motion (no conflict) --- */
.step-ico.superPulse{
  animation: stepPulseLoop 1.2s ease-in-out infinite !important;
}

@keyframes stepPulseLoop{
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -8px; }
}
/* --- PHONE: continuous motion always ON --- */
.phone-pop{
  animation:
    phonePopIn 1200ms cubic-bezier(.12,1.25,.22,1) 120ms forwards,
    phoneBreath 1800ms ease-in-out 1400ms infinite !important;
}

/* do NOT pause breathing when magnetic is active */
.phone-stage.is-magnet .phone-pop{
  animation-play-state: running !important;
}

/* breathing loop uses translate so it won’t conflict */
@keyframes phoneBreath{
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -14px; }
}
/* =========================
   STEP CARDS – PREMIUM HOVER
========================= */

.steps{
  position: relative;
}

/* Base polish */
.step-card{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, box-shadow, filter;
  transition:
    transform .28s cubic-bezier(.2,.9,.2,1),
    box-shadow .28s cubic-bezier(.2,.9,.2,1),
    border-color .28s ease,
    background .28s ease;
}

/* Lift + depth */
.step-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 28px 80px rgba(123,44,255,.22),
    0 8px 28px rgba(233,30,99,.18);
  border-color: rgba(233,30,99,.32);
  background:
    linear-gradient(
      180deg,
      rgba(233,30,99,.10),
      rgba(123,44,255,.06)
    );
}

/* Soft glow that follows hover */
.step-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;
  opacity:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(233,30,99,.28), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(123,44,255,.22), transparent 58%);
  filter: blur(22px);
  transition: opacity .28s ease;
}

.step-card:hover::after{
  opacity:1;
}

/* ICON EMPHASIS */
.step-card:hover .step-ico{
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 18px 40px rgba(123,44,255,.35);
}

/* icon shine sweep */
.step-ico::before{
  content:"";
  position:absolute;
  inset:-120%;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,.45) 50%,
      rgba(255,255,255,0) 65%
    );
  transform: translateX(-130%);
  opacity:0;
}

.step-card:hover .step-ico::before{
  opacity:1;
  animation: stepSheen 900ms cubic-bezier(.22,.61,.36,1) 1;
}

@keyframes stepSheen{
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

/* Text emphasis */
.step-card:hover .step-body h3{
  transform: translateY(-1px);
}

.step-card:hover .step-body p{
  opacity: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .step-card,
  .step-card:hover{
    transform: none !important;
  }
}
/* ===== FOOTER (matches reference) ===== */

.ft{
  background:#f6f7ff;
  padding: 60px 18px 22px;
  font-family: "Inter", system-ui, sans-serif;
  color:#1f2a37;
}

.ft__wrap{
  max-width: 1400px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr .8fr 1fr;
  gap: 48px;
  align-items:start;
}

/* Brand */
.ft__logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 16px;
}

.ft__mark {
  width: 44px;
  height: 44px;
  border-radius: 26px; /* Makes it a circle */
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff00b3, #5e0066);
  overflow: hidden; /* Keeps the image inside the border-radius */
}

/* YOU MUST ADD THIS to size the logo */
.ft__mark img {
  width: 24px; /* Adjust this size (approx 50-60% of container) */
  height: auto;
  object-fit: contain;
}

.ft__name{
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ft__about{
  margin: 0 0 18px;
  max-width: 42ch;
  color:#4b5563;
  line-height: 1.75;
  font-size: 15px;
}

/* Social */
.ft__social{
  display:flex;
  gap:14px;
}

.ft__social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background:#eef1ff;
  color:#334155;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ft__social a:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

/* Columns */
.ft__title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}

.ft__links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ft__links a,
.ft__legal a{
  color:#374151;
  text-decoration:none;
  font-size: 15px;
}

.ft__links a:hover,
.ft__legal a:hover{
  color:#ff2d55;
}

.ft__text{
  margin:0;
  color:#4b5563;
  line-height:1.7;
  font-size: 15px;
  max-width: 34ch;
}

/* CTA square */
.ft__cta{
  margin-top: 22px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  background:#ff00b3;
  color:#fff;
  text-decoration:none;
  box-shadow: 0 18px 34px rgba(255,106,0,.25);
  transition: transform .2s ease;
}

.ft__cta:hover{ transform: translateY(-3px); }

/* Divider + bottom */
.ft__divider{
  max-width: 1400px;
  margin: 42px auto 18px;
  height: 1px;
  background: #ff00b3;
}

.ft__bottom{
  max-width: 1400px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.ft__copy{
  margin:0;
  color:#374151;
  font-size: 15px;
}

.ft__copy span{
  color:#ff00b3;
  font-weight: 700;
}

.ft__legal{
  display:flex;
  gap: 26px;
}

/* Responsive */
@media (max-width: 980px){
  .ft__wrap{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .ft__wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ft__legal{
    gap: 18px;
  }
}


.site-shell{
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-scale{
  zoom: 0.9;         /* ✅ no footer gap */
}
