/* ============================================================
   AuraLens AI — Home Page Styles
   ============================================================ */

/* ------- Cursor Glow ------- */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,85,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity 0.3s ease;
}

/* ------- Hero ------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--g-bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(62,201,148,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,168,85,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

/* Hero Content Side */
.hero-content {}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 0.35rem 1.1rem 0.35rem 0.6rem;
  border: 1px solid rgba(212, 168, 85, 0.28);
  border-radius: var(--r-pill);
  background: rgba(212, 168, 85, 0.05);
  margin-bottom: var(--s-lg);
  margin-top: var(--s-lg);
  backdrop-filter: blur(8px);
  animation: kickerPulse 3s ease-in-out infinite;
}

.hero-kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-lt);
  box-shadow: 0 0 8px var(--emerald-lt);
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,85,0); }
  50%       { box-shadow: 0 0 0 8px rgba(212,168,85,0.06); }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  margin-bottom: var(--s-md);
  font-weight: 400;
  color: var(--text-bright);
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--s-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-bottom: var(--s-2xl);
}

/* Hero Stats */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}

.metric {
  text-align: center;
}

.metric-val {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.metric-val sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--champagne-lt);
  vertical-align: baseline;
}

.metric-lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.metric-sep {
  width: 1px;
  height: 44px;
  background: var(--border-bright);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-orb-wrap {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbiting rings */
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,85,0.18);
}

.orb-ring-1 {
  width: 440px; height: 440px;
  animation: orbit1 25s linear infinite;
}

.orb-ring-2 {
  width: 320px; height: 320px;
  border: 1.5px solid rgba(62,201,148,0.15);
  animation: orbit1 18s linear infinite reverse;
}

.orb-ring-3 {
  width: 200px; height: 200px;
  animation: orbit1 12s linear infinite;
}

.orb-ring-1::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 12px var(--champagne), 0 0 24px rgba(212,168,85,0.4);
}

.orb-ring-2::before {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald-lt);
  box-shadow: 0 0 10px var(--emerald-lt);
}

.orb-ring-3::before {
  content: '';
  position: absolute;
  top: 50%; right: -4px;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--champagne-lt);
  box-shadow: 0 0 8px var(--champagne-lt);
}

@keyframes orbit1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Central gem */
.orb-gem-core {
  position: relative;
  z-index: 2;
  width: 120px; height: 120px;
  animation: gemPulse 5s ease-in-out infinite;
}

.orb-gem-core svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 20px rgba(212,168,85,0.5)) drop-shadow(0 0 40px rgba(212,168,85,0.3));
}

@keyframes gemPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212,168,85,0.3)); }
  50%       { transform: scale(1.06); filter: drop-shadow(0 0 30px rgba(212,168,85,0.6)); }
}

/* Floating chips around the orb */
.orb-chip {
  position: absolute;
  background: rgba(18, 27, 48, 0.92);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(12px);
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.chip-1 { top: 8%;   right: 0%;   animation: chipFloat 4s ease-in-out infinite; }
.chip-2 { bottom: 20%; left: -2%;  animation: chipFloat 5s ease-in-out infinite 1s; }
.chip-3 { bottom: 5%;  right: 5%;  animation: chipFloat 3.5s ease-in-out infinite 0.5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity var(--t-base);
}

.scroll-cue.hidden { opacity: 0; }

.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--champagne) 0%, transparent 100%);
  animation: scrollAnim 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ------- Struggle Section ------- */
.struggle-section {
  background: #f5f0ea;
  position: relative;
  overflow: hidden;
  padding: var(--s-3xl) 0;
}

.struggle-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 90vw;
  background: radial-gradient(ellipse at center, rgba(212, 168, 85, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.struggle-head {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.struggle-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.35;
}

.struggle-title em {
  font-style: italic;
  font-weight: 700;
  color: #111;
}

/* Gallery — 4 tilted cards in a fan */
.struggle-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  height: 380px;
  margin: 0 auto var(--s-2xl);
  max-width: 1000px;
}

.struggle-img-card {
  width: 220px;
  height: 300px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--t-base);
  cursor: pointer;
}

