/* ─────────────────────────────────────────────────────────────────────────────
   ScrollPic Landing Page - Stylesheet (Dark Arcade & 3D Glassmorphic Aesthetic)
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --bg-dark: #07090E;
  --bg-card: #121824;
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --accent-green: #10B981;
  --accent-neon: #39FF8F;
  --accent-cyan: #06B6D4;
  --accent-amber: #F59E0B;
  --accent-red: #EF4444;
  --accent-purple: #8B5CF6;
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.65);
  --font-main: 'Outfit', sans-serif;
  --font-sec: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  /* overflow-x:clip clips visually without creating a scroll container — sticky and 3D transforms survive */
  overflow-x: clip;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: clip;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography & Buttons ────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #000;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #FFF;
  border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

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

/* ── Navbar ──────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 30px;
  font-weight: 900;
  color: #FFFFFF;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(57, 255, 143, 0.1));
  border: 1px solid rgba(57, 255, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-neon);
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 900;
  color: #FFF;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  color: #FFF;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

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

/* ── Inclined Animated Gallery Background ─────────────────────────────── */
.inclined-gallery-bg {
  position: fixed;
  /* -40% gives a 180% layout box: enough to fill all 18deg rotation corners */
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  overflow: hidden;
}

/* Hero wall: fade out at bottom so it dissolves into features section */
.hero-bg-wall {
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

/* Post-features wall: fade in at top (starts at how-it-works) */
.post-features-bg-wall {
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
}

.gallery-wall {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 14px;
  /* scale() removed — it was shrinking visual size to ~115% of section which
     is not enough to cover 18deg rotation corners (need ≥160%). */
  transform: rotate(18deg) skewY(2deg);
  transform-origin: center center;
}

.wall-column {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.col-up .col-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scrollWallUp 36s linear infinite;
}

.col-down .col-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scrollWallDown 40s linear infinite;
}

@keyframes scrollWallUp {
  0% {
    transform: translateY(0);
  }

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

@keyframes scrollWallDown {
  0% {
    transform: translateY(-50%);
  }

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

.wall-card {
  width: 100%;
  aspect-ratio: 0.72;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

/* 24 Pure Scenic Views Photography Assets (No people, no animals, no hands) */
.card-img-1 {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=600&auto=format&fit=crop');
}

.card-img-2 {
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=600&auto=format&fit=crop');
}

.card-img-3 {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=600&auto=format&fit=crop');
}

.card-img-4 {
  background-image: url('https://images.unsplash.com/photo-1483347756197-71ef80e95f73?q=80&w=600&auto=format&fit=crop');
}

.card-img-5 {
  background-image: url('https://images.unsplash.com/photo-1509316975850-ff9c5deb0cd9?q=80&w=600&auto=format&fit=crop');
}

.card-img-6 {
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=600&auto=format&fit=crop');
}

.card-img-7 {
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=600&auto=format&fit=crop');
}

.card-img-8 {
  background-image: url('https://images.unsplash.com/photo-1506703719100-a0f3a48c0f86?q=80&w=600&auto=format&fit=crop');
}

.card-img-9 {
  background-image: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=600&auto=format&fit=crop');
}

.card-img-10 {
  background-image: url('https://images.unsplash.com/photo-1434725039720-aaad6dd32dfe?q=80&w=600&auto=format&fit=crop');
}

.card-img-11 {
  background-image: url('https://images.unsplash.com/photo-1495616811223-4d98c6e9c869?q=80&w=600&auto=format&fit=crop');
}

.card-img-12 {
  background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?q=80&w=600&auto=format&fit=crop');
}

.card-img-13 {
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=600&auto=format&fit=crop');
}

.card-img-14 {
  background-image: url('https://images.unsplash.com/photo-1499002238440-d264edd596ec?q=80&w=600&auto=format&fit=crop');
}

.card-img-15 {
  background-image: url('https://images.unsplash.com/photo-1522383225653-ed111181a951?q=80&w=600&auto=format&fit=crop');
}

.card-img-16 {
  background-image: url('https://images.unsplash.com/photo-1474044159687-1ee9f3a51722?q=80&w=600&auto=format&fit=crop');
}

.card-img-17 {
  background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?q=80&w=600&auto=format&fit=crop');
}

.card-img-18 {
  background-image: url('https://images.unsplash.com/photo-1426604966848-d7adac402bff?q=80&w=600&auto=format&fit=crop');
}

.card-img-19 {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=600&auto=format&fit=crop');
}

.card-img-20 {
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=600&auto=format&fit=crop');
}

.card-img-21 {
  background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?q=80&w=600&auto=format&fit=crop');
}

.card-img-22 {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=600&auto=format&fit=crop');
}

.card-img-23 {
  background-image: url('https://images.unsplash.com/photo-1472214103451-9374bd1c798e?q=80&w=600&auto=format&fit=crop');
}

.card-img-24 {
  background-image: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=600&auto=format&fit=crop');
}

/* ── Hero Section ────────────────────────────────────────────────────────────── */
.hero-section {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 620px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-neon);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-neon);
  box-shadow: 0 0 10px var(--accent-neon);
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 60%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  font-family: var(--font-sec);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* ── 3D Phone Mockup ─────────────────────────────────────────────────────────── */
.hero-phone-wrapper {
  position: relative;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 48px;
  border: 10px solid #1E2536;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.15);
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-18deg) scale(0.95);
  transition: transform 0.1s cubic-bezier(0.1, 1, 0.1, 1);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0A0E17;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.screen-title {
  font-size: 20px;
  font-weight: 800;
}

.screen-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-neon);
}

.screen-card-container {
  flex: 1;
  position: relative;
  margin: 20px 0;
}

.screen-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.img-1 {
  background-image: url('images/sunset_valley.jpg');
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 50%);
}

.card-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-tag {
  font-size: 12px;
  font-weight: 700;
}

.card-size {
  font-size: 11px;
  color: var(--accent-neon);
  font-weight: 700;
}

