@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

body, h1,h2,h3,p,i,a,h4{

  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/* ══════════════════════════════════════════
   GLOBAL RESET + THEME VARIABLES (WHITE THEME)
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #1a6fff;
  --purple-lt: #7c4ff0;
  --purple-dk: #3d13a8;
  --purple-glow: rgba(88, 35, 215, 0.22);
  --purple-soft: rgba(88, 35, 215, 0.08);
  --white: #ffffff;
  --off-white: #f4f2ff;
  --muted: #555577;
  --text: #1a1030;
  --dark: #f7f5ff;
  --card-bg: rgba(88, 35, 215, 0.04);
  --card-hov: rgba(88, 35, 215, 0.08);
  --bdr: rgba(88, 35, 215, 0.14);
  --bdr-hot: rgba(88, 35, 215, 0.45);
  --gap: 22px;
  --r: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}
body {
  background: #f7f5ff;
  font-family: "DM Sans", sans-serif;
  color: #1a1030;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.zx-header {
  position: fixed;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 1200px;
  z-index: 999;
}
.zx-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(26, 111, 255, 0.15);
  box-shadow:
    0 10px 40px rgba(26, 111, 255, 0.1),
    0 0 0 1px rgba(26, 111, 255, 0.06);
}
.zx-logo {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a6fff, #9b70f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zx-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.zx-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.zx-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--purple);
  transition: 0.3s;
}
.zx-menu a:hover::after {
  width: 100%;
}
.zx-menu a:hover {
  color: var(--purple);
}
.zx-toggle {
  display: none;
  font-size: 22px;
  color: #1a1030;
  cursor: pointer;
}



/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 60%,
      rgba(26, 111, 255, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 30%,
      rgba(155, 112, 245, 0.12) 0%,
      transparent 65%
    ),
    linear-gradient(160deg, #ffffff 0%, #f4f2ff 50%, #eee8ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26, 111, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(26, 111, 255, 0.04) 1px, transparent 1px);
  background-size:
    70px 70px,
    120px 120px;
  background-position:
    0 0,
    40px 40px;
  opacity: 0.6;
  pointer-events: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 111, 255, 0.08);
  border: 1px solid rgba(26, 111, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--purple);
  letter-spacing: 0.05em;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: #1a1030;
}
.hero-title span {
  background: linear-gradient(135deg, var(--purple), #0486ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
.hero-desc {
  color: #555577;
  margin-top: 16px;
  max-width: 460px;
  line-height: 1.75;
  font-size: 16px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-main {
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(26, 111, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 40px rgba(26, 111, 255, 0.45);
  color: #fff;
}
.btn-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(26, 111, 255, 0.06);
  color: #1a1030;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(26, 111, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.btn-link:hover {
  background: rgba(26, 111, 255, 0.12);
  border-color: var(--purple);
  transform: translateY(-2px);
  color: var(--purple);
  box-shadow: 0 8px 24px rgba(26, 111, 255, 0.15);
}

.user-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border-radius: 50px;
  background: rgba(26, 111, 255, 0.06);
  border: 1px solid rgba(26, 111, 255, 0.14);
}
.avatars {
  display: flex;
}
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #f7f5ff;
  object-fit: cover;
}
.avatars img:first-child {
  margin-left: 0;
}
.likes {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a1030;
  font-size: 14px;
}
.likes i {
  color: var(--purple);
  animation: heartGlow 1.5s infinite;
}
@keyframes heartGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px var(--purple-soft);
  }
  50% {
    transform: scale(1.4);
    text-shadow: 0 0 20px var(--purple-glow);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px var(--purple-soft);
  }
}
.phone-img {
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(26, 111, 255, 0.18));
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .phone-img {
    max-width: 65%;
    margin-top: 40px;
  }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.mq {
  background: #ffffff;
  padding: 26px 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(26, 111, 255, 0.1);
  border-bottom: 1px solid rgba(26, 111, 255, 0.1);
  box-shadow: 0 2px 12px rgba(26, 111, 255, 0.05);
}
.mq-track {
  display: flex;
  width: max-content;
  animation: mq-scroll 28s linear infinite;
}
.mq-track:hover {
  animation-play-state: paused;
}
.mq-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  white-space: nowrap;
}
.mq-item-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #888899;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.mq-icon {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.mq-item.highlight .mq-item-text {
  color: var(--purple);
}
@keyframes mq-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */
#astro-sec {
  position: relative;
  padding: 88px 40px 96px;
  overflow: hidden;
  background: #1a6fff;
}
.af-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.af-header.af-in {
  opacity: 1;
  transform: translateY(0);
}
.af-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.af-pill i {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: af-pulse 2s infinite;
}
@keyframes af-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.af-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.af-header h2 span {
  background: linear-gradient(130deg, #000000, #020202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.af-header p {
  margin-top: 13px;
  font-size: 15px;
  color: white;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.af-shell {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}
.af-nav-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}
.af-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: #000080;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.2s;
  flex-shrink: 0;
}
.af-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: scale(1.1);
}
.af-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-viewport {
  overflow: hidden;
  border-radius: var(--r);
}
.af-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
}