.struggle-img-card:hover {
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.struggle-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

/* Fan tilt positions */
.struggle-tilt-1 {
  left: calc(50% - 460px);
  transform: rotate(-8deg);
}
.struggle-tilt-1:hover {
  transform: rotate(-4deg) translateY(-10px) scale(1.04);
}

.struggle-tilt-2 {
  left: calc(50% - 220px);
  transform: rotate(-3deg);
  z-index: 2;
}
.struggle-tilt-2:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.struggle-tilt-3 {
  left: calc(50% + 20px);
  transform: rotate(3deg);
  z-index: 2;
}
.struggle-tilt-3:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.struggle-tilt-4 {
  left: calc(50% + 260px);
  transform: rotate(8deg);
}
.struggle-tilt-4:hover {
  transform: rotate(4deg) translateY(-10px) scale(1.04);
}

/* Bottom content */
.struggle-bottom {
  text-align: center;
}

.struggle-question {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--s-md);
}

.struggle-question em {
  font-style: italic;
  font-weight: 700;
}

.struggle-answer {
  font-size: 1rem;
  color: #5a5450;
  line-height: 1.8;
  margin-bottom: var(--s-lg);
}

.struggle-answer strong em {
  font-weight: 700;
  font-style: italic;
  color: #333;
}

/* ------- Why Section ------- */
.why-section {
  background: var(--bg-void);
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-lg);
  max-width: 920px;
  margin: 0 auto var(--s-xl);
  align-items: start;
}

.comp-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  transition: transform var(--t-base);
}

.comp-card:hover { transform: translateY(-4px); }

.comp-card.ours {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-champ);
  position: relative;
  overflow: hidden;
}

.comp-card.ours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-champ);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: var(--s-md);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s-md);
}

.comp-icon {
  font-size: 1.4rem;
}

.comp-header h3 {
  font-size: 1.15rem;
  color: var(--text-bright);
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comp-list li:last-child { border-bottom: none; }

.comp-list li .ico { flex-shrink: 0; font-weight: 700; }
.comp-list li.bad  .ico { color: #d45a5a; }
.comp-list li.good .ico { color: var(--emerald-lt); }
.comp-list li.good { color: var(--text-bright); }

.vs-node {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.vs-badge {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--g-champ);
  color: #1a1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-champ);
  flex-shrink: 0;
}

/* ------- Features Grid ------- */
.features-section {
  background: var(--bg-deep);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}

.feat-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all var(--t-bounce);
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,201,148,0.04), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.feat-card:hover {
  border-color: rgba(62,201,148,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-em), var(--shadow-card);
}

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

.feat-card.highlight {
  border-color: rgba(212,168,85,0.4);
  box-shadow: var(--shadow-champ);
}

.feat-card.highlight::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-champ);
}

.feat-icon {
  font-size: 1.7rem;
  margin-bottom: var(--s-md);
  display: block;
}

.feat-card h3 {
  font-size: 0.98rem;
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.feat-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ------- Gallery Preview ------- */
.gallery-preview-section {
  background: var(--bg-void);
}

.gp-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.gp-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--t-base);
}

.gp-item:hover { border-color: var(--border-bright); }

.gp-item.tall  { grid-row: span 2; }
.gp-item.wide  { grid-column: span 2; }

.gp-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  transition: transform var(--t-slow);
}

.gp-item:hover .gp-bg { transform: scale(1.05); }

.gp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
  z-index: 0;
}

.gp-item:hover .gp-img { transform: scale(1.05); }