.screen-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.btn-delete {
  background: rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-keep {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-neon);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* ── Floating Notification Cards ─────────────────────────────────────────────── */
.floating-noti {
  position: absolute;
  background: rgba(18, 24, 36, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-noti.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.noti-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.noti-icon.green {
  background: rgba(16, 185, 129, 0.2);
}

.noti-icon.blue {
  background: rgba(6, 182, 212, 0.2);
}

.noti-icon.purple {
  background: rgba(139, 92, 246, 0.2);
}

.noti-icon.amber {
  background: rgba(245, 158, 11, 0.2);
}

.noti-text {
  display: flex;
  flex-direction: column;
}

.noti-title {
  font-size: 14px;
  font-weight: 700;
}

.noti-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.noti-1 {
  top: 10%;
  left: -30px;
}

.noti-2 {
  top: 35%;
  right: -40px;
}

.noti-3 {
  bottom: 30%;
  left: -50px;
}

.noti-4 {
  bottom: 10%;
  right: -20px;
}

/* ── Section General ─────────────────────────────────────────────────────────── */

/* These sections need position:relative for absolute-positioned children.
   IMPORTANT: do NOT add overflow:hidden here — it breaks position:sticky and
   transform-style:preserve-3d hierarchies. html/body clip-x handles the scrollbar. */
.features-section,
.how-it-works-section,
.pricing-section,
.download-section {
  position: relative;
  width: 100%;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-neon);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  font-family: var(--font-sec);
}

/* ── Feature Blocks (3-Column Layout: Left Text | CENTER DEMO | Right Text) ──── */
.pinned-track-section {
  height: 250vh;
  position: relative;
}

.sticky-block {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 60px 0;
}

.feature-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  align-items: flex-end;
  position: relative;
  z-index: 25;
}

.feature-left h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.feature-left p {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-sec);
  line-height: 1.6;
}

.feature-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.feature-demo {
  width: 100%;
  max-width: 440px;
  height: 440px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.feature-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  position: relative;
  z-index: 25;
}

.feature-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent-neon);
  margin-bottom: 8px;
}

.feature-text h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 16px;
  color: var(--text-muted);
  font-family: var(--font-sec);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.feature-list .check {
  color: var(--accent-neon);
  font-weight: 900;
}

/* Feature Demos */

/* 1. Swipe Demo */
.swipe-stack {
  width: 260px;
  height: 340px;
  position: relative;
}

.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.card-top {
  z-index: 10;
}

.card-mid {
  z-index: 5;
}

.card-bot {
  z-index: 1;
}

.card-badge {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.25s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.badge-keep {
  background: #10B981;
  color: #FFFFFF;
  font-size: 32px;
  font-family: system-ui, -apple-system, sans-serif;
}

.badge-delete {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-main);
}

.demo-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.img-sunset {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80');
}

.img-receipt {
  background-image: url('images/night_pitch.jpg');
}

.img-portrait {
  background-image: url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?auto=format&fit=crop&w=1600&q=90');
}

.img-meta-sample {
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=800&q=80');
}

.demo-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
}

.img-name {
  font-size: 14px;
  font-weight: 700;
}