.af-card {
  flex-shrink: 0;
  background: #000080;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.4s var(--ease);
  opacity: 0;
  transform: translateY(26px);
}
.af-card.af-vis {
  opacity: 1;
  transform: translateY(0);
}
.af-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px) scale(1.015);
}
.af-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.af-card:hover::after {
  opacity: 1;
}

.af-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  padding: 3px 10px 3px 7px;
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4px;
}
.af-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.35s;
}
.af-card:hover .af-icon {
  border-color: #fff;
  background: rgba(29, 28, 28, 0.425);
  transform: scale(1.08) rotate(-5deg);
}
.af-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}
.af-title {
  font-family: "Syne", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 9px;
  line-height: 1.3;
}
.af-desc {
  font-size: 15px;
  color: rgb(255, 255, 255);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
  font-weight: 600;
}
.af-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.af-stat-n {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  display: block;
}
.af-stat-l {
  font-size: 10.5px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}
.af-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255, 255, 255),
    transparent
  );
  margin-bottom: 18px;
}
.af-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    gap 0.35s var(--ease),
    color 0.3s;
}
.af-cta:hover {
  color: #fff;
  gap: 14px;
}
.af-cta-arr {
  width: 22px;
  height: 22px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.af-cta:hover .af-cta-arr {
  background: rgb(0, 0, 0);
}
.af-cta-arr svg {
  width: 10px;
  height: 10px;
  stroke: #000000f1;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 28px;
}
.af-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  outline: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.af-dot.on {
  background: #fff;
  transform: scale(1.4);
}

@media (max-width: 900px) {
  #astro-sec {
    padding: 70px 24px 80px;
  }
}
@media (max-width: 600px) {
  #astro-sec {
    padding: 56px 16px 64px;
  }
}

/* ══════════════════════════════════════════
   SCROLL TEXT SECTION
══════════════════════════════════════════ */
#spt-section {
  width: 100%;
  padding: 100px 32px 120px;
  background-color:white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#spt-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(26, 111, 255, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: spt-pulse 6s ease-in-out infinite alternate;
}
@keyframes spt-pulse {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  to {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 1;
  }
}
#spt-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
  width: 100%;
}

.spt-word {
  display: inline;
  color: rgba(26, 16, 48, 0.12);
  transition: color 0.25s ease;
  white-space: pre-wrap;
}
.spt-word.spt-on {
  color: #1a1030;
}
.spt-word.spt-accent {
  font-style: italic;
  color: rgba(26, 111, 255, 0.15);
}
.spt-word.spt-accent.spt-on {
  color: var(--purple);
}

#spt-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(30px, 7.5vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
#spt-desc {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.8;
  max-width: 100%;
  margin: 1px auto 4px;
}

#spt-cta-wrap {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
#spt-cta-wrap.spt-cta-on {
  opacity: 1;
  transform: translateY(0);
}
#spt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  border: 1px solid rgba(26, 111, 255, 0.3);
  border-radius: 40px;
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    color 0.3s;
}
#spt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
#spt-cta:hover::before {
  transform: scaleX(1);
}
#spt-cta:hover {
  border-color: var(--purple);
  color: #fff;
}
#spt-cta > span,
#spt-cta > svg {
  position: relative;
  z-index: 1;
}
#spt-cta > svg {
  transition: transform 0.25s;
}
#spt-cta:hover > svg {
  transform: translateX(5px);
}