.gp-bg-1 { background: linear-gradient(145deg, #150830, #2d1060, #170525); }
.gp-bg-2 { background: linear-gradient(145deg, #0a1f14, #1a4030, #0d1a10); }
.gp-bg-3 { background: linear-gradient(145deg, #1a1205, #352510, #1c0f00); }
.gp-bg-4 { background: linear-gradient(145deg, #0a0f1e, #1a2040, #080d1a); }
.gp-bg-5 { background: linear-gradient(145deg, #1a0b1a, #35102e, #15081a); }

.gp-icon {
  width: 56px; height: 56px;
  border: 1.5px solid rgba(212,168,85,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,168,85,0.7);
  font-size: 1.2rem;
}

.gp-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,168,85,0.3);
}

.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,17,0.92) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--s-md);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 2;
}

.gp-item:hover .gp-overlay { opacity: 1; }

.gp-overlay-text {
  font-size: 0.85rem;
  color: var(--text-bright);
  font-weight: 500;
}

/* ------- Judge Quality Section ------- */
.judge-section {
  background: #e8ddd0;
  position: relative;
  overflow: hidden;
}

.judge-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  background: radial-gradient(ellipse at center, rgba(212, 168, 85, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.judge-head {
  text-align: center;
  margin-bottom: var(--s-2xl);
}

.judge-title {
  color: #1a1a1a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--s-md);
}

.judge-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  display: block;
  background: none;
  -webkit-text-fill-color: #1a1a1a;
}

.judge-subtitle {
  color: #5a5450;
  font-size: 0.95rem;
  line-height: 1.7;
}

.judge-subtitle p {
  margin: 0;
}

/* Image Grid */
.judge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
  max-width: 960px;
  margin: 0 auto;
}

.judge-card {
  position: relative;
  border-radius: var(--r-xl);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-bounce), box-shadow var(--t-base);
  aspect-ratio: 3 / 4;
}

.judge-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.judge-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.judge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.judge-card:hover .judge-img {
  transform: scale(1.04);
}

/* Before Circle — small circular inset */
.judge-before {
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
  transition: transform var(--t-bounce), box-shadow var(--t-base);
}

.judge-before:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.judge-before-right {
  left: auto;
  right: -50px;
}

.judge-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer / Quote */
.judge-footer {
  text-align: center;
  margin-top: var(--s-2xl);
}

.judge-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: #5a5450;
  max-width: 600px;
  margin: 0 auto var(--s-lg);
  line-height: 1.75;
}

.btn-judge {
  background: #1a1a1a;
  color: #fff;
  padding: 0.8rem 2.4rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid #1a1a1a;
  transition: all var(--t-bounce);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-judge:hover {
  background: transparent;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ------- Process Section ------- */
.process-section {
  background: var(--bg-deep);
}

.process-track {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--champagne) 0%, rgba(212,168,85,0.08) 100%);
}

.proc-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s-md);
  padding-bottom: var(--s-xl);
  position: relative;
}

.proc-step:last-child { padding-bottom: 0; }

.proc-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,85,0.35);
  background: rgba(212,168,85,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--champagne);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--t-bounce);
}

.proc-step:hover .proc-num {
  background: rgba(212,168,85,0.14);
  border-color: var(--champagne);
  box-shadow: 0 0 20px rgba(212,168,85,0.25);
  transform: scale(1.1);
}

.proc-body { padding-top: 1rem; }

.proc-body h3 {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.proc-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ------- Pricing Section ------- */
.pricing-section {
  background: var(--bg-void);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: var(--s-2xl);
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

.price-card {
  background: var(--g-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: var(--s-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-champ), var(--shadow-card);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-champ);
}

.price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1000;
  background: var(--g-champ);
  padding: 0.28rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-md);
}

.price-tier {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-xs);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-xs);
}

.price-currency {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--champagne);
}

.price-value {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1;
}

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

.price-video {
  font-size: 0.9rem;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: var(--s-xs);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--s-lg);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--s-xl);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.price-features li::before {
  content: '◆';
  color: var(--champagne);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.price-cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

/* Price Info Panel */
.price-info h3 {
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: var(--s-md);
}

.price-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s-xl);
}

.price-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}

.pb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pb-item .pb-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(62,201,148,0.08);
  border: 1px solid rgba(62,201,148,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ------- FAQ Section ------- */
.faq-section {
  background: var(--bg-deep);
}

.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--g-card);
  transition: border-color var(--t-base);
}

.faq-item.open {
  border-color: var(--border-bright);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  padding: var(--s-md) var(--s-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-bright);
  transition: color var(--t-base);
}

.faq-btn:hover { color: var(--champagne-lt); }

.faq-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--champagne);
  flex-shrink: 0;
  transition: all var(--t-base);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(212,168,85,0.09);
  border-color: var(--champagne);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-body { max-height: 400px; }