.img-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* 2. Filter Demo */
/* 2. 3D Smart Filters Stage (48 Photos + 3D Stack Pop-Out) */
.filter-stage-3d {
  width: 520px;
  height: 420px;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Photo Brightness & Smooth Radial Vignette Mask (140vh x 100vw) */
.big-gallery-wrapper {
  position: absolute;
  width: 100vw;
  max-width: 100vw;
  height: 140vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  -webkit-mask-image: radial-gradient(circle 550px at 50% 50%, black 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  mask-image: radial-gradient(circle 550px at 50% 50%, black 30%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
}

.big-gallery-wall {
  width: 100%;
  max-width: 1550px;
  height: 140vh;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 10px;
  padding: 10px 0;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.g-photo {
  height: 100%;
  min-height: 65px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  filter: brightness(1.7) contrast(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.g-photo {
  height: 100%;
  min-height: 65px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: brightness(0.35) contrast(0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

/* 12 Distinct High-Res Photos in Randomized Distribution (Seamless, zero vertical cliff lines) */
.g-photo:nth-child(12n+1) {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+2) {
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+3) {
  background-image: url('images/night_pitch.jpg');
}

.g-photo:nth-child(12n+4) {
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+5) {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+6) {
  background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+7) {
  background-image: url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+8) {
  background-image: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+9) {
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+10) {
  background-image: url('https://images.unsplash.com/photo-1472214103451-9374bd1c798e?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+11) {
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=400&q=80');
}

.g-photo:nth-child(12n+0) {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=400&q=80');
}

/* 3D Smart Stack Container (Single Front Photo + 3 Cards Popping Out From Behind) */
.smart-stack-3d {
  position: absolute;
  width: 140px;
  height: 140px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  transform-style: preserve-3d;
  background: #0d111a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
  will-change: transform, opacity;
}

.card-front {
  z-index: 10;
}

.card-behind {
  z-index: 5;
  opacity: 1;
}

/* Locked 3D Horizontal Axis File Rack Positions (Pure Z-Depth Parallel Planes) */
.card-pop-vid {
  transform: translate3d(0, 0, -25px);
}

.card-pop-dark {
  transform: translate3d(0, 0, -50px);
}

.card-pop-large {
  transform: translate3d(0, 0, -75px);
}

.card-photo {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

/* Photos matched directly from background gallery grid (seamless high-res photos with zero scenery lines) */
.photo-dup1 {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=600&q=80');
}

.photo-vid {
  background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=600&q=80');
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video card overlay: pause button centred + duration badge bottom-right */
.vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.28);
}

.vid-pause-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.vid-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  font-family: var(--font-sec);
}

.photo-dark {
  background-image: url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?auto=format&fit=crop&w=600&q=80');
  filter: blur(3.5px) brightness(0.55) contrast(1.1);
}

.photo-large {
  background-image: url('https://images.unsplash.com/photo-1472214103451-9374bd1c798e?auto=format&fit=crop&w=600&q=80');
}

/* Schema Pointers & Drawn Callout Lines */
.schema-pointer {
  display: flex;
  align-items: center;
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.schema-pointer.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pointer-top-left {
  right: 100%;
  top: -8px;
  flex-direction: row;
}

.pointer-bot-left {
  right: 100%;
  bottom: -8px;
  flex-direction: row;
}

.pointer-top-right {
  left: 100%;
  top: -8px;
  flex-direction: row;
}

.pointer-bot-right {
  left: 100%;
  bottom: -8px;
  flex-direction: row;
}

.pointer-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-neon);
  box-shadow: 0 0 10px var(--accent-neon);
  flex-shrink: 0;
}

.pointer-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-neon), rgba(57, 255, 143, 0.3));
  border-top: 1px dashed var(--accent-neon);
  flex-shrink: 0;
}

.schema-callout {
  background: rgba(13, 17, 26, 0.95);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--accent-neon);
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9), 0 0 14px rgba(57, 255, 143, 0.25);
  display: flex;
  flex-direction: column;
}

.c-title {
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.c-sub {
  font-size: 10px;
  color: var(--accent-neon);
  font-weight: 700;
  margin-top: 1px;
}

/* Feature Sticky Pinning Architecture */
.feature-block-sticky-wrapper {
  height: 250vh;
  position: relative;
}

.feature-pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* 3. Metadata Extraction Stage (3D Locked Plane Extraction) */
.meta-stage-3d {
  width: 800px;
  height: 500px;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-photo-card {
  width: 320px;
  height: 480px;
  border-radius: 26px;
  position: absolute;
  left: 50%;
  margin-left: -300px;
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  z-index: 10;
  overflow: hidden;
}

.meta-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(13, 17, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}

.meta-data-card {
  width: 290px;
  height: 480px;
  border-radius: 26px;
  position: absolute;
  left: 50%;
  margin-left: -300px;
  background: rgba(13, 17, 26, 0.96);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--accent-neon);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(57, 255, 143, 0.25);
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
}

justify-content: space-between;
}

.exif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  padding-bottom: 10px;
}

.exif-title {
  font-weight: 800;
  font-size: 15px;
}

.exif-badge {
  font-size: 10px;
  font-weight: 900;
  background: rgba(239, 68, 68, 0.2);
  color: var(--accent-red);
  padding: 2px 8px;
  border-radius: 4px;
}

.exif-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.exif-row {
  display: flex;
  flex-direction: column;
}

.exif-row .k {
  color: var(--text-muted);
  font-size: 10px;
}

.exif-row .v {
  font-weight: 600;
}

.exif-row .v.alert {
  color: var(--accent-red);
}

.exif-action {
  background: var(--accent-green);
  color: #000;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
}

/* ── How It Works Section ────────────────────────────────────────────────────── */
.how-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* Step Phone Card & Footer Layout */
.step-phone-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

.step-phone-card .phone-frame {
  position: relative;
  width: 100%;
  max-width: 265px;
  min-height: 480px;
  background: #000000;
  border-radius: 42px;
  padding: 5px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.8),
    0 0 0 2px rgba(255, 255, 255, 0.12),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.step-phone-card:hover .phone-frame {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(57, 255, 143, 0.4),
    0 0 25px rgba(57, 255, 143, 0.15);
}

/* Side Buttons */
.phone-btn-left-1,
.phone-btn-left-2 {
  position: absolute;
  left: -4px;
  width: 4px;
  height: 24px;
  background: #2a2f3a;
  border-radius: 2px 0 0 2px;
}

.phone-btn-left-1 {
  top: 80px;
}

.phone-btn-left-2 {
  top: 115px;
}

.phone-btn-right {
  position: absolute;
  right: -4px;
  top: 95px;
  width: 4px;
  height: 40px;
  background: #2a2f3a;
  border-radius: 0 2px 2px 0;
}

/* Phone Screen Display Area */
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  background: #000000;
  border-radius: 37px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island Notch */
.dynamic-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 16px;
  background: #000000;
  border-radius: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.camera-lens {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111827;
  border: 1px solid #1f2937;
}

.step-phone-footer {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

.step-phone-footer .step-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(57, 255, 143, 0.1));
  border: 1px solid rgba(57, 255, 143, 0.3);
  color: var(--accent-neon);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.step-phone-footer h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.step-phone-footer p {
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-sec);
  line-height: 1.45;
}

/* Phone Screen Display Content Base */
.phone-display-content {
  width: 100%;
  height: 100%;
  min-height: 470px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Phone 1 Screen: App Gallery Folder Grid */
.phone-display-content.app-screen-1 {
  background: #090d14;
  padding: 28px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.app-title {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}

.app-dropdown-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(57, 255, 143, 0.1);
  border: 1px solid rgba(57, 255, 143, 0.25);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-neon);
}

