/* ==========================================================================
   PicsNest AI — Official Landing Page Stylesheet (With Hero Social Icons & Fade Carousel)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Syne:wght@700;800;900&display=swap');

:root {
  --v: #6c4eff;
  --v2: #8b72ff;
  --sky: #38bdf8;
  --coral: #ff6b6b;
  --mint: #35d0a1;
  --yellow: #ffc857;
  --pink: #f472b6;
  --orange: #ff8a4c;
  --bg-main: #fafbff;
  --text-dark: #120b2e;
  --text-muted: #4e456e;
  --font-main: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  --font-brand: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

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

/* Claymorphism Cards */
.clay {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: inset 0 2px #ffffff,
              inset 0 -2px rgba(0, 0, 0, 0.05),
              0 4px 16px rgba(108, 78, 255, 0.08),
              0 16px 44px rgba(108, 78, 255, 0.1),
              0 36px 90px rgba(108, 78, 255, 0.05);
  border: 1px solid rgba(108, 78, 255, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.clay:hover {
  border-color: rgba(108, 78, 255, 0.3);
  box-shadow: inset 0 2px #ffffff,
              inset 0 -2px rgba(0, 0, 0, 0.08),
              0 8px 24px rgba(108, 78, 255, 0.15),
              0 24px 60px rgba(108, 78, 255, 0.2);
}

.clay-v {
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 45%, #5338e8 100%);
  color: #ffffff !important;
  border-radius: 24px;
  box-shadow: inset 0 3px rgba(255, 255, 255, 0.4),
              inset 0 -3px rgba(0, 0, 0, 0.25),
              0 10px 28px rgba(108, 78, 255, 0.45),
              0 26px 64px rgba(108, 78, 255, 0.3);
}

/* Gradient Text Utilities */
.gt {
  background: linear-gradient(135deg, #6c4eff 0%, #38bdf8 50%, #35d0a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gtw {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8a4c 50%, #ffc857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Top Announcement Banner */
#announcement-bar {
  background: linear-gradient(90deg, #6c4eff 0%, #38bdf8 50%, #35d0a1 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 300;
  box-shadow: 0 2px 12px rgba(108, 78, 255, 0.2);
  min-height: 42px;
}

.banner-badge {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.banner-btn {
  background: #ffffff;
  color: var(--v);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.25s ease;
  margin-left: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.banner-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Smart Floating Header */
header {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 250;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
}

header.is-scrolled {
  top: 10px;
}

.nav-pill {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1.5px solid rgba(108, 78, 255, 0.22);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px 7px 14px;
  box-shadow: inset 0 2px #ffffff,
              inset 0 -1px rgba(108, 78, 255, 0.1),
              0 10px 32px rgba(108, 78, 255, 0.14),
              0 24px 60px rgba(108, 78, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 1280px;
  width: 100%;
  justify-content: space-between;
}

header.is-scrolled .nav-pill,
.nav-pill.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border-color: rgba(108, 78, 255, 0.38);
  box-shadow: inset 0 2px #ffffff,
              0 12px 40px rgba(108, 78, 255, 0.22),
              0 24px 60px rgba(18, 11, 46, 0.12);
  padding: 6px 10px 6px 14px;
}

/* Brand Section */
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo-img {
  height: 32px;
  width: auto;
  max-width: 155px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-brand-group:hover .header-logo-img {
  transform: scale(1.04);
}
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.live-ai-pill {
  background: #edfff8;
  border: 1.5px solid rgba(53, 208, 161, 0.4);
  color: #25bc8e;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #35d0a1;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #35d0a1;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* Center Nav Pills */
.nav-pill-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-item-pill {
  background: #ffffff;
  border: 1.5px solid rgba(108, 78, 255, 0.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  color: #2b1e54;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px #ffffff, 0 2px 6px rgba(108, 78, 255, 0.05);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-item-pill:hover {
  color: var(--v);
  background: linear-gradient(145deg, #ffffff 0%, #f4f0ff 100%);
  border-color: rgba(108, 78, 255, 0.38);
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 2px #ffffff, 0 6px 16px rgba(108, 78, 255, 0.18);
}

.nav-item-pill.active {
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 100%);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(108, 78, 255, 0.45);
}

.nav-item-pill .chevron-icon {
  font-size: 9px;
  color: #6c4eff;
  transition: transform 0.25s ease;
  margin-left: 1px;
}

.nav-item-pill.active .chevron-icon {
  color: #ffffff;
}

.nav-dropdown-wrapper:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Nav Dropdown Menus */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1.5px solid rgba(108, 78, 255, 0.25);
  border-radius: 20px;
  padding: 12px;
  width: 270px;
  box-shadow: 0 16px 48px rgba(108, 78, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 400;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dd-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.dd-link:hover {
  background: rgba(108, 78, 255, 0.08);
  color: var(--v);
  transform: translateX(4px);
}

.dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(108, 78, 255, 0.1);
  color: var(--v);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Right Action Buttons */
.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-nav-cta {
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 45%, #5338e8 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.35),
              0 6px 20px rgba(108, 78, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.45),
              0 10px 28px rgba(108, 78, 255, 0.55);
}

.nav-burger {
  display: none;
  background: rgba(108, 78, 255, 0.08);
  border-radius: 12px;
  padding: 9px;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  width: 20px;
  height: 2px;
  background: var(--v);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 110px;
  left: 16px;
  right: 16px;
  z-index: 240;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1.5px solid rgba(108, 78, 255, 0.25);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(108, 78, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

header.is-scrolled ~ .mobile-nav-drawer {
  top: 65px;
}

.mobile-nav-item {
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.mobile-nav-item:hover {
  background: rgba(108, 78, 255, 0.08);
  color: var(--v);
}

/* Hero Section 16:9 Widescreen Ratio */
#hero {
  padding: 110px 24px 50px;
  position: relative;
  background: url('assets/hero_canvas_bg.jpg') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(620px, 56.25vw, 840px);
}

@media (min-width: 992px) {
  #hero {
    aspect-ratio: 16 / 9;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}

/* Right Column 3D Orbiting Polaroid Photographic Carousel Showcase */
.hero-collage-col {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Right Column 3D Orbiting Polaroid Photographic Carousel Showcase */
.hero-collage-col {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.polaroid-collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  padding: 10px;
}

/* 3D Infinite Circular Orbit Ring (Additional 10% Larger Dimensions) */
.polaroid-3d-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 278px;
  height: 356px;
  margin-top: -178px;
  margin-left: -139px;
  transform-style: preserve-3d;
  animation: orbitRotate 26s linear infinite;
  will-change: transform;
}

/* Pause 3D Carousel rotation smoothly when user hovers */
.polaroid-collage-wrapper:hover .polaroid-3d-ring {
  animation-play-state: paused;
}

@keyframes orbitRotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.polaroid-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 278px;
  margin: 0 !important;
  backface-visibility: visible;
  transform-style: preserve-3d;
  pointer-events: auto;
}

/* Claymorphism 3D Inflated Card Container with Inset Shadows & Soft Rounded Corners */
.polaroid-card-inner {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  padding: 10px 10px 14px 10px;
  border-radius: 22px;
  /* Claymorphism 3D Dual Inset Highlight/Shadow + Soft Floating Outer Drop Shadow */
  box-shadow: 
    inset 4px 4px 8px rgba(255, 255, 255, 0.95), 
    inset -4px -4px 10px rgba(15, 23, 42, 0.08),
    0 22px 45px -8px rgba(15, 23, 42, 0.28), 
    0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.45s ease,
              border-color 0.45s ease;
  cursor: pointer;
  will-change: transform, box-shadow;
  border: 2px solid rgba(255, 255, 255, 0.85);
  transform-style: preserve-3d;
}

/* 10 Pure Bridal & Wedding Photography Radial 3D Positions (36 deg Intervals around 360px Radius) */
.p-card-1  { transform: rotateY(0deg) translateZ(360px); z-index: 10; }
.p-card-1 .polaroid-img-box { height: 175px; }

.p-card-2  { transform: rotateY(36deg) translateZ(360px); z-index: 9; }
.p-card-2 .polaroid-img-box { height: 155px; }

.p-card-3  { transform: rotateY(72deg) translateZ(360px); z-index: 8; }
.p-card-3 .polaroid-img-box { height: 185px; }

.p-card-4  { transform: rotateY(108deg) translateZ(360px); z-index: 7; }
.p-card-4 .polaroid-img-box { height: 160px; }

.p-card-5  { transform: rotateY(144deg) translateZ(360px); z-index: 6; }
.p-card-5 .polaroid-img-box { height: 155px; }

.p-card-6  { transform: rotateY(180deg) translateZ(360px); z-index: 5; }
.p-card-6 .polaroid-img-box { height: 180px; }

.p-card-7  { transform: rotateY(216deg) translateZ(360px); z-index: 6; }
.p-card-7 .polaroid-img-box { height: 165px; }

.p-card-8  { transform: rotateY(252deg) translateZ(360px); z-index: 7; }
.p-card-8 .polaroid-img-box { height: 175px; }

.p-card-9  { transform: rotateY(288deg) translateZ(360px); z-index: 8; }
.p-card-9 .polaroid-img-box { height: 160px; }

.p-card-10 { transform: rotateY(324deg) translateZ(360px); z-index: 9; }
.p-card-10 .polaroid-img-box { height: 185px; }

/* Dynamic Claymorphism Pop-Up & Giggle Wiggle Animation Keyframes */
@keyframes clayGiggle {
  0% {
    transform: scale(1.24) translateY(-22px) translateZ(120px) rotate(0deg);
  }
  18% {
    transform: scale(1.27) translateY(-26px) translateZ(130px) rotate(-5.5deg);
  }
  36% {
    transform: scale(1.28) translateY(-21px) translateZ(130px) rotate(5.5deg);
  }
  54% {
    transform: scale(1.25) translateY(-24px) translateZ(125px) rotate(-3.5deg);
  }
  72% {
    transform: scale(1.26) translateY(-22px) translateZ(122px) rotate(2deg);
  }
  90% {
    transform: scale(1.25) translateY(-23px) translateZ(120px) rotate(-1deg);
  }
  100% {
    transform: scale(1.25) translateY(-22px) translateZ(120px) rotate(0deg);
  }
}

/* Mouse Hover Pop-Up & Giggle Elevation towards Camera */
.polaroid-card:hover {
  z-index: 100 !important;
}

.polaroid-card:hover .polaroid-card-inner {
  animation: clayGiggle 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 
    inset 6px 6px 12px #ffffff, 
    inset -6px -6px 14px rgba(15, 23, 42, 0.12), 
    0 45px 95px -10px rgba(15, 23, 42, 0.45), 
    0 20px 45px rgba(99, 102, 241, 0.28);
  filter: brightness(1.07) contrast(1.04);
  border-color: #ffffff;
}

.polaroid-img-box {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  /* Clay Inner Photo Frame Inset Depth */
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Ultra HD Sharpness, Contrast & Vibrant Color Filters */
.polaroid-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.09) brightness(1.05) saturate(1.14);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.polaroid-card:hover .polaroid-img-box img {
  transform: scale(1.08);
  filter: contrast(1.14) brightness(1.06) saturate(1.18);
}

/* Script & Handwritten Cursive Typography */
.script-caption {
  font-family: 'Caveat', cursive !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #2b231d !important;
  text-align: center;
  margin-top: 6px;
  line-height: 1.15;
}

.large-script {
  font-size: 17.5px !important;
}

.cursive-accent {
  font-family: 'Dancing Script', 'Caveat', cursive !important;
  font-size: 1.12em;
  font-weight: 700;
  color: var(--v);
}

.hero-top-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #8a7360;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-social-and-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-bottom-quote {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #5c4839;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

/* Floating Paper Scrap Note Tags matching reference image */
.paper-note-tag {
  position: absolute;
  background: #fdfaf2;
  border: 1px solid rgba(210, 195, 175, 0.5);
  box-shadow: 0 6px 18px rgba(35, 25, 15, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 6px 12px;
  border-radius: 2px;
  font-family: 'Caveat', cursive;
  font-size: 15.5px;
  font-weight: 700;
  color: #2d241d;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  z-index: 25;
}

.paper-note-tag .tape-mini {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 28px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(180, 180, 180, 0.3);
  backdrop-filter: blur(2px);
}

.note-tag-1 {
  top: -24px;
  left: -28px;
  transform: rotate(-9deg);
  background: #fdfcf7;
}

.note-tag-2 {
  top: -22px;
  right: -24px;
  transform: rotate(7deg);
  background: #faf6eb;
}

.note-tag-3 {
  top: 18px;
  left: -48px;
  transform: rotate(-6deg);
  background: #fefce8; /* warm light yellow post-it tint */
  border-color: rgba(225, 205, 150, 0.6);
  padding: 8px 12px;
}

.note-tag-4 {
  top: 36px;
  right: -42px;
  transform: rotate(5deg);
  background: #fdfaf4;
}

.note-tag-6 {
  bottom: -16px;
  left: 8px;
  transform: rotate(-4deg);
  background: #fefdfa;
}

/* Decorative Velvet Ribbons & Vintage Wax Seal Stamp */
.decor-ribbon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, #7c182b 0%, #5b0c1b 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.decor-ribbon-top-right {
  top: -18px;
  right: 28px;
  width: 38px;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
  transform: rotate(14deg);
}

.decor-ribbon-bottom-right {
  bottom: -22px;
  right: -8px;
  width: 44px;
  height: 120px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  transform: rotate(-10deg);
}

.decor-wax-seal {
  position: absolute;
  top: 48%;
  right: -26px;
  transform: translateY(-50%) rotate(12deg);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #bf8354, #87522a 65%, #523013);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 
              inset 0 -3px 6px rgba(0, 0, 0, 0.6), 
              0 8px 20px rgba(0, 0, 0, 0.35);
  border: 2px solid #a36838;
  z-index: 30;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.decor-wax-seal::after {
  content: '🌿';
  font-size: 18px;
  opacity: 0.85;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.decor-wax-seal:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.12);
}

/* Dried Baby's Breath Flower Branch Sprays */
.decor-flower-spray {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.decor-flower-left {
  top: 30%;
  left: -32px;
  width: 60px;
  height: 140px;
}

.decor-flower-right {
  top: -10px;
  right: -20px;
  width: 70px;
  height: 90px;
}

/* Decorative Washi Tape Accent */
.polaroid-tape {
  position: absolute;
  top: -8px;
  width: 46px;
  height: 15px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 200, 200, 0.4);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.polaroid-tape.top-center { left: 50%; transform: translateX(-50%) rotate(-2deg); }
.polaroid-tape.top-left { left: 15px; transform: rotate(-8deg); }
.polaroid-tape.top-right { right: 15px; transform: rotate(6deg); }

/* Mobile View Random Twinkling Effect (1 second trigger) */
.polaroid-card.mobile-twinkle {
  transform: scale(1.12) translateY(-8px) rotate(0deg) !important;
  z-index: 40 !important;
  box-shadow: 0 20px 45px rgba(108, 78, 255, 0.45), 0 0 25px rgba(255, 255, 255, 0.9) !important;
  filter: brightness(1.18) contrast(1.05) !important;
}

/* Section-Wide Sparkling & Twinkling Hearts & Stars Overlay Across Entire Hero */
.full-hero-sparkles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.f-sparkle {
  position: absolute;
  user-select: none;
  animation: heroEntireTwinkleSparkle linear infinite alternate;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.85));
  will-change: transform, opacity, filter;
  opacity: 0.2;
}

@keyframes heroEntireTwinkleSparkle {
  0% {
    opacity: 0.12;
    transform: scale(0.65) rotate(0deg) translateY(0px);
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
  }
  50% {
    opacity: 0.95;
    transform: scale(1.3) rotate(15deg) translateY(-6px);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.95)) drop-shadow(0 0 18px rgba(255, 105, 180, 0.8));
  }
  100% {
    opacity: 0.25;
    transform: scale(0.75) rotate(-10deg) translateY(4px);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  }
}

/* 16 Randomly Distributed Sparkles Across Full Hero Canvas */
.f-sparkle.fs-1  { top: 5%; left: 3%; font-size: 22px; animation-duration: 2.3s; animation-delay: 0s; }
.f-sparkle.fs-2  { top: 14%; left: 24%; font-size: 18px; animation-duration: 2.9s; animation-delay: 0.5s; color: #ff3b6f; }
.f-sparkle.fs-3  { top: 38%; left: 2%; font-size: 20px; animation-duration: 2.1s; animation-delay: 1.1s; }
.f-sparkle.fs-4  { top: 56%; left: 28%; font-size: 16px; animation-duration: 3.2s; animation-delay: 0.3s; color: #ff477e; }
.f-sparkle.fs-5  { top: 82%; left: 4%; font-size: 24px; animation-duration: 2.6s; animation-delay: 0.8s; }
.f-sparkle.fs-6  { bottom: 10%; left: 22%; font-size: 19px; animation-duration: 3.0s; animation-delay: 1.4s; color: #ff3b6f; }
.f-sparkle.fs-7  { top: 8%; left: 48%; font-size: 17px; animation-duration: 2.4s; animation-delay: 1.8s; }
.f-sparkle.fs-8  { bottom: 5%; left: 45%; font-size: 21px; animation-duration: 2.7s; animation-delay: 0.2s; color: #ff3b6f; }
.f-sparkle.fs-9  { top: 4%; right: 26%; font-size: 23px; animation-duration: 2.2s; animation-delay: 0.6s; }
.f-sparkle.fs-10 { top: 18%; right: 3%; font-size: 20px; animation-duration: 3.4s; animation-delay: 1.0s; }
.f-sparkle.fs-11 { top: 46%; right: 2%; font-size: 22px; animation-duration: 2.0s; animation-delay: 1.6s; color: #ff3b6f; }
.f-sparkle.fs-12 { bottom: 8%; right: 4%; font-size: 24px; animation-duration: 2.8s; animation-delay: 0.4s; }
.f-sparkle.fs-13 { top: 38%; right: 24%; font-size: 17px; animation-duration: 3.1s; animation-delay: 1.2s; color: #ff477e; }
.f-sparkle.fs-14 { bottom: 18%; right: 26%; font-size: 19px; animation-duration: 2.5s; animation-delay: 0.9s; }
.f-sparkle.fs-15 { top: 68%; right: 12%; font-size: 21px; animation-duration: 2.8s; animation-delay: 1.7s; }
.f-sparkle.fs-16 { top: 26%; left: 42%; font-size: 18px; animation-duration: 3.3s; animation-delay: 0.7s; color: #ff3b6f; }

/* Magical Shining & Twinkling Small Hearts & Stars Overlay */
.hero-sparkles-container {
  position: absolute;
  inset: -24px -20px;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}

.sparkle-item {
  position: absolute;
  user-select: none;
  animation: heroSparkleTwinkle linear infinite alternate;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.85));
  will-change: transform, opacity, filter;
}

@keyframes heroSparkleTwinkle {
  0% {
    opacity: 0.15;
    transform: scale(0.65) rotate(0deg) translateY(0px);
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(14deg) translateY(-5px);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1)) drop-shadow(0 0 22px rgba(255, 105, 180, 0.9));
  }
  100% {
    opacity: 0.25;
    transform: scale(0.75) rotate(-12deg) translateY(3px);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
  }
}

/* Random positioning & delays for each heart & star */
.sparkle-item.s-heart-1 { top: 0%; left: -10px; font-size: 22px; animation-duration: 2.2s; animation-delay: 0s; }
.sparkle-item.s-star-1  { top: 5%; right: 10px; font-size: 24px; animation-duration: 2.8s; animation-delay: 0.4s; }
.sparkle-item.s-star-2  { top: 38%; left: -22px; font-size: 19px; animation-duration: 1.9s; animation-delay: 0.8s; }
.sparkle-item.s-heart-2 { top: 44%; right: -18px; font-size: 25px; animation-duration: 3.1s; animation-delay: 1.2s; color: #ff3b6f; }
.sparkle-item.s-star-3  { bottom: 8%; left: -8px; font-size: 21px; animation-duration: 2.4s; animation-delay: 0.3s; }
.sparkle-item.s-heart-3 { bottom: 2%; right: 15px; font-size: 23px; animation-duration: 2.7s; animation-delay: 0.9s; }
.sparkle-item.s-star-4  { top: 22%; left: 46%; font-size: 17px; animation-duration: 2.1s; animation-delay: 1.5s; }
.sparkle-item.s-star-5  { bottom: 26%; right: 42%; font-size: 20px; animation-duration: 3.3s; animation-delay: 0.6s; }
.sparkle-item.s-heart-4 { top: 72%; left: -18px; font-size: 20px; animation-duration: 2.6s; animation-delay: 1.1s; }
.sparkle-item.s-star-6  { top: -2%; right: 40%; font-size: 22px; animation-duration: 2.9s; animation-delay: 0.7s; }

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.40);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #047857;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.hero-badge i {
  color: #10b981;
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .gt {
  background: linear-gradient(135deg, #3730a3 0%, #1d4ed8 55%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin: 0 0 24px;
  max-width: 580px;
  font-weight: 600;
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Floating Hero Background Controls */
.hero-bg-indicators {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(108, 78, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(108, 78, 255, 0.1);
  margin-top: 10px;
}

.hero-bg-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-bg-indicators .dot.active {
  width: 28px;
  background: var(--v);
}

.btn-hero-primary {
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 45%, #5338e8 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.35),
              0 10px 28px rgba(108, 78, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.45),
              0 16px 40px rgba(108, 78, 255, 0.6);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--v);
  border: 1.5px solid rgba(108, 78, 255, 0.3);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(108, 78, 255, 0.08);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(108, 78, 255, 0.06);
  border-color: var(--v);
  transform: translateY(-2px);
}

/* Hero Working Social Media Row with Original Colors */
.hero-social-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(108, 78, 255, 0.20);
  padding: 8px 18px 8px 20px;
  border-radius: 999px;
  margin-top: 14px;
  margin-bottom: 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.hero-social-label {
  font-size: 13px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hero-social-btn:hover {
  transform: translateY(-3px) scale(1.12);
}

/* Official Social Media Colors */
.hero-social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

.hero-social-btn.facebook {
  background: #1877F2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}

.hero-social-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.hero-social-btn.tiktok {
  background: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Event Types Pill Marquee */
.event-pills-wrap {
  margin-top: 10px;
}

.event-pills-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.event-pills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-pill {
  background: #ffffff;
  border: 1px solid rgba(108, 78, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.event-pill:hover {
  border-color: var(--v);
  color: var(--v);
  transform: scale(1.05);
}

/* Hero Carousel with Fade Out Effect (All 4 Images) */
.hero-media-container {
  position: relative;
  perspective: 1000px;
}

.hero-carousel-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 2px #ffffff,
              0 20px 60px rgba(108, 78, 255, 0.25);
  border: 2px solid rgba(108, 78, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #0d0822;
  aspect-ratio: 16 / 10;
}

.hero-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.hero-carousel-indicators {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 8, 34, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-carousel-indicators .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel-indicators .dot.active {
  background: #35d0a1;
  width: 22px;
  border-radius: 999px;
  box-shadow: 0 0 10px #35d0a1;
}

/* Floating AI Scanning Badge on Hero Image */
.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(13, 8, 34, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.badge-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #35d0a1 0%, #38bdf8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}

.stat-info h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  transition: all 0.3s ease;
}

.stat-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Sections Base Styling */
section {
  padding: 95px 24px;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 78, 255, 0.08);
  border: 1px solid rgba(108, 78, 255, 0.25);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--v);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 600;
}

/* How PicsNest Works (5 Steps) */
#how-it-works {
  background: linear-gradient(180deg, #fafbff 0%, #f4f1ff 100%);
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-card {
  padding: 26px 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(108, 78, 255, 0.35);
}

.step-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 600;
}

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 32px;
  font-size: 18px;
  font-weight: 900;
  color: var(--v);
  opacity: 0.5;
}

/* AI Scanner Simulation Widget Grid */
.ai-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.ai-scan-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0a26;
  border: 2px solid rgba(108, 78, 255, 0.3);
  width: 100%;
}

.ai-scan-box img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.ai-scan-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #35d0a1 20%, #38bdf8 50%, #6c4eff 80%, transparent 100%);
  box-shadow: 0 0 16px #38bdf8, 0 0 32px #35d0a1;
  animation: laserScan 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 20;
}

@keyframes laserScan {
  0% { top: 0%; opacity: 0.8; }
  50% { top: 96%; opacity: 1; }
  100% { top: 0%; opacity: 0.8; }
}

/* Individual Face Bounding Box & HUD Elements */
.ai-face-box {
  position: absolute;
  border: 1.5px solid rgba(53, 208, 161, 0.85);
  border-radius: 12px;
  box-shadow: 0 0 14px rgba(53, 208, 161, 0.5);
  z-index: 15;
  transition: all 0.3s ease;
  animation: pulseFaceBox 2.5s ease-in-out infinite alternate;
}

@keyframes pulseFaceBox {
  0% { transform: scale(1); border-color: rgba(53, 208, 161, 0.7); box-shadow: 0 0 10px rgba(53, 208, 161, 0.4); }
  100% { transform: scale(1.05); border-color: rgba(56, 189, 248, 0.95); box-shadow: 0 0 22px rgba(56, 189, 248, 0.8); }
}

/* Four Corner HUD Brackets */
.scan-corner {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: #35d0a1;
  border-style: solid;
}

.scan-corner.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; border-top-left-radius: 4px; }
.scan-corner.tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; border-top-right-radius: 4px; }
.scan-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; border-bottom-left-radius: 4px; }
.scan-corner.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; border-bottom-right-radius: 4px; }

/* In-Box Laser Scan Line */
.face-scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: faceBeamScan 2s ease-in-out infinite alternate;
}

@keyframes faceBeamScan {
  0% { top: 0%; }
  100% { top: 90%; }
}

/* Match Percentage Pill Tag above Box */
.face-match-tag {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 8, 34, 0.88);
  border: 1px solid #35d0a1;
  color: #35d0a1;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.face-match-tag.tag-below {
  bottom: auto;
  top: calc(100% + 4px);
}

.face-match-tag.highlight {
  background: linear-gradient(135deg, #35d0a1 0%, #38bdf8 100%);
  color: #0d0822;
  border-color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(53, 208, 161, 0.8);
  transform: translateX(-50%) scale(1.08);
}

.face-match-tag.highlight-groom {
  background: linear-gradient(135deg, #ffc857 0%, #ff8c42 100%);
  color: #0d0822;
  border-color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(255, 200, 87, 0.8);
  transform: translateX(-50%) scale(1.08);
}

/* Exact Multi-Face Detection Calibrated Coordinates for Mandap Wedding Photo (6 Faces) */
.ai-face-box.f1 { top: 16.0%; left: 17.2%; width: 5.6%; height: 8.4%; animation-delay: 0s; }    /* Bridesmaid 1 (Far-Left) */
.ai-face-box.f2 { top: 22.0%; left: 27.7%; width: 5.6%; height: 8.4%; animation-delay: 0.3s; }  /* Bridesmaid 2 (Mid-Left) */
.ai-face-box.f3 { top: 39.5%; left: 42.0%; width: 6.0%; height: 9.0%; animation-delay: 0.6s; border-color: #38bdf8; } /* Bride (MATCH 99.9%) */
.ai-face-box.f4 { top: 38.0%; left: 55.0%; width: 6.0%; height: 9.0%; animation-delay: 0.9s; border-color: #ffc857; } /* Groom (MATCH 99.8%) */
.ai-face-box.f5 { top: 22.5%; left: 69.7%; width: 5.6%; height: 8.4%; animation-delay: 1.2s; }  /* Bridesmaid 3 (Mid-Right) */
.ai-face-box.f6 { top: 15.0%; left: 80.7%; width: 5.6%; height: 8.4%; animation-delay: 1.5s; }  /* Bridesmaid 4 (Far-Right) */

.ai-demo-info h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.ai-demo-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 600;
}

.ai-match-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(53, 208, 161, 0.14);
  border: 1.5px solid rgba(53, 208, 161, 0.4);
  color: #0d694d;
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
}

/* Image Showcase Galleries */
#showcase {
  background: #ffffff;
}

.showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-img-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(108, 78, 255, 0.15);
  border: 1.5px solid rgba(108, 78, 255, 0.18);
}

.showcase-img-box img {
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.showcase-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.showcase-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 600;
}

.showcase-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(53, 208, 161, 0.18);
  color: #1a9670;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Before vs After Section */
#before-after {
  background: linear-gradient(180deg, #f4f1ff 0%, #fafbff 100%);
}

.comparison-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comp-card {
  padding: 36px;
  border-radius: 28px;
  position: relative;
}

.comp-card.before {
  background: #ffffff;
  border: 1.5px solid rgba(255, 107, 107, 0.3);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
  color: var(--text-dark);
}

.comp-card.after {
  background: linear-gradient(145deg, #7c5eff 0%, #6c4eff 50%, #4c2ee8 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 44px rgba(108, 78, 255, 0.35);
  color: #ffffff !important;
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comp-card.after .comp-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.comp-badge {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
}

.comp-card.before .comp-badge {
  background: rgba(255, 107, 107, 0.15);
  color: #d93838;
}

.comp-card.after .comp-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.comp-card.before .comp-item {
  color: #231847;
}

.comp-card.after .comp-item {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.comp-item-icon {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Key Features Grid */
#features {
  background: #ffffff;
}

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

.feature-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: #ffffff;
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: inset 0 2px #ffffff, 0 4px 14px rgba(108, 78, 255, 0.15);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18.5px;
  font-weight: 800;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 600;
}

/* Analytics Spotlight Section (Dark Mode) */
#analytics-spotlight {
  background: linear-gradient(160deg, #0d0822 0%, #160f36 50%, #1a1040 100%);
  color: #ffffff;
}

#analytics-spotlight .section-title {
  color: #ffffff;
}

#analytics-spotlight .section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.analytics-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(108, 78, 255, 0.6);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* Pre-Registration Section & Form */
#preregister {
  background: linear-gradient(180deg, #fafbff 0%, #f4f0ff 100%);
}

.register-card-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px;
  background: #ffffff;
  border-radius: 32px;
  border: 2px solid rgba(108, 78, 255, 0.2);
  box-shadow: 0 20px 60px rgba(108, 78, 255, 0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  background: #fafbff;
  border: 1.5px solid rgba(108, 78, 255, 0.22);
  padding: 13px 18px;
  border-radius: 14px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s ease;
  font-weight: 600;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--v);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(108, 78, 255, 0.15);
}

.btn-submit-preregister {
  width: 100%;
  background: linear-gradient(145deg, #8b72ff 0%, #6c4eff 45%, #5338e8 100%);
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.35),
              0 10px 28px rgba(108, 78, 255, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-preregister:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.45),
              0 16px 40px rgba(108, 78, 255, 0.6);
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success-message.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #40e8b4 0%, #35d0a1 100%);
  color: #ffffff;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 28px rgba(53, 208, 161, 0.45);
}

.form-error-alert {
  display: none;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid #ff6b6b;
  color: #d93838;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* FAQ Accordion */
#faq {
  background: #ffffff;
}

.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(108, 78, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--v);
  box-shadow: 0 8px 24px rgba(108, 78, 255, 0.14);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  background: rgba(108, 78, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--v);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--v);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: #2e254e;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* Footer Section */
footer {
  background: #0b071e;
  color: #ffffff;
  padding: 85px 24px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(167, 139, 250, 0.45)) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 340px;
  font-weight: 600;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--v);
  border-color: var(--v);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(108, 78, 255, 0.5);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 7, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 28px;
  max-width: 640px;
  width: 100%;
  padding: 36px;
  position: relative;
  border: 1.5px solid rgba(108, 78, 255, 0.25);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(108, 78, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

/* --------------------------------------------------------------------------
   Conversion Optimization Components (10/10 Launch Upgrade)
   -------------------------------------------------------------------------- */

/* Hero Value Steps Bar */
.hero-value-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid rgba(108, 78, 255, 0.25);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.h-step {
  font-size: 13px;
  font-weight: 800;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.h-step span {
  background: #1e1b4b;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.h-step.highlight span {
  background: linear-gradient(135deg, #059669 0%, #0284c7 100%);
}

.h-arrow {
  color: #1e293b;
  font-weight: 900;
  font-size: 11px;
}

/* Hero Trust Bullets */
.hero-trust-bullets {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
  flex-wrap: wrap;
}

.hero-trust-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-bullets i {
  color: #047857;
  font-size: 15px;
  margin-right: 2px;
}

/* 02 Live WOW Demo Component */
#live-demo {
  padding: 80px 20px;
}

.wow-demo-card {
  padding: 36px 30px;
  background: #ffffff;
  border-radius: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.wow-flow-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: 18px 24px;
  background: rgba(108, 78, 255, 0.04);
  border-radius: 20px;
  border: 1px dashed rgba(108, 78, 255, 0.2);
  flex-wrap: wrap;
  gap: 14px;
}

.wow-node {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wn-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--v);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(108, 78, 255, 0.12);
}

.wow-node.highlight .wn-icon {
  background: linear-gradient(135deg, #6c4eff 0%, #35d0a1 100%);
  color: #ffffff;
}

.wn-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

.wn-label strong {
  color: var(--text-dark);
  font-size: 14px;
}

.wow-connector {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--v) 0 6px, transparent 6px 12px);
  min-width: 20px;
}

.matched-gallery-preview {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

.mg-thumb {
  position: relative;
  width: 90px;
  max-width: 30%;
  height: 70px;
  max-height: 70px;
  border-radius: 12px;
  overflow: hidden !important;
  border: 2px solid rgba(53, 208, 161, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  box-sizing: border-box;
}

.mg-thumb img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.mg-tag {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: rgba(18, 11, 46, 0.85);
  color: #ffffff;
  font-size: 8.5px;
  padding: 1px 4px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 03 SaaS Dashboard Component */
#dashboard-preview {
  padding: 80px 20px;
}

.dashboard-mockup-card {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.dash-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(108, 78, 255, 0.1);
  margin-bottom: 24px;
}

.dash-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.dash-dots span:nth-child(1) { background: #ff6b6b; }
.dash-dots span:nth-child(2) { background: #ffc857; }
.dash-dots span:nth-child(3) { background: #35d0a1; }

.dash-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.dash-status {
  font-size: 11px;
  font-weight: 800;
  color: #25bc8e;
  background: rgba(53, 208, 161, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.dash-metric-item {
  background: rgba(108, 78, 255, 0.03);
  border: 1px solid rgba(108, 78, 255, 0.1);
  padding: 16px 20px;
  border-radius: 18px;
}

.dash-metric-item.highlight {
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
  border-color: rgba(108, 78, 255, 0.25);
}

.dm-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.dm-val {
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.dm-sub {
  font-size: 11px;
  color: var(--v);
  font-weight: 700;
  margin-top: 4px;
}

.dash-showcase-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.dash-preview-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(108, 78, 255, 0.12);
}

.dash-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.df-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(108, 78, 255, 0.1);
}

.df-item i {
  font-size: 20px;
  margin-top: 2px;
}

.df-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.df-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* 06 Built For Section */
#built-for {
  padding: 80px 20px;
}

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

.uc-card {
  padding: 28px 24px;
  border-radius: 22px;
}

.uc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(108, 78, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.uc-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.uc-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 07 Why PicsNest Comparison Matrix */
#why-picsnest {
  padding: 80px 20px;
}

.matrix-card {
  padding: 24px;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th, .matrix-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(108, 78, 255, 0.1);
  font-size: 14.5px;
}

.matrix-table th {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.matrix-table th.pn-col, .matrix-table td.pn-col {
  background: rgba(108, 78, 255, 0.06);
  color: var(--v);
  font-weight: 700;
}

.matrix-table th.pn-col {
  border-radius: 12px 12px 0 0;
  font-size: 16px;
  color: var(--v);
}

/* 09 Privacy & Security Section */
#privacy {
  padding: 80px 20px;
}

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

.priv-card {
  padding: 26px 22px;
}

.priv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(108, 78, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.priv-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.priv-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 10 Social Proof & Beta Community */
#social-proof {
  padding: 70px 20px;
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-stat-card {
  padding: 30px 20px;
  text-align: center;
}

.ps-number {
  font-size: 42px;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 6px;
}

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

/* Pre-Registration Form Launch Offer Banner */
.launch-offer-banner {
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
  border: 1.5px solid rgba(108, 78, 255, 0.25);
  padding: 14px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-dark);
}

.launch-offer-banner strong {
  color: var(--v);
}

/* Optional Form Toggle Button */
.optional-toggle-wrap {
  text-align: center;
  margin: 6px 0 10px;
}

.btn-toggle-optional {
  background: none;
  border: none;
  color: var(--v);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-toggle-optional:hover {
  text-decoration: underline;
}

/* 13 Final CTA Card */
#final-cta {
  padding: 80px 20px;
}

.final-cta-card {
  padding: 50px 30px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Overrides for New Components */
@media (max-width: 992px) {
  .use-cases-grid, .privacy-grid, .dash-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-showcase-row {
    grid-template-columns: 1fr;
  }
  .wow-flow-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .wow-connector {
    display: none;
  }
}

@media (max-width: 600px) {
  .use-cases-grid, .privacy-grid, .proof-stats-grid, .dash-metrics-grid {
    grid-template-columns: 1fr;
  }
  .hero-value-steps {
    border-radius: 20px;
  }
}

/* Scroll Reveal Animations */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rv.on {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* Responsive Adjustments & Breakpoints */
@media (max-width: 1250px) {
  .nav-pill-group {
    gap: 4px;
  }
  .nav-item-pill {
    padding: 6px 11px;
    font-size: 12.5px;
  }
}

@media (max-width: 1100px) {
  header {
    top: 48px;
  }

  .nav-pill-group, .btn-nav-outline, .btn-nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr 1.05fr;
    text-align: left;
    gap: 24px;
  }

  .event-pills-tags {
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-item, .showcase-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #announcement-bar {
    height: 34px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
    gap: 6px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    z-index: 200;
  }

  .banner-text {
    display: none !important; /* Keep announcement bar strictly 1-line 34px on mobile */
  }

  .banner-badge {
    padding: 2px 7px;
    font-size: 9.5px;
  }

  .banner-btn {
    padding: 2px 8px;
    font-size: 10.5px;
    margin-left: 0;
  }

  header {
    top: 36px;
    z-index: 400; /* Ensure header floats above all content */
    padding: 0 10px;
  }

  header.is-scrolled {
    top: 6px;
  }

  /* Hero Section Mobile View: Visible Canvas Background Top/Bottom & Layered Polaroid Collage Behind Text */
  #hero {
    padding-top: 135px !important;
    padding-bottom: 85px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    position: relative !important;
    background: url('assets/hero_canvas_bg.jpg') center/cover no-repeat !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .hero-container {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    display: block !important;
    width: 100% !important;
  }

  .hero-text-col {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
  }

  .hero-badge {
    position: relative;
    z-index: 12;
    font-size: 11.5px;
    padding: 6px 14px;
    margin-bottom: 14px;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    line-height: 1.35;
    background: rgba(237, 255, 248, 0.94) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.12);
  }

  .hero-title {
    position: relative;
    z-index: 12;
    font-size: clamp(26px, 7.2vw, 38px);
    margin-bottom: 14px;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 0 24px #ffffff;
  }

  .hero-subtitle {
    position: relative;
    z-index: 12;
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }

  .hero-value-steps {
    position: relative;
    z-index: 12;
    border-radius: 18px;
    padding: 10px 12px;
    gap: 6px 8px;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 24px rgba(108, 78, 255, 0.12);
  }

  .h-step {
    font-size: 11.5px;
    white-space: nowrap;
  }

  .h-arrow {
    font-size: 9px;
  }

  .hero-actions {
    position: relative;
    z-index: 12;
    width: 100%;
    gap: 10px;
    margin-bottom: 18px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14.5px;
  }

  .hero-trust-bullets {
    position: relative;
    z-index: 12;
    gap: 6px 12px;
    font-size: 12px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-flex;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.85);
  }

  .hero-social-row {
    position: relative;
    z-index: 12;
    width: auto;
    display: inline-flex;
    justify-content: flex-start;
    padding: 8px 16px;
    gap: 10px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  /* Layered Polaroid Collage Backdrop Behind Text */
  .hero-collage-col {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    max-width: 460px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 0.38 !important;
    margin-top: 0 !important;
  }

  .polaroid-collage-wrapper {
    max-width: 100%;
    height: 380px;
    padding: 0;
  }

  .polaroid-3d-ring {
    width: 170px;
    height: 230px;
  }

  .polaroid-card {
    width: 170px;
    padding: 5px 5px 12px 5px;
  }

  .p-card-1 { transform: rotateY(0deg) translateZ(150px) rotate(-4deg); }
  .p-card-2 { transform: rotateY(60deg) translateZ(150px) rotate(4deg); }
  .p-card-3 { transform: rotateY(120deg) translateZ(150px) rotate(-3deg); }
  .p-card-4 { transform: rotateY(180deg) translateZ(150px) rotate(5deg); }
  .p-card-5 { transform: rotateY(240deg) translateZ(150px) rotate(-5deg); }
  .p-card-6 { transform: rotateY(300deg) translateZ(150px) rotate(3deg); }

  .polaroid-img-box {
    height: 95px;
  }

  .polaroid-caption {
    font-size: 10px;
    margin-top: 4px;
  }

  .hero-social-label {
    font-size: 11px;
  }

  .hero-social-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Dashboard Mockup Mobile Top Bar Fix */
  .dash-top-bar {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  .dash-dots {
    order: 1;
  }

  .dash-status {
    order: 2;
    margin-left: auto;
    font-size: 10px;
    padding: 3px 8px;
  }

  .dash-title {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    font-size: 12px;
    white-space: normal;
    overflow: visible;
    line-height: 1.4;
    margin-top: 2px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .ai-demo-widget {
    grid-template-columns: 1fr;
    padding: 20px 14px;
    gap: 20px;
  }

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

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

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .register-card-wrap {
    padding: 20px 14px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-content {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px !important; /* Prevents iOS Safari input focus auto-zoom */
  }

  /* Mobile Section & Outer Container Strict Boundary Controls */
  section {
    padding: 40px 14px !important;
    overflow-x: hidden !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  /* Live Demo & WOW Card Mobile Alignment Fixes */
  #live-demo {
    padding: 40px 14px !important;
    overflow: hidden !important;
  }

  .wow-demo-card {
    padding: 20px 16px !important;
    border-radius: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .wow-flow-bar {
    padding: 12px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .wow-node {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .wn-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
  }

  .wn-label {
    font-size: 12px !important;
  }

  .wn-label strong {
    font-size: 13px !important;
  }

  .ai-demo-grid, .wow-demo-card .ai-demo-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 20px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .ai-scan-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 180px !important;
    max-height: 220px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .ai-demo-info {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .ai-demo-info h3 {
    font-size: 20px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    color: var(--text-dark) !important;
  }

  .ai-demo-info p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    color: var(--text-muted) !important;
  }

  .matched-gallery-preview {
    display: flex !important;
    gap: 8px !important;
    margin: 14px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mg-thumb {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 0 !important;
    height: 64px !important;
    border-radius: 10px !important;
  }

  .mg-tag {
    font-size: 7.5px !important;
    padding: 1px 2px !important;
  }

  .ai-match-stat-badge {
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    white-space: normal !important;
    word-break: break-word !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

@media (max-width: 576px) {
  header {
    top: 42px;
  }

  header.is-scrolled {
    top: 6px;
  }

  #hero {
    padding-top: 135px !important;
    padding-bottom: 85px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14.5px;
  }

  .hero-value-steps {
    padding: 8px 10px;
    border-radius: 18px;
    gap: 6px;
    justify-content: center;
  }

  .h-step {
    font-size: 11.5px;
  }

  .hero-trust-bullets {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }

  .hero-social-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-floating-badge {
    padding: 10px 12px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .hero-floating-badge .stat-info h4 {
    font-size: 12px;
  }

  .hero-floating-badge .stat-info p {
    font-size: 10px;
  }

  .hero-carousel-indicators {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
  }

  .face-match-tag {
    font-size: 8px;
    padding: 1px 5px;
  }

  .face-match-tag i {
    font-size: 7px;
  }

  .header-logo-img {
    height: 26px;
  }

  .mobile-nav-drawer {
    left: 10px;
    right: 10px;
    padding: 14px;
  }

  .dash-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dash-metric-item {
    padding: 10px 8px;
  }

  .dm-val {
    font-size: 20px;
  }

  .matrix-card {
    padding: 10px 6px;
  }

  .matrix-table th, .matrix-table td {
    padding: 8px 6px;
    font-size: 11.5px;
  }

  .launch-offer-banner {
    padding: 10px 12px;
    font-size: 12px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .final-cta-card {
    padding: 28px 14px;
    border-radius: 18px;
  }

  .final-cta-card h2 {
    font-size: 22px !important;
  }

  .final-cta-card p {
    font-size: 14px !important;
  }
}

/* Claymorphism 3-Photo Event Gallery Grid & Section Showcases */
.clay-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clay-gallery-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 14px;
  border: 1.5px solid rgba(108, 78, 255, 0.2);
  box-shadow: inset 0 2px #ffffff,
              inset 0 -2px rgba(0, 0, 0, 0.05),
              0 14px 40px rgba(108, 78, 255, 0.14);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.clay-gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: inset 0 2px #ffffff,
              0 24px 60px rgba(108, 78, 255, 0.25);
  border-color: var(--v);
}

.clay-gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.clay-gallery-info {
  padding: 12px 6px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clay-gallery-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.clay-gallery-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(108, 78, 255, 0.12);
  color: var(--v);
}

@media (max-width: 992px) {
  .clay-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Interactive Pop-Up Animated Comparison Matrix Makeover */
.comp-matrix-wrapper {
  background: #ffffff;
  border-radius: 32px;
  padding: 24px;
  border: 2px solid rgba(108, 78, 255, 0.2);
  box-shadow: inset 0 2px #ffffff,
              0 24px 70px rgba(108, 78, 255, 0.16);
  max-width: 1140px;
  margin: 0 auto;
}

.comp-matrix-header {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 2.2fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cm-head-col {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cm-head-col.feature {
  background: #1e1b4b;
  color: #ffffff;
}

.cm-head-col.traditional {
  background: #e2e8f0;
  color: #334155;
}

.cm-head-col.picsnest {
  background: linear-gradient(135deg, #6c4eff 0%, #ff8a4c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(108, 78, 255, 0.3);
}

.comp-matrix-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-matrix-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 2.2fr;
  gap: 16px;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.comp-matrix-row.pop-card:hover {
  transform: translateY(-4px) scale(1.015);
}

.cm-cell {
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.cm-cell.feature {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-dark);
}

.cm-cell.traditional {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  font-size: 13.5px;
  color: #475569;
}

.cm-cell.traditional p {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.cm-cell.picsnest {
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.08) 0%, rgba(255, 138, 76, 0.12) 100%);
  border: 1.5px solid rgba(108, 78, 255, 0.3);
  box-shadow: 0 4px 16px rgba(108, 78, 255, 0.08);
  font-size: 14px;
  color: var(--text-dark);
}

.cm-cell.picsnest p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.bad-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.good-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.pop-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(108, 78, 255, 0.15);
  color: var(--v);
  box-shadow: 0 2px 8px rgba(108, 78, 255, 0.15);
  animation: pulsePop 3s infinite ease-in-out;
}

.pop-pill.gold {
  background: rgba(255, 200, 87, 0.25);
  color: #b45309;
}

.pop-pill.green {
  background: rgba(53, 208, 161, 0.2);
  color: #0d694d;
}

@keyframes pulsePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.mini-graphic {
  margin-left: auto;
  font-size: 18px;
  color: #94a3b8;
  flex-shrink: 0;
}

.mini-graphic.ai-glow {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(108, 78, 255, 0.12);
  color: var(--v);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(108, 78, 255, 0.2);
}


@media (max-width: 850px) {
  .comp-matrix-header {
    display: none;
  }

  .comp-matrix-row {
    grid-template-columns: 1fr;
    gap: 8px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
  }
}