.faq-body p {
  padding: 0 var(--s-lg) var(--s-md);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ------- Responsive: Hero ------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-visual { 
    display: flex; 
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px; /* Limits size on mobile so it doesn't get too large */
    margin: 2rem auto 0; /* Adds spacing above the slider and centers it */
  }

  .hero-metrics { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-description { margin: 0 auto var(--s-xl); }
  .comp-grid { grid-template-columns: 1fr; max-width: 520px; }
  .vs-node { margin: 0.5rem auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-masonry { grid-template-rows: 200px 200px; }
  .pricing-layout { grid-template-columns: 1fr; max-width: 480px; }
  .judge-grid { max-width: 700px; }
  .judge-card { aspect-ratio: auto; }
  .struggle-img-card { width: 180px; height: 250px; }
  .struggle-tilt-1 { left: calc(50% - 310px); }
  .struggle-tilt-2 { left: calc(50% - 140px); }
  .struggle-tilt-3 { left: calc(50% + 10px); }
  .struggle-tilt-4 { left: calc(50% + 140px); }
  .struggle-gallery { height: 320px; }
}

@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; }
  .gp-masonry {
    display: flex;             /* Switch from grid to flex for better mobile control */
    flex-direction: column;    /* Stack images vertically */
    grid-template-rows: auto;  /* Remove fixed row heights */
    gap: 15px;                 /* Add spacing between images */
    height: auto;              /* Ensure the container grows with content */
  }
  .gp-item.tall, .gp-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .hero-metrics { gap: var(--s-md); }
  .judge-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .judge-card { aspect-ratio: 3 / 4; }
  .judge-before { width: 110px; height: 110px; bottom: 12px; left: 12px; }
  .judge-before-right { left: auto; right: 12px; }
  .struggle-gallery { height: auto; flex-direction: row; flex-wrap: wrap; position: static; gap: var(--s-lg); padding: 20px 0; }
  .struggle-img-card { 
    position: relative !important; /* Change from absolute to relative */
    width: calc(50% - 1rem); /* Show 2 images per row */
    height: 250px; 
    left: auto !important;   /* Reset desktop positions */
    right: auto !important; 
    top: auto !important;
    bottom: auto !important;
    transform: none !important; 
    margin: 0 auto;
  }
  .struggle-img-card:hover { transform: translateY(-8px) scale(1.02) !important; }
  /* Ensure all items have a visible height on mobile */
  .gp-item.tall, 
  .gp-item.wide,
  .gp-item {
    grid-row: auto;            /* Reset desktop spans */
    grid-column: auto;         /* Reset desktop spans */
    width: 100%;               /* Make images full width */
    height: 300px;             /* Give them a fixed visible height */
    position: relative;        /* Ensure overlay text stays inside */
  }
}

/* home.css */

/* 1. Main container - centers icon and text vertically */
.pb-item {
  display: flex;
  align-items: center; /* Crucial for vertical alignment */
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* 2. The dark circular background for the icon */
.pb-item .pb-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 20, 36, 0.6); /* Darker surface background */
  border: 1px solid rgba(62, 201, 148, 0.15); /* Subtle emerald border */
  display: flex;
  align-items: center;    /* Center icon horizontally */
  justify-content: center; /* Center icon vertically */
  flex-shrink: 0;
}

/* 3. The Lucide icon itself */
.pb-item .lucide {
  width: 20px;
  height: 20px;
  stroke: var(--champagne); /* Ensures gold color */
  stroke-width: 2px;
  display: block;
  margin-bottom: 0; /* Removes the default bottom margin from earlier CSS */
}

/* 4. The text styling */
.pb-item span:last-child {
  font-size: 1rem;
  color: var(--text-bright);
  line-height: 1; /* Prevents text from dipping below center line */
}

/* Hero Slider Container */
.hero .gal-slider-wrapper {
  position: relative;
  width: 100%; /* Or set a specific width like 500px */
  height: 580px; /* Increase this value to make the slider taller */
  border-radius: var(--r-xl);
  overflow: hidden;
  /* ADD THESE LINES BELOW TO PREVENT BLUE HIGHLIGHT SELECTION */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;         /* Standard */
}

/* Ensure images fill the container */
.hero .gal-slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  /* CRITICAL LINES BELOW: Stops blue selection shadow and ghost drags */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none; /* Prevents ghost element dragging in Safari/Chrome */
  pointer-events: none;    /* Crucial: stops image dragging interference */
}

/* Positioning for the layers */
.gal-slider-before, 
.gal-slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gal-slider-after {
  z-index: 2;
  overflow: hidden;
}

/* Slider Bar */
.gal-slider-bar {
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--champagne);
  z-index: 10;
  pointer-events: none;
}

/* Slider Handle */
.gal-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #050811;
  border: 2px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--champagne);
  cursor: grab;
  pointer-events: auto;
  z-index: 11;
}