.app-folders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.app-folder-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 105px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.app-folder-card .folder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.app-folder-card .f-name {
  font-size: 9px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.app-folder-card .f-badge {
  background: rgba(57, 255, 143, 0.2);
  color: var(--accent-neon);
  border: 1px solid rgba(57, 255, 143, 0.35);
  font-size: 8px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 10px;
}

.f-thumb-1 {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=400&q=80');
}

.f-thumb-2 {
  background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=400&q=80');
}

.f-thumb-3 {
  background-image: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=400&q=80');
}

.f-thumb-4 {
  background-color: #0c141d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-thumb-5 {
  background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=400&q=80');
}

.f-thumb-6 {
  background-image: url('https://images.unsplash.com/photo-1511765224389-37f0e77cf0eb?auto=format&fit=crop&w=400&q=80');
}

.app-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(13, 17, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px 6px;
  margin-top: 6px;
}

.nav-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-circle.active {
  background: var(--accent-neon);
  border-color: var(--accent-neon);
  box-shadow: 0 0 8px rgba(57, 255, 143, 0.5);
}

/* Phone 2 Screen: Active Swipe Cleaning UI */
.phone-display-content.app-screen-2 {
  background: #000000;
  padding: 24px 6px 6px 6px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.swipe-progress-bar {
  width: 70%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0 auto 6px auto;
  overflow: hidden;
}

.swipe-progress-fill {
  width: 55%;
  height: 100%;
  background: #10B981;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.swipe-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding: 0 4px;
}

.swipe-btn-close {
  background: transparent;
  border: none;
  cursor: pointer;
}

.swipe-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swipe-title-line {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  font-weight: 700;
  color: #FFFFFF;
}

.swipe-title-line .dot {
  color: #64748B;
}

.swipe-title-line .freed-pill {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1px 4px;
  font-size: 7.5px;
  font-weight: 800;
  color: #FFFFFF;
}

.swipe-sub-line {
  font-size: 7.5px;
  color: #94A3B8;
  margin-top: 1px;
}

.swipe-actions-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.swipe-btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo Card View of Scenic View Landscape */
.swipe-photo-scenic {
  flex: 1;
  border-radius: 18px;
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.speed-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
}

.instagram-tag {
  position: absolute;
  top: 45%;
  right: 8px;
  color: #FFFFFF;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.swipe-fab-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6366F1;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

/* Phone 3 Screen: Folder Completion Modal UI */
.phone-display-content.app-screen-3 {
  background: #050907;
  padding: 20px 8px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.completion-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #09150d 0%, #060d08 100%);
  border: 1px solid rgba(57, 255, 143, 0.25);
  border-radius: 22px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 25px rgba(57, 255, 143, 0.08);
  box-sizing: border-box;
}

.completion-popper-icon {
  margin-top: 4px;
  margin-bottom: 6px;
}

.completion-title {
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.completion-sub {
  font-size: 8px;
  color: #94A3B8;
  margin-bottom: 10px;
  line-height: 1.2;
}

.completion-sub .folder-highlight {
  color: var(--accent-neon);
  font-weight: 800;
}

/* 4-Column Stats Box */
.completion-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 3px;
  width: 100%;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
}

.stat-lbl {
  font-size: 6.5px;
  color: #64748B;
  line-height: 1.1;
  margin-top: 2px;
}

/* Estimated Saved Time Box */
.completion-time-box {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 12px;
  padding: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.time-lbl {
  font-size: 7px;
  color: #94A3B8;
  margin-bottom: 3px;
}

.time-val {
  font-size: 13px;
  font-weight: 900;
  color: #818CF8;
}

/* Bottom Action Buttons */
.completion-action-btns {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 4px;
}

.btn-sec-folder {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 7px;
  font-weight: 800;
  padding: 7px 2px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-pri-folder {
  flex: 1;
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  border: none;
  color: #FFFFFF;
  font-size: 7px;
  font-weight: 800;
  padding: 7px 2px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.success-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(57, 255, 143, 0.12);
  border: 1px solid var(--accent-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 25px rgba(57, 255, 143, 0.3);
}

.success-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-neon);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.success-label {
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.success-sub {
  font-size: 9px;
  color: var(--text-muted);
}

/* ── Pricing Section ─────────────────────────────────────────────────────────── */
.billing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.save-callout-pill {
  background: rgba(57, 255, 143, 0.15);
  color: var(--accent-neon);
  border: 1px solid var(--accent-neon);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(57, 255, 143, 0.3);
  animation: pulseNeon 2s infinite ease-in-out;
}

@keyframes pulseNeon {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(57, 255, 143, 0.3);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 24px rgba(57, 255, 143, 0.5);
  }
}

.billing-toggle {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 4px;
  border-radius: 100px;
  gap: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.billing-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-btn.active {
  background: var(--accent-neon);
  color: #000000;
  box-shadow: 0 0 15px rgba(57, 255, 143, 0.4);
}

@keyframes pricePop {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }

  60% {
    transform: translateY(2px) scale(1.03);
  }

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

.price-animating {
  animation: pricePop 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pillFadeSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.pill-animating {
  animation: pillFadeSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-neon);
  box-shadow: 0 0 35px rgba(57, 255, 143, 0.18);
  background: linear-gradient(180deg, rgba(13, 17, 26, 0.98), rgba(18, 24, 36, 0.95));
}

.popular-tag {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--accent-neon);
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(57, 255, 143, 0.4);
}

.p-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.p-price-options {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.p-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent-neon);
}

.p-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.p-header p {
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-sec);
  margin-bottom: 24px;
  line-height: 1.4;
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13px;
  margin-bottom: 32px;
  line-height: 1.4;
}

.p-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.p-check {
  color: var(--accent-neon);
  font-weight: 900;
  font-size: 14px;
}

.p-pro-star {
  color: var(--accent-neon);
  font-size: 14px;
}

.p-locked {
  opacity: 0.45;
}

.p-lock {
  font-size: 13px;
}

.p-btn {
  width: 100%;
  justify-content: center;
}

/* ── FAQ Section ─────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: var(--accent-neon);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-family: var(--font-sec);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ── FAQ Dedicated Page Styles ─────────────────────────────────────────────── */
.faq-hero-section {
  padding-top: 140px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(57, 255, 143, 0.07) 0%, rgba(13, 17, 26, 0) 70%);
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.orb-top-left {
  width: 550px;
  height: 550px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(57, 255, 143, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
}

.orb-bottom-right {
  width: 650px;
  height: 650px;
  bottom: 0;
  right: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.faq-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 6px;
  border-radius: 100px;
  gap: 6px;
}

.faq-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab.active {
  background: var(--accent-neon);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(57, 255, 143, 0.4);
}

.faq-page-content {
  padding-bottom: 100px;
}

.faq-page-list {
  max-width: 860px;
}

.faq-back-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* ── CTA Banner Section ──────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 24px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(18, 24, 36, 0.9));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 36px;
  padding: 70px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 36px;
  font-family: var(--font-sec);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.store-badge {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.store-icon {
  font-size: 24px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text .small {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── App Icon & Follow Us Styles ─────────────────────────────────────────── */
.cta-app-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4), 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-follow-us {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.follow-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.follow-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Official Social Media Brand Colors */
.social-link.instagram {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.35);
  color: #FF6492;
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 29, 29, 0.4);
}

.social-link.youtube {
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.35);
  color: #FF4D4D;
}

.social-link.youtube:hover {
  background: #FF0000;
  color: #FFFFFF;
  border-color: #FF0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}

.social-link.tiktok {
  background: rgba(37, 244, 238, 0.12);
  border: 1px solid rgba(37, 244, 238, 0.35);
  color: #25F4EE;
}

.social-link.tiktok:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #25F4EE;
  transform: translateY(-2px);
  box-shadow: -3px 3px 15px rgba(37, 244, 238, 0.5), 3px -3px 15px rgba(254, 44, 85, 0.5);
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  border-top: none;
  padding: 60px 24px 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-desc {
  color: var(--text-muted);
  margin-top: 12px;
  font-family: var(--font-sec);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent-neon);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: none;
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  .hero-container,
  .feature-block,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 38px;
  }

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

  .floating-noti {
    display: none;
  }
}

/* ── Region & Language Dropdown ────────────────────────────────────────────────── */
.region-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.region-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 12px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.region-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-neon);
}

