/* ═══════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════ */
:root {
  --kb: #09090f;
  --ks: #13131e;
  --kbr: #1e1e2f;
  --kp: #f97316;
  --ka: #38bdf8;
  --kt: #e2e8f0;
  --km: #64748b;
  --kg: #fbbf24;
  --r: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--kb);
  color: var(--kt);
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif !important;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════════════════════════
   SHARED UTILITIES
═══════════════════════════════ */
.sec {
  padding: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kp);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
}

.sec-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0.6rem;
}

.sec-sub {
  color: var(--km);
  max-width: 540px;
  margin: 0.7rem auto 0;
  font-size: 0.97rem;
}

/* .grad {
    background: linear-gradient(90deg, #f9a825, #ef5350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad2 {
    background: linear-gradient(90deg, #26c6da, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.btn-primary-k {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--kp);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  padding: 0.75rem 1.9rem;
  border-radius: 50px;
  font-size: 0.97rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-k:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.42);
}

.btn-outline-k {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid var(--kbr);
  color: var(--kt);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  padding: 0.73rem 1.9rem;
  border-radius: 50px;
  font-size: 0.97rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-k:hover {
  border-color: var(--kp);
  background: rgba(249, 115, 22, 0.08);
  color: var(--kt);
}

.btn-lg-k {
  padding: 0.9rem 2.3rem;
  font-size: 1.05rem;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up-1 {
  animation-delay: 0.1s;
}

.fade-up-2 {
  animation-delay: 0.2s;
}

.fade-up-3 {
  animation-delay: 0.3s;
}

.fade-up-4 {
  animation-delay: 0.4s;
}

/* ═══════════════════════════════
   1. NAVBAR
═══════════════════════════════ */
#mainNav {
  background: rgba(9, 9, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--kbr);
  transition: box-shadow 0.3s;
  z-index: 1000;
}

#mainNav.scrolled {
  box-shadow: 0 4px 40px rgba(249, 115, 22, 0.15);
}

.kraka_logo {
  width: 60px;
  height: 60px;
  margin-right: 0.6rem;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.10rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.nav-link {
  font-weight: 500;
  color: #ffffff !important;
  opacity: 0.9;
  position: relative;
  padding-bottom: 6px !important;
  transition: color 0.25s, opacity 0.25s;
  font-size: 0.93rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kp);
  transition: width 0.3s;
}

.nav-link:hover {
  color: #ffffff !important;
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(90deg, #f13cce 0%, #ae49ff 47%, #f8814d 100%);
  color: #fff !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.48rem 1.35rem;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  border: none;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.45);
  filter: brightness(1.08);
}

.navbar-toggler {
  border-color: var(--kbr);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ═══════════════════════════════
   2. HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .hero {
    min-height: 100vh;
    margin-top: 20px;
  }

  /* ── Phone banner ── */
  .hero .hero-phone-wrap {
    margin-left: 20px;
  }

  .hero .float-top {
    top: 12%;
    left: -20%;
    animation: floatUp 3.2s ease-in-out infinite;
  }

  .hero .float-bottom {
    bottom: 18%;
    right: -20%;
    animation: floatDown 3.2s ease-in-out infinite;
    animation-delay: -1.6s;
  }
}

/* Soft left-side orange glow */
.hero .hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180, 40, 20, 0.18) 0%, transparent 70%);
  top: 10%;
  left: -200px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}

/* Soft right-side teal glow */
.hero .hero-glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

/* ── Badge ── */
.hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #271F29;
  border: 1px solid #FF8E3D;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.20rem 1.1rem;
  height: 25px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
}

/* ── Hero heading ── */
.hero .hero-heading {
  font-size: clamp(2.8rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.10;
  color: #ffffff;
  /* "Don't Just Scroll" — pure white */
  margin-bottom: 0;
}

/* "Learn." — cyan */
/* .hero .grad-hero {
    background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
    -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
    background-clip: text;
    color: transparent;
} */

/* ── "Learn. Grow. Evolve." — flowing gradient animation ── */
.hero .grad-hero {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Sub text ── */
.hero .hero-sub {
  color: #928F8F;
  font-size: 0.80rem;
  max-width: 420px;
  margin-top: 1.2rem;
  line-height: 1.75;
}

/* ── CTA row ── */
.hero .hero-cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Download App — pink→purple gradient pill */
.hero .btn-hero-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, #f13cce 0%, #ae49ff 47%, #f8814d 100%);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.7rem 1.9rem;
  height: 40px;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.hero .btn-hero-download:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(174, 73, 255, 0.45);
  filter: brightness(1.08);
}

/* Buy Subscription — dark outline pill */
.hero .btn-hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #261E27;
  border: 1px solid #FF8E3D;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.7rem 1.9rem;
  height: 40px;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}