/* Home Page Slider Fixes */
#heroSlider .gal-slider-before, 
#heroSlider .gal-slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#heroSlider .gal-slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Force the hero slider layer to be transparent */
#heroSlider .gal-slider-after {
  background: transparent !important;
}

@media (max-width: 480px) {
  .judge-before { 
    width: 100px; 
    height: 100px; 
    bottom: 10px; 
    left: 10px; 
  }
  
  .judge-before-right { 
    right: 10px; 
    left: auto; 
  }

  .struggle-img-card {
    width: 100%; /* Switch to 1 image per row on very small phones */
    height: 300px;
  }

  .hero .gal-slider-wrapper {
    height: 380px; /* Reduced from 580px for a better aspect ratio on small phones */
  }
  
}

/* ==========================================================================
   New Pricing Grid & Luxury Cards Overrides
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  max-width: 1180px;
  margin: var(--s-xl) auto 0;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--s-lg) var(--s-md) !important;
  overflow: visible !important; /* Prevent the featured ribbon/badge from being clipped at the top */
}

/* Featured (Emerald theme) pricing card override */
.price-card.featured {
  border-color: rgba(62, 201, 148, 0.4) !important;
  box-shadow: var(--shadow-em), var(--shadow-card) !important;
}

.price-card.featured::before {
  background: var(--g-emerald) !important;
}

.price-card.featured:hover {
  border-color: var(--emerald-lt) !important;
  box-shadow: 0 0 50px rgba(62, 201, 148, 0.3), var(--shadow-card) !important;
}

/* Custom Header elements inside the card */
.price-header-custom {
  margin-bottom: var(--s-sm);
}

.price-badge-custom {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(212, 168, 85, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-sm);
  border: 1px solid rgba(212, 168, 85, 0.2);
}

.price-badge-custom.retainer {
  color: var(--emerald-lt);
  background: rgba(62, 201, 148, 0.08);
  border-color: rgba(62, 201, 148, 0.2);
}

.featured-tag-custom {
  position: absolute;
  top: 0;
  right: var(--s-md);
  transform: translateY(-50%);
  background: var(--g-emerald);
  color: #050811;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(62, 201, 148, 0.3);
}

.price-tier.featured {
  background: var(--g-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.price-desc-custom {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  min-height: 60px;
  margin-top: 0.5rem;
}

/* Custom Price block */
.price-amount-custom {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-sm) 0;
  margin-bottom: var(--s-md);
}

.price-card.featured .price-amount-custom {
  border-top-color: rgba(62, 201, 148, 0.15);
  border-bottom-color: rgba(62, 201, 148, 0.15);
}

.price-val-custom {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1;
}

.price-with-period-custom {
  display: flex;
  align-items: baseline;
}

.price-period-custom {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 0.2rem;
}

.price-approx-custom {
  display: block;
  font-size: 0.8rem;
  color: var(--champagne);
  font-weight: 700;
  margin-top: var(--s-xs);
}

.price-approx-custom.gold {
  color: var(--champagne);
}

/* Features List */
.price-features-custom {
  flex-grow: 1;
  margin-bottom: var(--s-md);
}

.features-title-custom {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: var(--s-sm);
}

.price-features-custom ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-features-custom li {
  position: relative;
  padding-left: var(--s-sm);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  display: block; /* Standard block layout prevents inner text splits inside flex container */
  margin-bottom: 0.4rem;
}

.price-features-custom li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 4px; /* Fine-tuned alignment with DM Sans font line-height */
  color: var(--champagne);
  font-size: 0.55rem;
}

.price-card.featured .price-features-custom li::before {
  color: var(--emerald-lt);
}

/* Footer & Buttons */
.price-footer-custom {
  margin-top: auto;
}

.best-for-custom {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: var(--s-sm);
  min-height: 48px;
}

.price-cta-custom .btn {
  width: 100%;
}

.btn-featured-jewel {
  background: var(--g-emerald) !important;
  color: #050811 !important;
  box-shadow: 0 4px 22px rgba(62, 201, 148, 0.32) !important;
}

.btn-featured-jewel:hover {
  box-shadow: 0 10px 35px rgba(62, 201, 148, 0.48) !important;
}

/* Responsiveness */
@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .best-for-custom,
  .price-desc-custom {
    min-height: auto;
  }
}