.region-flag {
  font-size: 15px;
}

.region-code {
  letter-spacing: 0.5px;
}

.region-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #0E131F;
  border: 1.5px solid rgba(57, 255, 143, 0.3);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  padding: 8px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.region-menu-header {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  padding: 8px 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.region-list {
  max-height: 280px;
  overflow-y: auto;
}

.region-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.region-item:hover {
  background: rgba(57, 255, 143, 0.12);
}

.region-item.active {
  background: rgba(57, 255, 143, 0.2);
  border-left: 3px solid var(--accent-neon);
}

.region-info {
  display: flex;
  flex-direction: column;
}

.region-name {
  font-size: 13px;
  font-weight: 600;
}

.region-lang {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Help Center Styles ────────────────────────────────────────────────────────── */
.help-topics-section {
  padding: 40px 0 60px;
}

.help-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.help-topic-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 32px 28px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.help-topic-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-neon);
  box-shadow: 0 12px 30px rgba(57, 255, 143, 0.12);
}

.help-topic-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(57, 255, 143, 0.1);
  border: 1px solid rgba(57, 255, 143, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.help-topic-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

/* ── Premium App-Style Help Dashboard ────────────────────────────────────────── */
.help-page-body {
  background-color: #060911;
}

.help-dashboard-container {
  max-width: 1200px;
  margin: 120px auto 80px;
  padding: 0 24px;
}

.help-dashboard-header {
  margin-bottom: 44px;
  text-align: center;
}

.help-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 143, 0.1);
  border: 1px solid rgba(57, 255, 143, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-neon);
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  box-shadow: 0 0 18px rgba(57, 255, 143, 0.15);
}

.help-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-neon);
  box-shadow: 0 0 10px var(--accent-neon);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.help-main-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.help-main-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Search Bar Input - Centered */
