/* ============================================================
   VIPUL VISUALZ — style.css
   Color Palette: Coolors #E3F2FD → #0D47A1 (Blue family)
============================================================ */

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

/* === DESIGN TOKENS === */
:root {
  /* Blue palette from reference image */
  --c-50: #E3F2FD;
  --c-100: #BBDEFB;
  --c-200: #90CAF9;
  --c-300: #64B5F6;
  --c-400: #42A5F5;
  --c-500: #2196F3;
  --c-600: #1E88E5;
  --c-700: #1976D2;
  --c-800: #1565C0;
  --c-900: #0D47A1;

  /* Backgrounds */
  --bg: #050a14;
  --bg-card: #0a1020;
  --bg-elevated: #0d1428;

  /* Accent */
  --accent: #1E88E5;
  --accent-light: #42A5F5;
  --accent-bright: #64B5F6;
  --accent-deep: #1565C0;
  --accent-glow: rgba(33, 150, 243, 0.22);

  /* Text */
  --text: #eef4ff;
  --text-muted: #7a97bb;
  --text-dim: #3b5270;

  /* Borders */
  --border: rgba(33, 150, 243, 0.28);
  --border-card: rgba(33, 150, 243, 0.10);

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-fade {
  transform: none;
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  height: 64px;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(33, 150, 243, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(33, 150, 243, 0.16);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-accent {
  color: var(--accent-light);
}

.logo-white {
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.22s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: rgba(30, 136, 229, 0.12);
  border: 1px solid rgba(33, 150, 243, 0.40);
  border-radius: 50px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s,
    transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: rgba(30, 136, 229, 0.25);
  border-color: var(--accent-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(33, 150, 243, 0.30);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: transparent;
  border-radius: 50px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 75% 55% at 50% 18%, rgba(30, 100, 230, 0.55) 0%, rgba(18, 60, 180, 0.28) 35%, transparent 70%);
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(33, 150, 243, 0.07);
  border: 1px solid rgba(33, 150, 243, 0.20);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.9);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.accent {
  color: var(--accent-bright);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 64px;
}

/* Trust pills (replaces broken avatar carousel) */
.trust-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.trust-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-pill {
  padding: 6px 16px;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.20);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-bright);
  transition: background 0.2s, border-color 0.2s;
}

.trust-pill:hover {
  background: rgba(33, 150, 243, 0.16);
  border-color: rgba(33, 150, 243, 0.38);
}

/* ============================================================
   THUMBNAIL ROWS — Infinite Marquee
============================================================ */
.thumb-rows-section {
  padding: 64px 0 88px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.thumb-row-wrap {
  overflow: hidden;
  position: relative;
}

.thumb-row-wrap::before,
.thumb-row-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.thumb-row-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.thumb-row-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.thumb-row {
  display: flex;
  gap: 14px;
  padding: 6px 0;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

/* ENLARGED thumbnails — premium size */
.thumb-row .thumb-item {
  width: 350px;
  height: 197px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0a1020;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  contain: layout style;
  position: relative;
}

.thumb-row .thumb-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.24);
}

.thumb-row .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.thumb-row.anim-right {
  animation: marquee-right 30s linear infinite;
}

.thumb-row.anim-left {
  animation: marquee-left 30s linear infinite;
}

.thumb-row-wrap:hover .thumb-row {
  animation-play-state: paused;
}

/* ============================================================
   STATS
============================================================ */
.stats-section {
  padding: 80px 40px;
  background: var(--bg);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 150px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.35s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-icon {
  color: var(--accent-light);
  width: 48px;
  height: 48px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-size: 62px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-300);
}

.stat-label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   SECTION BADGE / TITLE / SUB
============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  background: rgba(33, 150, 243, 0.07);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ============================================================
   PROCESS — Premium story cards with glow + animated arrows
============================================================ */
.process-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
  padding: 80px 40px 120px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.process-eyebrow {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── Main flow row ── */
.process-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 56px auto 0;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

/* ── Story card ── */
.psc {
  flex: 1;
  min-width: 0;
  position: relative;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.psc-story {
  background: #060d1c;
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.psc-story:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 28px 60px rgba(33, 150, 243, 0.22),
    0 0 0 1px rgba(66, 165, 245, 0.28);
  border-color: rgba(66, 165, 245, 0.30);
}

/* Result card base glow */
.psc-story-result {
  border-color: rgba(66, 165, 245, 0.35);
  box-shadow: 0 4px 40px rgba(33, 150, 243, 0.14),
    0 0 0 1px rgba(66, 165, 245, 0.12);
}

.psc-story-result:hover {
  box-shadow: 0 32px 80px rgba(33, 150, 243, 0.35),
    0 0 0 1px rgba(66, 165, 245, 0.45);
}

/* Blue bottom glow layer inside each card (like Pro pricing card) */
.psc-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 120% 80% at 50% 110%,
    rgba(30, 100, 230, 0.50) 0%,
    rgba(18, 60, 180, 0.32) 28%,
    rgba(10, 30, 120, 0.18) 50%,
    transparent 70%);
  pointer-events: none;
}

/* Brighter glow for result card */
.psc-glow-result {
  background: radial-gradient(ellipse 130% 90% at 50% 110%,
    rgba(30, 100, 230, 0.80) 0%,
    rgba(18, 60, 180, 0.55) 25%,
    rgba(10, 30, 120, 0.30) 48%,
    rgba(5, 14, 55, 0.12) 65%,
    transparent 80%);
}

/* Dashed grid overlay (like Pro card) on result card */
.psc-story-result::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='72'%3E%3Crect width='90' height='72' fill='none'/%3E%3Cline x1='90' y1='0' x2='90' y2='72' stroke='rgba(120,180,255,0.18)' stroke-width='1' stroke-dasharray='4 4'/%3E%3Cline x1='0' y1='72' x2='90' y2='72' stroke='rgba(120,180,255,0.18)' stroke-width='1' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  background-size: 90px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.9) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.9) 100%);
}