.hero .btn-hero-sub:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

/* ── Phone banner ── */
.hero .hero-phone-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero .phone_banner {
  width: 100%;
  max-width: 300px;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.hero .phone_banner:hover {
  transform: rotateY(15deg) rotateX(-10deg);
}

/* ── Shared floating card style ── */
.hero .hero-float-card {
  position: absolute;
  z-index: 3;
}

.hero .hero-float-img {
  width: auto;
  max-width: 150px;
  height: auto;
  border-radius: 14px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.50));
}

/* ── "Don't just scroll" — top-left of phone ── */
.hero .float-top {
  top: 12%;
  left: -20%;
  animation: floatUp 3.2s ease-in-out infinite;
}

/* ── "knowledge" — bottom-right of phone ── */
.hero .float-bottom {
  bottom: 18%;
  right: 5%;
  animation: floatDown 3.2s ease-in-out infinite;
  /* starts mid-cycle so they move in OPPOSITE directions */
  animation-delay: -1.6s;
}

/* ── Float UP animation (top card) ── */
@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ── Float DOWN animation (bottom card — opposite phase) ── */
@keyframes floatDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(16px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .hero .hero-phone-wrap {
    max-width: 400px;
  }

  .hero .hero-float-img {
    max-width: 170px;
  }

  .hero .float-top {
    left: -12%;
  }

  .hero .float-bottom {
    right: -12%;
  }
}

@media (max-width: 991px) {
  .hero .hero-phone-wrap {
    max-width: 340px;
  }

  .hero .hero-float-img {
    max-width: 145px;
  }

  .hero .float-top {
    top: 8%;
    left: -8%;
  }

  .hero .float-bottom {
    bottom: 14%;
    right: -8%;
  }
}

/* ═══════════════════════════════
   3. FEATURES
═══════════════════════════════ */
.features-sec {
  padding: 40px 0;
}

.features-sec .sec-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.6rem;
}