.help-search-wrapper {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.help-search-input {
  width: 100%;
  background: rgba(14, 19, 31, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px 20px 16px 50px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #ffffff;
  outline: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.help-search-input:focus {
  border-color: var(--accent-neon);
  box-shadow: 0 0 25px rgba(57, 255, 143, 0.22);
}

/* Dashboard Body Grid */
.help-dashboard-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── 3D Cylindrical Curved Wheel Selector ─────────────────────────────────────── */
.wheel-sidebar-wrapper {
  position: sticky;
  top: 100px;
  background: rgba(14, 19, 31, 0.85);
  backdrop-filter: blur(28px);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 24px 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.wheel-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wheel-picker-3d {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  perspective: 600px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-item {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 85%;
  padding: 10px 16px;
  text-align: left;
  cursor: pointer;
  transform-origin: center center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.wheel-text {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.wheel-item.active .wheel-text {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.wheel-status-pill {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

/* System Status Widget */
.system-status-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.status-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.status-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39FF8F;
  box-shadow: 0 0 8px #39FF8F;
}

.status-widget-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.status-widget-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* Workspace Panels */
.help-workspace-panel {
  display: none;
}

.help-workspace-panel.active {
  display: block;
}

.panel-header {
  margin-bottom: 24px;
}

.panel-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.inline-faq-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
}

.panel-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent-neon);
  text-transform: uppercase;
}

.panel-tag.error-tag {
  color: #FF3B30;
}

.panel-title {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 4px;
}

/* Case Errors Cards Grid */
.case-errors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.case-card {
  background: rgba(14, 19, 31, 0.75);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 143, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.case-pill {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.case-pill.case-error {
  background: rgba(255, 255, 255, 0.08);
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.case-pill.case-warning {
  background: rgba(255, 255, 255, 0.08);
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.case-pill.case-info {
  background: rgba(255, 255, 255, 0.08);
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.case-status {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #cccccc;
}

.case-status.warning {
  color: #cccccc;
}

.case-status.info {
  color: #cccccc;
}

.case-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.case-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.case-action-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3.5px solid var(--accent-neon);
  border-radius: 12px;
  padding: 16px;
}

.action-step-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent-neon);
  margin-bottom: 6px;
}

.case-action-box p {
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* ── Support Portal Layout (Inspired by Reference Design) ───────────────────────── */
.support-hero-section {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #070B14 0%, #0B101E 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.support-hero-left {
  max-width: 640px;
}

.support-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--accent-neon);
  margin-bottom: 12px;
}

.support-hero-title {
  font-size: 44px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.support-search-box {
  position: relative;
  max-width: 540px;
}

.support-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 20px 16px 52px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.support-search-input:focus {
  border-color: var(--accent-neon);
  box-shadow: 0 0 24px rgba(57, 255, 143, 0.2);
}

.support-hero-card-preview {
  background: rgba(14, 19, 31, 0.8);
  border: 1.5px solid rgba(57, 255, 143, 0.3);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.preview-tag-pill {
  display: inline-block;
  background: rgba(57, 255, 143, 0.15);
  color: var(--accent-neon);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.support-hero-card-preview h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.support-hero-card-preview p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Featured Knowledge Cards Grid */
.support-featured-section {
  padding: 40px 0;
  background: #0B101E;
}

.support-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.support-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.support-feat-card {
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-neon);
  box-shadow: 0 12px 32px rgba(57, 255, 143, 0.12);
}

.support-feat-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.support-feat-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.feat-card-footer {
  display: flex;
  align-items: center;
}

.feat-tag-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.support-feat-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.no-results-banner {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin-top: 32px;
}

.no-results-banner h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.no-results-banner p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Case Errors Section (Replaces Support Tools) */
.case-errors-section {
  padding: 60px 0;
  background: #070A12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-errors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.case-errors-header {
  margin-bottom: 32px;
}

.case-errors-header .section-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 4px;
}

.case-errors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Full Width FAQ Section (No Wheel) */
.faq-full-section {
  padding: 80px 0;
  background: #060911;
}

.faq-full-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-no-results {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .support-hero-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .help-dashboard-body {
    grid-template-columns: 1fr;
  }

  .help-glass-sidebar {
    position: relative;
    top: 0;
  }
}/* --- INTERACTIVE DEMO STYLES --- */
.interactive-demo-section {
  padding: 80px 0;
  background: #050907;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.demo-phone-card {
  width: 340px;
  height: 680px;
  position: relative;
  border-radius: 45px;
  background: #111;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.demo-phone-card .phone-frame {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  border: 4px solid #333;
  position: relative;
  background: #000;
  overflow: hidden;
}

.demo-phone-card .phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.demo-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 16px 20px 16px;
}

.demo-header {
  text-align: center;
  margin-bottom: 20px;
}

.demo-title-line {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.freed-pill {
  background: rgba(57, 255, 143, 0.15);
  color: var(--accent-neon);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
}

.demo-cards-container {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.demo-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transform-origin: 50% 100%;
  will-change: transform;
  touch-action: none;
  cursor: grab;
  user-select: none;
}

.demo-card.dragging {
  cursor: grabbing;
  transition: none !important;
}

.demo-badge {
  position: absolute;
  top: 20px;
  padding: 6px 12px;
  font-size: 24px;
  font-weight: 900;
  border-radius: 8px;
  border: 4px solid;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

.demo-badge.keep {
  left: 20px;
  color: #39FF8F;
  border-color: #39FF8F;
  transform: rotate(-15deg);
}

.demo-badge.trash {
  right: 20px;
  color: #FF3B30;
  border-color: #FF3B30;
  transform: rotate(15deg);
}

.demo-badge.folder {
  bottom: 20px;
  top: auto;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  color: #007AFF;
  border-color: #007AFF;
}

.demo-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.demo-btn-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #1C1C1E;
  transition: transform 0.2s;
}

.demo-btn-round:hover {
  transform: scale(1.1);
}

.demo-success-screen {
  position: absolute;
  top: 40px;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: rgba(0,0,0,0.9);
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section {
  background: #070A12;
}
.cta-section {
  background: #0B111A;
}


.demo-header {
  position: relative;
}
.swipe-hint-left {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.swipe-hint-right {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.demo-plus-one {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  color: #007AFF;
  font-size: 32px;
  font-weight: 900;
  opacity: 1;
  animation: floatUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: none;
  z-index: 100;
  text-shadow: 0 4px 12px rgba(0, 122, 255, 0.5);
}
@keyframes floatUp {
  0% { transform: translate(-50%, 0) scale(0.5); opacity: 0; }
  20% { transform: translate(-50%, -20px) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%, -80px) scale(1); opacity: 0; }
}


.demo-ui {
  position: relative;
}
.swipe-hint-left {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}
.swipe-hint-right {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}
.demo-badge.folder {
  bottom: 10px; /* Adjust folder badge position since it's swiped down now */
}

/* Override: corner hints now live inside phone-screen which is position:relative */
.phone-screen .swipe-hint-left {
  position: absolute;
  top: 48px;
  left: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 4px 7px;
}
.phone-screen .swipe-hint-right {
  position: absolute;
  top: 48px;
  right: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 4px 7px;
}

/* Folder badge shows when dragging DOWN */
.demo-badge.folder {
  bottom: auto;
  top: auto;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #007AFF;
  border-color: #007AFF;
}

.demo-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* Force FAQ and CTA to be fully opaque and cover the scrolling photo wall behind */
.faq-section {
  background: #070A12 !important;
  position: relative;
  z-index: 2;
}
.cta-section {
  background: #08101A !important;
  position: relative;
  z-index: 2;
}
.pricing-section {
  background: #050709 !important;
  position: relative;
  z-index: 2;
}

/* Final fix: ensure all page sections form their own stacking context above fixed bg (z-index:0) */
.features-section,
.interactive-demo-section,
.pricing-section,
.faq-section,
.cta-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.faq-section { background: #070A12 !important; }
.cta-section { background: #08101A !important; }
.pricing-section { background: #050709 !important; }
.interactive-demo-section { background: #050907 !important; }

/* Sections float above the fixed photo wall � no black box */
.features-section,
.interactive-demo-section,
.pricing-section,
.faq-section,
.cta-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: transparent !important;
}

/* Each section gets a very subtle dark tint so text stays readable */
.features-section::before,
.interactive-demo-section::before,
.pricing-section::before,
.faq-section::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.82);
  z-index: -1;
  pointer-events: none;
}

/* Free week ribbon on monthly plan */
.free-week-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(57, 255, 143, 0.1);
  border: 1px solid rgba(57, 255, 143, 0.3);
  color: var(--accent-neon);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  animation: ribbonPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ribbonPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Photo wall shows through more � lighter overlay on sections */
.features-section::before,
.interactive-demo-section::before,
.pricing-section::before,
.faq-section::before,
.cta-section::before {
  background: rgba(4, 7, 14, 0.45) !important;
}

/* Footer � no overlay, full photo wall visibility */
footer::before,
.footer::before,
.site-footer::before {
  display: none !important;
}
footer,
.footer,
.site-footer {
  position: relative;
  z-index: 1;
  background: transparent !important;
  isolation: isolate;
}

/* Extend photo wall to cover all the way through footer */
.hero-bg-wall {
  mask-image: linear-gradient(to bottom, #000 50%, #000 80%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, #000 80%, transparent 100%) !important;
}
/* Reversing the darkness: Sections lighter/transparent, Footer darker */
.features-section::before,
.interactive-demo-section::before,
.pricing-section::before,
.faq-section::before,
.cta-section::before {
  background: transparent !important;
}

footer::before,
.footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.85) !important;
  display: block !important;
  z-index: -1;
  pointer-events: none;
}
/* Cinematic Fade-to-Black Design Override */
.features-section::before,
.interactive-demo-section::before,
.pricing-section::before {
  background: rgba(4, 7, 14, 0.35) !important;
}

.faq-section::before {
  background: rgba(4, 7, 14, 0.65) !important;
}

.cta-section::before {
  background: rgba(4, 7, 14, 0.85) !important;
}

footer::before,
.footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.98) !important;
  display: block !important;
  z-index: -1;
  pointer-events: none;
}
/* Reverting to previous design: Sections transparent, Footer dark */
.features-section::before,
.interactive-demo-section::before,
.pricing-section::before,
.faq-section::before,
.cta-section::before {
  background: transparent !important;
}

footer::before,
.footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.85) !important;
  display: block !important;
  z-index: -1;
  pointer-events: none;
}
/* Remove the harsh straight line for the footer with a smooth gradient overlap */
footer::before,
.footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: -150px; /* Extends 150px above the footer to create a fade */
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(4, 7, 14, 0) 0%, rgba(4, 7, 14, 0.85) 150px, rgba(4, 7, 14, 0.95) 100%) !important;
  display: block !important;
  z-index: -1;
  pointer-events: none;
}


/* User Tweaks: Hero title lower, features header closer to feature 1, third folder scroll animation */
.hero-content {
  margin-top: 50px !important;
}

.features-section .section-header {
  margin-bottom: 24px !important;
}

.badge-folder {
  background: #2563EB !important;
  color: #FFF !important;
  font-size: 22px !important;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.8) !important;
}

.stack-folder-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px dashed rgba(37, 99, 235, 0.4);
  border-radius: 30px;
  color: #60A5FA;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.stack-folder-indicator.active {
  opacity: 1;
  border-color: #3B82F6;
  background: rgba(37, 99, 235, 0.25);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}


/* Final UI Refinements */
.hero-content {
  margin-top: 100px !important;
}

.features-section .section-header {
  margin-bottom: 0px !important;
}

.feature-block {
  max-width: 1100px !important;
  margin: 0 auto !important;
  width: 100% !important;
  grid-template-columns: 1fr 280px 1fr !important;
  align-items: center !important;
  justify-content: center !important;
}

.feature-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.swipe-demo-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.card-base {
  z-index: 0 !important;
}

.badge-folder {
  background: #2563EB !important;
  color: #FFF !important;
  font-size: 22px !important;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.8) !important;
}