/* ── Card inner content ── */
.psc-story-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 0;
}

.psc-story-top {
  padding: 24px 22px 24px;
}

.psc-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.psc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  background: rgba(33, 150, 243, 0.10);
  border: 1px solid rgba(33, 150, 243, 0.28);
  border-radius: 6px;
  padding: 3px 9px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.psc-num-result {
  background: rgba(33, 150, 243, 0.20);
  border-color: rgba(100, 181, 246, 0.50);
  color: #90caf9;
  box-shadow: 0 0 14px rgba(33, 150, 243, 0.40);
}

.psc-step-stage {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.psc-stage-result {
  color: var(--accent-bright);
}

.psc-story-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.psc-story-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Animated down-arrow between text and image ── */
.psc-down-arrow {
  display: flex;
  justify-content: center;
  padding: 14px 0 6px;
}

.psc-down-arrow svg {
  width: 36px;
  height: 52px;
}

@keyframes arrow-bounce-v {
  0%, 100% { transform: translateY(0px); opacity: 0.65; }
  50% { transform: translateY(5px); opacity: 1; }
}

@keyframes arrow-dash-anim-v {
  to { stroke-dashoffset: -18; }
}

.arrow-dash-v {
  animation: arrow-dash-anim-v 1.2s linear infinite;
}

.psc-down-arrow svg {
  animation: arrow-bounce-v 2.2s ease-in-out infinite;
}

.psc-down-arrow-result svg {
  animation: arrow-bounce-v 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(100, 181, 246, 0.6));
}

/* ── Image inside card ── */
.psc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a1228;
  flex-shrink: 0;
}

.psc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.psc-story:hover .psc-img-wrap img {
  transform: scale(1.06);
}

/* Floating label on image */
.psc-img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(180, 215, 255, 0.9);
  background: rgba(4, 10, 28, 0.72);
  border: 1px solid rgba(33, 150, 243, 0.28);
  backdrop-filter: blur(10px);
  padding: 3px 10px;
  border-radius: 50px;
}

.psc-img-label-result {
  background: rgba(8, 22, 60, 0.80);
  border-color: rgba(66, 165, 245, 0.50);
  color: var(--accent-bright);
  box-shadow: 0 0 14px rgba(33, 150, 243, 0.28);
}

/* ── See More button ── */
.psc-see-more-btn {
  margin: 14px 16px 16px !important;
  text-align: center;
  display: block;
}

/* ── Flow connector between cards ── */
.flow-arrow-wrap {
  flex-shrink: 0;
  width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  padding: 0 4px;
}

.flow-arrow-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.flow-connector-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

@keyframes flow-dash {
  to { stroke-dashoffset: -28; }
}

.arrow-dash {
  animation: flow-dash 1.4s linear infinite;
}

@keyframes flow-dot-pulse {
  0%, 100% { opacity: 0.3; r: 3; }
  50% { opacity: 1; r: 5; }
}

.flow-dot {
  animation: flow-dot-pulse 1.4s ease-in-out infinite;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 420px;
  }

  .flow-arrow-wrap {
    width: 40px;
    height: 70px;
    transform: rotate(90deg);
  }

  .flow-connector-label {
    display: none;
  }

  .psc-story {
    width: 100%;
  }
}

/* ============================================================
   SHOWCASE
============================================================ */
.showcase-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
  padding: 80px 40px 100px;
  text-align: center;
  background: var(--bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-card {
  text-align: left;
  cursor: pointer;
  transition: transform 0.35s ease;
}

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

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a1020;
  margin-bottom: 14px;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.06);
}