.features-sec .grad-features {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.features-sec .sec-sub {
  color: var(--km);
  max-width: 540px;
  margin: 0.7rem auto 0;
  font-size: 0.97rem;
}

.features-sec .feat-card {
  border-radius: 18px;
  padding: 1.8rem 1.8rem 2.2rem;
  height: 100%;
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* ── Inner glow blob (bottom-left corner) ── */
.features-sec .feat-card::before {
  content: "";
  position: absolute;
  top: -150px;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.75;
}

/* .feat-card:hover {
  transform: translateY(-6px);
} */

.features-sec .feat-card:hover::before {
  opacity: 1;
}

/* Card 1 — Pink/Magenta */
.features-sec .fc-orange {
  border: 1px solid rgba(240, 80, 160, 0.55);
  box-shadow: inset 0 0 0 1px rgba(240, 80, 160, 0.08);
}

.features-sec .fc-orange::before {
  background: radial-gradient(circle, rgba(220, 50, 150, 0.85) 0%, transparent 70%);
}

/* .feat-card:hover.fc-orange {
  box-shadow: 0 8px 40px rgba(220, 50, 150, 0.25),
              inset 0 0 0 1px rgba(240, 80, 160, 0.15);
} */

/* Card 2 — Teal/Cyan */
.features-sec .fc-blue {
  border: 1px solid rgba(30, 160, 180, 0.55);
  box-shadow: inset 0 0 0 1px rgba(30, 160, 180, 0.08);
}

.features-sec .fc-blue::before {
  background: radial-gradient(circle, rgba(20, 160, 185, 0.85) 0%, transparent 70%);
}

/* .feat-card:hover.fc-blue {
  box-shadow: 0 8px 40px rgba(20, 160, 185, 0.25),
              inset 0 0 0 1px rgba(30, 160, 180, 0.15);
} */

/* Card 3 — Green */
.features-sec .fc-purple {
  border: 1px solid rgba(80, 185, 80, 0.55);
  box-shadow: inset 0 0 0 1px rgba(80, 185, 80, 0.08);
}

.features-sec .fc-purple::before {
  background: radial-gradient(circle, rgba(60, 180, 70, 0.85) 0%, transparent 70%);
}

/* .feat-card:hover.fc-purple {
  box-shadow: 0 8px 40px rgba(60, 180, 70, 0.25),
              inset 0 0 0 1px rgba(80, 185, 80, 0.15);
} */

/* ── Icon badges ── */
.features-sec .feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.features-sec .fi-orange {
  background: rgba(220, 50, 150, 0.20);
  border: 1px solid rgba(220, 50, 150, 0.35);
  color: #f06292;
}

.features-sec .fi-blue {
  background: rgba(20, 160, 185, 0.18);
  border: 1px solid rgba(20, 160, 185, 0.35);
  color: #26d4e8;
}

.features-sec .fi-purple {
  background: rgba(60, 180, 70, 0.18);
  border: 1px solid rgba(60, 180, 70, 0.35);
  color: #7ddb5a;
}

/* ── Title ── */
.features-sec .feat-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.features-sec .fc-orange .feat-title {
  color: #f06292;
}

.features-sec .fc-blue .feat-title {
  color: #26d4e8;
}

.features-sec .fc-purple .feat-title {
  color: #7ddb5a;
}

/* ── Description ── */
.features-sec .feat-desc {
  color: rgba(160, 170, 190, 0.80);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.75;
}

/* ═══════════════════════════════
   4. STATS BANNER
═══════════════════════════════ */
.stats-band {
  position: relative;
  background: linear-gradient(135deg, #0e0b1a 0%, #120e22 50%, #0a0d18 100%);
  padding: 40px 0;
  overflow: hidden;
}

/* Gradient border line at the very top */
.stats-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      #4B2149 0%,
      #544C8E 50%,
      #22755A 100%,
      transparent 100%);
}

/* Subtle bottom border */
.stats-band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.stat-big {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* 1M+ — pink to red */
.stat-pink {
  background-image: linear-gradient(135deg, #f953c6, #ff3c6e);
}

/* 10K+ — violet to purple */
.stat-purple {
  background-image: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* 5+ — cyan to teal */
.stat-cyan {
  background-image: linear-gradient(135deg, #22d3ee, #06b6d4);
}

/* 4.9★ — yellow-green */
.stat-green {
  background-image: linear-gradient(135deg, #a3e635, #4ade80);
}

.stat-lbl {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.7);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 0.4rem;
}


/* ═══════════════════════════════
   5. PIXEL PERFECT
═══════════════════════════════ */
.pixel-sec {
  padding: 40px 0;
  background: #0a0a12;
  position: relative;
  overflow: visible;
}

.pixel-sec .pixel-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pixel-sec .pixel-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 4.5rem;
  color: #ffffff;
}

/* ── Flowing gradient on heading ── */
.pixel-sec .grad-pixel {
  background-image: linear-gradient(90deg,
      #0dbab6 0%,
      #e2b40b 30%,
      #b5442e 55%,
      #0dbab6 75%,
      #e2b40b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Phone row layout ── */
.pixel-sec .pixel-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 7rem;
  perspective: 1500px;
  position: relative;
  padding-bottom: 3rem;
  overflow: visible;
}

/* ── Each phone wrapper ── */
.pixel-sec .pixel-phone {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  /* hidden until JS fires */

  /* GPU layer — prevents scroll jank */
  will-change: transform;
  transform: translateZ(0);
}

/* ── Glow wrapper — pseudo-element blur (NOT drop-shadow filter) ── */
.pixel-sec .phone-glow-wrap {
  position: relative;
  border-radius: 36px;
  display: block;

  /* GPU compositing */
  will-change: transform;
  transform: translateZ(0);
}

/* Phone image sits ABOVE the glow */
.pixel-sec .phone-glow-wrap img {
  width: 100%;
  display: block;
  border-radius: 36px;
  position: relative;
  z-index: 2;
}

/* Glow blob behind the image — blur a small div, NOT the image */
.pixel-sec .phone-glow-wrap::after {
  content: "";
  position: absolute;
  inset: 15px;
  /* slightly inside image boundaries */
  border-radius: 40px;
  z-index: 0;
  /* behind image */
  filter: blur(38px);
  opacity: 0.70;

  /* GPU layer */
  will-change: opacity;
  transform: translateZ(0);
}

/* ── Glow colors ── */
/* Left phone — orange/amber */
.pixel-sec .glow-orange::after {
  background: rgba(220, 100, 20, 0.85);
  box-shadow: 0 20px 60px rgba(220, 100, 20, 0.50);
}

/* Center phone — deep purple */
.pixel-sec .glow-purple::after {
  background: rgba(100, 40, 200, 0.90);
  box-shadow: 0 20px 60px rgba(100, 40, 200, 0.55);
}

/* Right phone — red/crimson */
.pixel-sec .glow-red::after {
  background: rgba(190, 30, 40, 0.85);
  box-shadow: 0 20px 60px rgba(190, 30, 40, 0.50);
}

/* ── Tilt positions ── */
.pixel-sec .pixel-phone.p-left {
  z-index: 1;
}

.pixel-sec .pixel-phone.p-right {
  z-index: 1;
}

.pixel-sec .pixel-phone.p-center {
  z-index: 2;
}

/* ════════════════════════════════
   ENTRANCE KEYFRAMES
   (NO filter inside — avoids repaint)
════════════════════════════════ */

/* Left phone — slides in from left */
@keyframes phoneFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px) translateX(60px) rotate(-12deg) translateY(60px) scale(0.85);
  }

  100% {
    opacity: 1;
    transform: translateX(60px) rotate(-12deg) translateY(60px) scale(0.9);
  }
}

/* Center phone — rises from bottom */
@keyframes phoneFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(10px) scale(1.05);
  }
}