.stack-folder-indicator {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  margin-top: 24px !important;
  background: rgba(37, 99, 235, 0.15) !important;
  border: 2px dashed rgba(59, 130, 246, 0.5) !important;
  color: #60A5FA !important;
  opacity: 0 !important;
  transform: scale(0.6) !important;
  pointer-events: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stack-folder-indicator.active {
  opacity: 1 !important;
  transform: scale(1.1) !important;
  border-color: #3B82F6 !important;
  background: rgba(37, 99, 235, 0.35) !important;
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.9) !important;
}


/* Brighter & Larger Demo Disclaimer */
.demo-disclaimer {
  text-align: center !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
  font-family: var(--font-sec) !important;
  letter-spacing: 0.3px !important;
}

/* ── Mobile & Tablet Responsive Adaptations (Preserves PC Layout Unchanged) ── */

/* Tablet Optimization (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr 240px 1fr !important;
    gap: 16px !important;
    padding: 0 20px !important;
  }
  
  .hero-title {
    font-size: 42px !important;
  }
  
  .smart-stack-3d {
    transform: scale(0.9) !important;
  }

  .cta-container {
    padding: 50px 30px !important;
  }
}

/* Desktop-only footer rule */
@media (min-width: 769px) {
  .footer-mobile-legal {
    display: none !important;
  }
}