.showcase-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  flex: 1;
}

.multiplier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

.multiplier.blue {
  background: var(--c-700);
  color: #fff;
}

.multiplier.accent {
  background: var(--accent-deep);
  color: var(--c-100);
}

/* ============================================================
   ABOUT
============================================================ */
.about-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
  padding: 80px 40px 100px;
  text-align: center;
  background: var(--bg);
}

.about-title {
  text-align: center;
  margin-bottom: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.about-img-wrap {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a1020;
  margin: 0 auto;
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 100% 60% at 50% 100%,
    rgba(30, 100, 230, 0.28) 0%,
    transparent 65%);
  pointer-events: none;
}

.about-img-wrap:hover {
  border-color: rgba(66, 165, 245, 0.45);
  box-shadow: 0 0 48px rgba(33, 150, 243, 0.22),
    0 0 0 1px rgba(66, 165, 245, 0.20);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.accent-link {
  color: var(--accent-bright);
  font-weight: 400;
  transition: opacity 0.2s;
}

.accent-link:hover {
  opacity: 0.8;
}

/* ============================================================
   TESTIMONIALS — Minimal Cards (No avatars)
============================================================ */
.testimonials-section {
  padding: 80px 0 100px;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}

.testimonials-section .section-badge,
.testimonials-section .section-title,
.testimonials-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .section-title,
.testimonials-section .section-sub {
  padding: 0 40px;
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  padding: 10px 24px;
  width: max-content;
}

@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials-track.auto-scroll {
  animation: testimonials-scroll 42s linear infinite;
}

.testimonials-track-wrap:hover .testimonials-track.auto-scroll {
  animation-play-state: paused;
}

/* Individual testimonial card */
.testi-card {
  flex-shrink: 0;
  width: 310px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(33, 150, 243, 0.13);
  border-color: rgba(33, 150, 243, 0.24);
}

.testi-stars {
  display: flex;
  gap: 2px;
}

.testi-stars span {
  font-size: 16px;
  color: #f6c90e;
  line-height: 1;
}

.testi-stars .star-empty {
  color: #1e2d42;
}

.testi-comment {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

.testi-divider {
  height: 1px;
  background: var(--border-card);
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Legacy initials — kept for fallback */
.testi-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.12);
  border: 1px solid rgba(33, 150, 243, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* YouTube channel logo container */
.testi-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.25), 0 2px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.testi-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

/* ============================================================
   FAQ — Accordion
============================================================ */
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
  padding: 80px 40px 100px;
  text-align: center;
  background: var(--bg);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s, border-radius 0.3s;
}

.faq-item.open {
  border-radius: 20px;
  border-color: rgba(33, 150, 243, 0.55);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(33, 150, 243, 0.04);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.10);
  border: 1px solid rgba(33, 150, 243, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--accent-bright);
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 2px;
  transition: background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
  background: rgba(33, 150, 243, 0.26);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer.visible {
  max-height: 220px;
  padding-bottom: 22px;
}

.faq-answer p {
  padding: 4px 28px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: left;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-card);
  padding: 64px 40px 32px;
}

.footer-inner {
  display: flex;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  flex: 1;
  max-width: 440px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(33, 150, 243, 0.25);
  flex-shrink: 0;
  background: #0a1020;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.footer-avatar-wrap:hover {
  border-color: rgba(66, 165, 245, 0.5);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.22);
}

.footer-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.social-icon:hover {
  background: rgba(33, 150, 243, 0.24);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(33, 150, 243, 0.25);
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.footer-pages {
  min-width: 120px;
}

.footer-pages h4 {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-bright);
  margin-bottom: 20px;
}

.footer-pages ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-pages a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-pages a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    max-width: 280px;
  }

  .stats-container {
    gap: 50px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 20, 0.97);
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-card);
    z-index: 999;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-sub br {
    display: none;
  }

  .thumb-row .thumb-item {
    width: 270px;
    height: 152px;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .stat-number {
    font-size: 46px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .process-section,
  .showcase-section,
  .about-section,
  .testimonials-section,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }

  .faq-answer p {
    padding: 0 20px;
  }

  .testimonials-section .section-title,
  .testimonials-section .section-sub {
    padding: 0 20px;
  }

  .trust-pills {
    gap: 8px;
  }

  .trust-pill {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 60px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }

  .about-text p {
    font-size: 15px;
  }

  .thumb-row .thumb-item {
    width: 220px;
    height: 124px;
  }

  .footer {
    padding: 48px 20px 24px;
  }

  .footer-inner {
    gap: 32px;
  }

  .testi-card {
    width: 270px;
    padding: 22px 20px 18px;
  }
}

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-section {
  padding: 100px 24px 120px;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

/* Equal-height 3-col grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
  /* all cards same height */
}