/* Right phone — slides in from right */
@keyframes phoneFromRight {
  0% {
    opacity: 0;
    transform: translateX(120px) translateX(-60px) rotate(12deg) translateY(60px) scale(0.85);
  }

  100% {
    opacity: 1;
    transform: translateX(-60px) rotate(12deg) translateY(60px) scale(0.9);
  }
}

/* ── Triggered by JS adding .phones-visible ── */
.pixel-sec .pixel-phones.phones-visible .p-left {
  animation: phoneFromLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0s;
}

.pixel-sec .pixel-phones.phones-visible .p-center {
  animation: phoneFromBottom 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}

.pixel-sec .pixel-phones.phones-visible .p-right {
  animation: phoneFromRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.05s;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1199px) {
  .pixel-sec .pixel-phone {
    width: 280px;
  }

  .pixel-sec .pixel-phones {
    gap: 3.5rem;
  }

  @keyframes phoneFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px) translateX(40px) rotate(-10deg) translateY(50px) scale(0.85);
    }

    100% {
      opacity: 1;
      transform: translateX(40px) rotate(-10deg) translateY(50px) scale(0.9);
    }
  }

  @keyframes phoneFromRight {
    0% {
      opacity: 0;
      transform: translateX(100px) translateX(-40px) rotate(10deg) translateY(50px) scale(0.85);
    }

    100% {
      opacity: 1;
      transform: translateX(-40px) rotate(10deg) translateY(50px) scale(0.9);
    }
  }
}