/* ══════════════════════════════════════════
   APP DOWNLOAD SECTION
══════════════════════════════════════════ */
.ncta-section {
  padding: 70px 16px;
  background: linear-gradient(180deg, #e8e2ff 0%, #f0ecff 100%);
}
.ncta-card {
  max-width: 88%;
  margin: 0 auto;
  background: linear-gradient(120deg, #ffffff 0%, #faf8ff 50%, #f5f0ff 100%);
  border: 1px solid rgba(26, 111, 255, 0.14);
  border-radius: 28px;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 360px;
  padding-bottom: 60px;
  box-shadow: 0 20px 60px rgba(26, 111, 255, 0.1);
}
.ncta-glow-l {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(26, 111, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.ncta-glow-r {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(26, 111, 255, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.ncta-left {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
}
.ncta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 111, 255, 0.08);
  border: 1px solid rgba(26, 111, 255, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.ncta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  animation: ncta-pulse 2s infinite;
}
@keyframes ncta-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ncta-heading {
     font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #000080;
  line-height: 1.18;
  margin-bottom: 14px;
}
.ncta-sub {
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 24px;
}
.ncta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ncta-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  color: #fff;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.ncta-store-btn:hover {
  background: var(--purple-dk);
  border-color: var(--purple-dk);
  box-shadow: 0 6px 24px rgba(26, 111, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
.ncta-store-icon {
  width: 21px;
  height: 21px;
  fill: #fff;
  flex-shrink: 0;
}
.ncta-store-label {
  display: flex;
  flex-direction: column;
}
.ncta-store-top {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.ncta-store-name {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.ncta-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 32px 24px 0;
  overflow: visible;
}
.ncta-phone-wrap {
  position: relative;
  transform: rotate(5deg) translateY(60px);
  animation:
    ncta-phoneIn 0.9s cubic-bezier(0.22, 0.68, 0, 1.1) both,
    ncta-float 4.5s 1s ease-in-out infinite;
}
@keyframes ncta-phoneIn {
  from {
    opacity: 0;
    transform: rotate(5deg) translateY(100px);
  }
  to {
    opacity: 1;
    transform: rotate(5deg) translateY(60px);
  }
}
@keyframes ncta-float {
  0%,
  100% {
    transform: rotate(5deg) translateY(60px);
  }
  50% {
    transform: rotate(5deg) translateY(48px);
  }
}
.ncta-phone {
  width: 230px;
  background: #ffffff;
  border-radius: 34px;
  border: 2px solid rgba(26, 111, 255, 0.2);
  box-shadow:
    0 28px 60px rgba(26, 111, 255, 0.15),
    0 0 0 1px rgba(26, 111, 255, 0.06);
  overflow: hidden;
}
.ncta-p-bar {
  background: #faf8ff;
  padding: 10px 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ncta-p-notch {
  width: 52px;
  height: 5px;
  background: #e8e2ff;
  border-radius: 3px;
}
.ncta-p-time {
  font-size: 0.5rem;
  color: #888899;
}
.ncta-p-scroll {
  height: 320px;
  overflow-y: scroll;
  padding: 10px 10px 6px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ncta-p-scroll::-webkit-scrollbar {
  display: none;
}
.ncta-p-greeting {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size:15px;
  font-weight: 700;
  color: #000080;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ncta-p-chips {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.ncta-p-chip {
  background: rgba(26, 111, 255, 0.06);
  border: 1px solid rgba(26, 111, 255, 0.12);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ncta-p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(26, 111, 255, 0.3);
}
.ncta-p-dot.blue {
  background: #60b0ff;
  box-shadow: 0 0 5px rgba(96, 176, 255, 0.4);
}
.ncta-p-dot.purple {
  background: #a78bfa;
  box-shadow: 0 0 5px rgba(167, 139, 250, 0.4);
}
.ncta-p-cta {
  background: #000080;
  border-radius: 8px;
  padding: 7px 0;
  font-size:14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(26, 111, 255, 0.3);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.ncta-p-divider {
  height: 1px;
  background: rgba(26, 111, 255, 0.1);
  margin: 8px 0;
}
.ncta-p-sec-lbl {
  font-size: 10px;
  color: #252525;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.ncta-p-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.ncta-p-tag {
  background: rgba(26, 111, 255, 0.08);
  border: 1px solid rgba(26, 111, 255, 0.16);
  border-radius: 16px;
  padding: 3px 8px;
  font-size: 8px;
  color: #000080;
}
.ncta-p-tag.blue {
  background: rgba(96, 176, 255, 0.1);
  border-color: rgba(96, 176, 255, 0.22);
  color: #3399cc;
}
.ncta-p-tag.green {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.22);
  color: #2a9955;
}
.ncta-p-card {
  background: rgba(26, 111, 255, 0.04);
  border: 1px solid rgba(26, 111, 255, 0.1);
  border-radius: 10px;
  padding: 8px 9px;
  margin-bottom: 6px;
}
.ncta-p-card-title {
  font-family: "Syne", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  color: #1a1030;
  margin-bottom: 3px;
}
.ncta-p-card-sub {
  font-size: 0.56rem;
  color: #555577;
  line-height: 1.5;
}
.ncta-p-card-bar {
  height: 3px;
  background: rgba(26, 111, 255, 0.12);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.ncta-p-card-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--purple);
}
.ncta-p-hist {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 5px;
}
.ncta-p-hist-av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  flex-shrink: 0;
}
.ncta-p-hist-av.blue {
  background: linear-gradient(135deg, #60b0ff, #1a5fb4);
}
.ncta-p-hist-text {
  font-size: 0.7rem;
  color: #000000;
   font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
}
.ncta-p-input-row {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 111, 255, 0.04);
  border: 1px solid rgba(26, 111, 255, 0.12);
  border-radius: 10px;
  padding: 6px 8px;
  margin-top: 6px;
}
.ncta-p-placeholder {
  flex: 1;
  font-size: 10px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 color: #000000;
}
.ncta-p-send {
  width: 16px;
  height: 16px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ncta-p-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 8px 10px;
  border-top: 1px solid rgba(26, 111, 255, 0.08);
  background: #faf8ff;
}
.ncta-p-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  color: #010101;
}
.bottom{
  color:white;
}
.text{
  color:white;
}
.ncta-p-nav-item.active {
  color: var(--purple);
}
.ncta-p-nav-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .ncta-card {
    grid-template-columns: 1fr;
  }
  .ncta-right {
    padding-top: 0;
    padding-bottom: 32px;
  }
  .ncta-left {
    padding: 36px 24px 24px;
  }
  .ncta-phone-wrap {
    transform: rotate(2deg);
    animation:
      ncta-phoneIn-sm 0.9s cubic-bezier(0.22, 0.68, 0, 1.1) both,
      ncta-float-sm 4.5s 1s ease-in-out infinite;
  }
  @keyframes ncta-phoneIn-sm {
    from {
      opacity: 0;
      transform: rotate(2deg) translateY(30px);
    }
    to {
      opacity: 1;
      transform: rotate(2deg) translateY(0);
    }
  }
  @keyframes ncta-float-sm {
    0%,
    100% {
      transform: rotate(2deg) translateY(0);
    }
    50% {
      transform: rotate(2deg) translateY(-8px);
    }
  }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.zero {
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 50%,
      rgba(26, 111, 255, 0.06) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, #f0ecff 0%, #f7f5ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 20px;
}
.rv-section {
  background: linear-gradient(120deg, #ffffff 0%, #faf8ff 50%, #f5f0ff 100%);
  border: 1px solid rgba(26, 111, 255, 0.12);
  border-radius: 20px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  width: 88%;
  font-family: "DM Sans", sans-serif;
  box-shadow: 0 10px 40px rgba(26, 111, 255, 0.08);
}
.rv-left {
  flex: 0 0 220px;
  min-width: 0;
}
.rv-title {
  font-family: "Syne", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #000080;
  line-height: 1.2;
  margin: 0 0 24px;
}
.rv-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.rv-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 111, 255, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.15s;
  background: transparent;
  color: #555577;
}
.rv-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: scale(1.08);
}
.rv-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rv-dots {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 111, 255, 0.15);
  transition:
    background 0.3s,
    width 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}
.rv-dot.a {
  background: var(--purple);
  width: 22px;
  border-radius: 4px;
}
.rv-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.rv-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}
.rv-card {
  background: #ffffff;
  border: 1px solid rgba(26, 111, 255, 0.1);
  border-radius: 16px;
  padding: 24px 22px;
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  box-shadow: 0 4px 16px rgba(26, 111, 255, 0.06);
}
.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}
.rv-name {
  color: #1a1030;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.rv-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.rv-star {
  font-size: 0.75rem;
  color: var(--purple);
}
.rv-star.e {
  color: rgba(26, 111, 255, 0.18);
}
.rv-txt {
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rv-section {
    flex-direction: column;
    padding: 36px 20px;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }
  .rv-left {
    flex: unset;
    width: 100%;
  }
  .rv-title {
    font-size: 1.45rem;
    margin-bottom: 18px;
  }
  .rv-wrap {
    width: 100%;
  }
  .rv-card {
    flex: 0 0 100%;
  }
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(180deg, #f7f5ff 0%, #f0ecff 100%);
  padding: 80px 40px;
  width: 100%;
  font-family: "DM Sans", sans-serif;
}
.faq-top {
  text-align: center;
  margin-bottom: 56px;
}
.faq-badge {
  display: inline-block;
  background: rgba(26, 111, 255, 0.08);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(26, 111, 255, 0.2);
  margin-bottom: 20px;
}
.faq-heading {
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1030;
  line-height: 1.15;
  margin-bottom: 14px;
}
.faq-heading span {
  color: var(--purple);
}
.faq-sub {
  color: #000000;
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(26, 111, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
  box-shadow: 0 2px 8px rgba(26, 111, 255, 0.05);
}
.faq-item.open {
  border-color: var(--purple);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 111, 255, 0.08);
  border: 1px solid rgba(26, 111, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.35s;
}
.faq-item.open .faq-icon {
  background: var(--purple);
  border-color: var(--purple);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.faq-item.open .faq-icon svg {
  stroke: #fff;
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.77, 0, 0.18, 1);
}
.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
}
.faq-body-text {
  padding: 16px 24px 22px;
  color: #020202;
  font-size: 16px;
  line-height: 1.78;
  border-top: 1px solid rgba(26, 111, 255, 0.08);
}

@media (max-width: 700px) {
  .faq-section {
    padding: 52px 18px;
  }
  .faq-heading {
    font-size: 1.8rem;
  }
  .faq-cols {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.zc {
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 0%,
      rgba(26, 111, 255, 0.06) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, #f0ecff 0%, #f7f5ff 100%);
  padding: 90px 24px;
  width: 100%;
  font-family: "DM Sans", sans-serif;
}
.zc-wrap {
  max-width: 1020px;
  margin: 0 auto;
}
.zc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.zc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(26, 111, 255, 0.18);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.72rem;
  color: #050505;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.zc-tag-line {
  width: 20px;
  height: 1px;
  background: var(--purple);
}
.zc-h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 14px;
}
.zc-h1 span {
  color: var(--purple);
}
.zc-desc {
  color: #000000;
  font-size: 16px;
  line-height: 1.8;
  max-width: 440px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.zc-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border: 1px solid rgba(26, 111, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 111, 255, 0.08);
}
.zc-info {
  background: linear-gradient(160deg, #1a6fff 0%, #1b6eff 100%);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.zc-info-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.zc-info-sub {
  color: rgb(255, 255, 255);
  font-size: 0.82rem;
  line-height: 1.7;
}
.zc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.zc-citem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.zc-cicon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.zc-cicon svg {
  width: 15px;
  height: 15px;
  stroke: rgb(255, 255, 255);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.zc-clabel {
  font-size: 0.7rem;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.zc-cval {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}
.zc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.zc-avail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zc-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a0ffc0;
  animation: zc-blink 2s infinite;
}
@keyframes zc-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.zc-avail-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}
.zc-avail-text strong {
  color: #a0ffc0;
  font-weight: 600;
}
.zc-form-side {
  background: #ffffff;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.zc-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.zc-step {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(26, 111, 255, 0.12);
  transition: background 0.4s;
}
.zc-step.done {
  background: var(--purple);
}
.zc-page {
  display: none;
  flex-direction: column;
  gap: 22px;
}
.zc-page.active {
  display: flex;
}
.zc-page-label {
  font-size: 0.7rem;
  color: #888899;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.zc-page-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1030;
  margin-bottom: 20px;
}
.zc-igroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.zc-ilabel {
  font-size: 0.8rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.2s;
}
.zc-igroup:focus-within .zc-ilabel {
  color: var(--purple);
}
.zc-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 111, 255, 0.18);
  padding: 10px 0;
  color: #1a1030;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
}
.zc-input::placeholder {
  color: #bbb;
}
.zc-input:focus {
  border-color: var(--purple);
}
textarea.zc-input {
  resize: none;
  height: 90px;
  line-height: 1.7;
  border: 1px solid rgba(26, 111, 255, 0.18);
  padding: 10px 12px;
  border-radius: 10px;
}
textarea.zc-input:focus {
  border-color: var(--purple);
}
.zc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.zc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.zc-opt {
  border: 1px solid rgba(26, 111, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zc-opt:hover {
  border-color: rgba(26, 111, 255, 0.3);
}
.zc-opt.selected {
  border-color: var(--purple);
  background: rgba(26, 111, 255, 0.06);
}
.zc-opt-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(26, 111, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zc-opt-icon svg {
  width: 13px;
  height: 13px;
  stroke: rgba(26, 111, 255, 0.4);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: stroke 0.2s;
}
.zc-opt.selected .zc-opt-icon svg {
  stroke: var(--purple);
}
.zc-opt-label {
  color: #777788;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s;
}
.zc-opt.selected .zc-opt-label {
  color: var(--purple);
}
.zc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}
.zc-back {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  padding: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.zc-back:hover {
  color: #555577;
}
.zc-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.zc-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  letter-spacing: 0.02em;
}
.zc-next:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.zc-next svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.zc-next:hover svg {
  transform: translateX(2px);
}
.zc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}
.zc-tick {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zc-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes zc-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.zc-tick svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.zc-success h3 {
  font-family: "Syne", sans-serif;
  color: #1a1030;
  font-size: 1.2rem;
  font-weight: 800;
}
.zc-success p {
  color: #555577;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

@media (max-width: 720px) {
  .zc {
    padding: 56px 16px;
  }
  .zc-body {
    grid-template-columns: 1fr;
  }
  .zc-info {
    padding: 32px 24px;
  }
  .zc-form-side {
    padding: 32px 24px;
  }
  .zc-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   FOOTER (original dark theme)
══════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #070d28 0%, #040812 100%);
  border-top: 1px solid rgba(26, 111, 255, 0.12);
}
.logo {
  color: #4d8fff;
}
.pill-wrapper {
  height: 220px;
  position: relative;
}
.pill {
  position: absolute;
  width: 110px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cream {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(77, 143, 255, 0.2);
  color: #c8d6ff;
}
.orange {
  background: #1a6fff;
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 111, 255, 0.35);
}
.cream:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #4d8fff;
  color: #fff;
  transform: translateY(-3px);
}
.orange:hover {
  box-shadow: 0 12px 32px rgba(26, 111, 255, 0.5);
  transform: translateY(-3px);
}
.r1 {
  top: 0;
  left: 120px;
  transform: rotate(-8deg);
}
.r2 {
  top: 0;
  left: 280px;
  transform: rotate(8deg);
}
.r3 {
  top: 70px;
  left: 60px;
}
.r4 {
  top: 70px;
  left: 220px;
  transform: rotate(6deg);
}
.r5 {
  top: 70px;
  left: 380px;
  transform: rotate(-6deg);
}
.b1 {
  top: 140px;
  left: 120px;
}
.b2 {
  top: 140px;
  left: 280px;
}
.b3 {
  top: 140px;
  left: 440px;
}

@media (max-width: 768px) {
  .pill-wrapper {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .pill {
    position: static;
    transform: none !important;
  }
}



/* ================ */
/* ══════════════════════════════════════════
   RESPONSIVE FIXES — MOBILE & TABLET
   Is file ko style.css ke BAAD link karo
══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. NAVBAR — Mobile slide fix
───────────────────────────────────────── */
.zx-nav { position: relative; }

.zx-toggle {
  display: none !important;
  font-size: 24px;
  color: #1a1030;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .zx-toggle {
    display: block !important;
  }

  .zx-menu {
    /* Reset old display:none toggle */
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    left: auto !important;
    width: 200px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(26,111,255,0.15) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 40px rgba(26,111,255,0.15) !important;
    z-index: 9999 !important;
    /* Slide animation */
    display: flex !important;
    overflow: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease !important;
  }

  .zx-menu.active {
    max-height: 400px !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
  }

  .zx-menu a {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(26,111,255,0.06) !important;
    color: #1a1030 !important;
    display: block !important;
  }
  .zx-menu a:last-child {
    border-bottom: none !important;
  }
  .zx-menu a:hover {
    background: rgba(26,111,255,0.05) !important;
    color: #1a6fff !important;
  }
  .zx-menu a::after { display: none !important; }
}

/* ─────────────────────────────────────────
   2. FEATURES CAROUSEL — 1 card mobile, 2 tablet
───────────────────────────────────────── */
@media (max-width: 600px) {
  #astro-sec { padding: 48px 16px 60px; }
  .af-header h2 { font-size: 22px; }
  .af-header p { font-size: 13px; }
}

/* ─────────────────────────────────────────
   3. APP DOWNLOAD SECTION (50K+) — stack on mobile
───────────────────────────────────────── */
@media (max-width: 768px) {
  .ncta-section { padding: 40px 16px 60px; }

  .ncta-card {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    padding-bottom: 0 !important;
    border-radius: 20px !important;
  }

  .ncta-left {
    padding: 32px 24px 24px !important;
  }

  .ncta-heading {
    font-size: 1.4rem !important;
  }

  .ncta-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .ncta-store-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .ncta-right {
    padding: 0 24px 32px !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .ncta-phone-wrap {
    transform: none !important;
    animation: none !important;
    display: flex;
    justify-content: center;
  }

  .ncta-phone { width: 180px !important; }
}

/* ─────────────────────────────────────────
   4. TESTIMONIALS — 1 card on mobile
───────────────────────────────────────── */
@media (max-width: 768px) {
  .zero {
    padding: 30px 16px;
    min-height: auto;
  }

  .rv-section {
    flex-direction: column !important;
    padding: 32px 20px !important;
    gap: 24px !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  .rv-left {
    flex: unset !important;
    width: 100% !important;
  }

  .rv-title {
    font-size: 1.3rem !important;
    margin-bottom: 16px !important;
  }

  .rv-wrap { width: 100% !important; }

  /* ONLY 1 card visible on mobile */
  .rv-card {
    flex: 0 0 100% !important;
    min-width: 0 !important;
  }
}

/* ─────────────────────────────────────────
   5. FAQ — 1 column on mobile
───────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-section { padding: 48px 16px; }

  .faq-heading { font-size: 1.6rem; }

  .faq-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .faq-col { gap: 12px !important; }

  .faq-q { padding: 18px 16px; }
  .faq-body-text { padding: 12px 16px 18px; }
}

/* ─────────────────────────────────────────
   6. FOOTER — responsive stack
───────────────────────────────────────── */
@media (max-width: 768px) {
  .footer { padding: 40px 0 24px !important; }

  .footer .container { padding: 0 20px; }

  .footer .row { flex-direction: column; }

  .footer .col-lg-4 {
    text-align: center;
    margin-bottom: 32px;
  }

  .footer h2 { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }

  .footer .text-light { color: rgba(255,255,255,0.65) !important; font-size: 14px; }

  /* Pills — wrap in rows */
  .pill-wrapper {
    height: auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .pill {
    position: static !important;
    transform: none !important;
    width: auto !important;
    min-width: 90px !important;
    height: 36px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    border-radius: 20px !important;
  }

  /* Footer bottom bar */
  .footer .d-flex.justify-content-between {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: center !important;
  }
}

/* ─────────────────────────────────────────
   7. SCROLL TEXT SECTION — font size fix
───────────────────────────────────────── */
@media (max-width: 768px) {
  #spt-section { padding: 60px 20px 80px; }
  #spt-heading { font-size: clamp(26px, 7vw, 48px); }
  #spt-desc { font-size: 20px !important; line-height: 1.7 !important; }
}

/* ─────────────────────────────────────────
   8. HERO — mobile tweaks
───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding-bottom: 40px; }
  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 15px; }
  .phone-img { max-width: 70% !important; margin: 32px auto 0 !important; display: block !important; }
  .buttons { justify-content: flex-start; }
}

/* ─────────────────────────────────────────
   9. GENERAL — prevent overflow
───────────────────────────────────────── */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  section { overflow-x: hidden; }
  .ncta-glow-l, .ncta-glow-r { display: none; }
}


/* =============about us ================ */
/* Section Background (light purple + white gradient) */
#ct-about-section-unique {
  background: radial-gradient(circle at top right, #e9e6ff 0%, #f8f9ff 40%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Soft background blob effect */
#ct-about-section-unique::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: #dcd6ff;
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}

/* Content */
.ct-about-content {
  position: relative;
  z-index: 2;
}

.ct-about-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #1a6fff;
  margin-bottom: 0px;
   letter-spacing: 2px;
}

/* Main Heading */
.ct-about-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

/* Purple Gradient Text (Social Media) */
.ct-gradient-purple {
  background: linear-gradient(90deg, #1a6fff, #1a6fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Blue Gradient Text (Search Engine) */
.ct-gradient-blue {
  background: linear-gradient(90deg, #1a6fff, #1a6fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Image */
.ct-about-image-box {
  position: relative;
  z-index: 2;
}

.ct-about-img {
  max-width: 420px;
  width: 100%;
}


/* ============ */

/* Section */
#ct-company-section-unique {
  background: #ffffff;
}

/* Heading */
.ct-company-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

/* Gradient word */
.ct-company-title span {
  background: linear-gradient(90deg, #000080, #000080e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text wrapper (full width control) */
.ct-company-text-wrap {
  max-width: 100%;
}

/* Paragraph */
.ct-company-text {
  font-size: 18px;
  line-height: 1.9;
  color: #020202;
  margin-bottom: 18px;
  word-spacing: 2px;
}

/* 🔥 Tablet */
@media (max-width: 992px) {
  .ct-company-title {
    font-size: 34px;
  }

  .ct-company-text {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* 📱 Mobile */
@media (max-width: 576px) {
  .ct-company-title {
    font-size: 28px;
  }

  .ct-company-text {
    font-size: 15px;
    line-height: 1.7;
  }

  #ct-company-section-unique {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ===============
 */
 /* Section */


/* Card Base */
.ct-mv-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Mission Border */
.ct-mission-card {
  border: 2px solid #6a5cff;
}

/* Vision Border */
.ct-vision-card {
  border: 2px solid #2f80ed;
}

/* Header */
.ct-mv-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

/* Gradient Text */
.ct-mission-card h3 span {
  color: #6a5cff;
}

.ct-vision-card h3 span {
  color: #2f80ed;
}

/* Icon */
.ct-icon {
  font-size: 30px;
  color: #6a5cff;
  transition: 0.4s;
}

.ct-vision-card .ct-icon {
  color: #2f80ed;
}

/* Text */
.ct-mv-card p {
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

/* 🔥 Hover Animation */
.ct-mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ct-mv-card:hover .ct-icon {
  transform: scale(1.2) rotate(5deg);
}

/* ✨ Soft Glow Effect */
.ct-mv-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(106,92,255,0.1);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  transition: 0.4s;
}

.ct-vision-card::before {
  background: rgba(47,128,237,0.1);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .ct-mv-header h3 {
    font-size: 22px;
  }

  .ct-mv-card p {
    font-size: 15px;
  }
}

/* Animated Bubble */
.ct-mv-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: 0;
  animation: ctBubbleFloat 6s ease-in-out infinite;
}

/* Mission bubble color */
.ct-mission-card::before {
  background: rgba(106, 92, 255, 0.15);
}

/* Vision bubble color */
.ct-vision-card::before {
  background: rgba(47, 128, 237, 0.15);
}

@keyframes ctBubbleFloat {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  25% {
    transform: translate(-10px, 10px) scale(1.05);
  }
  50% {
    transform: translate(10px, -10px) scale(1.1);
  }
  75% {
    transform: translate(-5px, 5px) scale(1.05);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}



/* team =============== */