/* ── Base card ─────────────────────────────────────── */
.pricing-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0a0f1e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Card inner — flex column so btn sticks to bottom ─ */
.pricing-card-inner {
  position: relative;
  z-index: 2;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  /* stretches to fill card height */
}

/* ── PRO card base ─────────────────────────────────── */
.pricing-card-pro {
  border-color: rgba(33, 136, 229, 0.55);
  /* dark-navy base; the glow layer sits on top via pseudo */
  background: #060c1a;
}

/* The big blue radial glow from the bottom centre */
.pricing-card-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Radial glow: bright at bottom-center, fades toward top */
  background:
    radial-gradient(ellipse 130% 90% at 50% 95%,
      rgba(30, 100, 230, 0.88) 0%,
      rgba(18, 60, 180, 0.72) 22%,
      rgba(10, 30, 120, 0.52) 45%,
      rgba(5, 14, 55, 0.28) 65%,
      transparent 85%);
}

/* Dashed grid overlay — sits above glow, below content */
.pricing-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* SVG dashed-line grid as data URI */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='72'%3E%3Crect width='90' height='72' fill='none'/%3E%3Cline x1='90' y1='0' x2='90' y2='72' stroke='rgba(120,180,255,0.28)' stroke-width='1' stroke-dasharray='4 4'/%3E%3Cline x1='0' y1='72' x2='90' y2='72' stroke='rgba(120,180,255,0.28)' stroke-width='1' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  background-size: 90px 72px;
  /* Fade the grid: invisible at top, full at bottom */
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      transparent 14%,
      rgba(0, 0, 0, 0.45) 32%,
      rgba(0, 0, 0, 0.95) 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      transparent 14%,
      rgba(0, 0, 0, 0.45) 32%,
      rgba(0, 0, 0, 0.95) 100%);
}

/* Outer glow halo around the Pro card */
.pricing-card-pro {
  box-shadow:
    0 0 0 1px rgba(33, 136, 229, 0.55),
    0 8px 48px rgba(30, 100, 220, 0.45),
    0 24px 80px rgba(20, 70, 200, 0.28);
}

/* ── Header row ───────────────────────────────────── */
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pricing-tier {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

.pricing-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
  text-transform: uppercase;
}

/* ── Price line ───────────────────────────────────── */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.price-slash {
  color: var(--text-muted);
  font-size: 1rem;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Divider ─────────────────────────────────────── */
.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 26px;
}

.pricing-card-pro .pricing-divider {
  background: rgba(80, 150, 255, 0.22);
}

/* ── Feature list ────────────────────────────────── */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  flex: 1;
  /* pushes button to bottom */
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pricing-card-pro .pricing-features li {
  color: rgba(180, 215, 255, 0.88);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: var(--accent-bright);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────── */
.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
  border: none;
  margin-top: auto;
  /* always at very bottom */
}

.pricing-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 22px rgba(33, 136, 229, 0.55);
}

.pricing-btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 32px rgba(66, 165, 245, 0.65);
  transform: translateY(-1px);
}

.pricing-btn-ghost {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pricing-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-pro {
    order: -1;
  }
}

@media (max-width: 480px) {
  .pricing-card-inner {
    padding: 28px 22px 24px;
  }
}

/* ── Pricing card spotlight + tilt ──────────────── */
.pricing-card {
  transition: transform 0.12s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.card-spotlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.08s ease;
}

/* Smooth return on mouse-leave */
.pricing-card:not(:hover) {
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.22s ease;
}

/* ============================================================
   PAGE LOADER
============================================================ */

/* Hide website content while loading */
body.loading > *:not(.page-loader) {
  opacity: 0;
  pointer-events: none;
}

/* Full-screen overlay */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050a14;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Logo text */
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  animation: loader-glow-pulse 2.4s ease-in-out infinite;
}

.loader-logo-accent {
  color: var(--accent-light);
}

.loader-logo-white {
  color: var(--text);
}

@keyframes loader-glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(66, 165, 245, 0.3),
      0 0 40px rgba(33, 150, 243, 0.15);
    filter: brightness(1);
  }
  50% {
    text-shadow:
      0 0 30px rgba(66, 165, 245, 0.55),
      0 0 60px rgba(33, 150, 243, 0.3),
      0 0 90px rgba(33, 150, 243, 0.12);
    filter: brightness(1.12);
  }
}

/* Progress bar */
.loader-bar-track {
  width: clamp(200px, 50vw, 320px);
  height: 3px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-light), var(--accent-bright));
  border-radius: 4px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(66, 165, 245, 0.5);
}

/* Counter text */
.loader-counter {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Website reveal after loader */
body:not(.loading) > *:not(.page-loader) {
  animation: website-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes website-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}