@media (max-width: 991px) {
  .pixel-sec .pixel-phone {
    width: 240px;
  }

  .pixel-sec .pixel-phones {
    gap: 2.5rem;
  }

  .pixel-sec .pixel-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .pixel-sec .pixel-phones {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 5rem;
  }

  .pixel-sec .pixel-phone {
    width: 280px;
  }

  /* Mobile — all three slide up from bottom */
  @keyframes phoneFromLeft {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes phoneFromRight {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes phoneFromBottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 575px) {
  .pixel-sec .pixel-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .pixel-sec .pixel-phone {
    width: 240px;
  }
}

/* ═══════════════════════════════
   6. CATEGORIES
═══════════════════════════════ */
.categories-sec {
  padding: 40px 0;
}

.categories-sec .categories-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.categories-sec .grad-category {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Base card ── */
.categories-sec .cat-card {
  border-radius: 14px;
  padding: 1.3rem 1rem 1.1rem;
  text-align: center;
  cursor: pointer;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.categories-sec .cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 cards per row */
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.categories-sec .cat-col {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .categories-sec .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-sec .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .categories-sec .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.categories-sec .cat-card:hover {
  transform: translateY(-5px);
}

/* ── Card backgrounds & borders ── */
.cat-business {
  background: #350E26;
  border: 2px solid #8A4D68;
}

.cat-english {
  background: #130D1F;
  border: 2px solid #2E263B;
}

.cat-income {
  background: #07130C;
  border: 2px solid #314A35;
}

.cat-science {
  background: #073A3C;
  border: 2px solid #274B4A;
}

.cat-history {
  background: #352116;
  border: 2px solid #CB8555;
}

.cat-tech {
  background: #1E4853;
  border: 2px solid #4E7E8F;
}

.cat-growth {
  background: #481545;
  border: 2px solid #9C5C96;
}

.cat-book {
  background: #111F40;
  border: 2px solid #3A4C7D;
}

.cat-finance {
  background: #4F4029;
  border: 2px solid #90866C;
}

.cat-news {
  background: #371216;
  border: 2px solid #CB2526;
}

/* ── Icon wrapper (colored square) ── */
.cat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.cat-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Icon bg colors matching each card */
.ci-business {
  background: #712757;
}

.ci-english {
  background: #43335F;
}

.ci-income {
  background: #154523;
}

.ci-science {
  background: #257272;
}

.ci-history {
  background: #FFCCAA;
}

.ci-tech {
  background: #2F7786;
}

.ci-growth {
  background: #FDAEF0;
}

.ci-book {
  background: #454E78;
}

.ci-finance {
  background: #FFECCD;
}

.ci-news {
  background: #FF5A5A;
}

/* ── Title colors per card ── */
.cat-business .cat-title {
  background: linear-gradient(90deg, #F7349A 0%, #FF7859 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-english .cat-title {
  background: linear-gradient(90deg, #715799 0%, #A477E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-income .cat-title {
  background: linear-gradient(90deg, #156028 0%, #53C56F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-science .cat-title {
  background: linear-gradient(90deg, #299292 0%, #289E9E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-history .cat-title {
  background: linear-gradient(90deg, #FA9247 0%, #FF7859 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-tech .cat-title {
  background: linear-gradient(90deg, #3AC2FF 0%, #59E8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-growth .cat-title {
  background: linear-gradient(90deg, #AA259C 0%, #FD95F2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-book .cat-title {
  background: linear-gradient(90deg, #6C68E4 0%, #5F5CCD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-finance .cat-title {
  background: linear-gradient(90deg, #F87F6F 0%, #9E5F28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-news .cat-title {
  background: linear-gradient(90deg, #FF2A2D 0%, #D50202 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.categories-sec .cat-title {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.categories-sec .cat-count {
  font-size: 0.72rem;
  color: #C3C3C3;
  margin-top: 0.2rem;
}

/* ── Bottom CTA ── */
.cat-bottom-text {
  color: #C3C3C3;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.btn-cat-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, #f13cce 0%, #ae49ff 47%, #f8814d 100%);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cat-download:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(174, 73, 255, 0.40);
}

/* ═══════════════════════════════
   7. HOW IT WORKS
═══════════════════════════════ */
.works-sec {
  padding: 40px 0;
  background: #09090f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.works-sec .works-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
}

.works-sec .grad-works {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ══ Glow wrapper — holds all 3 background glows ══ */
.works-glow-wrap {
  position: relative;
}

/* LEFT glow — rose/pink, sits behind cards 01-02 */
.works-glow-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-10%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #933B89 0%, #000000 100%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* RIGHT glow — blue, sits behind card 04 */
.works-glow-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(10%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #2182A9 0%, #08080B 100%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* CENTER glow — green, sits behind cards 02-03 — uses a real div */
.works-glow-wrap .row {
  position: relative;
  z-index: 1;
  /* row sits above the ::before / ::after glows */
}

/* We add the center green glow via a pseudo on .row */
.works-glow-wrap .row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #90C967 0%, #000000 100%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* ── Cards — pure dark glass, no individual glow ── */
.works-sec .step-card {
  position: relative;
  z-index: 2;
  /* cards float above all glows */
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  /* opacity: 0.5; */
}

.works-sec .work1 {
  border: 2px solid #672447;
}

/* pink  */
.works-sec .work2 {
  border: 2px solid #5F0D10;
}

/* pink  — matches image */
.works-sec .work3 {
  border: 2px solid #133719;
}

/* green */
.works-sec .work4 {
  border: 2px solid #233B70;
}

/* blue  */

.works-sec .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ── Step number — large muted watermark ── */
.works-sec .step-num {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.2rem;
  color: #66666A;
  /* same muted grey on all cards */
}

/* ── Step titles — coloured per card ── */
.works-sec .step-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.works-sec .work1 .step-title {
  background: linear-gradient(90deg, #F7349A 0%, #FF7859 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.works-sec .work2 .step-title {
  background: linear-gradient(90deg, #F95053 0%, #FF5656 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.works-sec .work3 .step-title {
  background: linear-gradient(90deg, #14AF5A 0%, #367D25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.works-sec .work4 .step-title {
  background: linear-gradient(90deg, #479BCF 0%, #2362B3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
.works-sec .step-desc {
  color: #B9B9BB;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════
   8. WHY KARKA
═══════════════════════════════ */
.why-new-sec {
  padding: 40px 0;
  background: #09090f;
  text-align: center;
  perspective: 1000px;
}

.why-new-sec .why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #111119;
  border: 1px solid #FF8E3D;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 0 20px rgba(46, 16, 82, 0.3);
}

.why-new-sec .why-badge img {
  width: 18px;
  height: 18px;
}

.why-new-sec .why-new-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 2rem;
}

.why-new-sec .grad-why {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.why-new-sec .why-big-card {
  background: linear-gradient(90deg, #692D10 0%, #441B49 100%);
  border: 1px solid #ffffff;
  border-radius: 18px;
  padding: 13px 10px;
  margin-bottom: 1.2rem;
}

.why-new-sec .why-big-card h3 {
  font-size: clamp(1.6rem, 4vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #fff;
}

.why-new-sec .why-big-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.gird-cards {
  padding: 0 20px;
}

.why-new-sec .why-grid-card {
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  height: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
  /* NO backdrop-filter — solid opaque cards */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-new-sec .why-grid-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.why-new-sec .why-grid-card h4 {
  font-size: 1.20rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}

.why-new-sec .why-grid-card p {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.70;
  margin: 0;
}

/* Card 1 — solid dark wine-red */
.why-new-sec .why-card-red {
  background: #2a0d12;
  border: 1px solid rgba(160, 40, 55, 0.60);
}

/* Card 2 — solid dark brown/tan */
.why-new-sec .why-card-brown {
  background: #2e1a08;
  border: 1px solid rgba(160, 95, 30, 0.60);
}

/* Card 3 — solid dark navy blue */
.why-new-sec .why-card-blue {
  background: #080f28;
  border: 1px solid rgba(35, 70, 175, 0.60);
}

/* Card 4 — solid dark forest green */
.why-new-sec .why-card-green {
  background: #0a1f0c;
  border: 1px solid rgba(45, 130, 55, 0.60);
}

/* ═══════════════════════════════
   8. WHY KARKA — RESPONSIVE
═══════════════════════════════ */

/* ── Desktop (992px – 1199px) ── */
@media (max-width: 1199px) {
  .why-new-sec .why-new-title {
    font-size: 1.9rem;
  }

  .why-new-sec .why-big-card {
    padding: 1.8rem 2rem;
  }

  .why-new-sec .why-big-card h3 {
    font-size: 1.5rem;
  }

  .why-new-sec .why-big-card p {
    font-size: 1rem;
  }

  .why-new-sec .why-grid-card {
    padding: 1.4rem 1.2rem;
  }

  .why-new-sec .why-grid-card h4 {
    font-size: 1.10rem;
  }

  .gird-cards {
    padding: 0 10px;
  }
}

/* ── Tablet Landscape (768px – 991px) ── */
@media (max-width: 991px) {
  .why-new-sec {
    padding: 40px 0;
  }

  .why-new-sec .why-badge {
    font-size: 0.82rem;
    padding: 0.4rem 1.1rem;
  }

  .why-new-sec .why-new-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .why-new-sec .why-big-card {
    padding: 1.5rem 1.5rem;
    border-radius: 14px;
  }

  .why-new-sec .why-big-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
  }

  .why-new-sec .why-big-card p {
    font-size: 0.95rem;
  }

  .gird-cards {
    padding: 0 5px;
  }

  .why-new-sec .why-grid-card {
    padding: 1.3rem 1.1rem;
    border-radius: 14px;
  }

  .why-new-sec .why-grid-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
  }

  .why-new-sec .why-grid-card p {
    font-size: 0.82rem;
  }
}

/* ── Tablet Portrait (576px – 767px) ── */
@media (max-width: 767px) {
  .why-new-sec {
    padding: 35px 0;
  }

  .why-new-sec .why-badge {
    font-size: 0.80rem;
    padding: 0.38rem 1rem;
    margin-bottom: 1.5rem;
  }

  .why-new-sec .why-new-title {
    font-size: 1.55rem;
    line-height: 1.30;
    margin-bottom: 1.3rem;
  }

  .why-new-sec .why-big-card {
    padding: 1.3rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .why-new-sec .why-big-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .why-new-sec .why-big-card p {
    font-size: 0.90rem;
    line-height: 1.65;
  }

  .gird-cards {
    padding: 0;
  }

  /* 2 columns still on tablet portrait — col-md-6 handles this */
  .why-new-sec .why-grid-card {
    padding: 1.2rem 1rem;
    border-radius: 12px;
  }

  .why-new-sec .why-grid-card h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .why-new-sec .why-grid-card p {
    font-size: 0.80rem;
  }
}

/* ── Mobile Large (400px – 575px) ── */
@media (max-width: 575px) {
  .why-new-sec {
    padding: 30px 0;
  }

  .why-new-sec .why-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.2rem;
  }

  .why-new-sec .why-badge img {
    width: 15px;
    height: 15px;
  }

  .why-new-sec .why-new-title {
    font-size: 1.35rem;
    line-height: 1.28;
    margin-bottom: 1.1rem;
  }

  .why-new-sec .why-big-card {
    padding: 1.1rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.9rem;
  }

  .why-new-sec .why-big-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
  }

  .why-new-sec .why-big-card p {
    font-size: 0.85rem;
    line-height: 1.60;
  }

  .gird-cards {
    padding: 0;
    row-gap: 12px !important;
    /* adjust: 8px–16px as you like */
  }

  /* ← Add this — overrides Bootstrap g-5 gap on mobile */
  .gird-cards.row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0.1rem;
  }

  /* Single column on mobile — each card full width */
  .gird-cards .col-md-6 {
    width: 100%;
    margin-bottom: 0 !important;
  }

  .why-new-sec .why-grid-card {
    padding: 1.1rem 1rem;
    border-radius: 12px;
    margin-bottom: 0;
  }

  .why-new-sec .why-grid-card h4 {
    font-size: 0.97rem;
    margin-bottom: 0.55rem;
  }

  .why-new-sec .why-grid-card p {
    font-size: 0.80rem;
  }
}

/* ═══════════════════════════════
   9. TESTIMONIALS
═══════════════════════════════ */
.testi-sec {
  background: #0d0d18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

/* ── Heading ── */
.testi-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
}

.testi-word {
  color: #f97316;
  -webkit-text-fill-color: #f97316;
}

.testi-forit {
  background-image: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  -webkit-text-fill-color: linear-gradient(90deg, #0DBAB6 0%, #E2B40B 55%, #B5442E 100%);
  background-size: 200% auto;
  /* wider than text so it can scroll */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Base card ── */
.testi-card {
  background: rgba(255, 255, 255, 0.04);
  /* ← was #16162a */
  backdrop-filter: blur(14px);
  /* ← add this */
  -webkit-backdrop-filter: blur(14px);
  /* ← add this */
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Thick colored top bar via ::before */
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  /* thick top bar */
  border-radius: 16px 16px 0 0;
}

.testi-card:hover {
  transform: translateY(-6px);
}

/* ── Card 1 — Rose/Pink ── */
.tc-rose::before {
  background: linear-gradient(90deg, #ff2d78, #ff6eb0);
}

.tc-rose {
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.18),
    0 0 80px rgba(255, 45, 120, 0.08);
  border-color: rgba(255, 45, 120, 0.25);
}

.tc-rose:hover {
  box-shadow: 0 8px 50px rgba(255, 45, 120, 0.28),
    0 0 90px rgba(255, 45, 120, 0.12);
}

.stars-rose {
  background: linear-gradient(90deg, #F7349A 0%, #FF7859 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Card 2 — Violet/Purple ── */
.tc-violet::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.tc-violet {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.18),
    0 0 80px rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
}

.tc-violet:hover {
  box-shadow: 0 8px 50px rgba(124, 58, 237, 0.28),
    0 0 90px rgba(124, 58, 237, 0.12);
}

.stars-violet {
  background: linear-gradient(90deg, #876CFF 0%, #7461C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Card 3 — Teal/Green ── */
.tc-teal::before {
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.tc-teal {
  box-shadow: 0 0 40px rgba(13, 148, 136, 0.18),
    0 0 80px rgba(13, 148, 136, 0.08);
  border-color: rgba(13, 148, 136, 0.25);
}

.tc-teal:hover {
  box-shadow: 0 8px 50px rgba(13, 148, 136, 0.28),
    0 0 90px rgba(13, 148, 136, 0.12);
}

.stars-teal {
  background: linear-gradient(90deg, #22D3EE 0%, #20A3B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stars ── */
.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.stars i {
  margin-right: 3px;
}

/* ── Review text ── */
.testi-text {
  color: rgba(210, 215, 230, 0.85);
  font-size: 0.93rem;
  line-height: 1.80;
  flex: 1;
  margin: 0;
}

/* ═══════════════════════════════
   10. CTA / DOWNLOAD
═══════════════════════════════ */
#download {
  background: #09090f;
  padding: 4rem 0;
  border: none;
}

.cta-card {
  border-radius: 28px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      #7c2fa0 0%,
      #3b5fc0 25%,
      #1a8a5a 55%,
      #6b8c1a 75%,
      #b07a10 100%);
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  line-height: 1.10;
  margin-bottom: 1.2rem;
}

.cta-sub {
  font-size: 1.80rem;
  line-height: 1.70;
  margin-bottom: 2rem;
  max-width: 700px;
}

.btn-cta-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, #f13cce 0%, #ae49ff 47%, #f8814d 100%);
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-download:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(174, 73, 255, 0.45);
}

.cta-qr-card {
  background: #1a0e08;
  border: 2px solid rgba(160, 90, 20, 0.75);
  border-radius: 16px;
  padding: 1rem 1rem 0.8rem;
  text-align: center;
  width: 170px;
}

.cta-qr-img-wrap {
  background: #0a0a0a;
  border: 3px solid #ffffff;
  border-radius: 10px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-qr-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.cta-qr-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.cta-qr-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════
   10. CTA / DOWNLOAD — RESPONSIVE
═══════════════════════════════ */
/* ── Desktop (992px – 1199px) ── */
@media (max-width: 1199px) {
  .cta-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
  }

  .cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }

  .cta-sub {
    font-size: 1.5rem;
    max-width: 600px;
  }
}

/* ── Tablet Landscape (768px – 991px) ── */
@media (max-width: 991px) {
  #download {
    padding: 3rem 0;
  }

  .cta-card {
    padding: 2.8rem 2rem;
    border-radius: 22px;
  }

  .cta-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .cta-sub {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .cta-qr-card {
    width: 150px;
  }

  .cta-qr-img {
    width: 95px;
    height: 95px;
  }
}

/* ── Tablet Portrait (576px – 767px) ── */
@media (max-width: 767px) {
  #download {
    padding: 2.5rem 0;
  }

  .cta-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 1.9rem;
    line-height: 1.18;
    margin-bottom: 0.9rem;
  }

  .cta-sub {
    font-size: 1rem;
    line-height: 1.60;
    margin-bottom: 1.4rem;
    max-width: 100%;
  }

  /* QR card centers below content on tablet portrait */
  .cta-qr-card {
    width: 160px;
    margin-top: 0.5rem;
  }

  .cta-qr-img {
    width: 100px;
    height: 100px;
  }

  .btn-cta-download {
    font-size: 0.92rem;
    padding: 0.65rem 1.7rem;
  }
}

/* ── Mobile Large (400px – 575px) ── */
@media (max-width: 575px) {
  #download {
    padding: 2rem 0;
  }

  .cta-card {
    padding: 1.8rem 1.3rem;
    border-radius: 18px;
  }

  .cta-title {
    font-size: 1.6rem;
    line-height: 1.20;
    margin-bottom: 0.8rem;
  }

  .cta-sub {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  /* Stack QR card centered below button on small mobile */
  .cta-card .row {
    flex-direction: column;
  }

  .cta-card .col-lg-9,
  .cta-card .col-md-7 {
    width: 100%;
  }

  .cta-card .col-lg-3,
  .cta-card .col-md-5 {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    margin-top: 1.5rem;
  }

  .cta-qr-card {
    width: 150px;
  }

  .cta-qr-img {
    width: 90px;
    height: 90px;
  }

  .btn-cta-download {
    font-size: 0.88rem;
    padding: 0.6rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════
   11. FOOTER
═══════════════════════════════ */
#footer {
  background: #0e0e18;
}

.footer-top {
  padding: 4rem 0 3rem;
}

/* ── Logo + Brand ── */
.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-txt {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: rgba(200, 200, 210, 0.85);
}

/* ── Description — justified ── */
.footer-desc {
  color: rgba(200, 200, 215, 0.80);
  font-size: 0.88rem;
  line-height: 1.85;
  text-align: justify;
  font-weight: 600;
  margin-top: 0.5rem;
  max-width: 480px;
}

/* ── Section heading ── */
.foot-head {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Contact group block ── */
.footer-contact-group {
  margin-bottom: 0.5rem;
}

.footer-contact-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.footer-contact-text {
  display: block;
  color: rgba(180, 185, 200, 0.75);
  font-size: 0.88rem;
  line-height: 1.75;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-contact-text:hover {
  color: #ffffff;
}

.footer-contact-number {
  gap: 10px;
}

.footer-contact-number .divider {
  margin: 0 0 0 0 !important;
  width: 1px;
  height: 20px;
  background-color: #d0d0d0;
  flex-shrink: 0;
}

.footer-email {
  color: rgba(180, 185, 200, 0.75);
}

.footer-email:hover {
  color: #ffffff;
}

/* ── Footer bar ── */
.footer-bar {
  border-top: 1px solid rgba(180, 150, 60, 0.40);
  /* amber/gold thin line */
  padding: 1.2rem 0;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(160, 165, 180, 0.70);
}

/* ── Social icons — large, no circle, white ── */
.footer-socials {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.footer-soc {
  color: rgba(220, 225, 235, 0.85);
  font-size: 1.35rem;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.footer-soc:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1199px) {
  .pixel-phone {
    width: 280px;
  }

  .pixel-phone.p-left {
    transform: translateX(40px) rotate(-10deg) translateY(50px) scale(0.9);
  }

  .pixel-phone.p-right {
    transform: translateX(-40px) rotate(10deg) translateY(50px) scale(0.9);
  }
}

@media (max-width: 991px) {
  .pixel-phone {
    width: 240px;
  }

  .pixel-title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .pixel-phones {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 5rem;
  }

  .pixel-phone {
    width: 280px;
    transform: none !important;
  }

  .why-big-card {
    padding: 3rem 1.5rem;
  }

  .why-grid-card {
    padding: 2.2rem 1.6rem;
  }
}