/* Mobile & Small Screen Optimization (<= 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px !important;
  }

  .logo-text {
    font-size: 17px !important;
  }

  .hero-content {
    margin-top: 36px !important;
    padding: 0 14px !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.22 !important;
  }

  .hero-sub {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  /* Smaller Mobile Buttons */
  .btn {
    padding: 9px 18px !important;
    font-size: 13px !important;
    border-radius: 100px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    max-width: 250px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
    justify-content: center !important;
  }

  .billing-btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  /* Place Feature Mockup on Top & Descriptions Under Them */
  .feature-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 0 16px !important;
  }

  .feature-center {
    order: 1 !important; /* Phone animation mockup on top */
    width: 100% !important;
    margin-bottom: 6px !important;
  }

  .feature-left,
  .feature-right {
    order: 2 !important; /* Descriptions, titles & bullets placed directly under mockup */
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }

  .f-list {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* Smaller Features on Mobile */
  .feature-left h3,
  .feature-right h3,
  .f-title {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .feature-left p,
  .feature-right p,
  .f-desc {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }

  .f-list li {
    font-size: 12px !important;
    gap: 6px !important;
  }

  .step-phone-footer h3 {
    font-size: 16px !important;
  }

  .step-phone-footer p {
    font-size: 12px !important;
  }

  .swipe-demo-box {
    transform: scale(0.82) !important;
    margin: 0 auto !important;
  }

  /* Background Layout & Smart Filter Gallery Grid Fixes for Mobile */
  .ambient-glow,
  .orb-top-left,
  .orb-bottom-right {
    max-width: 100vw !important;
    width: 260px !important;
    height: 260px !important;
    opacity: 0.15 !important;
    filter: blur(80px) !important;
  }

  .smart-stack-3d {
    transform: scale(0.72) !important;
    margin: 0 auto !important;
  }

  .app-folders-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
  }

  .app-folder-card {
    height: 95px !important;
  }

  .phone-screen,
  .phone-display-content {
    min-height: 420px !important;
  }

  /* Smaller Website Metadata Elements on Mobile */
  .img-meta {
    font-size: 9px !important;
    padding: 2px 6px !important;
    letter-spacing: 0.2px !important;
  }

  .meta-stage-3d {
    transform: scale(0.68) !important;
    height: 380px !important;
    margin: 0 auto !important;
  }

  .meta-photo-card {
    width: 250px !important;
    height: 380px !important;
    margin-left: -125px !important; /* Centered in middle initially */
  }

  .meta-data-card {
    width: 230px !important;
    height: 380px !important;
    margin-left: -125px !important; /* Hidden behind photo card initially */
    padding: 14px !important;
    opacity: 0;
  }

  .meta-badge {
    font-size: 10px !important;
    padding: 8px !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .exif-title {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }

  .exif-row {
    padding: 5px 0 !important;
  }

  .exif-lbl,
  .exif-val {
    font-size: 10px !important;
  }

  /* Mobile Hero 3D Animated Background Gallery Wall (Exactly 5 Columns for Larger/Closer Impact) */
  .inclined-gallery-bg {
    position: absolute !important;
    inset: -20% -25% !important;
    opacity: 0.38 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: 0 !important;
  }

  .hero-bg-wall {
    mask-image: linear-gradient(to bottom, #000 65%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%) !important;
  }

  .gallery-wall {
    display: flex !important;
    gap: 12px !important;
    transform: rotate(14deg) skewY(2deg) scale(1.35) !important;
    transform-origin: center center !important;
  }

  .gallery-wall .wall-column:nth-child(n+6) {
    display: none !important; /* Hide extra columns so ONLY 5 columns appear on mobile! */
  }

  .wall-column {
    flex: 1 0 18% !important;
  }

  .wall-card {
    border-radius: 16px !important;
    aspect-ratio: 0.72 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6) !important;
  }

  .nav-cta {
    padding: 7px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  /* Mobile Smart Filters Gallery Grid & Card Stack (Dead Center 100vw Screen Fit) */
  .filter-stage-3d {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 360px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 auto 16px auto !important;
    border-radius: 20px !important;
  }

  .big-gallery-wrapper {
    position: absolute !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important; /* Exact dead-center screen alignment */
    margin: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.85 !important;
    -webkit-mask-image: radial-gradient(circle 160px at 50% 50%, #000 25%, rgba(0, 0, 0, 0.5) 60%, transparent 95%) !important;
    mask-image: radial-gradient(circle 160px at 50% 50%, #000 25%, rgba(0, 0, 0, 0.5) 60%, transparent 95%) !important;
  }

  .big-gallery-wall {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(9, 1fr) !important;
    grid-template-rows: repeat(8, 1fr) !important;
    gap: 4px !important;
    padding: 0 6px !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    transform: translateZ(0) !important;
    will-change: transform, opacity !important;
    filter: brightness(0.7) contrast(1) !important;
  }

  .g-photo {
    width: 100% !important;
    height: 100% !important;
    min-height: 28px !important;
    border-radius: 5px !important;
    opacity: 1 !important;
    display: block !important;
    will-change: transform, opacity !important;
    transform: translateZ(0) !important;
  }

  /* Mobile Smart Filters: Pure Gallery Grid (No Cards, No Scroll Stop) */
  #filterTrack,
  #filterFeature {
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
    top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #filterFeature .feature-center {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  #filterFeature .feature-left,
  #filterFeature .feature-right {
    order: 2 !important;
    width: 100% !important;
  }

  .smart-stack-3d {
    display: none !important; /* Hide 3D cards on mobile so ONLY gallery grid shows! */
  }

  /* Pleasant Mobile Phone Screen CTA & Follow Us */
  .cta-section {
    padding: 40px 16px !important;
  }

  .cta-container {
    background: linear-gradient(135deg, rgba(16, 22, 34, 0.95) 0%, rgba(9, 13, 20, 0.98) 100%) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.18) !important;
    border-radius: 28px !important;
    padding: 36px 20px 28px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .cta-logo-img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
  }

  .cta-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .cta-sub {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .cta-buttons .store-badge {
    width: 100% !important;
    max-width: 260px !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    padding: 10px 20px !important;
  }

  .cta-follow-us {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .follow-title {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }

  .follow-links {
    gap: 8px !important;
  }

  .social-link {
    padding: 7px 14px !important;
    font-size: 12px !important;
  }

  /* Compact Single-Row Mobile Footer */
  .footer-container {
    display: none !important; /* Hide brand description and top column navigation on mobile */
  }

  .footer {
    padding: 24px 16px 20px !important;
  }

  .footer-bottom {
    border-top: none !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  .footer-bottom p {
    margin: 0 !important;
  }

  .footer-mobile-legal {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .footer-mobile-legal a {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-size: 12px !important;
  }

  .footer-mobile-legal a:hover {
    color: var(--accent-neon) !important;
  }
}

