/* ============================================================
   OMNIFLONEXAI.COM — Ultra-Luxury Design System v4
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   CSS VARIABLES
   ────────────────────────────────────────────────────────── */
:root {
  --blue: #059669;
  /* Emerald Green */
  --gold: #D4AF37;
  /* Liquid Gold */
  --magenta: #047857;
  /* Deep Emerald Accent */
  --green: #10B981;
  --red: #EF4444;
  --white: #0F172A;
  /* High contrast text */

  --bg: #F8FAF8;
  /* Pearl Ivory Light Canvas */
  --bg-card: rgba(255, 255, 255, 0.85);
  --border: rgba(6, 78, 59, 0.12);
  --border-glow: rgba(5, 150, 105, 0.35);

  --text: #0F172A;
  --muted: #475569;
  --dim: #64748B;

  --font-h: 'Syne', 'Space Grotesk', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  --shadow-blue: 0 0 35px rgba(5, 150, 105, 0.18);
  --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.22);
  --shadow-magenta: 0 0 35px rgba(4, 120, 87, 0.18);
  --shadow-card: 0 16px 45px rgba(6, 78, 59, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);

  --dur: 0.28s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──────────────────────────────────────────────────────────
   RESET & SCROLLBAR
   ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Handled smoothly by Lenis without frame-rate jitter */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

/* GPU Accelerated Layers & 120FPS Performance Booster */
.main-service-card,
.package-card,
.poster-benefit-card,
.about-card,
.about-pillar-card,
.device-window-card,
.flagship-card,
.portfolio-card,
.hero-addon-card,
.cursor-dot,
.cursor-ring,
#global-3d-canvas {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Offscreen Performance Rendering */
.home-section-block,
.tab-content:not(.active),
.psec-card,
.faq-item {
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: rgba(3, 7, 18, 0.7);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669, #00d2ff, #ff007f);
  border-radius: 99px;
  border: 2px solid rgba(3, 7, 18, 0.7);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #10b981, #38bdf8, #f43f5e);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-b);
}

img {
  display: block;
}

/* ──────────────────────────────────────────────────────────
   PRELOADER
   ────────────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAFBF9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.preloader-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 20px rgba(5, 150, 105, 0.3));
  animation: preloaderLogoPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderLogoPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(5, 150, 105, 0.4)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 32px rgba(5, 150, 105, 0.7)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.5));
  }
}

.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spinRing 2s linear infinite;
}

.ring-1 {
  inset: -12px;
  border-top-color: var(--blue);
  border-right-color: transparent;
  animation-duration: 2s;
}

.ring-2 {
  inset: -22px;
  border-bottom-color: var(--magenta);
  border-left-color: transparent;
  animation-direction: reverse;
  animation-duration: 2.8s;
}

.ring-3 {
  inset: -34px;
  border-top-color: var(--gold);
  border-right-color: transparent;
  animation-duration: 4s;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.preloader-brand {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: #064E3B;
  background: linear-gradient(135deg, #059669, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(6, 78, 59, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #059669, #D4AF37, #047857);
  border-radius: 99px;
  transition: width 0.05s linear;
}

.preloader-pct {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────────────────────
/* ──────────────────────────────────────────────────────────
   ULTRA-LUXURY FLUID MAGNETIC CUSTOM CURSOR
   ────────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #10b981, #d4af37);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 999999;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.9), 0 0 20px rgba(212, 175, 55, 0.7);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(16, 185, 129, 0.55);
  background: rgba(5, 150, 105, 0.03);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 999998;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.35s ease, width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(5, 150, 105, 0.2), inset 0 0 12px rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

/* Hover on Interactive Elements */
body.cursor-hover .cursor-dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  box-shadow: 0 0 14px #d4af37, 0 0 28px rgba(212, 175, 55, 0.8);
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(212, 175, 55, 0.85);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 0 50px rgba(5, 150, 105, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Click / Mousedown state */
body.cursor-click .cursor-dot {
  transform: translate3d(-50%, -50%, 0) scale(1.4);
}

body.cursor-click .cursor-ring {
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.18);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.55);
}

/* Mobile & Touch Fallback */
@media (pointer: coarse), (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  body, html, * {
    cursor: auto !important;
  }
}

/* ──────────────────────────────────────────────────────────
   BACKGROUND ANIMATION DISABLE
   ────────────────────────────────────────────────────────── */
#bg-canvas,
#webgl-canvas,
#hero-bg-frame-canvas,
.hero-bg-frame-canvas,
.bg-frame-vignette,
.mesh-bg,
.luxury-hud-overlay {
  display: none !important;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: none !important;
}

.mesh-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 70%);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.mesh-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09), transparent 70%);
  top: 30%;
  right: -100px;
  animation-delay: -4s;
}

.mesh-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-delay: -8s;
}

.mesh-orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.06), transparent 70%);
  bottom: -80px;
  right: 10%;
  animation-delay: -2s;
}

@keyframes meshFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  33% {
    transform: translateY(-30px) scale(1.05);
  }

  66% {
    transform: translateY(15px) scale(0.97);
  }
}

/* ──────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR (INFINITE SEAMLESS RUNNING MARQUEE)
   ────────────────────────────────────────────────────────── */
.top-announcement-bar {
  position: relative;
  z-index: 100;
  background: linear-gradient(90deg, #064E3B, #047857, #064E3B);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  color: #FEF3C7;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-announcement-bar:hover {
  background: linear-gradient(90deg, #047857, #059669, #047857);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
  color: #FFFFFF;
}

.announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marqueeContinuous 60s linear infinite;
}

.top-announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 3.5rem;
  flex-shrink: 0;
}

.announcement-item span {
  display: inline-block;
  white-space: nowrap;
}

/* Fallback for single span markup */
.top-announcement-bar > span {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.top-announcement-bar:hover > span {
  animation-play-state: paused;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ──────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────── */
.navbar,
.header-ultra {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1.5px solid rgba(5, 150, 105, 0.18);
  padding: 0.4rem 1.25rem;
  box-shadow: 0 10px 35px -10px rgba(6, 78, 59, 0.06), 0 1px 0 rgba(212, 175, 55, 0.25);
  transition: all 0.3s var(--ease);
  width: 100%;
  box-sizing: border-box;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 14px 45px -10px rgba(6, 78, 59, 0.12), 0 0 15px rgba(212, 175, 55, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  box-sizing: border-box;
}

/* Brand - Left side start */
.brand {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-tagline {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: #059669;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 1px;
}

.brand-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, #062C22 0%, #059669 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tld,
.hero-tld {
  color: #D4AF37;
  font-size: 0.88em;
  font-weight: 800;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 4px 10px rgba(5, 150, 105, 0.4)) drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
  transition: transform 0.35s var(--spring), filter 0.35s;
  flex-shrink: 0;
}

.nav-logo-img:hover {
  transform: scale(1.12) rotate(-5deg);
  filter: drop-shadow(0 8px 22px rgba(5, 150, 105, 0.6)) drop-shadow(0 12px 28px rgba(212, 175, 55, 0.5));
}

/* Nav links - Center Luxury Island */
.main-nav-links {
  display: flex;
  align-items: center;
  gap: 0.14rem;
  background: rgba(5, 150, 105, 0.06);
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  padding: 0.18rem 0.28rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  margin: 0 auto;
}

.main-nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link-btn {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 9999px;
  color: #0f172a;
  font-size: 0.71rem;
  font-weight: 800 !important;
  padding: 0.22rem 0.42rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.25s var(--spring);
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav-link-btn i,
.nav-link-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #059669;
  stroke-width: 2.5;
}

.nav-link-btn:hover {
  color: #047857 !important;
  background: rgba(5, 150, 105, 0.15) !important;
  border-color: rgba(5, 150, 105, 0.4) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

/* 1. Home - Active Bold Pill */
.nav-link-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  border-color: #059669 !important;
  font-weight: 900 !important;
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.35);
}

.nav-link-btn.active i,
.nav-link-btn.active svg {
  color: #ffffff !important;
}

/* 3. Portfolio - 3D Badge */
.nav-3d-badge {
  font-size: 0.58rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
}

/* 4. Project Builder - Highlighted Cyan Neon Luxury Pill */
.nav-link-btn.highlight-link {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(5, 150, 105, 0.14)) !important;
  border: 1.5px solid rgba(2, 132, 199, 0.45) !important;
  color: #0284C7 !important;
  font-weight: 900 !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.18);
}

.nav-link-btn.highlight-link i,
.nav-link-btn.highlight-link svg {
  color: #0284C7 !important;
  stroke-width: 2.5;
}

.nav-link-btn.highlight-link:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.25), rgba(5, 150, 105, 0.22)) !important;
  border-color: #0284C7 !important;
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

/* 5. VIP Club - Highlighted Gold Luxury Shimmer Pill */
.nav-link-btn.nav-vip-link {
  color: #92400e !important;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(245, 158, 11, 0.12)) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  font-weight: 900 !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.nav-link-btn.nav-vip-link i,
.nav-link-btn.nav-vip-link svg {
  color: #d97706 !important;
  stroke-width: 2.5;
}

.nav-link-btn.nav-vip-link:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(245, 158, 11, 0.2)) !important;
  border-color: #d97706 !important;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* 8. Privacy Policy - Bold Emerald Shield Safety Highlight Pill (Guaranteed Visibility) */
.nav-link-btn.nav-privacy-link {
  color: #047857 !important;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.18), rgba(16, 185, 129, 0.14)) !important;
  border: 1.5px solid #059669 !important;
  font-weight: 900 !important;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.2) !important;
}

.nav-link-btn.nav-privacy-link i,
.nav-link-btn.nav-privacy-link svg {
  color: #059669 !important;
  width: 13px !important;
  height: 13px !important;
  stroke-width: 2.5;
}

.nav-link-btn.nav-privacy-link:hover {
  color: #064E3B !important;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.28), rgba(16, 185, 129, 0.22)) !important;
  border-color: #047857 !important;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35) !important;
  transform: translateY(-1px);
}

/* Header controls - Aligned neatly to the right */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  flex-shrink: 0;
}

/* 9. Instant Global Search in Header */
.nav-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 78px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-search-wrapper:focus-within {
  width: 115px;
}

.nav-search-wrapper .search-icon-btn {
  position: absolute;
  left: 0.5rem;
  color: #059669;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 2;
  stroke-width: 2.5;
}

.nav-search-wrapper input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.45);
  border-radius: 9999px;
  padding: 0.24rem 0.45rem 0.24rem 1.5rem;
  color: #0f172a !important;
  font-size: 0.70rem;
  font-weight: 800 !important;
  outline: none;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.08);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.nav-search-wrapper input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* 10. Multi-Currency Selector - Highlighted */
.currency-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.12));
  border: 1.5px solid rgba(5, 150, 105, 0.4);
  border-radius: 9999px;
  padding: 0.24rem 0.46rem;
  color: #064E3B;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
  flex-shrink: 0;
}

.currency-selector-wrapper:hover {
  background: rgba(5, 150, 105, 0.18);
  border-color: #059669;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

.currency-selector-wrapper svg,
.currency-selector-wrapper i {
  color: #059669;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.currency-selector-wrapper select {
  background: none;
  border: none;
  color: #0F172A;
  font-size: 0.70rem;
  font-weight: 900 !important;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.currency-selector-wrapper select option {
  background: #FFFFFF;
  color: #0F172A;
  font-weight: 800;
  padding: 0.4rem;
}

/* 11. Auth Single Unified Sign In Button - Highlighted */
.nav-auth-btn-unified {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(2, 132, 199, 0.06));
  border: 1.5px solid rgba(2, 132, 199, 0.45);
  color: #0284C7 !important;
  font-size: 0.70rem;
  font-weight: 900 !important;
  padding: 0.24rem 0.55rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--spring);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

.nav-auth-btn-unified i,
.nav-auth-btn-unified svg {
  stroke-width: 2.5;
}

.nav-auth-btn-unified:hover {
  background: rgba(2, 132, 199, 0.2);
  border-color: #0284C7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
  transform: translateY(-1px);
}

/* 12. Project Quote High-Conversion CTA Button - Highlighted */
.nav-quote-cta-btn,
#nav-quote {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.6);
  color: #FFFFFF !important;
  font-weight: 900 !important;
  font-size: 0.72rem;
  padding: 0.26rem 0.72rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  position: relative;
  margin: 0;
}

.nav-quote-cta-btn i,
.nav-quote-cta-btn svg {
  stroke-width: 2.5;
}

.nav-quote-cta-btn:hover,
#nav-quote:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
  border-color: #34D399;
}

.nav-quote-cta-btn:active,
#nav-quote:active {
  transform: translateY(0) scale(0.98);
}

.quote-btn-counter {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D4AF37;
  color: #062C22;
  font-size: 0.68rem;
  font-weight: 900 !important;
  padding: 1px 6px;
  border-radius: 9999px;
  min-width: 18px;
  height: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  line-height: 1;
  transition: transform 0.3s var(--spring);
}

.quote-btn-counter.bump {
  transform: scale(1.35);
}

/* Laptop Breakpoint (1280px - 1440px) */
@media (max-width: 1440px) {
  .brand-tagline {
    display: none;
  }
  .brand-name {
    font-size: 1.08rem;
  }
  .nav-container {
    gap: 0.25rem;
  }
  .main-nav-links {
    gap: 0.10rem;
    padding: 0.14rem 0.22rem;
  }
  .nav-link-btn {
    font-size: 0.68rem;
    padding: 0.20rem 0.38rem;
    gap: 3px;
  }
  .nav-auth-btn-unified {
    padding: 0.20rem 0.44rem;
    font-size: 0.68rem;
  }
  .nav-quote-cta-btn,
  #nav-quote {
    padding: 0.24rem 0.60rem;
    font-size: 0.69rem;
  }
  .nav-search-wrapper {
    width: 70px;
  }
  .nav-search-wrapper:focus-within {
    width: 100px;
  }
}

/* Compact Laptop Breakpoint (1060px - 1280px) */
@media (max-width: 1280px) {
  .brand-logo img {
    width: 28px;
    height: 28px;
  }
  .brand-name {
    font-size: 0.98rem;
  }
  .main-nav-links {
    gap: 0.08rem;
    padding: 0.12rem 0.18rem;
  }
  .nav-link-btn {
    font-size: 0.65rem;
    padding: 0.18rem 0.32rem;
    gap: 2px;
  }
  .nav-link-btn i,
  .nav-link-btn svg {
    width: 10px;
    height: 10px;
  }
  .header-controls {
    gap: 0.22rem;
  }
  .nav-search-wrapper {
    width: 64px;
  }
  .nav-search-wrapper:focus-within {
    width: 90px;
  }
  .currency-selector-wrapper {
    padding: 0.18rem 0.36rem;
  }
  .currency-selector-wrapper select {
    font-size: 0.65rem;
  }
  .nav-auth-btn-unified {
    padding: 0.18rem 0.38rem;
    font-size: 0.65rem;
  }
  .nav-quote-cta-btn,
  #nav-quote {
    padding: 0.20rem 0.50rem;
    font-size: 0.66rem;
  }
}

/* Tablet & Mobile Switch to Drawer */
@media (max-width: 1060px) {
  .main-nav-links {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: #10B981;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
  }
  .header-controls {
    gap: 0.30rem;
  }
}

/* Mobile Drawer Nav Buttons - Bold & Highlighted */
.mobile-nav-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(5, 150, 105, 0.15);
  font-size: 0.92rem;
  font-weight: 800 !important;
  color: #0f172a;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.mobile-nav-btn:hover {
  background: rgba(5, 150, 105, 0.12);
  border-color: #059669;
  color: #047857;
  transform: translateX(4px);
}

/* Cart btn */
.cart-trigger-btn {
  position: relative;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.15));
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  border-radius: 9999px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #047857;
  transition: all 0.3s var(--spring);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
  cursor: pointer;
}

.cart-trigger-btn:hover {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.22), rgba(212, 175, 55, 0.28));
  border-color: rgba(5, 150, 105, 0.6);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3), 0 0 15px rgba(212, 175, 55, 0.3);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #D4AF37 0%, #B58A18 100%);
  color: #0F172A;
  font-size: 0.65rem;
  font-weight: 900;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
  transition: transform 0.3s var(--spring);
}

.cart-badge.bump {
  transform: scale(1.55);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Search Dropdown */
.search-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: 14px;
  padding: 0.4rem 0;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  display: none;
}

.search-dropdown-menu.active {
  display: block;
}

.search-item-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  gap: 1rem;
  transition: background 0.15s;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.search-item-result:hover {
  background: rgba(5, 150, 105, 0.08);
}

.search-item-result strong {
  font-size: 0.85rem;
  display: block;
  color: #0f172a;
}

/* ──────────────────────────────────────────────────────────
   MOBILE DRAWER
   ────────────────────────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 300;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #080818;
  border-left: 1px solid var(--border);
  z-index: 301;
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  display: flex;
  animation: slideInRight 0.35s var(--ease);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.35rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.mobile-nav-btn {
  background: none;
  border: none;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  text-align: left;
  width: 100%;
  transition: all 0.2s;
}

.mobile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-nav-btn.highlight-link {
  color: var(--blue);
  border: 1px solid rgba(0, 210, 255, 0.2);
  margin: 0.3rem 0;
}

.mobile-search-box {
  margin-top: 1.5rem;
}

.mobile-search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-b);
  outline: none;
}

/* ──────────────────────────────────────────────────────────
   CART DRAWER
   ────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 300;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cart-overlay.open {
  display: block;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border);
  z-index: 301;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.cart-drawer.open {
  display: flex;
  animation: slideInRight 0.38s var(--ease);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.6rem;
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #222222;
}

.cart-drawer-header h3 i {
  color: #1F5E4A;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.6rem 2rem 1.6rem;
  background: #F8FAFC;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.cart-drawer-footer {
  padding: 1.2rem 0 0 0;
  border-top: 1px solid var(--border);
  background: transparent;
  margin-top: 1.2rem;
}

/* ──────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}

/* Shine sweep */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn:hover .btn-shine {
  left: 160%;
}

.btn-primary {
  background: linear-gradient(135deg, #0055cc, #00d2ff);
  color: #fff;
  box-shadow: 0 4px 22px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 210, 255, 0.5);
}

.btn-bronze {
  background: linear-gradient(135deg, #047857, #059669, #10b981);
  color: #ffffff;
  box-shadow: 0 4px 22px rgba(5, 150, 105, 0.38);
}

.btn-bronze:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(5, 150, 105, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, #92400e, #f59e0b, #fbbf24);
  color: #000;
  box-shadow: 0 4px 22px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  border-radius: var(--r-lg);
}

.btn-sm {
  padding: 0.38rem 0.85rem;
  font-size: 0.78rem;
}

.w-full {
  width: 100%;
}

/* Magnetic button helper */
.magnetic-btn {
  transition: transform 0.2s var(--spring), box-shadow var(--dur) var(--ease);
}

/* ──────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ────────────────────────────────────────────────────────── */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.word-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-fade {
  transform: none;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.word-reveal {
  display: inline-block;
  transform: translateY(30px);
  transition-duration: 0.5s;
}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.word-reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger for word reveals */
.word-reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.word-reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.word-reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.word-reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.word-reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.word-reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.word-reveal:nth-child(7) {
  transition-delay: 0.47s;
}

/* ──────────────────────────────────────────────────────────
   MAIN CONTAINER & TABS
   ────────────────────────────────────────────────────────── */
.main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
  animation: tabIn 0.4s var(--ease);
}

.tab-content.active {
  display: block;
}

@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ──────────────────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.text-gradient-logo {
  background: linear-gradient(135deg, #059669, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #059669, #047857);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-magenta {
  background: linear-gradient(135deg, #047857, #064E3B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #D4AF37, #B45309);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animated-gradient-text {
  background: linear-gradient(270deg, #059669, #D4AF37, #047857, #059669);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.text-blue {
  color: var(--blue) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-magenta {
  color: var(--magenta) !important;
}

.text-cyan {
  color: var(--blue) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

/* ──────────────────────────────────────────────────────────
   SECTION HEADERS
   ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.22);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #062C22;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

/* Logo Reveal with Dual Waving Hello Robots */
.hero-logo-reveal {
  margin-bottom: 2rem;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 3.5rem);
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* Dual Waving Robot Companions Beside Logo */
.logo-robot-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-user-select: none;
  user-select: none;
}

.logo-robot-left {
  animation: robotFloatLeft 4.5s ease-in-out infinite;
}

.logo-robot-right {
  animation: robotFloatRight 4.5s ease-in-out infinite 0.7s;
}

.robot-img-wrapper {
  position: relative;
  width: clamp(100px, 12vw, 160px);
  height: clamp(130px, 15vw, 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-robot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(5, 150, 105, 0.22)) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
  transition: filter 0.3s ease, transform 0.3s ease;
  transform-origin: bottom center;
}

.logo-robot-flipped {
  transform: scaleX(-1);
}

.logo-robot-shadow {
  position: absolute;
  bottom: -4px;
  width: 75%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.35) 0%, transparent 75%);
  border-radius: 50%;
  z-index: -1;
  animation: shadowPulse 4.5s ease-in-out infinite;
}

/* Hello Speech Bubbles */
.robot-hello-bubble {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.18), 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #047857;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 10;
  animation: bubbleFloat 3.5s ease-in-out infinite alternate;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.bubble-wave {
  display: inline-block;
  animation: handWave 1.8s ease-in-out infinite;
  transform-origin: 70% 70%;
}

/* Hover & Waving Click Animations */
.logo-robot-side:hover {
  transform: scale(1.08) translateY(-4px);
}

.logo-robot-side:hover .logo-robot-img {
  filter: drop-shadow(0 18px 32px rgba(5, 150, 105, 0.4)) drop-shadow(0 8px 18px rgba(212, 175, 55, 0.3));
}

.logo-robot-side:hover .robot-hello-bubble {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.35);
}

.logo-robot-side.waving .logo-robot-img {
  animation: robotWaveAnim 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) 2;
}

/* Keyframes */
@keyframes robotFloatLeft {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2.5deg);
  }
}

@keyframes robotFloatRight {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2.5deg);
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  100% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes handWave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(18deg);
  }

  40% {
    transform: rotate(-12deg);
  }

  60% {
    transform: rotate(18deg);
  }

  80% {
    transform: rotate(-4deg);
  }
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(0.75);
    opacity: 0.3;
  }
}

@keyframes robotWaveAnim {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-8deg) scale(1.05);
  }

  75% {
    transform: rotate(8deg) scale(1.05);
  }
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .hero-logo-reveal {
    gap: 0.6rem;
  }

  .robot-img-wrapper {
    width: 80px;
    height: 105px;
  }

  .robot-hello-bubble {
    font-size: 0.7rem;
    padding: 0.22rem 0.55rem;
    top: -28px;
  }
}

@media (max-width: 480px) {
  .robot-img-wrapper {
    width: 60px;
    height: 80px;
  }

  .hero-logo-reveal {
    gap: 0.3rem;
  }
}

.glowing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-blue {
  width: 400px;
  height: 400px;
  background: rgba(5, 150, 105, 0.09);
  top: -130px;
  left: -150px;
}

.orb-magenta {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  top: -90px;
  right: -110px;
  animation-delay: -3.5s;
}

.orb-gold {
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.07);
  bottom: -70px;
  left: 40px;
  animation-delay: -6s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

.hero-fn-monogram {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  filter: drop-shadow(0 12px 30px rgba(5, 150, 105, 0.35)) drop-shadow(0 20px 45px rgba(212, 175, 55, 0.3));
  animation: logoPulse 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}

@keyframes logoPulse {

  0%,
  100% {
    filter: drop-shadow(0 12px 30px rgba(5, 150, 105, 0.3)) drop-shadow(0 20px 45px rgba(212, 175, 55, 0.25));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 18px 45px rgba(5, 150, 105, 0.5)) drop-shadow(0 28px 65px rgba(212, 175, 55, 0.4));
    transform: scale(1.05);
  }
}

.hero-logo-glow-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
  animation: glowRingPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.hero-brand-title {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.hero-motto {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
}

.motto-word {
  color: var(--muted);
}

.motto-dot {
  color: rgba(255, 255, 255, 0.15);
}

/* Hero Main Heading */
.hero-main-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 1.5rem 0 1rem;
  letter-spacing: -0.03em;
}

/* Pillars */
.core-pillars-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.pillar-item i {
  width: 14px;
  height: 14px;
}

.pillar-divider {
  color: rgba(255, 255, 255, 0.15);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Hero Search */
.hero-search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: var(--r-full);
  padding: 0.78rem 1.4rem;
  gap: 0.7rem;
  transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero-search-bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
}

.hero-search-icon {
  color: var(--blue);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.hero-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-b);
}

.hero-search-bar input::placeholder {
  color: var(--dim);
}

.hero-search-bar .search-dropdown-menu {
  top: calc(100% + 10px);
  left: 0;
  right: 0;
}

/* Hero CTA */
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Trust strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.trust-chip:hover {
  border-color: rgba(0, 210, 255, 0.3);
  color: var(--blue);
}

.trust-chip i {
  width: 13px;
  height: 13px;
}

/* ──────────────────────────────────────────────────────────
   STATS BAR
   ────────────────────────────────────────────────────────── */
.stats-counter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-counter-card {
  background: rgba(12, 12, 28, 0.85);
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.stat-counter-card:hover {
  background: rgba(20, 20, 44, 0.95);
}

.stat-counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-counter-card:hover::before {
  opacity: 1;
}

.stat-counter-num {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
}

.stat-counter-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ──────────────────────────────────────────────────────────
   FEATURED CARDS — with gradient border on hover
   ────────────────────────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--spring), box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.featured-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-img {
  transform: scale(1.08);
}

.featured-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--bg-card) 100%);
}

.featured-card-body {
  padding: 1.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  transition: all 0.35s var(--spring);
  display: flex;
  flex-direction: column;
}

.category-hub-img-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.category-hub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-hub-card:hover .category-hub-img {
  transform: scale(1.08);
}

.category-hub-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, var(--bg-card) 100%);
}

.hub-icon-floating {
  position: absolute;
  bottom: 0.8rem;
  left: 1.2rem;
  margin-bottom: 0 !important;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.category-hub-content {
  padding: 1.2rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.featured-card:hover {
  transform: translateY(-10px) rotateX(2deg);
}

.card-blue:hover {
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 20px 60px rgba(0, 210, 255, 0.18);
}

.card-magenta:hover {
  border-color: rgba(255, 0, 127, 0.45);
  box-shadow: 0 20px 60px rgba(255, 0, 127, 0.15);
}

.card-gold:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.featured-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, #b45309, #f59e0b);
  color: #000;
  font-size: 0.63rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card-icon-box i {
  width: 22px;
  height: 22px;
}

.card-blue .card-icon-box i {
  color: var(--blue);
}

.card-magenta .card-icon-box i {
  color: var(--magenta);
}

.card-gold .card-icon-box i {
  color: var(--gold);
}

.featured-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.featured-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.card-blue .card-link {
  color: var(--blue);
}

.card-magenta .card-link {
  color: var(--magenta);
}

.card-gold .card-link {
  color: var(--gold);
}

/* ──────────────────────────────────────────────────────────
   WHY US
   ────────────────────────────────────────────────────────── */
.why-us-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(255, 0, 127, 0.03), rgba(245, 158, 11, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.why-us-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.why-us-list li i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  transition: all 0.35s var(--spring);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.2);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 210, 255, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}

.stars-row {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.client-info strong {
  font-size: 0.88rem;
  color: #fff;
}

.client-info span {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ──────────────────────────────────────────────────────────
   INDUSTRIES GRID
   ────────────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
}

.ind-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: all 0.35s var(--spring);
  position: relative;
  overflow: hidden;
}

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ind-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.ind-card:hover::before {
  opacity: 1;
}

.ind-card .icon-lg {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
}

.ind-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ind-card p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────────────────────
   SERVICES HUB
   ────────────────────────────────────────────────────────── */
.hub-search-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.65rem 1.2rem;
}

.hub-search-bar i {
  color: var(--dim);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hub-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-b);
}

.hub-search-bar input::placeholder {
  color: var(--dim);
}

.categories-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  transition: all 0.35s var(--spring);
}

.category-hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.2);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.45);
}

.category-hub-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.8rem 0 0.6rem;
}

.subcats-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.subcat-item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  transition: all 0.2s;
  text-align: left;
}

.subcat-item-btn:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.2);
  color: var(--blue);
}

.subcat-item-btn i {
  width: 14px;
  height: 14px;
}

/* ──────────────────────────────────────────────────────────
   PORTFOLIO
   ────────────────────────────────────────────────────────── */
.ind-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ind-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.ind-pill:hover,
.ind-pill.active {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  transition: all 0.35s var(--spring);
  position: relative;
  overflow: hidden;
}

.portfolio-item-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.portfolio-item-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 210, 255, 0.22);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.portfolio-item-card:hover::after {
  opacity: 1;
}

.portfolio-item-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   PROJECT BUILDER (WIZARD)
   ────────────────────────────────────────────────────────── */
.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.wizard-main-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Steps */
.wizard-steps-header {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dim);
  transition: all 0.35s var(--spring);
}

.step-lbl {
  font-size: 0.7rem;
  color: var(--dim);
  font-weight: 600;
  white-space: nowrap;
}

.step-indicator.active .step-num {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
}

.step-indicator.active .step-lbl {
  color: var(--blue);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 0.8rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.step-line.active {
  background: rgba(0, 210, 255, 0.35);
}

.wizard-step-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wizard-step-title i {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* Category grid */
.category-grid-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.8rem;
}

.cat-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  text-align: center;
  min-height: 80px;
}

.cat-card-btn i {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.cat-card-btn:hover {
  background: rgba(0, 210, 255, 0.07);
  border-color: rgba(0, 210, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.cat-card-btn.active {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.12);
}

/* Service pills */
.service-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.service-pill-btn:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.3);
  color: #fff;
}

.service-pill-btn.active {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--blue);
  color: var(--blue);
}

/* Config */
.config-section-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.config-section-subtitle i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.config-controls-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.config-group label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.config-group select {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-b);
  outline: none;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.config-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.config-group select option {
  background: #FFFFFF;
  color: var(--text);
  padding: 0.5rem;
  font-weight: 500;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.9rem;
  transition: all 0.2s;
  font-size: 0.8rem;
}

.addon-checkbox-label:hover {
  background: rgba(0, 210, 255, 0.07);
  border-color: rgba(0, 210, 255, 0.2);
}

.addon-checkbox-label input[type="checkbox"] {
  accent-color: var(--blue);
}

.compare-trigger-bar {
  display: flex;
  justify-content: flex-end;
}

/* ──────────────────────────────────────────────────────────
   WIZARD SUMMARY CARD
   ────────────────────────────────────────────────────────── */
.wizard-summary-panel {
  position: sticky;
  top: 100px;
}

.wizard-price-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.09), 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.wizard-price-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--magenta));
}

.summary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.summary-badge {
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
}

.est-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.est-amount {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.fixed-price-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #B48B1E;
  border-radius: var(--r-full);
}

.wizard-live-summary-box {
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.wizard-live-summary-box i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.wizard-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wizard-action-buttons .btn-secondary {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
  color: var(--blue);
  font-weight: 700;
}

.wizard-action-buttons .btn-secondary:hover {
  background: rgba(5, 150, 105, 0.15);
  border-color: var(--blue);
}

.summary-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.trust-badge i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   MEMBERSHIP
   ────────────────────────────────────────────────────────── */
.membership-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: visible;
  transition: all 0.35s var(--spring);
}

.membership-card:hover {
  transform: translateY(-6px);
}

.pro-card {
  border-color: rgba(0, 210, 255, 0.28);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.08);
  background: linear-gradient(145deg, rgba(0, 210, 255, 0.05), rgba(14, 14, 32, 0.9));
}

.luxury-card {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.08);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.05), rgba(14, 14, 32, 0.9));
}

.popular-ribbon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--blue);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
}

.tier-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.mem-price {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
}

.mem-price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────
   VIP MEMBERSHIP CATEGORY SWITCHER & SELLER PARTNER PLANS
   ────────────────────────────────────────────────────────── */
.vip-plan-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.vip-plan-switcher {
  display: inline-flex;
  background: #ffffff;
  padding: 6px;
  border-radius: 9999px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(5, 150, 105, 0.04);
  gap: 8px;
  max-width: 100%;
}

.vip-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #64748b;
  font-family: var(--font-b);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.vip-switcher-btn:hover {
  color: #0f172a;
  background: rgba(241, 245, 249, 0.7);
}

.vip-switcher-btn.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.vip-switcher-btn.active .switcher-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #10b981;
}

.vip-switcher-btn .switcher-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.vip-switcher-btn .switcher-text {
  display: flex;
  flex-direction: column;
}

.vip-switcher-btn .switcher-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.vip-switcher-btn .switcher-text small {
  font-size: 0.72rem;
  opacity: 0.8;
  font-weight: 500;
}

.vip-switcher-btn .switcher-pill {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: rgba(241, 245, 249, 0.9);
  color: #475569;
  letter-spacing: 0.03em;
  margin-left: 0.4rem;
}

.vip-switcher-btn.active .switcher-pill {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.vip-switcher-btn.active .switcher-pill.seller-pill {
  background: rgba(245, 158, 11, 0.25);
  color: #fbbf24;
}

/* Dual Section Dividers & Group Headers for Sath-Hi-Sath Display */
.vip-dual-nav-pills {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
  flex-wrap: wrap;
}

.vip-jump-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.vip-jump-pill:hover {
  border-color: #10b981;
  color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
}

.vip-jump-pill .pill-count {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: #ecfdf5;
  color: #059669;
}

.vip-jump-pill.partner-jump .pill-count {
  background: #fffbeb;
  color: #d97706;
}

.vip-group-header {
  margin-bottom: 1.6rem;
  text-align: center;
}

.vip-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  margin-bottom: 0.65rem;
}

.vip-group-badge.badge-client {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.vip-group-badge.badge-partner {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.vip-group-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.vip-group-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}

.vip-group-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 4.5rem 0 3rem;
}

.vip-divider-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.vip-divider-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #059669;
  border: 1.5px solid #a7f3d0;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
}

/* Crosslink banner under Client VIP plans */
.vip-partner-crosslink-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 244, 0.9));
  border: 1.5px solid #a7f3d0;
  border-radius: 20px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.08);
}

.crosslink-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.crosslink-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.crosslink-content p {
  font-size: 0.88rem;
  color: #475569;
  max-width: 650px;
  margin: 0;
  line-height: 1.5;
}

.crosslink-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  background: #059669;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
}

.crosslink-cta-btn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.35);
}

/* Seller Partner Plans Grid inside VIP Section */
.sp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.sp-plan-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 22px;
  padding: 2.4rem 2rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.sp-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.sp-plan-card.featured:not(.selected-plan) {
  border: 2px solid #a7f3d0;
  box-shadow: 0 12px 30px -6px rgba(5, 150, 105, 0.12);
}

/* Dynamic Colorful Borderline Active State (Applied on Card Click) */
.sp-plan-card.selected-plan,
.membership-card.selected-plan,
.pkg-card-luxury.selected-plan {
  border: 3px solid transparent !important;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #ec4899 0%, #8b5cf6 25%, #3b82f6 50%, #06b6d4 75%, #10b981 100%) border-box !important;
  box-shadow: 0 20px 45px -8px rgba(139, 92, 246, 0.35), 0 0 25px rgba(6, 182, 212, 0.25) !important;
  transform: translateY(-8px);
}

.sp-plan-card.selected-plan:hover,
.membership-card.selected-plan:hover,
.pkg-card-luxury.selected-plan:hover {
  transform: translateY(-10px);
}

.sp-plan-ribbon {
  position: absolute;
  top: -14px;
  right: 22px;
  background: #059669;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  text-transform: uppercase;
  z-index: 10;
}

.sp-plan-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.sp-plan-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.sp-plan-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.sp-plan-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.sp-strikethrough-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.sp-disc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid #a7f3d0;
  letter-spacing: 0.04em;
}

.sp-plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.sp-plan-price.highlight {
  color: #059669;
}

.sp-plan-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}

.sp-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex: 1;
}

.sp-plan-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: #334155;
}

.sp-plan-features li i {
  width: 17px;
  height: 17px;
  color: #059669;
  flex-shrink: 0;
}

.btn-plan {
  width: 100%;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}

.btn-plan-primary {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
}

.btn-plan-primary:hover {
  background: #047857;
  transform: translateY(-2px);
}

.btn-plan-secondary {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn-plan-secondary:hover {
  background: #e2e8f0;
  color: #059669;
  transform: translateY(-2px);
}

/* 3-Card Membership & Duration Selector System */
.sp-plan-card.plan-starter {
  border-color: #dbeafe;
}
.sp-plan-card.plan-growth {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  box-shadow: 0 8px 24px -4px rgba(217, 119, 6, 0.12);
}
.sp-plan-card.plan-pro {
  border-color: #e9d5ff;
  background: linear-gradient(180deg, #fdfaff 0%, #ffffff 100%);
  box-shadow: 0 8px 24px -4px rgba(124, 58, 237, 0.12);
}

.sp-ribbon-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35) !important;
}
.sp-ribbon-purple {
  background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35) !important;
}

.sp-trial-badge-wrap {
  margin-bottom: 0.75rem;
}
.sp-trial-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sp-full-access-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sp-disc-blue {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border-color: #bfdbfe !important;
}
.sp-disc-gold {
  background: #fffbeb !important;
  color: #b45309 !important;
  border-color: #fde68a !important;
}
.sp-disc-purple {
  background: #f5f3ff !important;
  color: #6d28d9 !important;
  border-color: #ddd6fe !important;
}

.sp-duration-selector {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.sp-duration-btn {
  flex: 1;
  padding: 0.55rem 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.sp-duration-btn:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.8);
}
.sp-duration-btn.active {
  background: #7c3aed;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}
.sp-duration-btn.vip-active {
  background: #d97706;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}

.sp-trial-note {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0.4rem 0 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.sp-feat-excluded {
  opacity: 0.6;
  text-decoration: line-through;
  color: #94a3b8 !important;
}
.sp-feat-excluded i {
  color: #94a3b8 !important;
}

.btn-plan-blue {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35) !important;
  border: none !important;
}
.btn-plan-blue:hover {
  background: #1d4ed8 !important;
  transform: translateY(-2px);
}
.btn-plan-gold {
  background: linear-gradient(135deg, #d97706, #b45309) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px -4px rgba(217, 119, 6, 0.35) !important;
  border: none !important;
}
.btn-plan-gold:hover {
  background: linear-gradient(135deg, #b45309, #92400e) !important;
  transform: translateY(-2px);
}
.btn-plan-purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.4) !important;
  border: none !important;
}
.btn-plan-purple:hover {
  background: linear-gradient(135deg, #6d28d9, #5b21b6) !important;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .sp-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vip-partner-crosslink-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .sp-plans-grid {
    grid-template-columns: 1fr;
  }
  .vip-plan-switcher {
    flex-direction: column;
    width: 100%;
    border-radius: 18px;
  }
  .vip-switcher-btn {
    width: 100%;
    border-radius: 14px;
  }
}

/* ──────────────────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────────────────── */
.about-hero-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.92));
  border: 1.5px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 60px -15px rgba(6, 78, 59, 0.08), 0 0 35px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.about-hero-aura {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15), rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.about-hero-wrapper::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1), transparent 70%);
  pointer-events: none;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-main-heading {
  font-family: var(--font-h);
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 1.2rem 0 1.8rem;
  background: linear-gradient(135deg, #062C22 20%, #059669 65%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-text {
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.about-intro-text strong {
  color: var(--text);
  font-weight: 700;
}

.text-gold {
  color: var(--gold) !important;
  font-weight: 700;
}

/* Founder Credential Stats Strip */
.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 150, 105, 0.15);
}

.about-stat-box {
  background: rgba(5, 150, 105, 0.04);
  border: 1.5px solid rgba(5, 150, 105, 0.14);
  border-radius: var(--r-md);
  padding: 1.2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--spring);
}

.about-stat-icon-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  margin-bottom: 0.4rem;
}

.about-stat-box:hover {
  background: rgba(5, 150, 105, 0.09);
  border-color: #059669;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.16), 0 0 15px rgba(212, 175, 55, 0.2);
}

.about-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 1.95rem;
  font-weight: 900;
  background: linear-gradient(135deg, #059669 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-artwork-column {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.about-artwork-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 60px rgba(6, 78, 59, 0.2), 0 0 40px rgba(212, 175, 55, 0.2);
  transition: all 0.5s var(--spring);
  background: #0b1320;
  width: 100%;
  max-width: 100%;
  min-height: 490px;
  height: 100%;
  display: flex;
}

.about-artwork-frame:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(6, 78, 59, 0.28), 0 0 50px rgba(212, 175, 55, 0.4);
}

.about-artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s ease;
}

.about-artwork-frame:hover .about-artwork-image {
  transform: scale(1.05);
}

.about-artwork-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18), transparent 75%);
}

.about-artwork-tech-pills {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 2;
}

.tech-pill {
  background: rgba(15, 23, 42, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.about-artwork-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(5, 150, 105, 0.4);
  border-radius: var(--r-full);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #f8fafc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
  animation: pulseLiveDot 2s infinite;
}

@keyframes pulseLiveDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ──────────────────────────────────────────────────────────
   THE 4 COMMITMENTS
   ────────────────────────────────────────────────────────── */
.about-commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.about-commitment-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.92));
  border: 1.5px solid rgba(5, 150, 105, 0.16);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--spring);
  box-shadow: var(--shadow-card);
}

.commitment-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15), transparent 70%);
  pointer-events: none;
}

.commitment-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  align-self: flex-start;
}

.about-commitment-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(6, 78, 59, 0.1);
}

.commitment-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--dur) var(--ease);
}

.about-commitment-card:hover .commitment-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: rgba(5, 150, 105, 0.12);
  border-color: var(--blue);
}

.about-commitment-card h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.about-commitment-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   CAPABILITIES MATRIX
   ────────────────────────────────────────────────────────── */
.about-subsection-title {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform 0.5s var(--spring);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.about-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.15);
  color: var(--blue);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-glow), var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.about-card:hover::after {
  opacity: 1;
}

.about-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-6px);
}

.about-card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(5, 150, 105, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 150, 105, 0.12);
  transition: all var(--dur) var(--ease);
}

.about-card:hover .about-card-icon-wrap {
  background: rgba(5, 150, 105, 0.12);
  transform: scale(1.08);
}

.about-card h4 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 750;
  color: var(--text);
  margin: 0;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.about-supporting-paragraph {
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 2rem 2.8rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(214, 175, 55, 0.05));
  border-left: 5px solid var(--blue);
  box-shadow: 0 10px 30px rgba(6, 78, 59, 0.04);
  border-top: 1px solid rgba(6, 78, 59, 0.08);
  border-right: 1px solid rgba(6, 78, 59, 0.08);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.about-supporting-paragraph p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────
   SYNERGY TRIAD & FORMULA
   ────────────────────────────────────────────────────────── */
.about-approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.about-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 3.2rem 2.4rem;
  text-align: center;
  position: relative;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-card);
}

.about-pillar-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.12);
}

.about-pillar-number {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(5, 150, 105, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--dur) var(--ease);
  letter-spacing: -0.05em;
}

.about-pillar-card:hover .about-pillar-number {
  color: var(--blue);
}

.about-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--blue);
  font-size: 1.5rem;
  transition: all var(--dur) var(--ease);
}

.about-pillar-card:hover .about-pillar-icon {
  transform: scale(1.15);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(5, 150, 105, 0.4);
}

.about-pillar-card h4 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.about-pillar-statement {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.about-pillar-philosophy {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.about-approach-footer {
  text-align: center;
}

.about-approach-formula {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #ffffff, rgba(248, 250, 248, 0.95));
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-full);
  padding: 1rem 2.8rem;
  box-shadow: 0 16px 45px rgba(6, 78, 59, 0.08), 0 0 30px rgba(212, 175, 55, 0.15);
}

.formula-element {
  font-family: var(--font-h);
  font-weight: 750;
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.formula-plus {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.4rem;
}

.formula-equals {
  color: var(--blue);
  font-weight: 900;
  font-size: 1.4rem;
}

.formula-result {
  font-family: var(--font-h);
  font-weight: 850;
  color: var(--blue);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.about-approach-conclusion {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
  max-width: 680px;
  margin: 1.8rem auto 0;
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   VISION & MISSION DUAL CARDS
   ────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────
   VISION & MISSION DUAL CARDS
   ────────────────────────────────────────────────────────── */
.about-vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.about-vm-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.92));
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 50px -15px rgba(6, 78, 59, 0.08);
  transition: all 0.35s var(--spring);
}

.about-vm-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.14), 0 0 25px rgba(212, 175, 55, 0.15);
}

.vision-card {
  border-top: 5px solid var(--gold);
}

.mission-card {
  border-top: 5px solid #059669;
}

.vm-badge-wrap {
  margin-bottom: 1.8rem;
}

.about-vision-badge {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
}

.about-mission-badge {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #059669;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 150, 105, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(5, 150, 105, 0.3);
}

.about-vision-quote {
  font-family: var(--font-h);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-mission-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-mission-block {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.highlight-text {
  color: #0f172a;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(5, 150, 105, 0.15) 65%);
  padding: 0 3px;
}

/* ──────────────────────────────────────────────────────────
   PHILOSOPHY & CTA HUB
   ────────────────────────────────────────────────────────── */
.about-philosophy-section {
  text-align: center;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.about-philosophy-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 248, 0.88));
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.06), 0 0 30px rgba(212, 175, 55, 0.1);
  transition: all 0.35s var(--spring);
}

.about-philosophy-container:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.12), 0 0 40px rgba(212, 175, 55, 0.2);
}

.about-philosophy-text {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 1rem 0 0.8rem;
  background: linear-gradient(135deg, #062C22 20%, #059669 60%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-philosophy-sub {
  font-size: 1.1rem;
  color: #475569;
  font-weight: 600;
  margin: 0 auto;
}

.about-action-cta {
  background: linear-gradient(135deg, #062C22 0%, #064E3B 60%, #059669 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-xl);
  padding: 3.5rem 4rem;
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.25), 0 0 30px rgba(212, 175, 55, 0.15);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-action-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  pointer-events: none;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.about-cta-text h3 {
  font-family: var(--font-h);
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.about-cta-text p {
  font-size: 1.02rem;
  color: #e2e8f0;
  margin: 0;
  max-width: 620px;
  line-height: 1.65;
}

.about-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE STYLES FOR ABOUT
   ────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .about-commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-artwork-column {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
  .about-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-approach-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .about-cta-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero-wrapper {
    padding: 2.2rem 1.6rem;
  }
  .about-main-heading {
    font-size: 2.1rem;
  }
  .about-capabilities-grid {
    grid-template-columns: 1fr;
  }
  .about-commitments-grid {
    grid-template-columns: 1fr;
  }
  .about-vision-quote {
    font-size: 1.45rem;
  }
  .about-philosophy-text {
    font-size: 2.1rem;
  }
  .about-action-cta {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 576px) {
  .about-approach-formula {
    border-radius: var(--r-md);
    padding: 1rem 1.4rem;
    gap: 0.6rem;
  }
  .formula-element {
    font-size: 0.88rem;
  }
  .formula-result {
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  .about-cta-buttons {
    flex-direction: column;
  }
  .about-cta-buttons .btn {
    width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────── */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card,
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
}

.c-detail-item i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   CART ITEMS
   ────────────────────────────────────────────────────────── */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  gap: 0.85rem;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cart-item-row:hover {
  border-color: rgba(31, 94, 74, 0.3);
  box-shadow: 0 4px 16px rgba(31, 94, 74, 0.08);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
}

.cart-item-info span {
  font-size: 0.76rem;
  color: #666666;
  font-weight: 500;
}

.cart-item-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cart-item-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: #D9A441;
}

.remove-btn {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 0.45rem;
  color: #EF4444;
  transition: all 0.2s;
  cursor: pointer;
}

.remove-btn:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: #EF4444;
}

.remove-btn i {
  width: 16px;
  height: 16px;
}

/* Coupon & Membership */
.coupon-group {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.coupon-group input {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  color: #222222;
  font-size: 0.86rem;
  font-weight: 500;
  font-family: var(--font-b);
  outline: none;
  transition: all 0.2s var(--ease);
}

.coupon-group input::placeholder {
  color: #666666;
}

.coupon-group input:focus {
  background: #FFFFFF;
  border-color: #1F5E4A;
  box-shadow: 0 0 0 3px rgba(31, 94, 74, 0.12);
}

.coupon-group .btn {
  background: #EAF6EF;
  border: 1px solid rgba(31, 94, 74, 0.25);
  color: #1F5E4A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.coupon-group .btn:hover {
  background: #1F5E4A;
  color: #FFFFFF;
}

.coupon-msg {
  font-size: 0.78rem;
  min-height: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.membership-toggle-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.toggle-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #222222;
}

.toggle-text span {
  font-size: 0.76rem;
  color: #666666;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(148, 163, 184, 0.3);
  border-radius: 24px;
  transition: 0.3s;
}

.slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
  background: #1F5E4A;
}

input:checked+.slider::before {
  transform: translateX(20px);
}

.totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.tot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666666;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #E8E8E8;
}

.tot-row strong {
  color: #222222;
  font-weight: 700;
}

.tot-row.text-cyan,
#discount-row {
  color: #1F5E4A !important;
}

.tot-row.text-cyan strong,
#discount-row strong {
  color: #1F5E4A !important;
}

.grand-total-row {
  border-bottom: none;
  border-top: 1px solid #E8E8E8;
  padding-top: 0.85rem;
  margin-top: 0.2rem;
}

.grand-total-row span:first-child {
  font-weight: 800;
  color: #222222;
  font-size: 0.95rem;
}

.total-price {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  color: #D9A441;
}

.save-share-bar {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.save-share-bar .btn {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  color: #222222;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.save-share-bar .btn:hover {
  background: #EAF6EF;
  border-color: #1F5E4A;
  color: #1F5E4A;
  box-shadow: 0 2px 8px rgba(31, 94, 74, 0.1);
}

.cart-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
}

.cart-action-buttons .btn-gold {
  background: linear-gradient(135deg, #D89A32 0%, #E8B95A 100%);
  color: #000000;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 14px;
  border: none;
  padding: 0.75rem;
  box-shadow: 0 4px 14px rgba(216, 154, 50, 0.25);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.cart-action-buttons .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 154, 50, 0.35);
}

.cart-action-buttons .btn-primary {
  background: linear-gradient(135deg, #1F5E4A 0%, #164738 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 14px;
  border: none;
  padding: 0.75rem;
  box-shadow: 0 4px 14px rgba(31, 94, 74, 0.25);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.cart-action-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 94, 74, 0.35);
}

/* ──────────────────────────────────────────────────────────
   FORMS
   ────────────────────────────────────────────────────────── */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.form-group input,
.form-control-textarea {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 0.88rem;
  font-family: var(--font-b);
  outline: none;
  transition: all 0.2s var(--ease);
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-control-textarea:focus {
  border-color: var(--blue);
}

.form-control-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ──────────────────────────────────────────────────────────
   MODALS
   ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(6, 78, 59, 0.18), 0 4px 20px rgba(0, 0, 0, 0.05);
  animation: modalIn 0.35s var(--spring);
  color: var(--text);
}

.modal-lg {
  max-width: 820px;
}

@keyframes modalIn {
  from {
    transform: scale(0.88) translateY(24px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
  flex-shrink: 0;
}

.modal-header h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 800;
}

.modal-body {
  padding: 1.5rem 1.8rem;
  flex: 1;
  max-height: calc(85vh - 75px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.close-modal-btn {
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 0.3rem 0.6rem;
  font-size: 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.close-modal-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--red);
  color: var(--red);
}

/* Close on overlay */
.modal-overlay {
  cursor: default;
}

/* ──────────────────────────────────────────────────────────
   COMPARISON TABLE
   ────────────────────────────────────────────────────────── */
.table-responsive {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.matrix-table th,
.matrix-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.matrix-table th {
  background: rgba(0, 210, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
}

.matrix-table th:first-child,
.matrix-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.matrix-table td {
  color: var(--muted);
}

/* Portfolio gallery */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem;
}

.portfolio-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.portfolio-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.portfolio-card p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Checkout */
.checkout-summary-box {
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.14);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}

.service-cat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   TOAST
   ────────────────────────────────────────────────────────── */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--green);
  border-radius: var(--r-full);
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 999;
  transition: transform 0.4s var(--spring);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  color: var(--green);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

.toast-notification i {
  width: 18px;
  height: 18px;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: rgba(3, 3, 10, 0.97);
  border-top: 1px solid var(--border);
  padding: 4.5rem 1.5rem 2rem;
  margin-top: 6rem;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--magenta), var(--gold), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.2rem;
}

.footer-links-group a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--blue);
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--dim);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   LOGO IMAGES (real logo)
   ────────────────────────────────────────────────────────── */
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.35));
  flex-shrink: 0;
}

.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  filter: drop-shadow(0 12px 30px rgba(5, 150, 105, 0.35)) drop-shadow(0 20px 45px rgba(212, 175, 55, 0.3));
  animation: logoPulse 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ──────────────────────────────────────────────────────────
   ICON HELPERS
   ────────────────────────────────────────────────────────── */
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 36px;
  height: 36px;
}

/* ──────────────────────────────────────────────────────────
   GLOW DIVIDER
   ────────────────────────────────────────────────────────── */
.glow-divider {
  width: 100%;
  height: 1px;
  margin: 3rem 0;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width:1100px) {
  .wizard-layout {
    grid-template-columns: 1fr;
  }

  .wizard-summary-panel {
    position: static;
  }

  .main-nav-links {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .advisor-btn {
    display: none;
  }
}

@media (max-width:900px) {
  .stats-counter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   COMPACT LUXURY FOOTER — OmniFlonex AI
   Inspired by Apple, OpenAI, Stripe, Linear, Framer, Vercel
   ============================================================ */

/* ============================================================
   DESIGNER COMPACT FOOTER — OmniFlonex AI
   ============================================================ */

.footer-compact {
  position: relative;
  background: linear-gradient(180deg, #091410 0%, #030806 100%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.8), 0 -2px 30px rgba(5, 150, 105, 0.2);
  padding: 1rem 2.5rem 0.8rem;
  isolation: isolate;
  overflow: hidden;
  z-index: 100;
}

/* Thin animated gradient top border */
.footer-compact-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #059669 25%, #10B981 50%, #D4AF37 75%, transparent 100%);
  background-size: 200% 100%;
  animation: footerBorderShift 5s linear infinite;
  opacity: 0.95;
}

@keyframes footerBorderShift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* Soft ambient glow background orb */
.footer-compact-ambient {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.15) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

/* Inner Container */
.footer-compact-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── TOP ROW ── */
.footer-compact-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* LEFT: Brand Logo & Tagline */
.footer-compact-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-compact-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}

.footer-compact-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-compact-logo:hover .footer-compact-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.footer-compact-brand-name {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.footer-compact-tagline {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CENTER: Clean Luxury Footer Navigation */
.footer-compact-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.footer-compact-nav a {
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.footer-compact-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #10B981, #D4AF37);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-compact-nav a:hover {
  color: #10B981;
}

.footer-compact-nav a:hover::after {
  width: 100%;
}


/* RIGHT: Animated Social Icons */
.footer-compact-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-social-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34D399;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Divider Line */
.footer-compact-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

/* ── BOTTOM ROW ── */
.footer-compact-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #94A3B8;
}

/* LEFT: Copyright */
.footer-compact-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 500;
}

/* CENTER: Essential Legal Policies */
.footer-compact-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-compact-legal a {
  font-size: 0.8rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-compact-legal a:hover {
  color: #10B981;
}

/* RIGHT: Contact Email Pill */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #E2E8F0;
  text-decoration: none;
  padding: 0.45rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.footer-email-link svg,
.footer-email-link i {
  width: 14px;
  height: 14px;
  color: #10B981;
}

.footer-email-link:hover {
  color: #062C22;
  background: #10B981;
  border-color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.footer-email-link:hover svg,
.footer-email-link:hover i {
  color: #062C22;
}



/* ── COMPACT FOOTER RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-compact {
    padding: 2rem 1.8rem 1.6rem;
  }

  .footer-compact-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-compact-brand {
    align-items: center;
  }

  .footer-compact-nav {
    justify-content: center;
    gap: 1.4rem;
  }

  .footer-compact-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-compact-legal {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-compact-nav {
    gap: 1rem;
    font-size: 0.82rem;
  }

  .footer-compact-legal {
    gap: 0.75rem;
    font-size: 0.74rem;
  }

  .footer-compact-copy {
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-compact-bullet {
    display: none;
  }
}


@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .main-container {
    padding: 1.5rem 1rem 4rem;
  }

  .hero-main-heading {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tagline {
    display: none;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  .cart-drawer.open {
    right: 0;
  }

  .category-grid-buttons {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .currency-selector-wrapper {
    display: none;
  }

  .stats-counter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trust-strip .trust-chip:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-counter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-box {
    border-radius: var(--r-lg);
  }

  .hero-logo-img {
    width: 110px;
    height: 110px;
  }
}

/* ============================================================
   SERVICE DEDICATED ADD-ONS — HORIZONTAL ROWS
   ============================================================ */
.addons-rows-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.addon-row-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-user-select: none;
  user-select: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.addon-row-item:hover {
  background: rgba(0, 210, 255, 0.04);
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.08);
}

.addon-row-item.active {
  background: rgba(0, 210, 255, 0.08);
  border-color: var(--blue);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.18), inset 0 0 15px rgba(0, 210, 255, 0.05);
}

.addon-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.addon-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.addon-row-icon svg,
.addon-row-icon i {
  width: 16px;
  height: 16px;
}

.addon-row-item.active .addon-row-icon {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.5);
}

.addon-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.addon-row-title {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.addon-row-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.addon-row-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.addon-row-price {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}

.addon-row-item.active .addon-row-price {
  background: rgba(255, 0, 127, 0.15);
  border-color: rgba(255, 0, 127, 0.4);
  color: var(--magenta);
}

/* Custom Checkbox Animation */
.addon-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.addon-row-item:hover .addon-checkbox {
  border-color: var(--blue);
}

.addon-row-item.active .addon-checkbox {
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.addon-checkbox svg,
.addon-checkbox i {
  width: 13px;
  height: 13px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   HERO FEATURED ADD-ONS STRIP (Replaces old stats bar)
   ============================================================ */
.hero-addons-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.hero-addon-card {
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}

.hero-addon-card:hover {
  background: rgba(0, 210, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 210, 255, 0.15);
}

.hero-addon-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero-addon-card:hover .hero-addon-icon {
  transform: scale(1.1) rotate(4deg);
}

.card-icon-blue {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--blue);
}

.card-icon-magenta {
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: var(--magenta);
}

.card-icon-gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
}

.hero-addon-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.hero-addon-title {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.hero-addon-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-addon-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .hero-addons-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-addons-strip {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   $50,000-TIER ULTRA-LUXURY 3D WEBGL & SMOOTH SCROLL ARCHITECTURE
   =================================================================== */

/* Fixed WebGL Canvas Background */
#webgl-canvas {
  display: none !important;
}

/* Lenis Smooth Scroll/* ──────────────────────────────────────────────────────────
   FLAGSHIP SERVICES 3x3 ULTRA-LUXURY GRID SYSTEM
   ────────────────────────────────────────────────────────── */

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.flagship-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.03),
    0 30px 60px rgba(5, 150, 105, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.45s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}

.flagship-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 40px 80px rgba(5, 150, 105, 0.16),
    inset 0 1px 2px rgba(255, 255, 255, 1);
}

/* Card Glow Variants */
.card-glow-purple:hover {
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.18), 0 0 30px rgba(168, 85, 247, 0.12);
}

.card-glow-magenta:hover {
  box-shadow: 0 20px 50px rgba(219, 39, 119, 0.18), 0 0 30px rgba(236, 72, 153, 0.12);
}

.card-glow-blue:hover {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18), 0 0 30px rgba(59, 130, 246, 0.12);
}

.card-glow-cyan:hover {
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.18), 0 0 30px rgba(34, 211, 238, 0.12);
}

.card-glow-gold:hover {
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.18), 0 0 30px rgba(251, 191, 36, 0.12);
}

/* Glass Shine Reflection Sweep */
.flagship-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%,
      transparent 100%);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 4;
}

.flagship-card:hover .flagship-card-shine {
  transform: rotate(30deg) translateY(100%);
}

/* =========================================================
   FLAGSHIP FEATURED FULL-WIDTH SHOWCASE CARD (SPANS ALL COLS)
   ========================================================= */
.flagship-featured-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.98) 100%) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.35) !important;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(5, 150, 105, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.4s ease;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  cursor: pointer;
  position: relative;
  margin-top: 1rem;
}

.flagship-featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.6) !important;
  box-shadow: 0 25px 65px rgba(5, 150, 105, 0.18), 0 0 35px rgba(245, 158, 11, 0.12) !important;
}

.flagship-featured-content {
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.flagship-featured-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.flagship-featured-visual img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: fill !important;
  display: block !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.flagship-featured-card:hover .flagship-featured-visual img {
  transform: scale(1.025) !important;
}

@media (max-width: 1024px) {
  .flagship-featured-card {
    grid-template-columns: 1fr !important;
  }
  .flagship-featured-visual {
    min-height: 280px;
    max-height: 320px;
  }
  .flagship-featured-content {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 640px) {
  .flagship-featured-visual {
    min-height: 220px;
    max-height: 260px;
  }
  .flagship-featured-content {
    padding: 1.6rem 1.25rem;
  }
}

.flagship-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
  background: #0f172a;
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.flagship-img-wrap img,
.flagship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.flagship-card:hover .flagship-img-wrap img,
.flagship-card:hover .flagship-img {
  transform: scale(1.05);
}

.flagship-img-overlay {
  display: none;
}

.flagship-floating-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ═════════════════════════ PORTFOLIO SHOWCASE SYSTEM (ULTRA-LUXURY) ═════════════════════════ */
.portfolio-spotlight-card {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(5, 150, 105, 0.22) 0%, rgba(15, 23, 42, 0.98) 65%), #0a0f1d;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(5, 150, 105, 0.18);
  margin-bottom: 2.5rem;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-spotlight-card:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.45), 0 0 60px rgba(5, 150, 105, 0.3);
}

.portfolio-spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
}

@media (max-width: 960px) {
  .portfolio-spotlight-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.portfolio-spotlight-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.portfolio-spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-spotlight-card:hover .portfolio-spotlight-img-wrap img {
  transform: scale(1.06);
}

.spotlight-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.spotlight-live-pulse .pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: spotlightPulse 2s infinite;
}

@keyframes spotlightPulse {
  0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ═════════════════════════ PORTFOLIO VIDEO SHOWCASE HUB ═════════════════════════ */
.portfolio-video-showcase-card {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 20px 50px rgba(5, 150, 105, 0.07);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 2.2rem;
}

.portfolio-video-showcase-card:hover {
  border-color: rgba(5, 150, 105, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 25px 60px rgba(5, 150, 105, 0.18);
}

.portfolio-video-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}

@media (max-width: 992px) {
  .portfolio-video-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.portfolio-video-player-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(5, 150, 105, 0.2);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.portfolio-video-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #090e1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(1.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  z-index: 5;
}

.pf-video-play-overlay:hover {
  background: rgba(5, 150, 105, 0.35);
}

.pf-play-btn-glow {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  animation: spotlightPulse 2s infinite;
  transition: transform 0.3s ease;
}

.pf-video-play-overlay:hover .pf-play-btn-glow {
  transform: scale(1.1);
}

.pf-play-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
}

.pf-play-icon {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.pf-play-label {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.pf-video-live-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
}

.pf-video-bottom-chip {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  z-index: 6;
}

.pf-res-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: #fcd34d;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(252, 211, 77, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.portfolio-video-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.pf-video-playlist-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.pf-video-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.pf-video-pill:hover {
  border-color: #059669;
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.pf-video-pill.active {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.portfolio-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2.2rem auto;
}

.portfolio-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.portfolio-search-box input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 9999px;
  padding: 0.65rem 1.2rem 0.65rem 2.8rem;
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 600;
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.portfolio-search-box input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.portfolio-search-box i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #059669;
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.portfolio-search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: none;
  padding: 2px;
}

.portfolio-search-clear:hover {
  color: #0f172a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.cat-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .cat-pills-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
  }

  .ind-pill {
    flex-shrink: 0;
  }
}

.ind-pill {
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  color: #475569;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.ind-pill .pill-badge {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.ind-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 150, 105, 0.4);
  color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
}

.ind-pill.active {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  border-color: #059669;
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
  transform: translateY(-2px);
}

.ind-pill.active .pill-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Portfolio Card Luxury Upgrade */
.portfolio-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 20px 45px rgba(5, 150, 105, 0.04);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(5, 150, 105, 0.2);
}

.portfolio-img-wrap {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img-wrap img.portfolio-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-card:hover .portfolio-img-wrap img.portfolio-img {
  transform: scale(1.08) !important;
}

.portfolio-img-wrap .pf-overlay-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-img-wrap .pf-overlay-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.pf-quick-view-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.22);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
}

.portfolio-card:hover .pf-quick-view-overlay {
  opacity: 1;
}

.pf-quick-view-btn {
  background: rgba(255, 255, 255, 0.98);
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #10b981;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card:hover .pf-quick-view-btn {
  transform: translateY(0);
}

.pf-quick-view-btn:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.45);
}

/* Wide Panoramic Portfolio Showcase Card (Top Real Estate Flagship Item) */
.portfolio-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05), 0 20px 45px rgba(5, 150, 105, 0.06);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  cursor: pointer;
  margin-bottom: 0.8rem;
  position: relative;
}

.portfolio-card-wide:hover {
  transform: translateY(-6px) scale(1.008);
  border-color: rgba(5, 150, 105, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(5, 150, 105, 0.2);
}

.portfolio-card-wide .pf-wide-img-wrap {
  position: relative;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  background: #f8fafc;
  border-right: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-wide .pf-wide-img-wrap video,
.portfolio-card-wide .pf-wide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.portfolio-card-wide:hover .pf-wide-img-wrap video,
.portfolio-card-wide:hover .pf-wide-img-wrap img {
  transform: scale(1.04);
}

/* Sovereign Penthouse Interactive Video Play Overlay */
.pf-interactive-video-box {
  cursor: pointer;
  position: relative;
}

.pf-sovereign-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.25);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  z-index: 3;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.pf-sovereign-play-overlay.playing {
  opacity: 0;
  visibility: hidden;
}

.pf-play-btn-circle-glow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.35);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: playPulseGlow 2.2s infinite ease-in-out;
}

@keyframes playPulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(16, 185, 129, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 45px rgba(16, 185, 129, 0.85), 0 0 25px rgba(245, 158, 11, 0.3); }
}

.portfolio-card-wide:hover .pf-play-btn-circle-glow {
  transform: scale(1.12);
}

.pf-play-btn-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.pf-play-overlay-text {
  font-family: var(--font-h, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.85);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pf-sovereign-start-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  font-family: var(--font-h, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.15rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.pf-sovereign-start-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.55);
}

.portfolio-card-wide .pf-wide-content {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background: #ffffff;
}

@media (max-width: 992px) {
  .portfolio-card-wide {
    grid-template-columns: 1fr;
  }
  .portfolio-card-wide .pf-wide-img-wrap {
    min-height: 240px;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
  .portfolio-card-wide .pf-wide-content {
    padding: 1.4rem;
  }
}

/* Modal Tab Styling */
.portfolio-modal-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1.5px solid #e2e8f0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.4rem;
  overflow-x: auto;
}

.pf-tab-btn {
  background: none;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-tab-btn:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.pf-tab-btn.active {
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
  font-weight: 800;
}

/* Dedicated Ultra-Smooth Rolling Bar / Scrollbar for Portfolio Showcase Modal */
#portfolio-showcase-modal {
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

#portfolio-showcase-modal .modal-card {
  max-height: 88vh !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
  scrollbar-color: #059669 #f1f5f9 !important;
  position: relative !important;
}

#portfolio-showcase-modal .modal-card::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block !important;
}

#portfolio-showcase-modal .modal-card::-webkit-scrollbar-track {
  background: #f1f5f9 !important;
  border-radius: 999px !important;
  margin: 10px 0 !important;
}

#portfolio-showcase-modal .modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669, #10b981) !important;
  border-radius: 999px !important;
  border: 2px solid #f1f5f9 !important;
}

#portfolio-showcase-modal .modal-card::-webkit-scrollbar-thumb:hover {
  background: #047857 !important;
}

/* Categories Hub Grid Styling */
.categories-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.category-hub-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.03),
    0 30px 60px rgba(5, 150, 105, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.45s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.category-hub-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 40px 80px rgba(5, 150, 105, 0.16),
    inset 0 1px 2px rgba(255, 255, 255, 1);
}

.category-hub-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}

.category-hub-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  border-radius: 12px;
}

.category-hub-card:hover .category-hub-img {
  transform: scale(1.04);
}

.category-hub-content {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.category-hub-content h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.subcats-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.subcat-item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.85rem;
  background: var(--bg-surface, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.subcat-item-btn:hover {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(212, 175, 55, 0.1));
  border-color: rgba(5, 150, 105, 0.3);
  color: var(--blue);
  transform: translateX(3px);
}

/* Card Content */
.flagship-card-content {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.flagship-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.flagship-card:hover .flagship-icon-box {
  transform: translateY(-3px) rotate(-4deg);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  color: #ffffff;
}

.flagship-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.flagship-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

/* Features List */
.flagship-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flagship-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.flagship-features li i {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

/* CTA Button */
.flagship-btn {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}

.flagship-btn i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.flagship-card:hover .flagship-btn i {
  transform: translateX(4px);
}

/* Responsive Grid Rules */
@media (max-width: 1100px) {
  .flagship-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flagship-img-wrap {
    height: 190px;
  }

  .flagship-card-content {
    padding: 1.4rem;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* $50k Telemetry HUD Badge Overlay */
.luxury-hud-overlay {
  display: none !important;
}

.luxury-hud-overlay:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 10px #059669;
  animation: hudPulse 2s infinite ease-in-out;
}

@keyframes hudPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.hud-divider {
  width: 1px;
  height: 14px;
  background: rgba(6, 78, 59, 0.18);
}

.hud-audio-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.hud-audio-btn:hover {
  color: var(--white);
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.1);
}

/* ===================================================================
   LEGAL & PRIVACY POLICY HUB MODAL STYLES
   =================================================================== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 44, 34, 0.65);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-box {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--r-xl);
  box-shadow: 0 25px 70px rgba(6, 78, 59, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: legalModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes legalModalPop {
  0% {
    transform: scale(0.94) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.legal-modal-header {
  padding: 1.5rem 2rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  background: linear-gradient(180deg, rgba(248, 250, 248, 0.9), #ffffff);
}

.legal-modal-badge {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.legal-modal-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: #062C22;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.legal-modal-close {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #062C22;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.legal-modal-close:hover {
  background: #059669;
  color: #ffffff;
}

.legal-nav-tabs {
  display: flex;
  gap: 6px;
  padding: 0.75rem 2rem;
  background: #F8FAF8;
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  overflow-x: auto;
  white-space: nowrap;
}

.legal-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.legal-tab-btn:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.legal-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.legal-modal-body {
  padding: 1.75rem 2rem;
  overflow-y: auto;
  color: #1E293B;
  font-family: var(--font-b);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.legal-modal-body h4 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: #062C22;
  margin: 1.25rem 0 0.4rem;
}

.legal-modal-body p {
  margin-bottom: 0.8rem;
}

.legal-modal-footer {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(5, 150, 105, 0.12);
  background: #F8FAF8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-footer-note {
  font-size: 0.75rem;
  color: #64748B;
  font-family: var(--font-b);
}

/* 3D Kinetic Tilt Card Enhancements */
.flagship-card,
.commit-card,
.portfolio-card,
.price-card,
.contact-info-card,
.contact-form-card,
.hero-addon-card {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.flagship-card:hover,
.commit-card:hover,
.portfolio-card:hover,
.price-card:hover,
.hero-addon-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 210, 255, 0.15);
}

@media (max-width: 768px) {
  .luxury-hud-overlay {
    bottom: 16px;
    left: 16px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }

  .hud-item-extra {
    display: none;
  }
}

/* ===================================================================
   STANDALONE LEGAL PAGE & PRIVACY HUB STYLES
   =================================================================== */
.legal-page-wrapper {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.legal-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 3.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 248, 0.85));
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.06);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #D4AF37, #047857);
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.legal-hero-title {
  font-family: var(--font-h);
  font-size: 2.75rem;
  font-weight: 800;
  color: #062C22;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.legal-hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}

.legal-meta-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.legal-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #064E3B;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(5, 150, 105, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
}

/* Legal Filter / Search Bar */
.legal-search-box {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.legal-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 2.8rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 50px;
  background: #ffffff;
  color: #0F172A;
  box-shadow: 0 8px 25px rgba(6, 78, 59, 0.06);
  outline: none;
  transition: all 0.25s ease;
}

.legal-search-input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15), 0 10px 30px rgba(6, 78, 59, 0.1);
}

.legal-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dim);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Pills Bar for Quick Document Links */
.legal-pills-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.legal-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 50px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.04);
}

.legal-pill-link:hover,
.legal-pill-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

/* Layout Grid */
.legal-grid-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .legal-grid-container {
    grid-template-columns: 1fr;
  }
}

/* Sticky Sidebar Nav */
.legal-sidebar {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(6, 78, 59, 0.05);
}

.legal-sidebar-title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: #062C22;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-toc-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #475569;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-toc-item a:hover,
.legal-toc-item a.active {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  font-weight: 700;
}

.legal-pdf-box {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(5, 150, 105, 0.12);
}

.legal-pdf-box-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #064E3B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #064E3B;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-pdf-btn:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

/* Legal Cards in Content Area */
.legal-card-section {
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(6, 78, 59, 0.05);
  scroll-margin-top: 100px;
  position: relative;
}

.legal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.8rem;
  border-bottom: 2px solid rgba(5, 150, 105, 0.12);
}

.legal-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.12));
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(5, 150, 105, 0.25);
  flex-shrink: 0;
}

.legal-card-title {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 800;
  color: #062C22;
  margin: 0;
}

.legal-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.legal-section-block {
  margin-bottom: 1.8rem;
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-section-heading {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: #062C22;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-section-heading span.num {
  color: #059669;
  font-weight: 800;
}

.legal-section-body {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.7;
}

.legal-section-body p {
  margin-bottom: 0.75rem;
}

.legal-section-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.legal-section-body li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal-section-body li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #059669;
  font-size: 0.75rem;
}

/* Callout highlight inside legal text */
.legal-callout {
  background: rgba(5, 150, 105, 0.05);
  border-left: 4px solid #059669;
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: #064E3B;
}

.legal-callout strong {
  color: #062C22;
}

.highlight-match {
  background: #FEF08A;
  color: #000;
  padding: 2px 4px;
  border-radius: 3px;
}

/* ===================================================================
   USER AUTHENTICATION (SIGN IN & SIGN UP) MODAL & PROFILE STYLES
   =================================================================== */
/* Generic Modal Overlay System */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden !important;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-overlay .modal-card,
.modal-card {
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  max-height: 85vh !important;
  height: auto;
  overflow-y: scroll !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: #059669 #f1f5f9;
  position: relative;
}

.modal-overlay.active .modal-card,
.modal-overlay.active .of-modal-card {
  transform: scale(1) translateY(0);
}

/* Image Lightbox Specific Styling */
#image-lightbox-modal {
  z-index: 999999 !important;
  background: rgba(3, 7, 18, 0.94) !important;
}

#image-lightbox-modal .modal-card {
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  max-width: 1100px !important;
  width: 95% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Custom Emerald Rolling Bar / Scrollbar for Modal Cards */
.modal-card::-webkit-scrollbar,
.of-modal-card::-webkit-scrollbar,
#sd-modal-body::-webkit-scrollbar,
#sd-modal-content::-webkit-scrollbar {
  width: 10px !important;
  display: block !important;
}

.modal-card::-webkit-scrollbar-track,
.of-modal-card::-webkit-scrollbar-track,
#sd-modal-body::-webkit-scrollbar-track,
#sd-modal-content::-webkit-scrollbar-track {
  background: #f1f5f9 !important;
  border-radius: 999px !important;
}

.modal-card::-webkit-scrollbar-thumb,
.of-modal-card::-webkit-scrollbar-thumb,
#sd-modal-body::-webkit-scrollbar-thumb,
#sd-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669 0%, #10b981 100%) !important;
  border-radius: 999px !important;
  border: 2px solid #f1f5f9 !important;
}

.modal-card::-webkit-scrollbar-thumb:hover,
.of-modal-card::-webkit-scrollbar-thumb:hover,
#sd-modal-body::-webkit-scrollbar-thumb:hover,
#sd-modal-content::-webkit-scrollbar-thumb:hover {
  background: #047857 !important;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 44, 34, 0.75);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-box {
  width: 100%;
  max-width: 920px;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--r-xl);
  box-shadow: 0 25px 80px rgba(6, 78, 59, 0.3);
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  position: relative;
  animation: authModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authModalPop {
  0% {
    transform: scale(0.94) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .auth-modal-box {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .auth-modal-left {
    display: none;
  }
}

.auth-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #062C22;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.auth-modal-close:hover {
  background: #059669;
  color: #ffffff;
}

/* Left Brand Panel */
.auth-modal-left {
  background: linear-gradient(145deg, #064E3B, #047857, #062C22);
  color: #ffffff;
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-modal-left::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.auth-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
  margin-bottom: 1rem;
}

.auth-brand-info h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.auth-brand-info p {
  font-size: 0.88rem;
  color: #A7F3D0;
  line-height: 1.55;
}

.auth-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ECFDF5;
}

.auth-feature-item i {
  color: #D4AF37;
  width: 16px;
  height: 16px;
}

/* Right Form Panel */
.auth-modal-right {
  padding: 2.5rem 2.5rem 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
}

.auth-tabs {
  display: flex;
  background: #F1F5F9;
  padding: 4px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.auth-tab-btn {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.auth-demo-hint {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #92400E;
  margin-bottom: 1.25rem;
}

.auth-demo-hint code {
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.auth-social-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-social:hover {
  background: #F8FAFC;
  border-color: #059669;
  color: #059669;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 0.8rem 0 1.25rem;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #E2E8F0;
}

.auth-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #94A3B8;
}

.auth-field {
  margin-bottom: 1rem;
}

.auth-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-icon {
  position: absolute;
  left: 12px;
  color: #94A3B8;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.auth-input-wrap input,
.auth-input-wrap select {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.4rem;
  font-family: var(--font-b);
  font-size: 0.86rem;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}

.auth-input-wrap input:focus,
.auth-input-wrap select:focus {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.6;
}

.password-toggle:hover {
  opacity: 1;
}

.auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  cursor: pointer;
}

.auth-forgot {
  color: #059669;
  font-weight: 700;
  text-decoration: none;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.strength-bar-wrap {
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
}

.strength-weak {
  width: 33%;
  background: #EF4444;
}

.strength-medium {
  width: 66%;
  background: #F59E0B;
}

.strength-strong {
  width: 100%;
  background: #10B981;
}

.strength-label {
  font-size: 0.7rem;
  color: #64748B;
  display: block;
  margin-top: 3px;
}

/* User Profile Badge in Header */
.auth-profile-wrapper {
  position: relative;
}

.auth-profile-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 6px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-profile-badge:hover {
  background: rgba(5, 150, 105, 0.15);
  border-color: #059669;
}

.auth-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #D4AF37);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-user-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #062C22;
}

.auth-user-dropdown {
  position: absolute;
  top: 115%;
  right: 0;
  width: 230px;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(6, 78, 59, 0.15);
  padding: 0.5rem 0;
  display: none;
  z-index: 1000;
  animation: dropdownFade 0.2s ease;
}

.auth-user-dropdown.active {
  display: block;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.dropdown-header-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #062C22;
}

.dropdown-header-email {
  font-size: 0.72rem;
  color: #64748B;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

.dropdown-item.danger {
  color: #EF4444;
}

.dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* ===================================================================
   MULTI-METHOD LOGIN (GMAIL, GOOGLE, MOBILE OTP) & CLIENT PORTAL
   =================================================================== */

/* Auth Sub-Method Selector Pills */
.auth-method-selector {
  display: flex;
  gap: 6px;
  background: rgba(5, 150, 105, 0.06);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.auth-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-method-btn:hover {
  color: #059669;
}

.auth-method-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* One-Tap Google Auth Card */
.google-auth-box {
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(6, 78, 59, 0.06);
  margin-bottom: 1rem;
}

.google-auth-btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1E293B;
  background: #ffffff;
  border: 1.5px solid #CBD5E1;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.google-auth-btn-large:hover {
  border-color: #4285F4;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
}

/* Mobile OTP Form Elements */
.otp-send-wrap {
  display: flex;
  gap: 8px;
}

.otp-send-btn {
  white-space: nowrap;
  padding: 0 14px;
}

.otp-digit-box {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 1rem 0;
}

.otp-digit-input {
  width: 45px;
  height: 48px;
  text-align: center;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: #062C22;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  outline: none;
}

.otp-digit-input:focus {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* ===================================================================
   CLIENT PORTAL & ORDERS DASHBOARD MODAL
   =================================================================== */
.portal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 44, 34, 0.75);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.portal-modal-box {
  width: 100%;
  max-width: 1080px;
  max-height: 88vh;
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--r-xl);
  box-shadow: 0 25px 90px rgba(6, 78, 59, 0.3);
  display: grid;
  grid-template-columns: 290px 1fr;
  overflow: hidden;
  position: relative;
  animation: portalModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes portalModalPop {
  0% {
    transform: scale(0.94) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .portal-modal-box {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
}

.portal-sidebar {
  background: linear-gradient(180deg, #F8FAF8, #ffffff);
  border-right: 1px solid rgba(5, 150, 105, 0.12);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portal-user-card {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  margin-bottom: 1.5rem;
}

.portal-user-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #D4AF37);
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
  border: 2px solid #ffffff;
}

.portal-user-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: #062C22;
  margin-bottom: 2px;
}

.portal-user-email {
  font-size: 0.76rem;
  color: #64748B;
  margin-bottom: 0.6rem;
}

.portal-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #B45309;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Sidebar Nav Tabs */
.portal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.portal-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-b);
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.portal-nav-btn:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.portal-nav-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

/* Main Content Section */
.portal-main {
  padding: 2rem 2.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
}

.portal-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #062C22;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-modal-close {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #062C22;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.portal-modal-close:hover {
  background: #059669;
  color: #ffffff;
}

/* Orders Cards */
.order-card {
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 25px rgba(6, 78, 59, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover {
  box-shadow: 0 12px 35px rgba(6, 78, 59, 0.08);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.order-id {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: 0.05em;
}

.order-status {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.status-active {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.status-completed {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.order-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #062C22;
  margin-bottom: 0.4rem;
}

.order-progress-wrap {
  margin: 1rem 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 4px;
}

.progress-bar-bg {
  height: 8px;
  background: #E2E8F0;
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #059669, #D4AF37);
  border-radius: 50px;
}

.order-actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* VIP Perks Grid */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.vip-perk-card {
  background: linear-gradient(145deg, #ffffff, #F8FAF8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.08);
}

.vip-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: #B45309;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.vip-perk-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: #062C22;
  margin-bottom: 0.3rem;
}

.vip-perk-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.5;
}

/* Activity Log Table */
.activity-log-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.activity-log-table th {
  text-align: left;
  padding: 10px;
  background: #F8FAFC;
  color: #062C22;
  font-weight: 800;
  border-bottom: 1px solid #E2E8F0;
}

.activity-log-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
}

/* Toast Notification Floating Pill */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(6, 20, 32, 0.95);
  border: 1.5px solid #059669;
  color: #10B981;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}






/* ══════════════════════════════════════════════════════════════════════
   OMNIFLONEX AI — v2 UPGRADE PACK
   Auth Modal · Client Portal · Legal Hub · Ultra-Luxury Footer · Motion FX
   Theme: Emerald #059669 · Gold #D4AF37 · Cyan #00d2ff
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --of-green: #059669;
  --of-green-d: #047857;
  --of-green-l: #10b981;
  --of-gold: #D4AF37;
  --of-gold-l: #f0d97a;
  --of-cyan: #00d2ff;
  --of-ink: #0b1f1a;
  --of-muted: #5b6b66;
  --of-line: rgba(5, 150, 105, .14);
  --of-glass: rgba(255, 255, 255, .72);
  --of-shadow: 0 30px 80px -20px rgba(5, 60, 45, .35);
  --of-ease: cubic-bezier(.19, 1, .22, 1);
}

body.modal-open,
body:has(.of-modal.active) {
  overflow: hidden !important;
}

/* ───────────────────────── Shared modal shell ───────────────────────── */
.of-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999990 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  overscroll-behavior: contain;
}

.of-modal.active,
#auth-modal.active,
#client-portal-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

.of-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: rgba(6, 28, 22, .75) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  cursor: pointer;
}

.of-modal-card {
  position: relative !important;
  z-index: 10 !important;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #ffffff, #f6fbf9) !important;
  border: 1.5px solid rgba(5, 150, 105, 0.3) !important;
  border-radius: 26px !important;
  box-shadow: 0 30px 90px -15px rgba(0, 0, 0, 0.4), 0 0 45px rgba(5, 150, 105, 0.2) !important;
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.of-modal.active .of-modal-card {
  transform: translateY(0) scale(1) !important;
}

.of-modal-card::-webkit-scrollbar {
  width: 8px;
}

.of-modal-card::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.of-modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669, #10b981);
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(5, 150, 105, 0.4);
}

.of-modal-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background: radial-gradient(closest-side, rgba(5, 150, 105, .20), transparent 70%);
  pointer-events: none;
}

.of-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--of-line);
  background: #fff;
  color: var(--of-ink);
  cursor: pointer;
  transition: .25s var(--of-ease);
}

.of-close:hover {
  transform: rotate(90deg);
  border-color: var(--of-green);
  color: var(--of-green);
}

.of-close i,
.of-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ───────────────────────── AUTH MODAL ───────────────────────── */
.auth-head {
  padding: 1.6rem 1.6rem 0.2rem;
  text-align: center;
}

.auth-logo-badge {
  width: 54px;
  height: 54px;
  margin: 0 auto .6rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(5, 150, 105, .55);
}

.auth-logo-badge i,
.auth-logo-badge svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.auth-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--of-ink);
  letter-spacing: -.02em;
}

.auth-sub {
  font-size: .82rem;
  color: var(--of-muted);
  margin-top: .2rem;
}

.auth-tabs {
  display: flex;
  gap: .4rem;
  margin: 1rem 1.6rem 0;
  background: #eef5f2;
  padding: .3rem;
  border-radius: 14px;
}

.auth-tab {
  flex: 1;
  padding: .65rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--of-muted);
  cursor: pointer;
  transition: .3s var(--of-ease);
}

.auth-tab.active {
  background: #fff;
  color: var(--of-green);
  box-shadow: 0 6px 16px -6px rgba(5, 60, 45, .25);
}

.auth-body {
  padding: 1.2rem 1.6rem 1.6rem;
}

.auth-method-pills {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.method-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem .4rem;
  border: 1px solid var(--of-line);
  background: #fff;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--of-muted);
  cursor: pointer;
  transition: .25s var(--of-ease);
}

.method-pill i,
.method-pill svg {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.method-pill.active {
  border-color: var(--of-green);
  color: var(--of-green);
  background: rgba(5, 150, 105, .06);
  box-shadow: 0 6px 16px -8px rgba(5, 150, 105, .5);
}

.auth-field {
  margin-bottom: .85rem;
}

.auth-field label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--of-ink);
  margin-bottom: .3rem;
  letter-spacing: .02em;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-wrap i,
.auth-input-wrap svg {
  position: absolute;
  left: .85rem;
  width: 16px;
  height: 16px;
  color: var(--of-muted);
  pointer-events: none;
  z-index: 2;
}

.auth-input-wrap input,
.auth-input-wrap select {
  width: 100%;
  padding: .75rem .9rem .75rem 2.4rem;
  border: 1px solid var(--of-line);
  border-radius: 12px;
  font-size: .88rem;
  background: #fff;
  color: var(--of-ink);
  transition: .25s var(--of-ease);
  outline: none;
}

.auth-input-wrap select {
  padding-left: 2.4rem;
  cursor: pointer;
}

.pw-toggle-btn {
  position: absolute;
  right: .65rem;
  background: transparent;
  border: none;
  color: var(--of-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 6px;
  transition: .2s;
}

.pw-toggle-btn:hover {
  color: var(--of-green);
  background: rgba(5, 150, 105, .08);
}

.pw-toggle-btn i,
.pw-toggle-btn svg {
  position: static;
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.auth-input-wrap input:focus,
.auth-input-wrap select:focus {
  border-color: var(--of-green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, .12);
  background: #fff;
}

.auth-submit {
  width: 100%;
  padding: .9rem;
  border: none;
  border-radius: 13px;
  font-weight: 800;
  font-size: .92rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  box-shadow: 0 16px 32px -12px rgba(5, 150, 105, .6);
  transition: .3s var(--of-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .4rem;
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -12px rgba(5, 150, 105, .7);
}

.auth-submit i,
.auth-submit svg {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
  color: var(--of-muted);
  font-size: .72rem;
  font-weight: 700;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--of-line);
}

.google-btn {
  width: 100%;
  padding: .8rem;
  border: 1px solid var(--of-line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
  color: var(--of-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: .25s var(--of-ease);
}

.google-btn:hover {
  border-color: var(--of-green);
  box-shadow: 0 10px 24px -12px rgba(5, 60, 45, .35);
  transform: translateY(-1px);
}

.google-btn svg {
  width: 19px;
  height: 19px;
  pointer-events: none;
}

.otp-inputs {
  display: flex;
  gap: .5rem;
  justify-content: space-between;
  margin: 1rem 0;
}

.otp-inputs input {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  border: 1px solid var(--of-line);
  border-radius: 12px;
  color: var(--of-ink);
  outline: none;
  transition: .2s;
}

.otp-inputs input:focus {
  border-color: var(--of-green);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, .12);
}

.pw-strength {
  height: 6px;
  border-radius: 6px;
  background: #e7efec;
  overflow: hidden;
  margin-top: .4rem;
}

.pw-strength #strength-bar {
  height: 100%;
  width: 0;
  border-radius: 6px;
  transition: .35s var(--of-ease);
}

.pw-strength #strength-bar.strength-weak {
  width: 33%;
  background: #ef4444;
}

.pw-strength #strength-bar.strength-medium {
  width: 66%;
  background: #f59e0b;
}

.pw-strength #strength-bar.strength-strong {
  width: 100%;
  background: #10b981;
}

#strength-label {
  font-size: .7rem;
  font-weight: 700;
  margin-top: .25rem;
  display: block;
  color: var(--of-muted);
}

.auth-foot-note {
  text-align: center;
  font-size: .76rem;
  color: var(--of-muted);
  margin-top: 1rem;
}

.auth-foot-note a {
  color: var(--of-green);
  font-weight: 700;
  cursor: pointer;
}

.auth-link-row {
  display: flex;
  justify-content: flex-end;
  margin: -.3rem 0 .6rem;
}

.auth-link-row a {
  font-size: .74rem;
  color: var(--of-green);
  font-weight: 700;
  cursor: pointer;
}

/* header auth button + profile */
.auth-header-container {
  display: flex;
  align-items: center;
}

.auth-btn-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  border-radius: 9999px !important;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.auth-signin-btn {
  background: #ffffff !important;
  border: 1.5px solid rgba(5, 150, 105, 0.35) !important;
  color: #064e3b !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.auth-signin-btn:hover {
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: #059669 !important;
  color: #059669 !important;
  transform: translateY(-1px);
}

.auth-signup-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  border: 1px solid #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.25) !important;
}

.auth-signup-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%) !important;
  box-shadow: 0 5px 16px rgba(5, 150, 105, 0.38) !important;
  transform: translateY(-1px);
}

.auth-btn .icon-sm {
  width: 14px;
  height: 14px;
}

.auth-profile-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .6rem .35rem .4rem;
  border: 1px solid var(--of-line);
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  transition: .25s var(--of-ease);
}

.auth-profile-badge:hover {
  border-color: var(--of-green);
}

.auth-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
}

.auth-user-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--of-ink);
}

.auth-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 250px;
  background: #fff;
  border: 1px solid var(--of-line);
  border-radius: 16px;
  box-shadow: var(--of-shadow);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s var(--of-ease);
}

.auth-user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--of-line);
  margin-bottom: .4rem;
}

.dropdown-header-name {
  font-weight: 800;
  color: var(--of-ink);
  font-size: .9rem;
}

.dropdown-header-email {
  font-size: .76rem;
  color: var(--of-muted);
}

.dropdown-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .8rem;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--of-ink);
  cursor: pointer;
  transition: .2s;
}

.dropdown-item:hover {
  background: rgba(5, 150, 105, .07);
  color: var(--of-green);
}

.dropdown-item.danger:hover {
  background: rgba(220, 38, 38, .08);
  color: #dc2626;
}

/* ───────────────────────── CLIENT PORTAL ───────────────────────── */
#client-portal-modal .of-modal-card {
  max-width: 820px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 480px;
}

.portal-side {
  background: linear-gradient(180deg, #0b1f1a, #0e2a22);
  color: #fff;
  padding: 1.6rem 1.1rem;
}

.portal-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 1rem;
}

.portal-user-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0b1f1a;
  background: linear-gradient(135deg, var(--of-gold), var(--of-gold-l));
  margin-bottom: .6rem;
}

#portal-user-name {
  font-weight: 800;
  font-size: .95rem;
}

#portal-user-email {
  font-size: .74rem;
  color: rgba(255, 255, 255, .6);
  word-break: break-all;
}

.portal-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem .8rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border-radius: 11px;
  font-weight: 600;
  font-size: .86rem;
  cursor: pointer;
  transition: .2s;
  margin-bottom: .2rem;
}

.portal-nav-btn i {
  width: 16px;
  height: 16px;
}

.portal-nav-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.portal-nav-btn.active {
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  color: #fff;
}

.portal-main {
  padding: 1.8rem;
  overflow: auto;
}

.portal-tab-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--of-ink);
  margin-bottom: 1.2rem;
}

.portal-card {
  border: 1px solid var(--of-line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  margin-bottom: .9rem;
  background: #fff;
  transition: .25s var(--of-ease);
}

.portal-card:hover {
  box-shadow: 0 16px 30px -18px rgba(5, 60, 45, .3);
  transform: translateY(-2px);
}

.portal-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.portal-badge {
  font-size: .68rem;
  font-weight: 800;
  padding: .25rem .6rem;
  border-radius: 30px;
  letter-spacing: .03em;
}

.pb-active {
  background: rgba(5, 150, 105, .12);
  color: var(--of-green);
}

.pb-done {
  background: rgba(0, 120, 180, .1);
  color: #0284c7;
}

.pb-gold {
  background: rgba(212, 175, 55, .15);
  color: #a17f18;
}

.portal-empty {
  text-align: center;
  color: var(--of-muted);
  padding: 2.5rem 1rem;
  font-size: .9rem;
}

/* ───────────────────────── LEGAL HUB MODAL ───────────────────────── */
#legal-policy-modal .of-modal-card {
  max-width: 720px;
}

.legal-modal-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--of-ink);
  padding: 1.8rem 2rem 1rem;
  border-bottom: 1px solid var(--of-line);
}

.legal-modal-title i {
  width: 22px;
  height: 22px;
  color: var(--of-green);
}

.legal-modal-body {
  padding: 1.6rem 2rem 2.2rem;
  font-size: .9rem;
  line-height: 1.7;
  color: #33413c;
}

.legal-modal-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--of-ink);
  margin: 1.3rem 0 .4rem;
}

.legal-modal-body p {
  margin: 0 0 .6rem;
}

.legal-modal-body code {
  background: rgba(5, 150, 105, .08);
  padding: .1rem .4rem;
  border-radius: 5px;
  color: var(--of-green);
  font-size: .82em;
}

.legal-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0 2rem 1.4rem;
}

.legal-quick-links button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 700;
  padding: .45rem .8rem;
  border-radius: 30px;
  border: 1px solid var(--of-line);
  background: #fff;
  color: var(--of-muted);
  cursor: pointer;
  transition: .2s;
}

.legal-quick-links button:hover {
  border-color: var(--of-green);
  color: var(--of-green);
}

.legal-quick-links button i {
  width: 13px;
  height: 13px;
}

/* ═════════════════════════ ULTRA-LUXURY FOOTER ═════════════════════════ */
.omni-footer {
  position: relative;
  background: linear-gradient(180deg, #0a1f1a 0%, #06140f 100%);
  color: #dfeee8;
  padding: 4.5rem 0 0;
  overflow: hidden;
  margin-top: 4rem;
}

.omni-footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 340px;
  background: radial-gradient(closest-side, rgba(5, 150, 105, .28), transparent 70%);
  pointer-events: none;
}

.omni-footer-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--of-green), var(--of-gold), var(--of-cyan), transparent);
}

.omni-footer-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.omni-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
}

.omni-foot-brand-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.omni-foot-brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, .4));
}

.omni-foot-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}

.omni-foot-brand-name .g {
  background: linear-gradient(135deg, var(--of-gold), var(--of-gold-l));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.omni-foot-brand-name .tld {
  color: var(--of-green-l);
}

.omni-foot-tag {
  font-size: .9rem;
  color: rgba(223, 238, 232, .7);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.3rem;
}

.omni-foot-newsletter {
  display: flex;
  gap: .5rem;
  max-width: 340px;
}

.omni-foot-newsletter input {
  flex: 1;
  padding: .75rem .9rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: .85rem;
  outline: none;
  transition: .25s;
}

.omni-foot-newsletter input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.omni-foot-newsletter input:focus {
  border-color: var(--of-green-l);
  background: rgba(255, 255, 255, .08);
}

.omni-foot-newsletter button {
  padding: .75rem 1rem;
  border: none;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s var(--of-ease);
}

.omni-foot-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(5, 150, 105, .7);
}

.omni-foot-newsletter button i {
  width: 17px;
  height: 17px;
}

.omni-foot-col h5 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--of-gold);
  margin-bottom: 1.1rem;
}

.omni-foot-col a {
  display: block;
  color: rgba(223, 238, 232, .72);
  font-size: .9rem;
  text-decoration: none;
  margin-bottom: .7rem;
  cursor: pointer;
  transition: .2s var(--of-ease);
  width: fit-content;
}

.omni-foot-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.omni-foot-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(223, 238, 232, .72);
  font-size: .88rem;
  margin-bottom: .8rem;
}

.omni-foot-contact-item i {
  width: 16px;
  height: 16px;
  color: var(--of-green-l);
}

.omni-foot-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}

.omni-foot-social {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(223, 238, 232, .8);
  transition: .25s var(--of-ease);
  text-decoration: none;
}

.omni-foot-social:hover {
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

.omni-foot-social i {
  width: 17px;
  height: 17px;
}

.omni-foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.omni-foot-copy {
  font-size: .82rem;
  color: rgba(223, 238, 232, .55);
}

.omni-foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.omni-foot-legal a {
  font-size: .82rem;
  color: rgba(223, 238, 232, .6);
  cursor: pointer;
  transition: .2s;
}

.omni-foot-legal a:hover {
  color: var(--of-gold-l);
}

@media(max-width:900px) {
  .omni-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media(max-width:560px) {
  .omni-footer-grid {
    grid-template-columns: 1fr;
  }

  .omni-foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═════════════════════════ MOTION / 3D FX UPGRADE ═════════════════════════ */
.fx-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--of-ease), transform .9s var(--of-ease);
  will-change: transform, opacity;
}

.fx-reveal.in {
  opacity: 1;
  transform: none;
}

.fx-reveal.d1 {
  transition-delay: .08s
}

.fx-reveal.d2 {
  transition-delay: .16s
}

.fx-reveal.d3 {
  transition-delay: .24s
}

.fx-reveal.d4 {
  transition-delay: .32s
}

.fx-reveal.d5 {
  transition-delay: .4s
}

.fx-scale {
  opacity: 0;
  transform: scale(.92);
  transition: .9s var(--of-ease);
}

.fx-scale.in {
  opacity: 1;
  transform: none;
}

.fx-tilt {
  transition: transform .3s var(--of-ease), box-shadow .3s var(--of-ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.fx-magnetic {
  transition: transform .25s var(--of-ease);
}

.fx-shimmer {
  background: linear-gradient(110deg, var(--of-green) 20%, var(--of-gold) 40%, var(--of-green-l) 60%, var(--of-cyan) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ofShimmer 6s linear infinite;
}

@keyframes ofShimmer {
  to {
    background-position: -220% center;
  }
}

.fx-float {
  animation: ofFloat 6s ease-in-out infinite;
}

@keyframes ofFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.of-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 5000;
  background: linear-gradient(90deg, var(--of-green), var(--of-gold), var(--of-cyan));
  box-shadow: 0 0 12px rgba(5, 150, 105, .6);
  transition: width .1s linear;
}

@media (prefers-reduced-motion: reduce) {

  .fx-reveal,
  .fx-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .fx-float,
  .fx-shimmer {
    animation: none !important;
  }
}

/* ══════════════ v2: IN-SITE PRIVACY / LEGAL SECTION ══════════════ */
#privacy-section {
  padding: 2rem 0 4rem;
}

.psec-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.psec-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.psec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--of-green);
  background: rgba(5, 150, 105, .08);
  padding: .4rem .9rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.psec-eyebrow i {
  width: 14px;
  height: 14px;
}

.psec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--of-ink);
}

.psec-grad {
  background: linear-gradient(120deg, var(--of-green), var(--of-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.psec-sub {
  color: var(--of-muted);
  max-width: 640px;
  margin: .9rem auto 0;
  line-height: 1.6;
}

.psec-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.6rem;
}

.psec-quicklinks a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  padding: .55rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--of-line);
  background: #fff;
  color: var(--of-ink);
  text-decoration: none;
  transition: .25s var(--of-ease);
}

.psec-quicklinks a:hover {
  border-color: var(--of-green);
  color: var(--of-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(5, 150, 105, .4);
}

.psec-quicklinks a i {
  width: 15px;
  height: 15px;
  color: var(--of-green);
}

.psec-meta {
  background: linear-gradient(135deg, rgba(5, 150, 105, .06), rgba(212, 175, 55, .05));
  border: 1px solid var(--of-line);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  font-size: .9rem;
  margin-bottom: 1.4rem;
}

.psec-meta p {
  margin: .2rem 0;
}

.psec-card {
  background: #fff;
  border: 1px solid var(--of-line);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.4rem;
  scroll-margin-top: 100px;
  box-shadow: 0 24px 60px -42px rgba(5, 60, 45, .4);
}

.psec-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--of-line);
}

.psec-card-head h2 {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--of-ink);
}

.psec-card-head h2 i {
  width: 24px;
  height: 24px;
  color: var(--of-green);
}

.psec-pdf {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .95rem;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--of-green), var(--of-green-d));
  transition: .25s var(--of-ease);
}

.psec-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(5, 150, 105, .6);
}

.psec-pdf i {
  width: 14px;
  height: 14px;
}

.psec-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--of-ink);
  margin: 1.2rem 0 .3rem;
}

.psec-card p {
  color: #33413c;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

.psec-card code {
  background: rgba(5, 150, 105, .08);
  padding: .1rem .4rem;
  border-radius: 5px;
  color: var(--of-green);
  font-size: .85em;
}

.psec-foot {
  text-align: center;
  margin-top: 1rem;
}

.psec-fullpage {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--of-green);
  text-decoration: none;
  font-size: .9rem;
}

.psec-fullpage i {
  width: 16px;
  height: 16px;
}

@media(max-width:640px) {
  .psec-title {
    font-size: 2rem;
  }

  .psec-card {
    padding: 1.4rem 1.3rem;
  }
}

/* ══════════════════ v3: ULTRA-LUXURY 3D SCROLL LAYER ══════════════════ */
.lux-aurora {
  position: fixed;
  inset: -25%;
  z-index: -2;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(38% 38% at 22% 28%, rgba(5, 150, 105, .20), transparent 62%),
    radial-gradient(34% 34% at 80% 18%, rgba(212, 175, 55, .16), transparent 62%),
    radial-gradient(42% 42% at 72% 82%, rgba(0, 210, 255, .14), transparent 62%),
    radial-gradient(30% 30% at 35% 75%, rgba(16, 185, 129, .12), transparent 62%);
  filter: blur(40px);
  animation: luxAurora 26s ease-in-out infinite alternate;
}

@keyframes luxAurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg)
  }

  50% {
    transform: translate3d(2%, -2%, 0) scale(1.1) rotate(2deg)
  }

  100% {
    transform: translate3d(-2%, 2%, 0) scale(1.05) rotate(-2deg)
  }
}

.lux-orb {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(55px);
  opacity: .4;
  will-change: transform;
}

.lux-orb.o1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #10b981, transparent 66%);
  top: 6%;
  left: -7%;
}

.lux-orb.o2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #D4AF37, transparent 66%);
  top: 42%;
  right: -9%;
}

.lux-orb.o3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #00d2ff, transparent 66%);
  bottom: 8%;
  left: 32%;
}

.lux-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 3D perspective + luxury hover glow on cards */
.main-container {
  perspective: 1600px;
}

.pillar-card,
.value-card,
.industry-card,
.category-hub-card,
.membership-card,
.portfolio-card {
  transition: box-shadow .45s var(--of-ease), transform .35s var(--of-ease) !important;
}

.pillar-card:hover,
.value-card:hover,
.industry-card:hover,
.category-hub-card:hover,
.membership-card:hover,
.portfolio-card:hover {
  box-shadow: 0 34px 80px -34px rgba(5, 150, 105, .5), 0 0 0 1px rgba(212, 175, 55, .28), 0 0 40px -18px rgba(0, 210, 255, .35);
}

/* clip-wipe reveal variant */
.fx-wipe {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 1s var(--of-ease), opacity 1s var(--of-ease);
}

.fx-wipe.in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

  .lux-aurora,
  .lux-orb {
    animation: none !important;
  }
}

@media(max-width:640px) {
  .lux-orb {
    opacity: .28;
    filter: blur(40px);
  }
}

/* ══════════════ v3.1: COMPACT FOOTER ══════════════ */
.omni-footer {
  padding: 2.6rem 0 0;
  margin-top: 2.4rem;
}

.omni-footer-grid {
  gap: 1.6rem 2rem;
  padding-bottom: 1.6rem;
}

.omni-foot-brand-logo {
  margin-bottom: .7rem;
}

.omni-foot-brand-logo img {
  width: 36px;
  height: 36px;
}

.omni-foot-brand-name {
  font-size: 1.1rem;
}

.omni-foot-tag {
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: .9rem;
  max-width: 300px;
}

.omni-foot-newsletter {
  max-width: 320px;
}

.omni-foot-newsletter input {
  padding: .6rem .8rem;
  font-size: .82rem;
}

.omni-foot-newsletter button {
  padding: .6rem .85rem;
}

.omni-foot-col h5 {
  margin-bottom: .7rem;
  font-size: .72rem;
}

.omni-foot-col a {
  font-size: .84rem;
  margin-bottom: .5rem;
}

.omni-foot-contact-item {
  font-size: .82rem;
  margin-bottom: .55rem;
}

.omni-foot-socials {
  margin-top: .9rem;
  gap: .5rem;
}

.omni-foot-social {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.omni-foot-social i {
  width: 15px;
  height: 15px;
}

.omni-foot-bottom {
  padding: 1rem 0;
}

.omni-foot-copy {
  font-size: .78rem;
}

.omni-foot-legal a {
  font-size: .78rem;
}

.omni-footer-glow {
  height: 240px;
  top: -90px;
}

/* ══════════════ v3.2: EXTRA-TIGHT FOOTER (remove empty space) ══════════════ */
.omni-footer {
  padding: 1.6rem 0 0 !important;
  margin-top: 1.8rem !important;
}

.omni-footer-grid {
  gap: 1rem 2rem !important;
  padding-bottom: .8rem !important;
  align-items: start;
}

.omni-foot-tag {
  margin-bottom: .7rem !important;
  line-height: 1.45 !important;
}

.omni-foot-newsletter {
  margin-bottom: 0 !important;
}

.omni-foot-socials {
  margin-top: .7rem !important;
}

.omni-foot-col h5 {
  margin-bottom: .55rem !important;
}

.omni-foot-col a {
  margin-bottom: .4rem !important;
  line-height: 1.2 !important;
}

.omni-foot-contact-item {
  margin-bottom: .45rem !important;
}

.omni-foot-bottom {
  padding: .7rem 0 .8rem !important;
}

.omni-footer-glow {
  height: 180px !important;
  top: -70px !important;
  opacity: .7;
}

/* ══════════════ v3.3: KILL FOOTER MID-GAP (columns ↔ bottom bar) ══════════════ */
.omni-footer {
  padding: 1.1rem 0 0 !important;
  margin-top: 1.4rem !important;
}

.omni-footer-grid {
  gap: .7rem 2rem !important;
  padding-bottom: .1rem !important;
}

.omni-foot-newsletter {
  margin-bottom: 0 !important;
}

.omni-foot-socials {
  margin-top: .55rem !important;
  margin-bottom: 0 !important;
}

.omni-foot-social {
  width: 32px !important;
  height: 32px !important;
}

.omni-foot-tag {
  margin-bottom: .6rem !important;
}

.omni-foot-bottom {
  padding: .55rem 0 .6rem !important;
  margin-top: 0 !important;
}

/* ════════════════════════════════════════════════════════════
   🚀 OMNIFLONEX AI LAUNCH REWARDS — ULTRA-PREMIUM REWARDS SECTION
   ════════════════════════════════════════════════════════════ */
.launch-rewards-section {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 4.5rem 2.5rem;
  margin-top: 4rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(5, 150, 105, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.launch-rewards-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.launch-rewards-glow-2 {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.10) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.launch-rewards-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.launch-rewards-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.launch-rewards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--r-full);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 700;
  color: #047857;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.06);
}

.launch-rewards-title {
  font-family: var(--font-h);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.launch-rewards-subtitle {
  font-family: var(--font-b);
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}

.launch-rewards-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.reward-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.05);
}

.reward-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 22px 50px -15px rgba(5, 150, 105, 0.16), 0 0 25px rgba(5, 150, 105, 0.08);
}

.reward-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(5, 150, 105, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #059669;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px -6px rgba(5, 150, 105, 0.15);
  animation: floatRewardIcon 4s ease-in-out infinite alternate;
}

@keyframes floatRewardIcon {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-6px) rotate(2deg);
  }
}

.reward-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #047857;
  margin-bottom: 0.5rem;
}

.reward-card-heading {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.reward-card-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.reward-example-box {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(248, 250, 248, 0.95), rgba(240, 253, 244, 0.85));
  border: 1px dashed rgba(5, 150, 105, 0.3);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-example-item {
  display: flex;
  flex-direction: column;
}

.reward-example-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dim);
  font-weight: 600;
}

.reward-example-val {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.reward-example-val.highlight {
  color: #059669;
}

.reward-example-arrow {
  color: #059669;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Luxury Timeline */
.launch-rewards-timeline-wrap {
  background: linear-gradient(180deg, rgba(248, 250, 248, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
}

.timeline-section-title {
  text-align: center;
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 992px) {
  .timeline-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #059669 0%, #10B981 50%, #06B6D4 100%);
    z-index: 0;
    opacity: 0.35;
  }
}

.timeline-step-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 6px 20px -8px rgba(6, 78, 59, 0.04);
}

.timeline-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 12px 30px -10px rgba(5, 150, 105, 0.12);
}

.step-num-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #059669, #047857);
  color: #FFFFFF;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.25);
}

.step-text {
  font-family: var(--font-b);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

/* Accordion FAQ */
.launch-rewards-faq-wrap {
  max-width: 860px;
  margin: 0 auto 4rem auto;
}

.faq-section-title {
  text-align: center;
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-item.active {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.12);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.25s var(--ease);
}

.faq-question-btn:hover {
  color: #059669;
}

.faq-icon-toggle {
  width: 30px;
  height: 30px;
  border-radius: var(--r-full);
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
  background: #059669;
  color: #FFFFFF;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer-panel {
  max-height: 300px;
  padding: 0 1.5rem 1.35rem 1.5rem;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
}

.faq-answer-text {
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px dashed rgba(5, 150, 105, 0.15);
  padding-top: 0.85rem;
}

/* Minimal Terms Section */
.launch-rewards-terms-wrap {
  background: rgba(248, 250, 248, 0.75);
  border: 1px solid rgba(5, 150, 105, 0.14);
  border-radius: var(--r-md);
  padding: 2rem 2.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.terms-header-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.75rem;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.terms-item-icon {
  color: #059669;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .launch-rewards-cards {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .launch-rewards-title {
    font-size: 2.1rem;
  }

  .launch-rewards-section {
    padding: 3rem 1.25rem;
  }
}

/* =========================================================
   VIP MEMBERSHIP SECTION ULTRA-LUXURY STYLING
   ========================================================= */
.membership-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.8rem;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.membership-tiers-grid .membership-card {
  overflow: visible !important;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(5, 150, 105, 0.3);
}

/* Badges */
.vip-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 800;
  width: fit-content;
}

.badge-bronze {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.badge-silver {
  background: rgba(100, 116, 139, 0.14);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.3);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Offer Top Tag & Header */
.vip-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 0.6rem;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.offer-fire-icon {
  font-size: 0.85rem;
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.starter-value-pill,
.popular-value-pill,
.luxury-value-pill {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
}

.starter-value-pill {
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.35);
}

.popular-value-pill {
  background: rgba(0, 210, 255, 0.12);
  color: #0284c7;
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.luxury-value-pill {
  background: rgba(212, 175, 55, 0.15);
  color: #d97706;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* MRP & Offer Price Display Box */
.mem-price-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mem-mrp-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.mrp-label {
  color: var(--muted);
  font-weight: 600;
}

.mrp-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 700;
  font-size: 1.05rem;
}

.mrp-discount-badge {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-sm);
}

.mem-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.mem-price {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.text-bronze {
  color: #b45309;
}

.text-silver {
  color: #334155;
}

.mem-validity {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.mem-pay-note {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

/* Tier Features List */
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.45;
}

.tier-features li i {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Gold Ribbon */
.gold-ribbon {
  background: linear-gradient(135deg, #d4af37, #f59e0b) !important;
  color: #000 !important;
  font-weight: 900 !important;
}

/* Terms Footer Link */
.membership-terms-footer {
  text-align: center;
}

.vip-terms-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  border: 1px dashed rgba(5, 150, 105, 0.4);
  background: rgba(5, 150, 105, 0.05);
  transition: all var(--dur) var(--ease);
}

.vip-terms-link:hover {
  background: rgba(5, 150, 105, 0.12);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
}

@media (max-width: 991px) {
  .membership-tiers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =========================================================
   ENTERPRISE CHECKOUT & CLIENT DASHBOARD STYLING
   ========================================================= */

/* Stepper Pills */
.chk-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  background: transparent;
  border: 1px solid var(--border);
  opacity: 0.6;
  transition: all var(--dur) var(--ease);
}

.chk-step-pill.active {
  background: rgba(5, 150, 105, 0.1);
  border-color: var(--blue);
  opacity: 1;
}

.chk-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.chk-step-pill.active .chk-step-num {
  background: var(--blue);
  color: #ffffff;
}

.chk-step-lbl {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

/* Layout Grid */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-main-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
}

.chk-panel-header {
  margin-bottom: 2rem;
}

.chk-panel-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.chk-panel-desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

/* VIP Detection Card */
.vip-detection-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(5, 150, 105, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.vip-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}

/* Payment Method Cards Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pay-method-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-align: left;
}

.pay-method-card.active {
  border-color: var(--blue);
  background: rgba(5, 150, 105, 0.04);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
}

.pay-method-card i {
  color: var(--blue);
  font-size: 1.2rem;
}

.pay-method-card span {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

.pay-method-card small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Payment Trust Bar */
.payment-trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.9rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

/* Success Animation Screen */
.success-screen-wrapper {
  padding: 2rem 1rem;
}

.success-icon-anim i {
  font-size: 4rem;
  color: #059669;
  animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.success-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

/* Sidebar Order Summary */
.checkout-summary-sidebar {
  position: sticky;
  top: 160px;
}

.summary-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-glass);
}

.summary-card-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.summary-grand-price {
  font-size: 1.6rem;
  font-weight: 900;
}

/* Client Dashboard Specific Styles */
.dash-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-align: left;
}

.dash-nav-btn.active,
.dash-nav-btn:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--text);
}

.dash-count-badge {
  margin-left: auto;
  background: rgba(5, 150, 105, 0.15);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-full);
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.dash-stat-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.dash-stat-val {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  margin: 0.3rem 0;
}

.dash-proj-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

@media (max-width: 991px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   🚀 LAUNCH REWARDS POSTER DESIGN SYSTEM — LIGHT PEARL LUXURY & GOLD ACCENTS
   ════════════════════════════════════════════════════════════ */
.poster-rewards-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f7faf8 45%, #ffffff 100%);
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 32px;
  padding: 3.5rem 2.6rem;
  box-shadow: 0 24px 60px -15px rgba(5, 150, 105, 0.10), 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--text, #0f172a);
}

/* Light Ambient Radial Glow Orbs */
.poster-rewards-wrapper::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
}

.poster-rewards-wrapper::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Hero Section Layout: 2-Column Grid on Desktop */
.poster-top-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2.8rem;
}

.poster-top-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.poster-top-header-content {
  text-align: left;
}

@keyframes badgeShimmer {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
  }
  50% {
    box-shadow: 0 4px 22px rgba(5, 150, 105, 0.22), 0 0 15px rgba(212, 175, 55, 0.2);
  }
}

@keyframes highlightPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.22), 0 0 20px rgba(212, 175, 55, 0.2);
  }
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
    color: #059669;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatCoin1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}

@keyframes floatCoin2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-6deg);
  }
}

@keyframes floatCoin3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(10deg);
  }
}

.poster-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(212, 175, 55, 0.12));
  border: 1.5px solid rgba(5, 150, 105, 0.32);
  border-radius: var(--r-full, 999px);
  font-size: 0.78rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
  animation: badgeShimmer 4s infinite ease-in-out;
}

.poster-badge svg,
.poster-badge i {
  color: #059669;
  width: 15px;
  height: 15px;
}

.poster-main-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 3.4rem;
  font-weight: 900;
  color: #062C22;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rewards-hero-percent {
  font-size: 4.2rem;
  font-weight: 950;
  background: linear-gradient(135deg, #059669 0%, #047857 45%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  display: inline-block;
  filter: drop-shadow(0 6px 16px rgba(5, 150, 105, 0.18));
}

.poster-sub-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0.3rem 0 0.8rem 0;
  letter-spacing: -0.01em;
}

.rewards-hero-split-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.8rem 0 1rem;
  flex-wrap: wrap;
}

.rewards-split-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.28);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #047857;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.08);
}

.rewards-split-pill svg,
.rewards-split-pill i {
  width: 15px;
  height: 15px;
  color: #059669;
}

.rewards-split-plus {
  font-size: 1.1rem;
  font-weight: 900;
  color: #D4AF37;
}

.poster-desc-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  max-width: 640px;
}

.poster-desc-text strong {
  color: #0F172A;
  font-weight: 800;
}

.rewards-hero-vip-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.8), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #78350f;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rewards-hero-vip-note:hover {
  border-color: #d97706;
  background: #fef3c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.15);
}

.rewards-hero-vip-note svg,
.rewards-hero-vip-note i {
  width: 16px;
  height: 16px;
  color: #d97706;
}

/* 3D Visual Reward Object (Hero Right Column) */
.rewards-hero-3d-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.reward-3d-card {
  position: relative;
  width: 305px;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.92) 60%, rgba(254, 243, 199, 0.88) 100%);
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 20px 45px -10px rgba(5, 150, 105, 0.2), 0 0 25px rgba(212, 175, 55, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  animation: floatCard 6s infinite ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.reward-3d-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-3d-chip {
  width: 36px;
  height: 28px;
  background: linear-gradient(135deg, #d4af37, #fef08a, #b45309);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.reward-3d-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.reward-3d-tier-badge {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #78350f;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.reward-3d-card-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin: 0.4rem 0;
}

.reward-3d-brand {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1rem;
  font-weight: 900;
  color: #064E3B;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.reward-3d-brand span {
  color: #059669;
}

.reward-3d-value {
  font-size: 1.25rem;
  font-weight: 950;
  background: linear-gradient(135deg, #059669, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.reward-3d-card-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  border-top: 1px solid rgba(5, 150, 105, 0.15);
  padding-top: 0.4rem;
}

.reward-3d-coin {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.reward-3d-coin.coin-1 {
  top: 15px;
  right: 15px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  font-size: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
  animation: floatCoin1 5s infinite ease-in-out;
}

.reward-3d-coin.coin-2 {
  bottom: 20px;
  left: 10px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #ffffff;
  font-size: 0.72rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
  animation: floatCoin2 6s infinite ease-in-out 0.5s;
}

.reward-3d-coin.coin-3 {
  bottom: 10px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #34d399, #059669);
  color: #ffffff;
  font-size: 0.68rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
  animation: floatCoin3 5.5s infinite ease-in-out 1s;
}

.reward-3d-shadow {
  position: absolute;
  bottom: 15px;
  width: 220px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(5, 150, 105, 0.22) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 1;
}

/* 3D Visual Reward Image (Transparent 3D Floating Asset) */
.rewards-hero-img-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--spring, cubic-bezier(0.16, 1, 0.3, 1));
  margin: 0 auto;
}

.rewards-hero-img-box:hover {
  transform: translateY(-6px) scale(1.02);
}

.rewards-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(5, 150, 105, 0.22)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.rewards-hero-img-box:hover .rewards-hero-img {
  filter: drop-shadow(0 28px 40px rgba(5, 150, 105, 0.3)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.25));
}

/* TOP 4 BENEFIT CARDS + VIP MEMBERSHIP (MIDDLE ROW MATCHING REFERENCE 2) */
.poster-middle-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.poster-benefits-subgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.poster-benefit-subcard {
  background: rgba(255, 255, 255, 0.98);
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 18px;
  padding: 1.3rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.04);
  transition: transform 0.3s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.3s ease, border-color 0.3s ease;
}

.poster-benefit-subcard:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.14), 0 0 15px rgba(212, 175, 55, 0.1);
}

.poster-benefit-subcard .poster-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.08);
  border: 1.5px solid rgba(5, 150, 105, 0.24);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.2rem;
}

.poster-benefit-subcard .poster-benefit-icon svg,
.poster-benefit-subcard .poster-benefit-icon i {
  width: 20px;
  height: 20px;
}

.poster-benefit-subcard .poster-benefit-val {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: #047857;
  line-height: 1.1;
}

.poster-benefit-subcard .poster-benefit-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.poster-benefit-subcard .poster-benefit-desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* VIP MEMBERSHIP SHOWCASE CARD (FLEXIBLE IN-ROW OR STANDALONE) */
.poster-vip-showcase-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, rgba(254, 243, 199, 0.55) 50%, #ffffff 100%);
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s var(--spring, cubic-bezier(0.16, 1, 0.3, 1));
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poster-vip-showcase-card:hover {
  transform: translateY(-4px);
  border-color: #d97706;
  box-shadow: 0 18px 45px rgba(217, 119, 6, 0.2), 0 0 25px rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, rgba(254, 243, 199, 0.85) 100%);
}

.poster-vip-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.poster-vip-top-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.poster-vip-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  transition: transform 0.2s ease;
}

.poster-vip-showcase-card:hover .poster-vip-circle-btn {
  transform: translateX(3px);
  background: #d97706;
  color: #ffffff;
}

.poster-vip-circle-btn svg,
.poster-vip-circle-btn i {
  width: 16px;
  height: 16px;
}

.poster-vip-showcase-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  height: 100%;
}

.poster-vip-showcase-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
}

.poster-vip-crown-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
}

.poster-vip-crown-circle svg,
.poster-vip-crown-circle i {
  width: 28px;
  height: 28px;
}

.poster-vip-pill-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.poster-vip-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
}

.poster-vip-pill svg,
.poster-vip-pill i {
  width: 12px;
  height: 12px;
}

.poster-vip-discount-tag {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 2px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}

.poster-vip-showcase-heading {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
}

.poster-vip-showcase-sub {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.poster-vip-tiers-mini {
  display: flex;
  gap: 0.75rem;
}

.poster-vip-tier-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(217, 119, 6, 0.25);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 105px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-vip-tier-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.15);
}

.poster-vip-tier-box.popular {
  background: rgba(254, 243, 199, 0.95);
  border-color: #d97706;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.18);
}

.poster-vip-tier-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #d97706;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 1px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.vip-tier-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #78350f;
  margin-bottom: 3px;
}

.vip-tier-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.vip-cut-price {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.vip-now-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: #b45309;
}

.vip-tier-perk {
  display: block;
  font-size: 0.68rem;
  color: #059669;
  font-weight: 800;
  margin-top: 3px;
}

.poster-vip-showcase-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.poster-vip-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-vip-action-btn svg,
.poster-vip-action-btn i {
  width: 16px;
  height: 16px;
}

.poster-vip-showcase-card:hover .poster-vip-action-btn {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
}

.poster-vip-action-hint {
  font-size: 0.72rem;
  color: #94a3b8;
}

/* BOTTOM TWO PANELS (HOW IT WORKS & EXAMPLE CALCULATION) */
.poster-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.poster-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.35s ease, border-color 0.35s ease;
}

.poster-panel:hover {
  border-color: rgba(5, 150, 105, 0.38);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.12);
}

.poster-panel-head {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 900;
  color: #047857;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.poster-panel-head::before {
  content: '✦';
  color: #D4AF37;
}

/* STEPS FLEX (HOW IT WORKS) */
.poster-steps-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: auto 0;
  padding: 0.8rem 0;
}

.poster-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.poster-step-pill {
  position: relative;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.3s ease, border-color 0.3s ease;
}

.poster-step-item:hover .poster-step-pill {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
  border-color: rgba(5, 150, 105, 0.6);
}

.poster-step-pill svg,
.poster-step-pill i {
  width: 22px;
  height: 22px;
  color: #059669;
}

.poster-step-num {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #FFFFFF;
  background: linear-gradient(135deg, #059669, #047857);
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.poster-step-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
}

.poster-step-arrow {
  font-size: 1.25rem;
  color: #64748B;
  font-weight: 800;
  animation: arrowPulse 2.2s infinite ease-in-out;
}

/* CALCULATION FLEX (SEAMLESS SINGLE-ROW EQUATION) */
.poster-calc-flex {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr) auto minmax(80px, 1fr) auto minmax(90px, 1.15fr);
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.poster-calc-card {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.2);
  border-radius: 12px;
  padding: 0.65rem 0.45rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  min-width: 0;
  transition: transform 0.3s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.poster-calc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.12);
}

.poster-calc-card.highlight {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(212, 175, 55, 0.14));
  border: 1.5px solid rgba(5, 150, 105, 0.45);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.12);
  animation: highlightPulse 3.5s infinite ease-in-out;
}

.poster-calc-tag {
  font-size: 0.6rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.poster-calc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.poster-calc-row svg,
.poster-calc-row i {
  width: 15px;
  height: 15px;
  color: #059669;
}

.poster-calc-price {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.08rem;
  font-weight: 900;
  color: #0F172A;
  white-space: nowrap;
}

.poster-calc-card.highlight .poster-calc-price {
  color: #059669;
}

.poster-calc-sub {
  font-size: 0.65rem;
  font-weight: 800;
  color: #047857;
  white-space: nowrap;
}

.poster-calc-op {
  font-size: 1.15rem;
  font-weight: 900;
  color: #059669;
  text-align: center;
  padding: 0 0.1rem;
}

.poster-calc-next {
  background: #f8fafc;
  border: 1.5px dashed rgba(5, 150, 105, 0.35);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-top: 0.5rem;
}

.poster-calc-next-title {
  font-size: 0.72rem;
  font-weight: 900;
  color: #059669;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.poster-calc-next-desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

/* CALCULATION VIP ROW */
.poster-calc-vip-row {
  margin-top: 0.8rem;
  padding: 0.85rem 1.1rem;
  background: rgba(254, 243, 199, 0.65);
  border: 1.5px dashed rgba(217, 119, 6, 0.5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.poster-calc-vip-row:hover {
  background: rgba(254, 243, 199, 0.95);
  transform: translateY(-2px);
}

.poster-calc-vip-icon {
  color: #d97706;
  display: flex;
  align-items: center;
}

.poster-calc-vip-icon svg,
.poster-calc-vip-icon i {
  width: 20px;
  height: 20px;
}

.poster-calc-vip-text {
  font-size: 0.84rem;
  color: #78350f;
  line-height: 1.4;
  flex: 1;
}

.poster-calc-vip-badge {
  background: #d97706;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Launch Rewards Trust & CTA Footer Strip (matching Reference 2) */
.poster-trust-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1.5px solid rgba(5, 150, 105, 0.14);
  margin-top: 1.8rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.poster-trust-items-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.poster-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.poster-trust-item svg,
.poster-trust-item i {
  width: 20px;
  height: 20px;
  color: #059669;
  flex-shrink: 0;
}

.poster-trust-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.poster-trust-item-text span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.poster-cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.poster-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.42);
}

.poster-start-btn svg,
.poster-start-btn i {
  width: 18px;
  height: 18px;
}

.poster-cta-sub {
  font-size: 0.74rem;
  color: #64748b;
}

/* RESPONSIVE DESIGN FOR LAUNCH REWARDS */
@media (max-width: 1200px) {
  .poster-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .poster-top-header-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .poster-top-header-content {
    text-align: center;
  }

  .poster-main-title {
    justify-content: center;
    font-size: 2.8rem;
  }

  .rewards-hero-percent {
    font-size: 3.4rem;
  }

  .poster-sub-title {
    font-size: 1.8rem;
  }

  .rewards-hero-split-row {
    justify-content: center;
  }

  .poster-middle-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .poster-benefits-subgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .poster-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-bottom-grid {
    grid-template-columns: 1fr;
  }

  .poster-vip-showcase-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .poster-vip-tiers-mini {
    width: 100%;
    justify-content: space-between;
  }

  .poster-vip-tier-box {
    flex: 1;
  }

  .poster-vip-showcase-action {
    width: 100%;
  }

  .poster-vip-action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .poster-rewards-wrapper {
    padding: 2.2rem 1.2rem;
    border-radius: 24px;
  }

  .poster-main-title {
    font-size: 2.2rem;
  }

  .rewards-hero-percent {
    font-size: 2.7rem;
  }

  .poster-sub-title {
    font-size: 1.45rem;
  }

  .poster-benefits-subgrid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .poster-benefits-grid {
    grid-template-columns: 1fr;
  }

  .poster-steps-flex {
    flex-direction: column;
    gap: 0.9rem;
  }

  .poster-step-arrow {
    transform: rotate(90deg);
  }

  .poster-calc-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .poster-calc-op {
    text-align: center;
  }

  .poster-vip-tiers-mini {
    flex-direction: column;
  }

  .poster-calc-vip-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .poster-trust-cta-strip {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .poster-trust-items-row {
    justify-content: center;
    gap: 1rem;
  }

  .poster-cta-box {
    align-items: center;
    width: 100%;
  }

  .poster-start-btn {
    width: 100%;
    justify-content: center;
  }
}



.intro-3d-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: #030712;
}

#intro-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #030712;
}

.intro-3d-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, transparent 30%, rgba(3, 7, 18, 0.75) 80%, rgba(3, 7, 18, 0.95) 100%),
    linear-gradient(to bottom, rgba(3, 7, 18, 0.6) 0%, transparent 20%, transparent 80%, rgba(3, 7, 18, 0.9) 100%);
  pointer-events: none;
}

.intro-top-badge {
  position: absolute;
  top: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: #38BDF8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.intro-pulse-dot {
  width: 8px;
  height: 8px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38BDF8;
  animation: pulseDot 2s infinite;
}

.intro-center-title {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  pointer-events: none;
}

.intro-sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(5, 150, 105, 0.5);
  border-radius: 9999px;
  color: #34D399;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.intro-main-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.intro-tagline {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #CBD5E1;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.intro-bottom-bar {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.intro-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.intro-progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.intro-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #38BDF8, #34D399, #FBBF24);
  border-radius: 9999px;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.intro-scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #94A3B8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.intro-bounce-icon {
  width: 16px;
  height: 16px;
  color: #38BDF8;
  animation: chevronBounce 1.5s infinite;
}

/* 3D Canvas element */
#hero-scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #030712;
  transition: filter 0.3s ease;
}

/* Vignette & Ambient Glow Overlays */
.hero-3d-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 35%, rgba(3, 7, 18, 0.75) 75%, rgba(3, 7, 18, 0.95) 100%),
    linear-gradient(to bottom, rgba(3, 7, 18, 0.6) 0%, transparent 20%, transparent 80%, rgba(3, 7, 18, 0.95) 100%);
}

.hero-3d-glow-bg {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(5, 150, 105, 0.18) 0%, rgba(6, 182, 212, 0.12) 40%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
}

/* Top Telemetry HUD Badge */
.hero-3d-hud-badge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(5, 150, 105, 0.35);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hud-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D2FF;
  box-shadow: 0 0 10px #00D2FF;
  animation: hudPulse 1.8s infinite ease-in-out;
}

@keyframes hudPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

.hud-status-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #94A3B8;
  text-transform: uppercase;
}

/* Bottom Progress Track & Counter */
.hero-scroll-progress-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 480px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-scroll-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94A3B8;
}

.hero-scroll-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #059669, #00D2FF, #D97706);
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.8);
  transition: width 0.1s linear;
}

/* Scroll Down Mouse & Chevron Indicator */
.hero-scroll-down-hint {
  position: absolute;
  bottom: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.mouse-icon .wheel {
  width: 4px;
  height: 7px;
  background: #00D2FF;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 1.5s infinite ease-in-out;
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

.bounce-chevron {
  width: 18px;
  height: 18px;
  color: #059669;
  animation: chevronBounce 1.5s infinite ease-in-out;
}

@keyframes chevronBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ========================================================================
   v5 / SIGNATURE LUXURY MOTION SYSTEM
   A single, GPU-friendly visual language for the site. It intentionally uses
   CSS transforms instead of a permanently running hidden WebGL canvas.
   ======================================================================== */
:root {
  --lux-ink: #07110e;
  --lux-forest: #0d2d24;
  --lux-gold: #d7b35b;
  --lux-ivory: #f6f3eb;
}

#global-3d-canvas {
  display: block !important;
}

.hero-luxury-container {
  isolation: isolate;
  min-height: min(780px, calc(100vh - 92px));
  padding: clamp(4.5rem, 9vw, 8rem) 1.5rem clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(215, 179, 91, .16), transparent 22rem),
    radial-gradient(circle at 14% 12%, rgba(38, 132, 102, .28), transparent 28rem),
    linear-gradient(125deg, #06100d 0%, #0b211a 52%, #08130f 100%);
}

.hero-luxury-container::before,
.hero-luxury-container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-luxury-container::before {
  opacity: .48;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}

.hero-luxury-container::after {
  background: linear-gradient(90deg, rgba(2, 7, 5, .7), transparent 30%, transparent 70%, rgba(2, 7, 5, .72));
}

.hero-luxury-container .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
}

.hero-luxury-container .hero-brand-title,
.hero-luxury-container .hero-main-heading {
  color: #fff;
  text-shadow: 0 12px 44px rgba(0, 0, 0, .4);
}

.hero-luxury-container .hero-motto,
.hero-luxury-container .hero-subheading {
  color: rgba(244, 248, 243, .76);
}

.hero-luxury-container .hero-subheading .highlight-dark {
  color: #f7dfa3;
}

.hero-luxury-container .hero-subheading .highlight-emerald,
.hero-luxury-container .hero-subheading .highlight-teal {
  color: #9ff0cc;
}

.hero-luxury-container .hero-logo-img {
  mix-blend-mode: screen;
}

.hero-orbit-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1100px;
  opacity: .9;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(215, 179, 91, .34);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero-orbit-one {
  width: min(76vw, 860px);
  height: min(76vw, 860px);
  transform: translate(-50%, -50%) rotateX(67deg) rotateZ(10deg);
  box-shadow: 0 0 80px rgba(215, 179, 91, .08), inset 0 0 80px rgba(16, 185, 129, .05);
  animation: luxOrbit 20s linear infinite;
}

.hero-orbit-two {
  width: min(53vw, 590px);
  height: min(53vw, 590px);
  border-color: rgba(121, 230, 182, .35);
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(105deg);
  animation: luxOrbitReverse 15s linear infinite;
}

.hero-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg);
  background: linear-gradient(135deg, rgba(215, 179, 91, .75), rgba(8, 63, 48, .08));
  border: 1px solid rgba(255, 234, 174, .7);
  box-shadow: 0 0 70px rgba(215, 179, 91, .35), inset 0 0 35px rgba(255, 255, 255, .28);
  animation: luxCore 9s ease-in-out infinite;
}

.hero-orbit-core span {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, .65);
  transform: rotate(45deg);
}

.hero-orbit-star {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff3c9;
  box-shadow: 0 0 18px 7px rgba(215, 179, 91, .68);
}

.hero-orbit-star-one {
  top: 22%;
  left: 19%;
  animation: luxStar 5s ease-in-out infinite;
}

.hero-orbit-star-two {
  bottom: 19%;
  right: 20%;
  animation: luxStar 7s ease-in-out -2s infinite;
}

@keyframes luxOrbit {
  to {
    transform: translate(-50%, -50%) rotateX(67deg) rotateZ(370deg);
  }
}

@keyframes luxOrbitReverse {
  to {
    transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-255deg);
  }
}

@keyframes luxCore {

  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(225deg) scale(1.18);
  }
}

@keyframes luxStar {

  0%,
  100% {
    opacity: .25;
    transform: scale(.6);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* Site-wide depth, without compromising existing interactive cards. */
.home-section-block,
.services-hub-wrap,
.portfolio-section,
.pricing-section,
.membership-section,
.contact-section {
  position: relative;
}

.home-section-block::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 179, 91, .45), transparent);
}

.section-header .section-kicker {
  color: #a37c29;
  letter-spacing: .18em;
}

.portfolio-card,
.category-hub-card,
.price-card,
.membership-card,
.hero-addon-card {
  transform-style: preserve-3d;
  box-shadow: 0 20px 55px rgba(4, 30, 22, .12);
}

.portfolio-card:hover,
.category-hub-card:hover,
.price-card:hover,
.membership-card:hover,
.hero-addon-card:hover {
  box-shadow: 0 28px 70px rgba(4, 30, 22, .22), 0 0 0 1px rgba(215, 179, 91, .25);
}

@media (max-width: 760px) {

  body,
  a,
  button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .hero-luxury-container {
    min-height: 680px;
    padding-inline: 1rem;
  }

  .hero-orbit-one {
    width: 125vw;
    height: 125vw;
  }

  .hero-orbit-two {
    width: 90vw;
    height: 90vw;
  }

  .hero-orbit-core {
    width: 108px;
    height: 108px;
    opacity: .72;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .hero-orbit-stage {
    display: none;
  }
}

/* 4 Overlay Phases */
.hero-overlay-phases {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
  z-index: 10;
  pointer-events: none;
}

.hero-phase {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 95%;
  max-width: 1000px;
  padding: 1rem;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  pointer-events: none;
}

.hero-phase.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.hero-phase.phase-1 {
  background: transparent;
  max-width: 800px;
}

.hero-phase .hero-main-heading {
  color: #FFFFFF !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-phase .hero-subheading {
  color: #F1F5F9 !important;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 1px 5px rgba(0, 0, 0, 0.9);
  background: rgba(3, 7, 18, 0.45);
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Phase 1 Pill */
.phase-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  margin-top: 1.2rem;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(5, 150, 105, 0.5);
  border-radius: 9999px;
  color: #34D399;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

/* Phase Badges */
.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  margin-bottom: 0.8rem;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.5);
  border-radius: 9999px;
  color: #22D3EE;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.phase-badge.badge-gold {
  background: rgba(217, 119, 6, 0.2);
  border-color: rgba(217, 119, 6, 0.5);
  color: #FBBF24;
}

.phase-badge.badge-emerald {
  background: rgba(5, 150, 105, 0.2);
  border-color: rgba(5, 150, 105, 0.5);
  color: #34D399;
}

.hero-phase-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #CBD5E1;
  margin-top: 1rem;
  text-transform: uppercase;
}

.hero-phase-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.highlight-emerald {
  color: #34D399;
  font-weight: 700;
}

.highlight-gold {
  color: #FBBF24;
  font-weight: 700;
}

.highlight-cyan {
  color: #22D3EE;
  font-weight: 700;
}

/* Responsive Media Queries for 3D Hero */
@media (max-width: 768px) {
  .hero-3d-scroll-wrapper {
    height: 300vh;
  }

  .hero-3d-hud-badge {
    top: 1rem;
    padding: 0.35rem 0.8rem;
  }

  .hud-status-text {
    font-size: 0.65rem;
  }

  .hero-scroll-progress-container {
    bottom: 1rem;
    max-width: 90%;
  }

  .hero-scroll-down-hint {
    bottom: 3.5rem;
    font-size: 0.62rem;
  }

  .mouse-icon {
    width: 18px;
    height: 28px;
  }

  .hero-phase {
    width: 95%;
    padding: 1.4rem 1.2rem;
  }
}



/* ──────────────────────────────────────────────────────────
   NEW PRICING SYSTEM INTEGRATION STYLES (V5 - August 2026)
   ────────────────────────────────────────────────────────── */
.pricing-tabs-bar {
  display: flex;
  gap: 0.5rem;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.35rem;
  margin-bottom: 2rem;
}

.pricing-tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
}

.pricing-tab-btn:hover {
  color: var(--text);
  background: rgba(5, 150, 105, 0.08);
}

.pricing-tab-btn.active {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

#panPkg {
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}

.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .pkg-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.pkg-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pkg-card-luxury:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.pkg-card-luxury.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.pkg-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pkg-tier-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.pkg-tier-label.gold {
  color: var(--gold);
}

.pkg-tier-label.magenta {
  color: var(--magenta);
}

.pkg-best-for {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.pkg-delivery-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  width: fit-content;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.pkg-price-now {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}

.pkg-price-was {
  font-size: 1rem;
  color: var(--dim);
  text-decoration: line-through;
}

.pkg-save-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width: fit-content;
}

.pkg-items-list {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pkg-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.pkg-item-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 500;
}

.pkg-item-check {
  color: #10B981;
  font-weight: 700;
}

.pkg-item-val {
  font-size: 0.78rem;
  color: var(--dim);
  font-weight: 600;
}

.pkg-actions-footer {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.pkg-actions-footer .btn {
  flex: 1;
}

.video-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .video-types-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.video-type-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 248, 0.92));
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 22px;
  padding: 2.2rem 1.8rem 1.8rem;
  transition: all 0.4s var(--spring);
  box-shadow: 0 20px 50px -10px rgba(6, 78, 59, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}

.vt-card-aura {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.video-type-card.vt-purple {
  border-color: rgba(139, 92, 246, 0.3);
}

.video-type-card.vt-cyan {
  border-color: rgba(6, 182, 212, 0.3);
}

.video-type-card.vt-gold {
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15), 0 0 20px rgba(5, 150, 105, 0.08);
}

.video-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(6, 78, 59, 0.15), 0 0 25px rgba(212, 175, 55, 0.12);
}

.video-type-card.vt-gold:hover {
  border-color: var(--gold);
  box-shadow: 0 35px 75px rgba(212, 175, 55, 0.28), 0 0 30px rgba(5, 150, 105, 0.15);
}

.vt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.vt-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vt-format-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vt-title-row {
  margin-bottom: 1.2rem;
}

.vt-title {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.vt-price-wrap {
  display: flex;
  flex-direction: column;
}

.vt-price-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.vt-price-val {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.vt-duration-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  width: fit-content;
}

.vt-features-box {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid rgba(5, 150, 105, 0.12);
  padding-top: 1rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.vt-features-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

.vt-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vt-best-for-box {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1.4rem;
}

.vt-best-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.vt-best-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.vt-actions-row {
  display: flex;
  gap: 0.6rem;
  border-top: 1px solid rgba(5, 150, 105, 0.12);
  padding-top: 1.2rem;
  margin-top: auto;
}

.vt-order-btn {
  flex: 1.3;
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.vt-custom-btn {
  flex: 0.9;
  padding: 0.65rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.single-service-note-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.single-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.single-service-tag {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.faq-accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.6rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-accordion-header {
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-accordion-header:hover {
  background: rgba(5, 150, 105, 0.04);
}

.faq-accordion-header i {
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-accordion-item.open .faq-accordion-header i {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-item.open .faq-accordion-body {
  max-height: 300px;
}

.faq-accordion-content {
  padding: 0 1.2rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ==========================================================================
   DUAL SCROLLING & WAVING ROBOTS WITH LOGO REVEAL & SPEECH BUBBLES
   ========================================================================== */
.hero-logo-reveal {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin: 1.5rem auto 2.5rem auto;
  max-width: 950px;
  min-height: 220px;
  perspective: 1000px;
  overflow: visible;
}

/* Center Logo Monogram */
.hero-fn-monogram {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.5s ease;
}

.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  filter: drop-shadow(0 12px 30px rgba(5, 150, 105, 0.35)) drop-shadow(0 20px 45px rgba(212, 175, 55, 0.3));
  position: relative;
  z-index: 2;
  animation: heroLogoFloat 4s ease-in-out infinite alternate;
  overflow: hidden;
}

.hero-logo-glow-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.38) 0%, rgba(6, 182, 212, 0.18) 50%, transparent 70%);
  filter: blur(14px);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

/* Robot Side Wrappers */
.logo-robot-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  will-change: transform, opacity;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* Initial off-screen/side state for scroll entry */
.logo-robot-left {
  transform: translateX(-220px) scale(0.75);
  opacity: 0;
}

.logo-robot-right {
  transform: translateX(220px) scale(0.75);
  opacity: 0;
}

/* Arrived state near center logo */
.hero-logo-reveal.arrived .logo-robot-left,
.hero-logo-reveal.arrived .logo-robot-right,
.logo-robot-side.arrived {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.logo-robot-side:hover {
  transform: translateY(-8px) scale(1.06) !important;
}

.robot-img-wrapper {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-robot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
  animation: robotFloat 3.5s ease-in-out infinite alternate;
}

.logo-robot-flipped {
  transform: scaleX(-1);
}

.logo-robot-shadow {
  position: absolute;
  bottom: -12px;
  width: 75%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowScale 3.5s ease-in-out infinite alternate;
}

/* Robot Hand Waving Element */
.robot-hand-container {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.hand-left {
  top: 18px;
  left: -22px;
}

.hand-right {
  top: 18px;
  right: -22px;
}

.robot-waving-hand {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  transform-origin: 70% 70%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

/* Waving state animation on hand */
.logo-robot-side.waving .robot-waving-hand,
.hero-logo-reveal.arrived .robot-waving-hand {
  opacity: 1;
  transform: scale(1);
  animation: waveArmMotion 1.2s ease-in-out infinite;
}

@keyframes waveArmMotion {
  0% {
    transform: rotate(0deg) scale(1);
  }

  15% {
    transform: rotate(26deg) scale(1.15);
  }

  30% {
    transform: rotate(-12deg) scale(1.1);
  }

  45% {
    transform: rotate(24deg) scale(1.15);
  }

  60% {
    transform: rotate(-8deg) scale(1.05);
  }

  75% {
    transform: rotate(18deg) scale(1.1);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* Speech Hello Bubble (Near Hand) */
.robot-hello-bubble {
  position: absolute;
  top: -58px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 2.5px solid rgba(5, 150, 105, 0.45);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.22), 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0) translateY(15px);
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, border-color 0.3s ease;
  z-index: 12;
}

.bubble-left {
  left: -20px;
}

.bubble-right {
  right: -20px;
}

/* Bubble Tail Pointer */
.robot-hello-bubble::after {
  content: '';
  position: absolute;
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(5, 150, 105, 0.45);
}

.bubble-left::after {
  left: 30px;
}

.bubble-right::after {
  right: 30px;
}

.bubble-wave-icon {
  font-size: 1.4rem;
  display: inline-block;
  animation: pulseHandIcon 1.2s ease-in-out infinite alternate;
}

.bubble-text {
  background: linear-gradient(135deg, #059669, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}

/* Active Hello Bubble state when arrived or clicked */
.hero-logo-reveal.arrived .robot-hello-bubble,
.logo-robot-side.waving .robot-hello-bubble {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: bubbleFloating 2.5s ease-in-out infinite alternate 0.5s;
}

@keyframes bubbleFloating {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes pulseHandIcon {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2) rotate(12deg);
  }
}

@keyframes robotFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes shadowScale {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.1;
  }
}

@keyframes heroLogoFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-6px) rotate(2deg);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .hero-logo-reveal {
    gap: 1rem;
    min-height: 160px;
  }

  .hero-fn-monogram {
    width: 105px;
    height: 105px;
  }

  .robot-img-wrapper {
    width: 110px;
    height: 110px;
  }

  .robot-hello-bubble {
    top: -46px;
    font-size: 0.88rem;
    padding: 0.4rem 0.75rem;
  }

  .bubble-left {
    left: -10px;
  }

  .bubble-right {
    right: -10px;
  }

  .robot-waving-hand {
    font-size: 2.2rem;
  }
}

/* ──────────────────────────────────────────────────────────
   ADD-ONS & QUALITY GRID SYSTEM (Structured Multi-Column Layout)
   ────────────────────────────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 820px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

.addon-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.35rem;
  background: var(--bg-card, #0c101d);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: var(--r-md, 14px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.addon-row-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.18);
}

.addon-row-item.active,
.addon-row-item.included {
  border-color: #8B5CF6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.addon-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.addon-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
}

.addon-row-item.active .addon-checkbox,
.addon-row-item.included .addon-checkbox {
  border-color: #8B5CF6;
  background: #8B5CF6;
  color: #FFFFFF;
}

.addon-row-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  flex-shrink: 0;
}

.addon-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.addon-row-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #fafafa);
  line-height: 1.35;
}

.addon-row-desc {
  font-size: 0.8rem;
  color: var(--muted, #a1a1aa);
  line-height: 1.45;
  white-space: normal;
}

.addon-row-right {
  margin-left: 1rem;
  flex-shrink: 0;
  text-align: right;
}

.addon-row-price {
  font-family: var(--font-h, 'Space Grotesk', sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
}

.addon-row-price.included-badge {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.28);
}








/* ==================== 6 MAIN SERVICES SECTION — LUXURY STYLING ==================== */
.main-services-wrapper {
  max-width: 1300px;
  margin: 3.5rem auto 1rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 30px rgba(5, 150, 105, 0.05);
  position: relative;
  overflow: hidden;
}

.main-services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.main-services-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
  background: linear-gradient(135deg, #0f172a 30%, #059669 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-services-subtitle {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .main-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .main-services-grid {
    grid-template-columns: 1fr;
  }

  .main-services-wrapper {
    padding: 1.5rem 1rem;
  }

  .main-services-title {
    font-size: 1.75rem;
  }
}

.main-service-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.main-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(5, 150, 105, 0.16), 0 0 20px rgba(6, 182, 212, 0.1);
  border-color: rgba(5, 150, 105, 0.4);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  pointer-events: none;
}

.service-cat-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-reward-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #059669, #06b6d4);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  flex: 1;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.service-tag {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.main-service-card:hover .service-tag {
  background: rgba(5, 150, 105, 0.08);
  color: #047857;
  border-color: rgba(5, 150, 105, 0.2);
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-btn-primary {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

.service-btn-primary:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.service-btn-secondary {
  background: #f8fafc;
  color: #0f172a;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.service-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #059669;
  color: #059669;
}


/* ==================== ULTRA-PREMIUM LUXURY HERO SECTION STYLING ==================== */
.hero-luxury-container {
  position: relative;
  padding: 3.5rem 1.5rem 2.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, rgba(248, 250, 252, 0.98) 70%);
  border-radius: 36px;
  border: 1px solid rgba(5, 150, 105, 0.18);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orbPulse 8s ease-in-out infinite alternate;
}

.orb-emerald {
  width: 450px;
  height: 450px;
  background: rgba(16, 185, 129, 0.25);
  top: -100px;
  left: 20%;
}

.orb-cyan {
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.16);
  top: 50px;
  right: 15%;
  animation-delay: -3s;
}

.orb-gold {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.18);
  bottom: -50px;
  left: 40%;
  animation-delay: -5s;
}

@keyframes orbPulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.35;
  }

  100% {
    transform: scale(1.15) translate(20px, -20px);
    opacity: 0.55;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 6px 18px;
  border-radius: 9999px;
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.hero-top-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.3);
  border-color: rgba(16, 185, 129, 0.6);
}

.hero-badge-sparkle {
  color: #10b981;
  font-size: 0.9rem;
}

.hero-badge-divider {
  color: rgba(255, 255, 255, 0.3);
}

.hero-badge-loc {
  color: #38bdf8;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 60%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.highlight-emerald {
  color: #047857;
  font-weight: 700;
  border-bottom: 2px solid rgba(5, 150, 105, 0.4);
}

.highlight-teal {
  color: #0d9488;
  font-weight: 700;
}

.highlight-gold {
  color: #b45309;
  font-weight: 700;
}

.highlight-dark {
  color: #0f172a;
  font-weight: 700;
}

.hero-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search-icon {
  position: absolute;
  left: 1.25rem;
  color: #059669;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 2;
}

.hero-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(5, 150, 105, 0.3);
  border-radius: 9999px;
  padding: 0.95rem 7.5rem 0.95rem 3.4rem;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 600;
  outline: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06), 0 0 20px rgba(5, 150, 105, 0.08);
  transition: all 0.35s ease;
}

.hero-search-input:focus {
  border-color: #059669;
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.2), 0 0 0 4px rgba(5, 150, 105, 0.12);
  background: #ffffff;
}

.hero-search-badge {
  position: absolute;
  right: 12px;
  background: linear-gradient(135deg, #059669, #06b6d4);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.hero-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tag-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-tag-pill {
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.quick-tag-pill:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25);
}

.hero-cta-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3) !important;
  border: none !important;
}

.hero-cta-emerald:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.45) !important;
}

.hero-cta-glass {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0f172a !important;
  border: 1px solid rgba(5, 150, 105, 0.35) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
}

.hero-cta-glass:hover {
  background: #ffffff !important;
  border-color: #059669 !important;
  color: #059669 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2) !important;
}

.hero-cta-gold {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3) !important;
}

.hero-cta-gold:hover {
  background: linear-gradient(135deg, #92400e 0%, #b45309 100%) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.45) !important;
}

.rewards-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #047857;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.08);
}

.rewards-pill-link:hover {
  background: linear-gradient(135deg, #059669, #06b6d4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.pulse-sparkle {
  display: inline-block;
  animation: pulseSparkle 1.8s ease-in-out infinite;
}

/* Hero light-mode correction: keep the luxury depth, remove the dark cinema wash. */
.hero-luxury-container {
  background:
    radial-gradient(circle at 50% 35%, rgba(215, 179, 91, .20), transparent 25rem),
    radial-gradient(circle at 12% 12%, rgba(16, 185, 129, .18), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #f5faf5 52%, #fdf9ee 100%);
  border-color: rgba(12, 82, 61, .16);
}

.hero-luxury-container::before {
  opacity: .22;
}

.hero-luxury-container::after {
  display: none;
}

.hero-luxury-container .hero-brand-title,
.hero-luxury-container .hero-main-heading {
  color: #12372c;
  text-shadow: none;
}

.hero-luxury-container .hero-motto,
.hero-luxury-container .hero-subheading {
  color: #4b625a;
}

.hero-luxury-container .hero-subheading .highlight-dark {
  color: #12372c;
}

.hero-luxury-container .hero-subheading .highlight-emerald,
.hero-luxury-container .hero-subheading .highlight-teal {
  color: #087458;
}

.hero-luxury-container .hero-logo-img {
  mix-blend-mode: multiply;
}

.hero-orbit-stage {
  opacity: .42;
}

.hero-orbit-one {
  border-color: rgba(18, 91, 67, .28);
  box-shadow: 0 0 80px rgba(215, 179, 91, .10), inset 0 0 80px rgba(16, 185, 129, .06);
}

.hero-orbit-two {
  border-color: rgba(16, 185, 129, .30);
}

.hero-orbit-core {
  opacity: .62;
}

/* Editorial hero layout: one message, two decisions, one proof line. */
.hero-luxury-container {
  min-height: 0;
  padding: clamp(3rem, 6vw, 5.25rem) 1.5rem clamp(3.25rem, 6vw, 5rem);
}

.hero-orbit-stage {
  display: none;
}

.hero-luxury-container .hero-content {
  max-width: 820px;
}

.hero-luxury-container .hero-logo-reveal {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  transform: none !important;
}

.hero-luxury-container .hero-fn-monogram {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 440px !important;
  margin: 0 auto !important;
}

.hero-luxury-container .hero-logo-img-3d {
  width: 170px !important;
  height: auto !important;
  max-width: 85vw !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 12px 30px rgba(16, 185, 129, 0.35)) drop-shadow(0 0 45px rgba(212, 175, 55, 0.4)) !important;
}

.hero-luxury-container .hero-gold-text-img {
  width: 420px !important;
  height: auto !important;
  max-width: 90vw !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0.6rem auto !important;
  filter: drop-shadow(0 6px 22px rgba(212, 175, 55, 0.65)) drop-shadow(0 0 35px rgba(255, 215, 0, 0.4)) !important;
}

.hero-luxury-container .hero-brand-title {
  margin-top: -.35rem;
  margin-bottom: .35rem;
}

.hero-luxury-container .hero-motto {
  margin-bottom: 1.2rem;
}

.hero-luxury-container .hero-main-heading {
  font-size: clamp(2.25rem, 4.8vw, 4.45rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  margin-bottom: 1.15rem;
}

.hero-luxury-container .hero-subheading {
  max-width: 690px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.7;
}

/* Search remains available in the navigation; removing this duplicate clears the hero. */
.hero-luxury-container .hero-search-box,
.hero-luxury-container .hero-rewards-banner-link {
  display: none;
}

/* ==================== ULTRA-LUXURY HERO REWARDS DUAL SHOWCASE (PREMIUM GLASS CARDS) ==================== */
.hero-rewards-typography {
  margin: 1.85rem auto 1.4rem auto;
  text-align: center;
  max-width: 1260px;
  width: 100%;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  padding: 0 1rem;
}

.hero-rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
}

.hero-reward-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 100%);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 34px -10px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 1.5rem 1.15rem 1.4rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.32s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.reward-card-launch {
  border-color: rgba(5, 150, 105, 0.25);
}

.reward-card-referral {
  border-color: rgba(217, 119, 6, 0.25);
}

.reward-card-seller {
  border-color: rgba(6, 182, 212, 0.25);
}

body.dark-mode .hero-reward-card,
[data-theme="dark"] .hero-reward-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px -8px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-reward-card:hover {
  transform: translateY(-4px);
}

.reward-card-launch:hover {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 20px 45px -10px rgba(5, 150, 105, 0.22), 0 8px 18px -4px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.reward-card-referral:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 20px 45px -10px rgba(217, 119, 6, 0.22), 0 8px 18px -4px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.reward-card-seller:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 20px 45px -10px rgba(6, 182, 212, 0.22), 0 8px 18px -4px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Glowing Top Accent Bar */
.reward-card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  opacity: 0.95;
  transition: height 0.3s ease;
}

.hero-reward-card:hover .reward-card-accent-bar {
  height: 4.5px;
}

.accent-emerald {
  background: linear-gradient(90deg, transparent, #059669 20%, #10b981 50%, #34d399 80%, transparent);
  box-shadow: 0 1px 12px rgba(16, 185, 129, 0.5);
}

.accent-gold {
  background: linear-gradient(90deg, transparent, #d97706 20%, #f59e0b 50%, #fbbf24 80%, transparent);
  box-shadow: 0 1px 12px rgba(245, 158, 11, 0.5);
}

.accent-cyan {
  background: linear-gradient(90deg, transparent, #0891b2 20%, #06b6d4 50%, #38bdf8 80%, transparent);
  box-shadow: 0 1px 12px rgba(6, 182, 212, 0.5);
}

/* Pill Badges */
.reward-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.34rem 0.95rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #047857;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  color: #b45309;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #0891b2;
}

body.dark-mode .badge-emerald,
[data-theme="dark"] .badge-emerald {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
}

body.dark-mode .badge-gold,
[data-theme="dark"] .badge-gold {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

body.dark-mode .badge-cyan,
[data-theme="dark"] .badge-cyan {
  background: rgba(6, 182, 212, 0.18);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.badge-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-emerald {
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: rewardPulseEmerald 2s infinite;
}

.pulse-gold {
  background-color: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: rewardPulseGold 2s infinite;
}

.pulse-cyan {
  background-color: #06b6d4;
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  animation: rewardPulseCyan 2s infinite;
}

@keyframes rewardPulseEmerald {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes rewardPulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes rewardPulseCyan {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.reward-badge-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
  flex-shrink: 0;
}

/* Headlines */
.reward-card-headline {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.32;
  margin: 0 0 0.85rem 0;
  max-width: 420px;
}

body.dark-mode .reward-card-headline,
[data-theme="dark"] .reward-card-headline {
  color: #f8fafc;
}

.rewards-highlight-percent {
  font-weight: 900;
  display: inline-block;
}

.percent-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.25));
}

.percent-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.25));
}

.percent-cyan {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(6, 182, 212, 0.25));
}

/* Perks Strip */
.rewards-perks-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  width: 100%;
}

.perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.24rem 0.55rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.perk-chip svg,
.perk-chip i {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.perk-emerald {
  background: rgba(5, 150, 105, 0.08);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.perk-gold {
  background: rgba(217, 119, 6, 0.08);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.22);
}

.perk-cyan {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.perk-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.22);
}

body.dark-mode .perk-emerald,
[data-theme="dark"] .perk-emerald {
  background: rgba(5, 150, 105, 0.16);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.25);
}

body.dark-mode .perk-gold,
[data-theme="dark"] .perk-gold {
  background: rgba(217, 119, 6, 0.16);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.25);
}

body.dark-mode .perk-cyan,
[data-theme="dark"] .perk-cyan {
  background: rgba(6, 182, 212, 0.16);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.25);
}

body.dark-mode .perk-purple,
[data-theme="dark"] .perk-purple {
  background: rgba(139, 92, 246, 0.16);
  color: #a78bfa;
  border-color: rgba(167, 139, 250, 0.25);
}

.perk-plus {
  font-size: 0.88rem;
  font-weight: 800;
  color: #94a3b8;
}

/* Luxury Action Buttons */
.reward-cta-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.6rem 1.55rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: auto;
  min-width: 195px;
}

.reward-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(25deg);
  transition: transform 0.6s ease;
}

.reward-cta-btn:hover::after {
  transform: translateX(350%) rotate(25deg);
}

.btn-emerald-shine {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-emerald-shine:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.42);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-gold-shine {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gold-shine:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.42);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-cyan-shine {
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cyan-shine:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.42);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.cta-arrow-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
  transition: transform 0.25s ease;
}

.reward-cta-btn:hover .cta-arrow-icon {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-rewards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .reward-card-seller {
    grid-column: span 2;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-rewards-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: 520px;
    margin: 0 auto;
  }
  .reward-card-seller {
    grid-column: span 1;
    max-width: none;
  }
  .hero-reward-card {
    padding: 1.35rem 1.25rem 1.25rem 1.25rem;
  }
  .reward-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-rewards-typography {
    margin: 1.25rem auto 1rem auto;
    padding: 0 0.5rem;
  }
  .rewards-perks-strip {
    gap: 0.35rem;
  }
  .perk-chip {
    font-size: 0.76rem;
    padding: 0.24rem 0.55rem;
  }
}

/* ============================================================
   VIP MEMBERSHIP DISCOUNT SHOWCASE IN HERO REWARDS
   ============================================================ */
.hero-vip-discount-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.15rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: left;
}

.hero-vip-discount-box:hover {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.14) 0%, rgba(245, 158, 11, 0.08) 100%);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 4px 18px rgba(217, 119, 6, 0.18);
  transform: translateY(-2px);
}

.hero-partner-discount-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.15rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: left;
}

.hero-partner-discount-box:hover {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.14) 0%, rgba(16, 185, 129, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.18);
  transform: translateY(-2px);
}

.hero-seller-discount-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.15rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: left;
}

.hero-seller-discount-box:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.14) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.18);
  transform: translateY(-2px);
}

.vip-box-left,
.partner-box-left,
.seller-box-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.vip-crown-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(245, 158, 11, 0.3));
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vip-crown-icon-wrap i,
.vip-crown-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.partner-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(16, 185, 129, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-icon-wrap i,
.partner-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.seller-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #0891b2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seller-icon-wrap i,
.seller-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.vip-box-text,
.partner-box-text,
.seller-box-text {
  min-width: 0;
  flex: 1;
}

.vip-box-heading,
.partner-box-heading,
.seller-box-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
  flex-wrap: wrap;
}

.vip-box-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #b45309;
  text-transform: uppercase;
}

.vip-box-discount-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #ffffff;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
  animation: rewardPulseGold 2.2s infinite;
}

.partner-box-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #047857;
  text-transform: uppercase;
}

.partner-box-discount-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}

.seller-box-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0891b2;
  text-transform: uppercase;
}

.seller-box-discount-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #ffffff;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(6, 182, 212, 0.3);
  animation: rewardPulseCyan 2.2s infinite;
}

.vip-box-sub,
.partner-box-sub,
.seller-box-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  color: #334155;
  line-height: 1.35;
  font-weight: 500;
}

.vip-box-old {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.7rem;
  margin-left: 2px;
}

.vip-box-arrow,
.partner-box-arrow,
.seller-box-arrow {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.vip-box-arrow i,
.vip-box-arrow svg,
.partner-box-arrow i,
.partner-box-arrow svg,
.seller-box-arrow i,
.seller-box-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.hero-vip-discount-box:hover .vip-box-arrow {
  transform: translateX(3px);
  color: #d97706;
}

.hero-partner-discount-box:hover .partner-box-arrow {
  transform: translateX(3px);
  color: #059669;
}

.hero-seller-discount-box:hover .seller-box-arrow {
  transform: translateX(3px);
  color: #0891b2;
}

/* Dark mode overrides */
body.dark-mode .hero-vip-discount-box,
[data-theme="dark"] .hero-vip-discount-box {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.16) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

body.dark-mode .hero-vip-discount-box:hover,
[data-theme="dark"] .hero-vip-discount-box:hover {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.24) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}

body.dark-mode .hero-partner-discount-box,
[data-theme="dark"] .hero-partner-discount-box {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.16) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

body.dark-mode .hero-partner-discount-box:hover,
[data-theme="dark"] .hero-partner-discount-box:hover {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.24) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

body.dark-mode .hero-seller-discount-box,
[data-theme="dark"] .hero-seller-discount-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.16) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-color: rgba(6, 182, 212, 0.3);
}

body.dark-mode .hero-seller-discount-box:hover,
[data-theme="dark"] .hero-seller-discount-box:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.24) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

body.dark-mode .vip-box-label,
[data-theme="dark"] .vip-box-label {
  color: #fbbf24;
}

body.dark-mode .partner-box-label,
[data-theme="dark"] .partner-box-label {
  color: #34d399;
}

body.dark-mode .seller-box-label,
[data-theme="dark"] .seller-box-label {
  color: #38bdf8;
}

body.dark-mode .vip-box-sub,
[data-theme="dark"] .vip-box-sub,
body.dark-mode .partner-box-sub,
[data-theme="dark"] .partner-box-sub,
body.dark-mode .seller-box-sub,
[data-theme="dark"] .seller-box-sub {
  color: #cbd5e1;
}

.perk-vip-badge {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.26);
  cursor: pointer;
  transition: all 0.2s ease;
}

.perk-vip-badge:hover {
  background: rgba(217, 119, 6, 0.18);
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}

body.dark-mode .perk-vip-badge,
[data-theme="dark"] .perk-vip-badge {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.32);
}


.hero-luxury-container .hero-cta-buttons {
  margin-top: 1.25rem !important;
  gap: .8rem;
}

.hero-luxury-container .hero-cta-gold {
  display: none;
}

.hero-luxury-container .btn-lg {
  min-height: 54px;
  padding-inline: 1.35rem;
}

.hero-luxury-container .hero-trust-strip {
  margin-top: 1.55rem !important;
  gap: 1.4rem;
}

.hero-luxury-container .trust-chip {
  padding: 0;
  background: transparent;
  border: 0;
  color: #547066;
  font-size: .74rem;
}

.hero-luxury-container .trust-chip:nth-child(n+3) {
  display: none;
}

.hero-luxury-container .trust-chip i {
  color: #0b8a68;
}

@media (max-width: 560px) {
  .hero-luxury-container {
    padding: 2.6rem 1rem 3rem;
    border-radius: 24px;
  }

  .hero-luxury-container .hero-logo-reveal {
    transform: scale(.72);
    margin-bottom: -1rem !important;
  }

  .hero-luxury-container .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-luxury-container .hero-trust-strip {
    gap: .75rem;
    flex-direction: column;
    align-items: center;
  }
}

@keyframes pulseSparkle {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}


/* ==================== ULTRA-LUXURY $100K+ 3D WEBGL & SCROLLING ANIMATION ENGINE ==================== */
#global-3d-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

body {
  overflow-x: hidden;
}

/* 3D Perspective Card Tilt Container */
[data-tilt="true"] {
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

/* Holographic Specular Reflection Sheen */
.holographic-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

[data-tilt="true"]:hover .holographic-shine {
  opacity: 1;
}

/* Enhanced 3D Glassmorphism Cards */
.main-service-card,
.poster-benefit-card,
.poster-calc-card,
.why-us-box,
.hero-addon-card,
.flagship-card {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.main-service-card:hover,
.poster-benefit-card:hover,
.poster-calc-card:hover,
.why-us-box:hover,
.hero-addon-card:hover {
  border-color: rgba(16, 185, 129, 0.45) !important;
  box-shadow: 0 25px 60px rgba(5, 150, 105, 0.18), 0 0 30px rgba(6, 182, 212, 0.12) !important;
}

/* 3D Floating Reveal Animation Classes */
.reveal-3d-up {
  opacity: 0;
  transform: translateY(60px) rotateX(12deg) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-3d-up.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

.reveal-3d-scale {
  opacity: 0;
  transform: scale(0.88) rotateY(-8deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-3d-scale.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

/* Metallic Holographic Text Effect */
.text-holographic {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 33%, #8b5cf6 66%, #f59e0b 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holoTextShift 6s ease infinite alternate;
}

@keyframes holoTextShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}


/* =========================================================
   MOBILE DISPLAY & RESPONSIVE TOUCH ENGINE OPTIMIZATION
   ========================================================= */

/* Prevent horizontal scroll overflow globally on mobile */
html,
body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* Touch device smooth scroll & disable 3D tilt jitter on touch screen */
@media (max-width: 768px) {

  /* Disable 3D mouse tilt transformations on touch screens to prevent scroll stuttering */
  [data-tilt] {
    transform: none !important;
    transition: transform 0.3s ease !important;
  }

  .holographic-shine {
    opacity: 0 !important;
  }

  /* Section top scroll offset for sticky header */
  section,
  div[id$="-section"],
  div[id$="-wrapper"],
  div[id$="-hub"],
  #services-builder-section,
  #home-main-services-section,
  #launch-rewards-poster,
  #vip-club-section,
  #portfolio-hub-section {
    scroll-margin-top: 80px !important;
  }

  /* Section padding adjustment for mobile */
  .services-hub-section,
  .poster-rewards-wrapper,
  .why-us-luxury-box,
  .pricing-grid-section,
  .portfolio-hub-section,
  .builder-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Compact Navbar Header for Mobile */
  .navbar {
    padding: 0.5rem 0.75rem !important;
  }

  .nav-container {
    padding: 0 0.25rem !important;
    gap: 0.5rem !important;
  }

  .nav-logo {
    gap: 0.4rem !important;
    max-width: 55% !important;
  }

  .logo-img {
    width: 32px !important;
    height: 32px !important;
  }

  .logo-text {
    font-size: clamp(0.8rem, 4vw, 1.05rem) !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .header-controls {
    gap: 0.4rem !important;
  }

  .currency-select {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.75rem !important;
  }

  .nav-search-wrapper,
  .navbar-search {
    display: none !important;
    /* Accessible inside mobile drawer */
  }

  /* Mobile Section Titles */
  .section-title,
  .services-hub-header h2,
  .poster-heading,
  .builder-title {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }

  .section-subtitle,
  .services-hub-header p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  /* Main Services 3D Cards Grid on Mobile */
  .services-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .service-card-luxury {
    padding: 1.25rem !important;
    border-radius: 18px !important;
  }

  .service-card-image-wrap {
    height: 180px !important;
  }

  /* Launch Poster Mobile Stack */
  .poster-rewards-card {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
  }

  .poster-content-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* VIP Club Cards Mobile Stack */
  .vip-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .vip-card {
    padding: 1.5rem 1.25rem !important;
  }

  /* Touch-friendly buttons */
  .btn,
  .btn-primary,
  .quick-view-btn,
  .service-card-actions .btn {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 1rem !important;
  }

  /* Drawer Mobile Navigation */
  .nav-drawer-content {
    width: 88vw !important;
    max-width: 340px !important;
    padding: 1.5rem 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.82rem !important;
  }

  .service-card-image-wrap {
    height: 160px !important;
  }

  .service-card-actions {
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  .service-card-actions .btn {
    width: 100% !important;
  }
}


/* Additional Mobile Header & Drawer CSS Fixes */
@media (max-width: 768px) {

  /* Hide non-essential header buttons on mobile to fit navbar cleanly */
  .header-controls .ai-advisor-btn,
  .header-controls .sign-in-btn,
  .header-controls .auth-btn {
    display: none !important;
  }

  /* Hamburger button explicit mobile visibility */
  .hamburger-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 10px !important;
    color: #10B981 !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    flex-shrink: 0 !important;
  }

  /* Mobile Drawer sliding overlay and container */
  .mobile-nav-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.75) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 9998 !important;
    transition: opacity 0.3s ease !important;
  }

  .mobile-nav-drawer {
    position: fixed !important;
    top: 0;
    right: 0;
    width: 88vw !important;
    max-width: 340px !important;
    height: 100vh !important;
    background: #030712 !important;
    border-left: 1px solid rgba(16, 185, 129, 0.25) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8) !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .top-announcement-bar {
    font-size: 0.6rem !important;
    padding: 0.35rem 0.5rem !important;
  }
}


/* =========================================================
   PERMANENT MOBILE HEADER & CONTROL FIXES (390px - 768px)
   ========================================================= */

@media (max-width: 768px) {

  /* Hide advisor button and non-essential buttons on mobile navbar */
  .advisor-btn,
  .header-controls .advisor-btn,
  .header-controls .ai-advisor-btn,
  .header-controls .sign-in-btn,
  .header-controls .auth-btn {
    display: none !important;
  }

  /* Compact brand logo & text on mobile navbar */
  .brand-name {
    font-size: clamp(0.78rem, 3.8vw, 0.95rem) !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 140px !important;
  }

  .nav-logo-img,
  .logo-img {
    width: 30px !important;
    height: 30px !important;
  }

  .header-controls {
    gap: 0.4rem !important;
  }

  /* Explicit hamburger button styling on mobile */
  #hamburger-btn,
  .hamburger-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: rgba(16, 185, 129, 0.12) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    border-radius: 10px !important;
    color: #10B981 !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    flex-shrink: 0 !important;
  }

  /* Mobile drawer slide transition */
  .mobile-nav-drawer {
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.85) !important;
    background: #030712 !important;
    border-left: 1px solid rgba(16, 185, 129, 0.25) !important;
  }
}


/* =========================================================
   ULTRA-PREMIUM SUBHEADLINE & TYPOGRAPHY ENGINE (UPGRADED)
   ========================================================= */

/* Hero Main Subheadline - Ultra Premium Glass Pill */
.hero-subheading {
  font-size: clamp(1.18rem, 2.4vw, 1.52rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  letter-spacing: 0.01em !important;
  color: #F8FAFC !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 10px rgba(16, 185, 129, 0.3) !important;
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.78), rgba(15, 23, 42, 0.68)) !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
  display: inline-block !important;
  padding: 0.85rem 2rem !important;
  border-radius: 9999px !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  max-width: 820px !important;
  margin: 1.2rem auto 0 !important;
}

/* Services Hub Section Subheadline */
.main-services-subtitle,
.services-hub-header p {
  font-size: clamp(1.12rem, 2.2vw, 1.38rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  max-width: 780px !important;
  margin: 0.8rem auto 1.8rem !important;
  letter-spacing: 0.005em !important;
}

/* Global Section Subheadlines */
.section-desc,
.services-section-desc,
.why-us-desc,
.pricing-section-desc,
.builder-desc {
  font-size: clamp(1.1rem, 2.1vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  max-width: 750px !important;
  margin: 0.75rem auto 1.8rem !important;
}

/* Launch Offer Poster Subheadline */
.poster-desc-text {
  font-size: clamp(1.15rem, 2.3vw, 1.4rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  max-width: 720px !important;
  margin: 0.8rem auto 1.6rem !important;
}

/* Service Card Body Descriptions */
.service-card-desc {
  font-size: 1.02rem !important;
  font-weight: 450 !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 1.3rem !important;
}

/* Responsive adjustment for Mobile Subheadlines */
@media (max-width: 768px) {
  .hero-subheading {
    font-size: clamp(0.95rem, 4.2vw, 1.18rem) !important;
    padding: 0.7rem 1.25rem !important;
    border-radius: 18px !important;
    line-height: 1.55 !important;
  }

  .main-services-subtitle,
  .services-hub-header p,
  .section-desc,
  .poster-desc-text {
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
  }
}


/* =========================================================
   CRYSTAL-CLEAR ULTRA-PREMIUM SUBHEADLINE & TYPOGRAPHY ENGINE
   ========================================================= */

/* Hero Main Subheadline - Crystal Clear Light Glass & Vibrant Typography */
.hero-subheading {
  font-size: clamp(1.15rem, 2.3vw, 1.48rem) !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
  letter-spacing: -0.005em !important;
  color: #064E3B !important;
  /* Deep Rich Emerald Text - No Blackness! */
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
  /* Pure clean light drop shadow */
  background: rgba(255, 255, 255, 0.78) !important;
  /* Crystal white glass - NO DARK OVERLAY */
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  /* Elegant Emerald Glow Border */
  box-shadow: 0 12px 32px rgba(6, 78, 59, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  display: inline-block !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 9999px !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  max-width: 860px !important;
  margin: 1.2rem auto 0 !important;
}

/* Vibrant Highlight Spans inside Subheadline */
.hero-subheading .highlight-emerald,
.highlight-emerald {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
}

.hero-subheading .highlight-teal,
.highlight-teal {
  background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
}

.hero-subheading .highlight-gold,
.highlight-gold {
  background: linear-gradient(135deg, #B45309 0%, #D4AF37 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
}

.hero-subheading .highlight-dark,
.highlight-dark {
  color: #047857 !important;
  -webkit-text-fill-color: #047857 !important;
  font-weight: 800 !important;
}

/* Services Hub Section Subheadline - Vibrant & Crystal Clear */
.main-services-subtitle,
.services-hub-header p {
  font-size: clamp(1.1rem, 2.1vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #0F3F34 !important;
  /* Deep Rich Emerald-Slate - Crystal Clear */
  max-width: 780px !important;
  margin: 0.8rem auto 1.8rem !important;
  letter-spacing: 0.005em !important;
}

/* Global Section Subheadlines - Vibrant Crystal Typography */
.section-desc,
.services-section-desc,
.why-us-desc,
.pricing-section-desc,
.builder-desc {
  font-size: clamp(1.08rem, 2vw, 1.3rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #0F3F34 !important;
  max-width: 750px !important;
  margin: 0.75rem auto 1.8rem !important;
}

/* Launch Offer Poster Subheadline */
.poster-desc-text {
  font-size: clamp(1.12rem, 2.2vw, 1.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #064E3B !important;
  max-width: 740px !important;
  margin: 0.8rem auto 1.6rem !important;
}

/* Service Card Descriptions */
.service-card-desc {
  font-size: 1.02rem !important;
  font-weight: 450 !important;
  line-height: 1.6 !important;
  color: #1E293B !important;
  margin-bottom: 1.3rem !important;
}

/* Mobile Responsiveness for Subheadlines */
@media (max-width: 768px) {
  .hero-subheading {
    font-size: clamp(0.95rem, 4vw, 1.15rem) !important;
    padding: 0.75rem 1.2rem !important;
    border-radius: 20px !important;
    line-height: 1.55 !important;
  }

  .main-services-subtitle,
  .services-hub-header p,
  .section-desc,
  .poster-desc-text {
    font-size: 1.02rem !important;
    line-height: 1.55 !important;
    color: #0F3F34 !important;
  }
}


/* =========================================================
   PRISTINE LUXURY SLATE & CHARCOAL TYPOGRAPHY ENGINE (FIXED)
   ========================================================= */

/* Hero Main Subheadline - Pristine Light Glass & High-Contrast Charcoal Text */
.hero-subheading {
  font-size: clamp(1.1rem, 2.2vw, 1.42rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  letter-spacing: -0.01em !important;
  color: #0F172A !important;
  /* Deep Charcoal Slate - 100% Crisp & Readable */
  text-shadow: none !important;
  background: rgba(255, 255, 255, 0.88) !important;
  /* Pure Pristine Light Glass */
  border: 1px solid rgba(203, 213, 225, 0.8) !important;
  /* Elegant Soft Border */
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  display: inline-block !important;
  padding: 0.85rem 2rem !important;
  border-radius: 9999px !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  max-width: 840px !important;
  margin: 1.2rem auto 0 !important;
}

/* Crisp Color Accents inside Hero Subheadline */
.hero-subheading .highlight-emerald,
.highlight-emerald {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
  background: none !important;
  font-weight: 700 !important;
}

.hero-subheading .highlight-teal,
.highlight-teal {
  color: #0284C7 !important;
  -webkit-text-fill-color: #0284C7 !important;
  background: none !important;
  font-weight: 700 !important;
}

.hero-subheading .highlight-gold,
.highlight-gold {
  color: #D97706 !important;
  -webkit-text-fill-color: #D97706 !important;
  background: none !important;
  font-weight: 700 !important;
}

.hero-subheading .highlight-dark,
.highlight-dark {
  color: #0F172A !important;
  -webkit-text-fill-color: #0F172A !important;
  font-weight: 700 !important;
}

/* Services Hub Section Subheadline - Crisp Charcoal Slate */
.main-services-subtitle,
.services-hub-header p {
  font-size: clamp(1.08rem, 2.1vw, 1.32rem) !important;
  font-weight: 450 !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  /* Rich Charcoal Slate - Ultra Clean & Crisp */
  max-width: 760px !important;
  margin: 0.8rem auto 1.8rem !important;
  letter-spacing: -0.005em !important;
}

/* Global Section Subheadlines - High-Contrast Slate */
.section-desc,
.services-section-desc,
.why-us-desc,
.pricing-section-desc,
.builder-desc {
  font-size: clamp(1.05rem, 2vw, 1.28rem) !important;
  font-weight: 450 !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  max-width: 750px !important;
  margin: 0.75rem auto 1.8rem !important;
}

/* Launch Offer Poster Subheadline */
.poster-desc-text {
  font-size: clamp(1.08rem, 2.1vw, 1.32rem) !important;
  font-weight: 450 !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  max-width: 720px !important;
  margin: 0.8rem auto 1.6rem !important;
}

/* Service Card Descriptions */
.service-card-desc {
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 1.3rem !important;
}

/* Mobile Responsiveness for Subheadlines */
@media (max-width: 768px) {
  .hero-subheading {
    font-size: clamp(0.92rem, 3.8vw, 1.1rem) !important;
    padding: 0.7rem 1.1rem !important;
    border-radius: 18px !important;
    line-height: 1.55 !important;
    color: #0F172A !important;
  }

  .main-services-subtitle,
  .services-hub-header p,
  .section-desc,
  .poster-desc-text {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    color: #334155 !important;
  }
}


/* =========================================================
   PRISTINE 3D LOGO & BRAND TITLE UNHIDE (NO YELLOW TINT)
   ========================================================= */

.hero-luxury-container .hero-brand-title,
.hero-brand-title {
  display: block !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin-top: 0rem !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  color: #0b3d2e !important;
  position: relative !important;
  z-index: 5 !important;
}

.hero-luxury-container .hero-logo-reveal,
.hero-logo-reveal {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0.8rem auto 0.2rem !important;
  transform: scale(1) !important;
}

.hero-luxury-container .hero-fn-monogram,
.hero-fn-monogram {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  position: relative !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.hero-luxury-container .hero-logo-img,
.hero-logo-img {
  mix-blend-mode: normal !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  filter: drop-shadow(0 8px 20px rgba(5, 150, 105, 0.2)) !important;
  image-rendering: auto !important;
}

.hero-luxury-container .hero-logo-glow-ring,
.hero-logo-glow-ring {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.08) 55%, transparent 75%) !important;
  filter: blur(12px) !important;
  box-shadow: none !important;
  border: none !important;
}

/* =========================================================
   HERO LOGO CLEAN DISPLAY (REMOVED TOP BADGE & SIDE ROBOTS)
   ========================================================= */
.hero-top-badge,
.logo-robot-side,
.logo-robot-left,
.logo-robot-right {
  display: none !important;
}


/* =========================================================
   LAUNCH REWARDS POSTER - 3D FLOATING GIFT BOXES
   ========================================================= */

.poster-top-header {
  position: relative !important;
}

.poster-gift-box-3d {
  position: absolute !important;
  top: -15px !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

.poster-gift-box-3d.gift-box-left {
  left: -20px !important;
  animation: giftFloatLeft 6s ease-in-out infinite !important;
}

.poster-gift-box-3d.gift-box-right {
  right: -20px !important;
  animation: giftFloatRight 6s ease-in-out infinite 1s !important;
}

.floating-gift-img {
  width: 175px !important;
  height: 175px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 15px 30px rgba(16, 185, 129, 0.35)) drop-shadow(0 20px 45px rgba(212, 175, 55, 0.3)) !important;
  transition: transform 0.4s ease !important;
}

@keyframes giftFloatLeft {

  0%,
  100% {
    transform: translateY(0px) rotate(-5deg) scale(1);
  }

  50% {
    transform: translateY(-16px) rotate(-1deg) scale(1.05);
  }
}

@keyframes giftFloatRight {

  0%,
  100% {
    transform: translateY(0px) rotate(5deg) scale(1);
  }

  50% {
    transform: translateY(-16px) rotate(1deg) scale(1.05);
  }
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 992px) {
  .poster-gift-box-3d.gift-box-left {
    left: -10px !important;
    top: -25px !important;
  }

  .poster-gift-box-3d.gift-box-right {
    right: -10px !important;
    top: -25px !important;
  }

  .floating-gift-img {
    width: 110px !important;
    height: 110px !important;
  }
}

@media (max-width: 640px) {
  .poster-gift-box-3d.gift-box-left {
    left: 5px !important;
    top: -35px !important;
  }

  .poster-gift-box-3d.gift-box-right {
    right: 5px !important;
    top: -35px !important;
  }

  .floating-gift-img {
    width: 75px !important;
    height: 75px !important;
    opacity: 0.85 !important;
  }
}


/* =========================================================
   LAUNCH REWARDS POSTER - ULTRA-PREMIUM 3D SIDE CAPSULES
   ========================================================= */

.poster-top-header {
  position: relative !important;
}

.poster-side-capsule {
  position: absolute !important;
  top: 10px !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.1rem 1.4rem !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  min-width: 145px !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.poster-side-capsule:hover {
  transform: translateY(-6px) scale(1.04) !important;
}

.side-capsule-left {
  left: -20px !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  animation: floatCapsuleLeft 6s ease-in-out infinite !important;
}

.side-capsule-right {
  right: -20px !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
  animation: floatCapsuleRight 6s ease-in-out infinite 1s !important;
}

.capsule-icon-wrap {
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  margin-bottom: 0.5rem !important;
}

.icon-gold {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #D4AF37 !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.icon-emerald {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10B981 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.capsule-stat-val {
  font-family: var(--font-h) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #B45309 0%, #D4AF37 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.text-emerald-gradient {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.capsule-stat-label {
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #64748B !important;
  margin-top: 0.35rem !important;
  text-transform: uppercase !important;
}

@keyframes floatCapsuleLeft {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(0deg);
  }
}

@keyframes floatCapsuleRight {

  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }

  50% {
    transform: translateY(-12px) rotate(0deg);
  }
}

/* Responsive adjustment for Tablets & Mobile */
@media (max-width: 1024px) {
  .poster-side-capsule {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: inline-flex !important;
    flex-direction: row !important;
    gap: 0.8rem !important;
    margin: 0.5rem 0.4rem !important;
    min-width: auto !important;
    padding: 0.6rem 1rem !important;
  }
}


/* =========================================================
   HERO CENTER LOGO ENHANCEMENT (LARGER SIZE & LUXURY GLOW)
   ========================================================= */
.hero-luxury-container .hero-logo-reveal,
.hero-logo-reveal {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 1.5rem auto 1.2rem !important;
  transform: none !important;
}

.hero-luxury-container .hero-fn-monogram,
.hero-fn-monogram {
  margin: 0 auto !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-luxury-container .hero-logo-img,
.hero-logo-img {
  width: 220px !important;
  height: 220px !important;
  object-fit: contain !important;
  max-width: 100% !important;
  max-height: 100% !important;
  filter: drop-shadow(0 16px 36px rgba(5, 150, 105, 0.38)) drop-shadow(0 24px 55px rgba(212, 175, 55, 0.35)) !important;
}

.hero-luxury-container .hero-logo-glow-ring,
.hero-logo-glow-ring {
  inset: -32px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.35) 0%, rgba(212, 175, 55, 0.22) 50%, transparent 72%) !important;
}

@media (max-width: 768px) {

  .hero-luxury-container .hero-logo-reveal,
  .hero-logo-reveal {
    transform: none !important;
    margin: 1rem auto 0.8rem !important;
  }

  .hero-luxury-container .hero-fn-monogram,
  .hero-fn-monogram {
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {

  .hero-luxury-container .hero-logo-reveal,
  .hero-logo-reveal {
    transform: none !important;
    margin: 0.5rem auto 0.5rem !important;
  }

  .hero-luxury-container .hero-fn-monogram,
  .hero-fn-monogram {
    width: auto !important;
    height: auto !important;
  }
}


/* =========================================================
   HERO LOGO EMBLEM & BRAND TITLE ENHANCEMENTS
   - Removes dark blend tint (mix-blend-mode: normal)
   - Displays company name ONCE in a LARGE, BOLD luxury font
   ========================================================= */

.hero-luxury-container .hero-logo-img,
.hero-logo-img {
  mix-blend-mode: multiply !important;
  width: 330px !important;
  height: auto !important;
  object-fit: contain !important;
  max-width: 90vw !important;
  max-height: 100% !important;
  filter: drop-shadow(0 14px 32px rgba(5, 150, 105, 0.28)) drop-shadow(0 20px 48px rgba(212, 175, 55, 0.22)) !important;
  background: white !important;
}

.hero-luxury-container .hero-fn-monogram,
.hero-fn-monogram {
  background: transparent !important;
  box-shadow: none !important;
}

.hero-luxury-container .hero-brand-title,
.hero-brand-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0.8rem !important;
  text-align: center !important;
  display: block !important;
  color: #0d382c !important;
}

.hero-brand-title .text-gradient-logo {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #d4af37 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-brand-title .hero-tld {
  color: #059669 !important;
  font-weight: 700 !important;
  opacity: 0.9 !important;
}

@media (max-width: 768px) {

  .hero-luxury-container .hero-brand-title,
  .hero-brand-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem) !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.6rem !important;
  }
}

@media (max-width: 480px) {

  .hero-luxury-container .hero-brand-title,
  .hero-brand-title {
    font-size: clamp(1.5rem, 6vw, 2.1rem) !important;
  }
}


/* =========================================================
   PRISTINE 3D LOGO RESTORATION & DUP TITLE SUPPRESSION
   ========================================================= */




/* =========================================================
   RESPONSIVE DEVICE ECOSYSTEM SHOWCASE (DARK GLASS & NEON GLOW)
   ========================================================= */

.device-ecosystem-wrapper {
  margin: 4rem auto 2.5rem;
  max-width: 1240px;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.08) 0%, rgba(11, 15, 25, 0.95) 70%), #080c14;
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.device-ecosystem-wrapper::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.25) 0%, rgba(139, 92, 246, 0.15) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.device-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50px;
  color: #34d399;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-ecosystem-title {
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

.device-ecosystem-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0.5rem auto 0;
}

/* Device Navigation Tabs */
.device-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.device-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.device-tab-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.device-tab-btn.active {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

/* Grid Layout matching reference screenshot */
.device-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: flex-end;
}

/* Device Window Cards */
.device-window-card {
  background: rgba(13, 18, 30, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Glowing outline gradients like screenshot */
.dev-desktop {
  grid-column: span 7;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.15);
}

.dev-laptop {
  grid-column: span 5;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.15), inset 0 0 20px rgba(56, 189, 248, 0.15);
}

.dev-tablet {
  grid-column: span 4;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.dev-tablet-portrait {
  grid-column: span 4;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.dev-mobile {
  grid-column: span 4;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 28px;
}

.device-window-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #10b981;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

/* Mac OS Dots Header */
.device-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-address-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #64748b;
  font-size: 0.75rem;
  font-family: monospace;
}

.window-actions {
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Window Content Body */
.device-window-body {
  padding: 2.5rem 1.5rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(5, 10, 20, 0.95) 100%);
  position: relative;
}

.dev-mobile .device-window-body {
  min-height: 300px;
  padding: 2rem 1rem;
}

.glass-hero-interactive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

/* Glow Pointer & Touch Hand (Exact match with reference image) */
.glow-pointer-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(56, 189, 248, 0.3) 60%, transparent 80%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  animation: pointerPulse 3s infinite ease-in-out;
}

.cursor-hand-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes pointerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(168, 85, 247, 0.8); }
  50% { transform: scale(1.12); box-shadow: 0 0 40px rgba(56, 189, 248, 0.9); }
}

.glass-icon-placeholder {
  color: #64748b;
  margin-bottom: 0.2rem;
}

.glass-drag-title {
  color: #f8fafc !important;
  font-weight: 700 !important;
  font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
  margin: 0 !important;
  letter-spacing: -0.01em;
}

.glass-drag-sub {
  color: #94a3b8;
  font-size: 0.85rem;
  max-width: 320px;
  margin: 0 auto;
}

.glass-browse-btn {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #a855f7;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glass-browse-btn:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* MacBook Base Notch */
.laptop-bottom-notch {
  height: 12px;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 16px 16px;
  position: relative;
}

.laptop-bottom-notch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #0f172a;
  border-radius: 0 0 4px 4px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dev-desktop { grid-column: span 12; }
  .dev-laptop { grid-column: span 12; }
  .dev-tablet { grid-column: span 6; }
  .dev-tablet-portrait { grid-column: span 6; }
  .dev-mobile { grid-column: span 12; }
}

@media (max-width: 640px) {
  .dev-tablet, .dev-tablet-portrait, .dev-mobile { grid-column: span 12; }
}

.hero-luxury-container .hero-logo-glow-ring,
.hero-logo-glow-ring {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.05) 55%, transparent 75%) !important;
  filter: blur(10px) !important;
  box-shadow: none !important;
  border: none !important;
}

/* ============================================================
   FEATURED PROJECT SHOWCASE SECTION (WEB DESIGN & DEVELOPMENT)
   ============================================================ */
.featured-showcase-section {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.showcase-container {
  position: relative;
  background: linear-gradient(135deg, #09111e 0%, #060e19 60%, #041812 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--r-xl, 28px);
  padding: 3.5rem 3rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(5, 150, 105, 0.15);
}

.showcase-container::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.showcase-container::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative Top Left Ring matching reference image */
.showcase-decor-ring {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 22px;
  height: 22px;
  border: 2px solid #10B981;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  z-index: 2;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side: Transparent Mockups */
.showcase-mockup-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-device-wrapper {
  position: relative;
  width: 100%;
  max-width: 840px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-composite-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 30px rgba(16, 185, 129, 0.25));
  transition: transform 0.4s var(--ease, ease), filter 0.4s var(--ease, ease);
}

.showcase-device-wrapper:hover .showcase-composite-img {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(16, 185, 129, 0.4));
}

.showcase-screen-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: none;
  z-index: 10;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.showcase-device-wrapper:hover .showcase-mobile-frame {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(16, 185, 129, 0.4);
}

.mobile-speaker-bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 6px auto 4px auto;
}

.showcase-mobile-screen {
  position: relative;
  width: 100%;
  height: calc(100% - 14px);
  background: #040812;
  overflow: hidden;
}

.showcase-mobile-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.mobile-view-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.9);
  color: #041812;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Right Side Text Column */
.showcase-text-col {
  color: #FFFFFF;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10B981;
  font-family: var(--font-b, sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.showcase-tag-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.showcase-headline {
  font-family: var(--font-h, sans-serif);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.showcase-highlight-text {
  background: linear-gradient(135deg, #10B981 0%, #34D399 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.showcase-description {
  color: #94A3B8;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Feature List */
.showcase-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.showcase-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md, 14px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.showcase-feature-item:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-feature-item strong {
  display: block;
  color: #F8FAFC;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.showcase-feature-item p {
  color: #64748B;
  font-size: 0.85rem;
  margin: 0;
}

/* Actions */
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .showcase-container {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 640px) {
  .showcase-mobile-frame {
    width: 120px;
  }
  .showcase-headline {
    font-size: 2rem;
  }
  .showcase-actions {
    flex-direction: column;
    width: 100%;
  }
  .showcase-actions .btn {
    width: 100%;
  }
}

/* ===================================================================
   ULTRA-LUXURY FOOTER SOCIAL MEDIA BOX
   =================================================================== */
.omni-foot-social-box {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.omni-foot-social-box:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.omni-foot-social-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.75rem;
}

.omni-foot-social-label i,
.omni-foot-social-label svg {
  width: 14px;
  height: 14px;
  stroke: #10B981;
  display: inline-block;
  vertical-align: middle;
}

.omni-foot-socials {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.omni-foot-social {
  width: 100%;
  max-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.omni-foot-social i {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
  display: block;
}

.omni-foot-social svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.omni-foot-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: #10B981;
  flex-shrink: 0;
  display: inline-block;
}

.omni-foot-social:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.omni-foot-social:hover svg,
.omni-foot-social:hover i {
  transform: scale(1.15);
}

/* Social Brand Colors & Glows on Hover */
.omni-foot-social.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.45);
}

.omni-foot-social.social-youtube:hover {
  background: #FF0000;
  color: #FFFFFF;
  border-color: #FF0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}

.omni-foot-social.social-linkedin:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.45);
}

.omni-foot-social.social-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.omni-foot-social.social-twitter:hover,
.omni-foot-social.social-twitter:focus,
.omni-foot-social.social-twitter:active {
  background: #000000;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  outline: none;
}

.omni-foot-social.social-facebook:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.omni-foot-social.social-telegram:hover {
  background: #0088cc;
  color: #FFFFFF;
  border-color: #0088cc;
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.45);
}

/* ===================================================================
   HERO 3D EMBLEM & GOLDEN COMPANY NAME STYLES
   =================================================================== */
.hero-logo-reveal {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 1rem !important;
  margin-bottom: 2rem !important;
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  text-align: center !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

.hero-fn-monogram {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

.hero-logo-icon-standalone {
  width: clamp(280px, 32vw, 420px) !important;
  height: auto !important;
  max-width: 90vw !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 28px rgba(5, 150, 105, 0.18)) drop-shadow(0 0 45px rgba(212, 175, 55, 0.22)) !important;
  animation: floatHeroIcon 4s ease-in-out infinite alternate !important;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease !important;
  display: block !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.hero-logo-icon-standalone:focus,
.hero-logo-icon-standalone:active,
.hero-logo-icon-standalone:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
}

@keyframes floatHeroIcon {
  0% {
    transform: translateY(0px) scale(1) rotate(0deg);
    filter: drop-shadow(0 8px 20px rgba(5, 150, 105, 0.15)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.18));
  }
  50% {
    transform: translateY(-10px) scale(1.02) rotate(0.8deg);
    filter: drop-shadow(0 14px 32px rgba(16, 185, 129, 0.22)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.28));
  }
  100% {
    transform: translateY(-5px) scale(1.01) rotate(-0.8deg);
    filter: drop-shadow(0 10px 24px rgba(5, 150, 105, 0.18)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
  }
}

.hero-logo-icon-standalone:hover {
  transform: scale(1.06) translateY(-12px) !important;
  filter: drop-shadow(0 18px 40px rgba(16, 185, 129, 0.3)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.38)) !important;
}

/* Hide the motto - removed from HTML */
.hero-motto {
  display: none !important;
}

/* =========================================================
   SERVICES MATRIX GRID (EXACT REFERENCE IMAGE MATCH)
   ========================================================= */
.services-matrix-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  margin-top: 1rem;
}

.matrix-row-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.matrix-row-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.matrix-service-card {
  position: relative;
  background: linear-gradient(145deg, rgba(11, 24, 38, 0.95) 0%, rgba(5, 14, 23, 0.98) 100%);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 1.4rem;
  align-items: center;
}

.matrix-row-3col .matrix-service-card {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.matrix-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.25);
}

.matrix-card-decor-ring {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.matrix-card-num-tag {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-b, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #10B981;
  text-transform: uppercase;
}

.matrix-card-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(4, 10, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-card-img {
  width: 100%;
  height: auto;
  max-height: 230px;
  object-fit: cover;
  border-radius: 14px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.matrix-service-card:hover .matrix-card-img {
  transform: scale(1.04);
}

.matrix-card-body {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.matrix-card-title {
  font-family: var(--font-h, sans-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.matrix-title-white {
  color: #FFFFFF !important;
  display: block;
}

.matrix-title-green {
  color: #10B981 !important;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: block;
}

.matrix-card-desc {
  color: #94A3B8;
  font-size: 0.83rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.matrix-pills-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.matrix-pill-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E2E8F0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.matrix-pill-item:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.4);
  color: #FFFFFF;
  transform: translateX(4px);
}

.matrix-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .matrix-row-2col,
  .matrix-row-3col {
    grid-template-columns: 1fr !important;
  }

  .matrix-service-card {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   FULL-WIDTH INDIVIDUAL SERVICE POSTER (SEAMLESS FIT & ZERO EMPTY SPACE)
   ========================================================= */
.service-posters-stream {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.service-full-poster {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.98) 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 26px !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.service-full-poster:hover {
  border-color: rgba(16, 185, 129, 0.6) !important;
  box-shadow: 0 25px 65px rgba(5, 150, 105, 0.18), 0 0 30px rgba(245, 158, 11, 0.15) !important;
}

.poster-decor-ring {
  display: none !important;
}

.poster-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0 !important;
  align-items: stretch !important;
  min-height: 480px;
  width: 100%;
}

/* Alternating poster layout: even posters have image on the right and details on the left */
.service-full-poster:nth-child(even) .poster-grid {
  grid-template-columns: 1fr 1.15fr;
}

.service-full-poster:nth-child(even) .poster-visual-col {
  order: 2;
}

.service-full-poster:nth-child(even) .poster-details-col {
  order: 1;
}

.poster-visual-col {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

.poster-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: 100% !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: flex;
}

.poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  filter: none !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.service-full-poster:hover .poster-img {
  transform: scale(1.05) !important;
}

/* Specific Fit for Product Promotion Showcase */
#poster-product-promotion .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #0d1217 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-product-promotion .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-product-promotion .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-product-promotion:hover .poster-img {
  transform: scale(1.02) !important;
}

/* Specific Fit for Business Promotion Showcase */
#poster-business-promotion .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-business-promotion .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

#poster-business-promotion .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-business-promotion:hover .poster-img {
  transform: scale(1.02) !important;
}

/* Specific Fit for AI Agent & Automation Showcase */
#poster-ai-agent .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-ai-agent .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

#poster-ai-agent .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-ai-agent:hover .poster-img {
  transform: scale(1.02) !important;
}

#poster-ai-agent .poster-title {
  font-size: clamp(1.75rem, 2.2vw, 2.05rem) !important;
  line-height: 1.12 !important;
}

/* Specific Fit for Website Development Showcase Image */
#poster-website-dev .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-website-dev .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

#poster-website-dev .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-website-dev:hover .poster-img {
  transform: scale(1.03) !important;
}

/* Specific Fit for Design & AI Branding Showcase */
#poster-design-branding .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-design-branding .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#poster-design-branding .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-design-branding:hover .poster-img {
  transform: scale(1.04) !important;
}

/* Specific Fit for Marketing & Advertising Showcase */
#poster-marketing-ads .poster-visual-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}

#poster-marketing-ads .poster-img-wrapper {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}

#poster-marketing-ads .poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

#poster-marketing-ads:hover .poster-img {
  transform: scale(1.03) !important;
}

.poster-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.8rem !important;
  position: relative;
  z-index: 2;
}

.poster-num-tag {
  font-family: var(--font-b, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #059669 !important;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.poster-title {
  font-family: var(--font-h, sans-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.poster-title-white {
  color: #0F172A !important;
  display: block;
}

.poster-title-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #D97706 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: block;
}

.poster-desc {
  color: #334155 !important;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.poster-feature-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  border-radius: 18px !important;
  padding: 1.2rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.05) !important;
}

.poster-pill-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #0F172A !important;
  font-size: 0.92rem;
  font-weight: 700 !important;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.poster-pill-item:hover {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #047857 !important;
}

.poster-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15) !important;
  color: #059669 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.poster-cta-banner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  border: 1px solid rgba(5, 150, 105, 0.4) !important;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  color: #FFFFFF !important;
  font-family: var(--font-b, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
  transition: all 0.3s ease;
  width: fit-content;
}

.poster-cta-banner:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45) !important;
  transform: translateX(4px) !important;
}

.poster-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  transition: transform 0.3s ease;
}

.poster-cta-banner:hover .poster-cta-arrow {
  transform: translateX(4px);
  background: #FFFFFF !important;
  color: #047857 !important;
}

@media (max-width: 1024px) {
  .poster-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .service-full-poster:nth-child(even) .poster-visual-col,
  .service-full-poster:nth-child(even) .poster-details-col {
    order: initial !important;
  }
  .poster-visual-col {
    height: 340px !important;
    min-height: 340px !important;
  }
  #poster-product-promotion .poster-visual-col {
    height: auto !important;
    min-height: unset !important;
    aspect-ratio: 1 / 1 !important;
    max-height: 600px !important;
  }
  #poster-business-promotion .poster-visual-col,
  #poster-ai-agent .poster-visual-col {
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
  }
  #poster-business-promotion .poster-img,
  #poster-ai-agent .poster-img {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
  #poster-website-dev .poster-visual-col {
    height: auto !important;
    min-height: 280px !important;
    padding: 1.2rem !important;
  }
  #poster-marketing-ads .poster-visual-col {
    height: 320px !important;
    min-height: 320px !important;
    padding: 0 !important;
  }
  .poster-details-col {
    padding: 2.2rem 1.8rem !important;
  }
}

@media (max-width: 640px) {
  .poster-visual-col {
    height: 250px !important;
    min-height: 250px !important;
  }
  #poster-product-promotion .poster-visual-col {
    height: auto !important;
    min-height: unset !important;
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
  }
  #poster-business-promotion .poster-visual-col,
  #poster-ai-agent .poster-visual-col {
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
  }
  #poster-business-promotion .poster-img,
  #poster-ai-agent .poster-img {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
  #poster-website-dev .poster-visual-col {
    height: auto !important;
    min-height: 220px !important;
    padding: 0.8rem !important;
  }
  #poster-marketing-ads .poster-visual-col {
    height: 250px !important;
    min-height: 250px !important;
    padding: 0 !important;
  }
  .poster-details-col {
    padding: 1.8rem 1.25rem !important;
  }
  .poster-title {
    font-size: 1.7rem;
  }
}

/* ===================================================================
   ULTRA-LUXURY REALISTIC 3D CINEMATIC PERSPECTIVE & SCROLL ENGINE
   =================================================================== */

/* 1. Global 3D Perspective Canvas */
#global-3d-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* 2. Realistic 3D Card Depth & Tilt Containers */
[data-tilt],
.main-service-card,
.package-card,
.about-card,
.about-commitment-card,
.about-pillar-card,
.about-vm-card,
.poster-benefit-card,
.device-window-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease, border-color 0.4s ease;
  will-change: transform;
}

/* 3. Holographic Dynamic Light Sweep Glare Overlay */
.holographic-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 175, 55, 0.18),
    rgba(16, 185, 129, 0.1) 32%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 4;
  mix-blend-mode: overlay;
}

[data-tilt]:hover .holographic-shine,
.main-service-card:hover .holographic-shine,
.package-card:hover .holographic-shine,
.about-card:hover .holographic-shine,
.about-commitment-card:hover .holographic-shine,
.about-pillar-card:hover .holographic-shine,
.about-vm-card:hover .holographic-shine,
.poster-benefit-card:hover .holographic-shine,
.device-window-card:hover .holographic-shine {
  opacity: 1;
}

/* 4. Luxury 3D Elevation on Hover */
[data-tilt]:hover,
.main-service-card:hover,
.package-card:hover,
.about-card:hover,
.about-commitment-card:hover,
.about-pillar-card:hover,
.about-vm-card:hover,
.poster-benefit-card:hover {
  box-shadow: 0 24px 60px rgba(6, 78, 59, 0.12), 0 0 35px rgba(212, 175, 55, 0.14) !important;
  border-color: rgba(212, 175, 55, 0.45) !important;
}

/* 5. Smooth GPU Scroll Acceleration */
.tab-content {
  will-change: opacity, transform;
}

/* 6. Realistic 3D Float Micro-Animations */
@keyframes luxuryFloating3D {
  0% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(2deg) rotateY(1.5deg);
  }
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
}

.floating-3d-element {
  animation: luxuryFloating3D 5s ease-in-out infinite alternate;
}

/* ===================================================================
   AI AGENTS & AUTOMATION — LUXURY SERVICE & PRICING SYSTEM STYLES
   =================================================================== */
.ai-hero-luxury-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.98) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: 28px;
  padding: 0 !important;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(5, 150, 105, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 3.5rem;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.4s ease;
}

.ai-hero-luxury-wrapper:hover {
  border-color: rgba(16, 185, 129, 0.6) !important;
  box-shadow: 0 25px 65px rgba(5, 150, 105, 0.18), 0 0 35px rgba(245, 158, 11, 0.12) !important;
}

.ai-hero-ambient-glow {
  display: none;
}

.ai-hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0 !important;
  align-items: stretch !important;
  position: relative;
  z-index: 2;
  width: 100%;
}

.ai-hero-content-col {
  padding: 2.5rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #047857;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.1);
  margin-bottom: 1rem;
  width: fit-content;
}

.ai-hero-title {
  font-family: var(--font-h);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.18;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.ai-hero-subtitle {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.ai-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.ai-hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ai-hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero Right Visual: Seamless Edge-to-Edge Poster Visual */
.ai-hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.ai-poster-masterpiece-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.ai-hero-luxury-wrapper:hover .ai-poster-masterpiece-img {
  transform: scale(1.02) !important;
}

@media (max-width: 1024px) {
  .ai-hero-grid-layout {
    grid-template-columns: 1fr !important;
  }
  .ai-hero-visual-col {
    min-height: 320px;
    max-height: 420px;
  }
  .ai-hero-content-col {
    padding: 2.2rem 1.6rem;
  }
}

.ai-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 8px #059669;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.ai-hero-overlay-telemetry {
  position: relative;
  margin-top: 0.75rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 16px;
  padding: 0.8rem 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.ai-telemetry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0F172A;
}

.ai-telemetry-stack {
  font-size: 0.72rem;
  color: #475569;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =========================================================
   LIVE WORKFLOW PIPELINE ARCHITECTURE (HOW IT OPERATES)
   ========================================================= */
.ai-pipeline-section {
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 28px;
  padding: 2.8rem 2.2rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.ai-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  position: relative;
}

.ai-pipeline-step-card {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 1.6rem 1.3rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-pipeline-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.1);
}

.ai-step-badge {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #047857;
  background: rgba(5, 150, 105, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.9rem;
  width: fit-content;
}

.ai-step-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ai-step-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.ai-step-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.ai-step-tech-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: #047857;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.16);
  padding: 3px 8px;
  border-radius: 6px;
  width: fit-content;
}

/* =========================================================
   INTERACTIVE ROI & TIME SAVINGS CALCULATOR
   ========================================================= */
.ai-roi-calculator-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 50%, #ECFDF5 100%);
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  color: #0F172A;
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 45px rgba(5, 150, 105, 0.08);
}

.ai-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.8rem;
}

.ai-roi-control-col {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.ai-roi-slider {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 1.2rem 0;
  accent-color: #059669;
}

.ai-roi-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ai-roi-stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 18px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
}

.ai-roi-stat-val {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: #047857;
  margin-bottom: 0.2rem;
}

.ai-roi-stat-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================
   CORE PHILOSOPHY & WHAT WE AUTOMATE
   ========================================================= */
.ai-edu-box {
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 24px;
  padding: 2.8rem 2.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  margin-bottom: 3.5rem;
}

.ai-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.ai-pillar-card {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 1.3rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.ai-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

.ai-pillar-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-pillar-title {
  font-family: var(--font-h);
  font-size: 0.94rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.3rem;
}

.ai-pillar-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.45;
}

/* =========================================================
   TIER TABS & SERVICE CARDS GRID
   ========================================================= */
.ai-tier-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  background: #F1F5F9;
  padding: 0.45rem;
  border-radius: 18px;
  max-width: 860px;
  margin: 0 auto 1.8rem;
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.ai-tier-tab-btn {
  flex: 1;
  min-width: 170px;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: none;
  background: transparent;
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-tier-tab-btn:hover {
  color: #059669;
}

.ai-tier-tab-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.ai-tier-tab-btn.active .tier-count-chip {
  background: #059669;
  color: #FFFFFF;
}

.tier-count-chip {
  background: #E2E8F0;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  transition: all 0.2s ease;
}

/* Scope Summary Banner */
.ai-scope-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ai-scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ai-scope-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-scope-list li i {
  width: 14px;
  height: 14px;
  color: #059669;
  flex-shrink: 0;
}

/* Service Card Layout */
.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-bottom: 3.5rem;
}

.ai-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.ai-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 16px 45px rgba(5, 150, 105, 0.12);
}

.ai-service-card.featured-card {
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: linear-gradient(180deg, rgba(254, 252, 232, 0.25) 0%, #FFFFFF 35%);
}

.ai-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.ai-level-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
}

.ai-level-badge.basic {
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.ai-level-badge.mid {
  background: rgba(14, 165, 233, 0.1);
  color: #0284C7;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.ai-level-badge.high {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.ai-featured-badge {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ai-featured-badge.entry {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.ai-featured-badge.popular {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.ai-featured-badge.most-popular {
  background: linear-gradient(135deg, #059669, #047857);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.ai-featured-badge.high-value {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.ai-featured-badge.premium {
  background: linear-gradient(135deg, #D4AF37, #B45309);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.ai-card-title {
  font-family: var(--font-h);
  font-size: 1.22rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.ai-card-desc {
  font-size: 0.86rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.ai-price-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-price-setup-val {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 900;
  color: #047857;
}

.ai-price-monthly-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748B;
}

.ai-card-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

/* Automation Add-Ons Grid */
.ai-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.ai-addon-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.ai-addon-card:hover {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.ai-addon-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.4rem;
}

.ai-addon-title {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
}

.ai-addon-price-tag {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #047857;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.ai-addon-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.45;
}

/* Informational Cards */
.ai-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin: 3rem 0;
}

.ai-info-card {
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.ai-info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.ai-info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-info-card-title {
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.ai-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.ai-info-list li {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.35rem;
}

.ai-info-list li i {
  width: 14px;
  height: 14px;
  color: #059669;
}

.ai-info-note {
  background: #F8FAFC;
  border-left: 3px solid #059669;
  padding: 0.65rem 0.85rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.78rem;
  color: #475569;
  margin-top: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .ai-hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ai-hero-content-col {
    text-align: center;
  }
  .ai-hero-trust-row, .ai-hero-btn-group {
    justify-content: center;
  }
  .ai-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-roi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ai-hero-title {
    font-size: 2.1rem;
  }
  .ai-hero-luxury-wrapper {
    padding: 2.2rem 1.2rem;
  }
  .ai-pipeline-grid {
    grid-template-columns: 1fr;
  }
  .ai-pillars-grid {
    grid-template-columns: 1fr;
  }
  .ai-services-grid {
    grid-template-columns: 1fr;
  }
  .ai-card-btn-row {
    grid-template-columns: 1fr;
  }
  .ai-tier-tab-btn {
    min-width: 130px;
    font-size: 0.8rem;
    padding: 0.65rem 0.8rem;
  }
  .ai-roi-stats-col {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   ULTRA-PREMIUM FLAGSHIP SERVICES HUB DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════ */
.services-metrics-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin: 1.2rem auto 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
  max-width: 920px;
}

.services-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #064e3b;
  letter-spacing: 0.01em;
}

.services-metric-pill i,
.services-metric-pill svg {
  color: #059669;
  width: 15px;
  height: 15px;
}

/* Category Filter Bar */
.hub-category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem auto 1.8rem;
  max-width: 1100px;
}

.hub-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  background: #ffffff;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hub-cat-pill:hover {
  border-color: #059669;
  color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.15);
}

.hub-cat-pill.active {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-color: #059669;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
  transform: translateY(-1px);
}

.hub-cat-pill i,
.hub-cat-pill svg {
  width: 14px;
  height: 14px;
}

/* Flagship Grid */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.8rem;
  max-width: 1400px;
  margin: 1.5rem auto 0;
}

@media (min-width: 1200px) {
  .flagship-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Full Width Featured AI Hero Card */
.flagship-featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  background: #ffffff;
  border: 2px solid rgba(5, 150, 105, 0.3);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(5, 150, 105, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.flagship-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -15px rgba(5, 150, 105, 0.25), 0 0 40px rgba(212, 175, 55, 0.18);
  border-color: #059669;
}

.flagship-featured-content {
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flagship-featured-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.flagship-featured-visual img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: fill !important;
  display: block !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.flagship-featured-card:hover .flagship-featured-visual img {
  transform: scale(1.025) !important;
}

/* Flagship Cards */
.flagship-card {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.flagship-card:hover {
  transform: translateY(-6px);
  border-color: #059669;
  box-shadow: 0 25px 60px -10px rgba(5, 150, 105, 0.22), 0 0 25px rgba(212, 175, 55, 0.12);
}

.flagship-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
  background: #0f172a;
  display: block;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0;
}

.flagship-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 0;
  display: block;
  transition: transform 0.5s ease;
}

.flagship-card:hover .flagship-img-wrap img {
  transform: scale(1.05);
}

.flagship-floating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #047857;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  z-index: 2;
}

.flagship-card-content {
  padding: 1.3rem 1.3rem 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.flagship-subcat-card {
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.6rem;
  transition: all 0.2s ease;
}

.flagship-subcat-card:hover {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.flagship-card-footer {
  padding: 0.8rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .flagship-featured-card {
    grid-template-columns: 1fr;
  }
  .flagship-featured-visual {
    min-height: 250px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ULTRA-PREMIUM SERVICES SEARCH BAR & LIVE AUTO-SUGGEST
   ══════════════════════════════════════════════════════════════ */
.hub-search-luxury-container {
  max-width: 680px;
  margin: 1.4rem auto 2.2rem;
  position: relative;
  z-index: 60;
}

.hub-search-glass-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(5, 150, 105, 0.35);
  border-radius: 9999px;
  padding: 0.45rem 0.6rem 0.45rem 1rem;
  box-shadow: 0 15px 40px -10px rgba(5, 150, 105, 0.18), 0 0 25px rgba(212, 175, 55, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-search-glass-wrapper:focus-within {
  border-color: #059669;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 50px -10px rgba(5, 150, 105, 0.3), 0 0 35px rgba(212, 175, 55, 0.2);
}

.hub-search-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(5, 150, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  flex-shrink: 0;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.hub-search-glass-wrapper:focus-within .hub-search-icon-box {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.hub-search-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a !important;
  letter-spacing: -0.01em;
}

.hub-search-input-field::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.hub-search-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hub-search-clear-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-radius: 9999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.hub-search-clear-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.hub-search-clear-btn.visible {
  display: inline-flex;
}

.hub-search-shortcut-badge {
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid #cbd5e1;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  user-select: none;
}

/* Trending / Quick Search Tags Row */
.hub-trending-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.hub-trending-chip-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 2px;
}

.hub-trending-chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(5, 150, 105, 0.22);
  padding: 0.26rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hub-trending-chip:hover {
  background: rgba(5, 150, 105, 0.1);
  border-color: #059669;
  color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.hub-trending-chip.active {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff !important;
  border-color: #059669;
}

/* Live Auto-Suggest Floating Dropdown */
.hub-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  border-radius: 20px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.18), 0 0 30px rgba(5, 150, 105, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 0.6rem;
  animation: hubDropdownSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-search-dropdown.active {
  display: flex;
}

@keyframes hubDropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hub-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.hub-dropdown-item:last-child {
  border-bottom: none;
}

.hub-dropdown-item:hover {
  background: rgba(5, 150, 105, 0.08);
  transform: translateX(3px);
}

.hub-dropdown-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  min-width: 0;
}

.hub-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hub-dropdown-title {
  font-weight: 800;
  font-size: 0.84rem;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hub-dropdown-sub {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hub-dropdown-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.hub-dropdown-price {
  font-weight: 900;
  font-size: 0.8rem;
  color: #047857;
  background: rgba(5, 150, 105, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.hub-dropdown-btn {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  border: none;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================================================
   PROJECT BUILDER & PRICING SUITE — ULTRA-LUXURY STYLING
   ========================================================= */

/* Builder Navigation & Currency Toolbar */
.builder-nav-toolbar {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.builder-nav-toolbar .pricing-tabs-bar {
  margin: 0;
  flex: 1 1 640px;
}

.builder-currency-wrapper {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.builder-currency-wrapper:hover {
  border-color: #059669;
  box-shadow: 0 6px 22px rgba(5, 150, 105, 0.18);
  transform: translateY(-1px);
}

.builder-currency-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: #064e3b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.builder-currency-label i,
.builder-currency-label svg {
  color: #059669;
  width: 15px;
  height: 15px;
  stroke-width: 2.3;
}

.builder-currency-select-box {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(212, 175, 55, 0.1));
  border: 1.2px solid rgba(5, 150, 105, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  transition: all 0.25s ease;
}

.builder-currency-select-box:hover,
.builder-currency-select-box:focus-within {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.16);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.builder-currency-select-box i,
.builder-currency-select-box svg {
  color: #059669;
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.builder-currency-select-box select {
  background: transparent;
  border: none;
  color: #0f172a;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 900;
  outline: none;
  cursor: pointer;
  padding: 0 0.2rem 0 0;
}

.builder-currency-select-box select option {
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  padding: 0.4rem;
}

@media (max-width: 900px) {
  .builder-nav-toolbar {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .builder-nav-toolbar .pricing-tabs-bar {
    width: 100%;
    flex: auto;
  }
}

/* Main Pricing Tabs Switcher */
.pricing-tabs-bar {
  display: flex;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 999px;
  gap: 6px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pricing-tab-btn {
  flex: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 800;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pricing-tab-btn:hover {
  color: #059669;
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
  transform: scale(1.01);
}

.pricing-tab-btn.active i {
  color: #ffffff;
}

/* 7-Category Selector Buttons Grid */
.category-grid-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
}

.cat-card-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.95rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.cat-card-btn i {
  width: 22px;
  height: 22px;
  color: #64748b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cat-card-btn span {
  font-size: 0.76rem;
  font-weight: 800;
  color: #334155;
  line-height: 1.25;
}

.cat-card-btn:hover {
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
}

.cat-card-btn:hover i {
  color: #059669;
  transform: scale(1.1);
}

.cat-card-btn.active {
  border-color: #059669;
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.06) 0%, rgba(5, 150, 105, 0.12) 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.cat-card-btn.active i {
  color: #059669;
}

.cat-card-btn.active span {
  color: #047857;
  font-weight: 900;
}

/* Package Cards Grid */
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pkg-card-luxury {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pkg-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12);
}

.pkg-card-luxury.popular {
  border: 2px solid #059669;
  background: linear-gradient(180deg, #ffffff 0%, rgba(5, 150, 105, 0.03) 100%);
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.18);
}

.pkg-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b38f2a);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
  white-space: nowrap;
}

.pkg-tier-label {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.pkg-tier-label.gold {
  color: #047857;
}

.pkg-tier-label.magenta {
  color: #0f172a;
}

.pkg-best-for {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 1.1rem;
  line-height: 1.45;
}

.pkg-delivery-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.pkg-price-now {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.1rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.pkg-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.2rem 0;
  flex: 1;
}

.pkg-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #334155;
}

.pkg-item-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pkg-item-check {
  color: #059669;
  font-weight: 900;
  font-size: 0.92rem;
}

.pkg-item-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.pkg-actions-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

/* Wizard Configurator Layout */
.wizard-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.8rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .wizard-layout {
    grid-template-columns: 1fr;
  }
}

.wizard-main-panel {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.wizard-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e2e8f0;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step-indicator.active {
  opacity: 1;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.step-indicator.active .step-num {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.step-lbl {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 0.8rem;
  transition: all 0.3s ease;
}

.step-line.active {
  background: #059669;
}

.wizard-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wizard-step-title i {
  color: #059669;
}

.service-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-pill-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s ease;
}

.service-pill-btn:hover {
  border-color: #059669;
  color: #059669;
  background: rgba(5, 150, 105, 0.05);
}

.service-pill-btn.active,
.service-pill-btn.selected-plan {
  border: 2px solid transparent !important;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #ec4899 0%, #8b5cf6 25%, #3b82f6 50%, #06b6d4 75%, #10b981 100%) border-box !important;
  color: #0f172a !important;
  font-weight: 800;
  box-shadow: 0 6px 20px -4px rgba(139, 92, 246, 0.35), 0 0 14px rgba(6, 182, 212, 0.25) !important;
  transform: translateY(-2px);
}

.step-indicator {
  cursor: pointer;
}

.config-section-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.config-section-subtitle i {
  color: #059669;
}

.config-controls-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.config-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.config-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease;
}

.config-group select:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Service Add-ons Luxury Collapsible Accordion */
.addons-accordion-wrapper {
  margin-top: 1.25rem;
  border-radius: 16px;
}

.addons-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.addons-accordion-header:hover {
  border-color: #059669;
  background: linear-gradient(135deg, #ffffff 0%, rgba(5, 150, 105, 0.03) 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.08);
}

.addons-accordion-header.expanded {
  border-color: #059669;
  background: linear-gradient(135deg, #ffffff 0%, rgba(5, 150, 105, 0.04) 100%);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.addons-acc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addons-acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  flex-shrink: 0;
}

.addons-acc-title-group {
  display: flex;
  flex-direction: column;
}

.addons-acc-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}

.addons-acc-subtitle {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 1px;
}

.addons-acc-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.addons-badge {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.addons-badge.has-selected {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
  border-color: rgba(5, 150, 105, 0.35);
  font-weight: 800;
}

.addons-acc-action-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #059669;
}

.addons-acc-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.addons-collapse-content {
  margin-top: 0.75rem;
  animation: fadeIn 0.3s ease;
}

/* Addon Row Items */
.addons-rows-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.addon-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.addon-row-item:hover {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.02);
}

.addon-row-item.active {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.addon-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.addon-row-item.active .addon-checkbox {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

.addon-row-item.active .addon-checkbox i {
  display: block;
}

.addon-checkbox i {
  display: none;
  width: 12px;
  height: 12px;
}

.addon-row-icon i {
  width: 18px;
  height: 18px;
  color: #059669;
}

.addon-row-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
}

.addon-row-desc {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 1px;
}

.addon-row-price {
  font-size: 0.84rem;
  font-weight: 800;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
}

/* Sticky Live Price Summary Card */
.wizard-summary-panel {
  position: sticky;
  top: 90px;
}

.wizard-price-summary-card {
  background: #ffffff;
  border: 2px solid #059669;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
}

.summary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.summary-badge {
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.est-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.summary-price-display {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.est-amount {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
}

.fixed-price-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.wizard-live-summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.wizard-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.summary-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

.trust-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 3 Video Types Grid */
.video-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.video-type-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.video-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   HERO EMBEDDED AI ADVISOR — ULTRA-LUXURY HOLOGRAPHIC DOCK
   ============================================================ */

/* Floating Luxury Neural Capsule Trigger (Icon on top, Name below) */
.hero-ai-advisor-launcher {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.6rem auto 1.4rem auto;
  padding: 1.25rem 2.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 244, 0.94) 50%, rgba(254, 243, 199, 0.9) 100%);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  backdrop-filter: blur(32px) saturate(210%);
  border: 1.8px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  box-shadow: 0 20px 50px -10px rgba(6, 78, 59, 0.18), 0 0 35px rgba(212, 175, 55, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.95);
  cursor: pointer;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-width: 420px;
  width: auto;
  user-select: none;
  overflow: hidden;
}

/* Shimmer Light Reflection Sweep on Launcher */
.hero-ai-advisor-launcher::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 220%;
  height: 200%;
  background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
  animation: launcherShimmerSweep 6s infinite ease-in-out;
}

@keyframes launcherShimmerSweep {
  0%, 100% {
    transform: translateX(-100%) rotate(25deg);
  }
  30%, 50% {
    transform: translateX(100%) rotate(25deg);
  }
}

.hero-ai-advisor-launcher:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #D4AF37;
  box-shadow: 0 28px 65px -10px rgba(6, 78, 59, 0.28), 0 0 50px rgba(212, 175, 55, 0.4), 0 0 25px rgba(16, 185, 129, 0.3);
}

.hero-ai-advisor-launcher:active {
  transform: translateY(-2px) scale(0.99);
}

/* Holographic 3D Orbit Avatar Core */
.launcher-avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.launcher-avatar-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #062C22 0%, #047857 50%, #059669 100%);
  color: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 175, 55, 0.7);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45), 0 0 25px rgba(212, 175, 55, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  transition: transform 0.35s var(--spring);
}

.hero-ai-advisor-launcher:hover .launcher-avatar-icon {
  transform: scale(1.1) rotate(-6deg);
}

.launcher-avatar-icon svg,
.launcher-avatar-icon i {
  width: 30px;
  height: 30px;
  color: #FEF3C7;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Concentric Orbiting Golden Rings */
.launcher-orbit-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 24px;
  border: 1.5px dashed rgba(212, 175, 55, 0.6);
  pointer-events: none;
  animation: orbitRingSpin 12s linear infinite;
}

@keyframes orbitRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.launcher-live-dot {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 14px;
  height: 14px;
  background: #10B981;
  border: 2.5px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 12px #10B981;
  z-index: 3;
  animation: pulseChatDot 1.8s infinite ease-in-out;
}

.launcher-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.launcher-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.22rem;
  background: linear-gradient(135deg, #062C22 0%, #047857 45%, #B45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.launcher-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  color: #047857;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.launcher-subtitle svg,
.launcher-subtitle i {
  width: 13px;
  height: 13px;
  color: #D4AF37;
}

.launcher-cta-hint {
  font-size: 0.72rem;
  font-weight: 800;
  color: #064E3B;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.2));
  padding: 3px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.launcher-cta-hint i,
.launcher-cta-hint svg {
  width: 12px;
  height: 12px;
  color: #D4AF37;
  transition: transform 0.25s ease;
}

.hero-ai-advisor-launcher:hover .launcher-cta-hint i,
.hero-ai-advisor-launcher:hover .launcher-cta-hint svg {
  transform: translateX(3px);
}

/* ============================================================
   EXPANDED FULL AI ADVISOR TERMINAL (LUXURY HOLOGRAPHIC CONSOLE)
   ============================================================ */
.hero-ai-advisor-container {
  display: none;
  max-width: 880px;
  width: 100%;
  margin: 1.8rem auto 1.6rem auto;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 252, 247, 0.96) 60%, rgba(254, 243, 199, 0.92) 100%);
  -webkit-backdrop-filter: blur(36px) saturate(220%);
  backdrop-filter: blur(36px) saturate(220%);
  border: 1.8px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  box-shadow: 0 30px 80px -15px rgba(6, 78, 59, 0.22), 0 0 55px rgba(212, 175, 55, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.95);
  overflow: hidden;
  text-align: left;
  position: relative;
  z-index: 20;
  box-sizing: border-box;
}

.hero-ai-advisor-container.active {
  display: block;
  animation: expandLuxuryChatbot 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes expandLuxuryChatbot {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-ai-advisor-container:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 35px 90px -15px rgba(6, 78, 59, 0.26), 0 0 65px rgba(212, 175, 55, 0.28);
}

/* Ambient Neural Top Accent Bar with Equalizer Wave */
.hero-chatbot-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, #062C22 0%, #047857 50%, #062C22 100%);
  color: #FEF3C7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.topbar-badge-left {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-badge-left i,
.topbar-badge-left svg {
  width: 14px;
  height: 14px;
  color: #D4AF37;
}

/* Animated Neural Equalizer Bars in Topbar */
.topbar-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  margin-right: 6px;
}

.eq-bar {
  width: 2.5px;
  background: #10B981;
  border-radius: 1px;
  animation: eqPulse 1.2s infinite ease-in-out;
}

.eq-bar:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.eq-bar:nth-child(2) { height: 9px; animation-delay: 0.3s; background: #D4AF37; }
.eq-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 6px; animation-delay: 0.4s; background: #D4AF37; }
.eq-bar:nth-child(5) { height: 10px; animation-delay: 0.15s; }

@keyframes eqPulse {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.topbar-badge-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #A7F3D0;
  font-size: 0.67rem;
}

.topbar-live-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulseChatDot 1.8s infinite ease-in-out;
}

/* Chatbot Header */
.hero-chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-bottom: 1.5px solid rgba(5, 150, 105, 0.18);
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-chatbot-identity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-chatbot-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-chatbot-avatar {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, #062C22 0%, #047857 50%, #059669 100%);
  color: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.8px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.4), 0 0 18px rgba(212, 175, 55, 0.35);
  position: relative;
}

.hero-chatbot-avatar svg,
.hero-chatbot-avatar i {
  width: 24px;
  height: 24px;
  color: #FEF3C7;
}

.hero-chatbot-meta {
  display: flex;
  flex-direction: column;
}

.hero-chatbot-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-chatbot-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.12rem;
  background: linear-gradient(135deg, #062C22 0%, #047857 50%, #B45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.hero-chatbot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.67rem;
  font-weight: 800;
  color: #064E3B;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(212, 175, 55, 0.25));
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 9999px;
  padding: 2px 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.hero-chatbot-badge svg,
.hero-chatbot-badge i {
  width: 11px;
  height: 11px;
  color: #D4AF37;
}

.hero-chatbot-sub {
  font-size: 0.77rem;
  color: #475569;
  font-weight: 600;
  margin-top: 2px;
}

/* Header Mode Selector Tabs */
.hero-chatbot-modes {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-mode-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1.2px solid rgba(5, 150, 105, 0.25);
  color: #1E293B;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hero-mode-pill:hover,
.hero-mode-pill.active {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.18), rgba(212, 175, 55, 0.22));
  border-color: #D4AF37;
  color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.hero-mode-pill svg,
.hero-mode-pill i {
  width: 13px;
  height: 13px;
  color: #059669;
}

.hero-chatbot-reset-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1.2px solid rgba(212, 175, 55, 0.4);
  color: #475569;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-chatbot-reset-btn:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
  border-color: rgba(239, 68, 68, 0.35);
}

.hero-chatbot-reset-btn svg,
.hero-chatbot-reset-btn i {
  width: 13px;
  height: 13px;
}

.hero-chatbot-close-btn {
  background: linear-gradient(135deg, #064E3B 0%, #047857 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.32rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}

.hero-chatbot-close-btn:hover {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  border-color: #EF4444;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.hero-chatbot-close-btn svg,
.hero-chatbot-close-btn i {
  width: 13px;
  height: 13px;
}

/* Chatbot Messages Window with Bulletproof Smooth Scrolling */
.hero-chatbot-messages {
  height: 380px;
  max-height: 420px;
  min-height: 220px;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  padding: 1.3rem 1.6rem;
  display: block !important;
  background: radial-gradient(circle at 95% 5%, rgba(212, 175, 55, 0.08), transparent 50%),
              radial-gradient(circle at 5% 95%, rgba(5, 150, 105, 0.08), transparent 50%);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #059669 rgba(5, 150, 105, 0.1);
  touch-action: pan-y;
  position: relative;
  box-sizing: border-box;
}

.hero-chatbot-messages::-webkit-scrollbar {
  width: 9px !important;
  display: block !important;
}

.hero-chatbot-messages::-webkit-scrollbar-track {
  background: rgba(5, 150, 105, 0.08);
  border-radius: 9999px;
  margin: 6px 0;
}

.hero-chatbot-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669 0%, #D4AF37 100%);
  border-radius: 9999px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #047857 0%, #B45309 100%);
}

/* Message Item */
.hero-chat-msg {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  animation: chatMsgFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-chat-msg.bot-msg {
  align-self: flex-start;
  width: 100%;
}

.hero-chat-msg.user-msg {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 82%;
}

.hero-msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #062C22 0%, #059669 100%);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.3);
}

.hero-msg-avatar svg,
.hero-msg-avatar i {
  width: 18px;
  height: 18px;
  color: #FEF3C7;
}

.hero-msg-bubble {
  background: #FFFFFF;
  border: 1.5px solid rgba(5, 150, 105, 0.2);
  border-radius: 20px 20px 20px 4px;
  padding: 1.05rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1E293B;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(6, 78, 59, 0.06);
  max-width: 92%;
}

.hero-chat-msg.user-msg .hero-msg-bubble {
  background: linear-gradient(135deg, #064E3B 0%, #059669 100%);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  font-weight: 600;
}

.hero-msg-text {
  margin: 0;
}

.hero-msg-text strong {
  color: #047857;
}

.hero-chat-msg.user-msg .hero-msg-text strong {
  color: #FEF08A;
}

/* Quick Prompt Chips inside chat */
.hero-chat-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.hero-chip-btn {
  background: #FFFFFF;
  border: 1.5px solid rgba(5, 150, 105, 0.28);
  color: #0F172A;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.42rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

.hero-chip-btn svg,
.hero-chip-btn i {
  width: 15px;
  height: 15px;
  color: #059669;
}

.hero-chip-btn:hover {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(212, 175, 55, 0.22));
  border-color: #D4AF37;
  color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

/* Ultra-Luxury Recommendation Result Card in Chat */
.hero-chat-recommendation-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F0FDF4 100%);
  border: 1.8px solid rgba(5, 150, 105, 0.45);
  border-radius: 18px;
  padding: 1.15rem 1.35rem;
  margin-top: 0.85rem;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.12), 0 0 20px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-chat-recommendation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #059669 0%, #D4AF37 50%, #059669 100%);
}

.hero-rec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-rec-title-wrap {
  display: flex;
  flex-direction: column;
}

.hero-rec-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #059669;
  letter-spacing: 0.08em;
}

.hero-rec-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.08rem;
  color: #062C22;
}

.hero-rec-pricing-block {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-rec-price {
  font-weight: 900;
  font-size: 1.2rem;
  color: #062C22;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(5, 150, 105, 0.18));
  padding: 4px 12px;
  border-radius: 9px;
  border: 1.2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.hero-rec-reward-badge {
  font-size: 0.66rem;
  font-weight: 800;
  color: #047857;
  background: rgba(16, 185, 129, 0.18);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.hero-rec-desc {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.hero-rec-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 7px;
  font-size: 0.8rem;
  color: #1E293B;
  font-weight: 600;
  margin-bottom: 0.95rem;
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.16);
}

.hero-rec-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-rec-features span svg,
.hero-rec-features span i {
  width: 15px;
  height: 15px;
  color: #059669;
  flex-shrink: 0;
}

.hero-rec-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-rec-actions .btn {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
}

/* Shimmer Button for AI Advisor */
.btn-gold-shimmer {
  background: linear-gradient(135deg, #D4AF37 0%, #B45309 100%) !important;
  color: #062C22 !important;
  font-weight: 900 !important;
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.4) !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-gold-shimmer:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.55) !important;
}

/* Chatbot Input Wrap */
.hero-chatbot-input-wrap {
  padding: 0.95rem 1.5rem 1.05rem 1.5rem;
  background: #FFFFFF;
  border-top: 1.5px solid rgba(5, 150, 105, 0.18);
}

.hero-chatbot-input-inner {
  position: relative;
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.8px solid rgba(5, 150, 105, 0.35);
  border-radius: 9999px;
  padding: 0.35rem 0.45rem 0.35rem 1.2rem;
  transition: all 0.28s ease;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hero-chatbot-input-inner:focus-within {
  border-color: #059669;
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(5, 150, 105, 0.2), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-chatbot-input-icon {
  width: 20px;
  height: 20px;
  color: #059669;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.hero-chatbot-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  color: #0F172A;
  font-weight: 600;
  font-family: var(--font-b);
  min-width: 0;
}

.hero-chatbot-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
  font-size: 0.88rem;
}

.hero-chatbot-send-btn {
  background: linear-gradient(135deg, #062C22 0%, #059669 100%);
  color: #FFFFFF;
  border: 1.2px solid rgba(212, 175, 55, 0.5);
  border-radius: 9999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.hero-chatbot-send-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5), 0 0 18px rgba(212, 175, 55, 0.4);
}

.hero-chatbot-send-btn svg,
.hero-chatbot-send-btn i {
  width: 16px;
  height: 16px;
  color: #FEF3C7;
}

.hero-chatbot-footer-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}

.hero-chatbot-footer-hint span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-chatbot-footer-hint span i,
.hero-chatbot-footer-hint span svg {
  width: 13px;
  height: 13px;
  color: #059669;
}

@media (max-width: 768px) {
  .hero-ai-advisor-launcher {
    margin: 1.2rem auto;
    padding: 1rem 1.6rem;
    border-radius: 22px;
    max-width: 90%;
  }
  .hero-ai-advisor-container {
    margin: 1.2rem 0;
    border-radius: 22px;
  }
  .hero-chatbot-header {
    padding: 0.9rem 1.1rem;
  }
  .hero-chatbot-modes {
    display: none;
  }
  .hero-chatbot-messages {
    padding: 1.1rem;
    max-height: 280px;
  }
  .hero-chatbot-input-wrap {
    padding: 0.8rem 1rem;
  }
  .hero-rec-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CASE STUDY MODAL ROLLING MARQUEE & SCROLL PROGRESS BAR
   ========================================================= */
.cs-rolling-marquee-bar {
  background: linear-gradient(90deg, #064E3B 0%, #047857 50%, #064E3B 100%) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #FEF3C7 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  padding: 0.45rem 0 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 30 !important;
}

.cs-marquee-track {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  will-change: transform !important;
  animation: csMarqueeContinuous 35s linear infinite !important;
}

.cs-rolling-marquee-bar:hover .cs-marquee-track {
  animation-play-state: paused !important;
}

.cs-marquee-item {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding-right: 3.5rem !important;
  flex-shrink: 0 !important;
}

@keyframes csMarqueeContinuous {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.cs-scroll-progress-track {
  width: 100%;
  height: 3.5px;
  background: rgba(5, 150, 105, 0.15);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 25;
}

.cs-scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #059669, #10B981, #D4AF37);
  transition: width 0.08s ease-out;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.modal-body-scrollable {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  max-height: calc(88vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 8px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
  background: rgba(5, 150, 105, 0.04);
  border-radius: 9999px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669 0%, #10b981 100%);
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #047857 0%, #059669 100%);
}

/* Card Multi-Asset Gallery Strip (4-6 Stills + 2-3 Videos) */
.project-card-gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(5, 150, 105, 0.2);
}

.gallery-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-m, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: #047857;
}

.gallery-media-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.gallery-thumbs-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.gallery-thumb-item {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-item:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.video-reels-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.video-reel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.08));
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  font-family: var(--font-m, monospace);
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-reel-chip:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* ==========================================================================
   OMNIFLONEX AI — REFERRAL LINK & AFFILIATE / REWARDS SYSTEM STYLING
   ========================================================================== */

/* 1. Header Navigation Link */
.nav-link-btn.nav-referral-link {
  color: #059669 !important;
  font-weight: 800 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border: 1px solid rgba(5, 150, 105, 0.25) !important;
  border-radius: 999px !important;
  padding: 0.35rem 0.85rem !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-link-btn.nav-referral-link:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3) !important;
  transform: translateY(-1px);
}

.nav-link-btn.nav-referral-link:hover i,
.nav-link-btn.nav-referral-link:hover svg {
  color: #ffffff !important;
}

/* ════════════════════════════════════════════════════════════
   ✦ PARTNER & CLIENT REWARDS — HOMEPAGE PREMIUM REWARDS ECOSYSTEM
   ════════════════════════════════════════════════════════════ */
.home-referral-banner-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7faf8 45%, #ffffff 100%);
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 32px;
  padding: 3.5rem 2.6rem;
  box-shadow: 0 24px 60px -15px rgba(5, 150, 105, 0.10), 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--text, #0f172a);
}

.home-referral-banner-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(75px);
  border-radius: 50%;
  pointer-events: none;
}

.home-referral-banner-card::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}

/* Top badges row (matching Reference 1) */
.home-ref-top-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}

.home-ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(5, 150, 105, 0.10));
  color: #047857;
  border: 1.5px solid rgba(5, 150, 105, 0.32);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
  animation: badgeShimmer 4s infinite ease-in-out;
}

.home-ref-badge svg,
.home-ref-badge i {
  color: #d4af37;
  width: 15px;
  height: 15px;
}

.home-ref-grow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 999px;
  padding: 0.4rem 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.home-ref-grow-badge i,
.home-ref-grow-badge svg {
  width: 18px;
  height: 18px;
  color: #059669;
}

.home-ref-grow-badge-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #064E3B;
  line-height: 1.2;
}

.home-ref-grow-badge-text span {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
}

/* 2-Column Hero Composition (matching Reference 1) */
.home-ref-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.home-ref-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-ref-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
}

.home-ref-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #062C22;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0.4rem 0 0.4rem;
}

.home-ref-subheading {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #059669 0%, #047857 45%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.home-ref-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}

/* Visual Flow Diagram: 4-Step Flow */
.home-ref-flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.home-ref-flow-step {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 20px;
  padding: 1.4rem 1.1rem;
  text-align: center;
  position: relative;
  transition: transform 0.35s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.home-ref-flow-step:hover {
  border-color: #059669;
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.14);
}

.home-ref-flow-step.highlight {
  border-color: rgba(5, 150, 105, 0.45);
  background: linear-gradient(145deg, #ffffff 0%, rgba(5, 150, 105, 0.06) 100%);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.12);
}

.home-ref-step-num {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #047857);
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
  font-family: var(--font-m, monospace);
}

.home-ref-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(16, 185, 129, 0.08));
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem auto 0.8rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-ref-step-icon svg,
.home-ref-step-icon i {
  width: 22px;
  height: 22px;
}

.home-ref-flow-step:hover .home-ref-step-icon {
  transform: scale(1.08) rotate(5deg);
}

.home-ref-flow-step.highlight .home-ref-step-icon {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.home-ref-step-title {
  display: block;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.home-ref-step-sub {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

.home-ref-flow-arrow {
  color: #059669;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowPulse 2.2s infinite ease-in-out;
}

/* 3D Laptop container (Transparent 3D Floating Asset) */
.referral-hero-img-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--spring, cubic-bezier(0.16, 1, 0.3, 1));
  margin: 0 auto;
}

.referral-hero-img-box:hover {
  transform: translateY(-6px) scale(1.02);
}

.referral-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(5, 150, 105, 0.2)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.referral-hero-img-box:hover .referral-hero-img {
  filter: drop-shadow(0 28px 42px rgba(5, 150, 105, 0.28)) drop-shadow(0 0 20px rgba(16, 185, 129, 0.25));
}

/* 3-Column Middle Grid (matching Reference 1: Referrer, New Client, Unlimited stacked) */
.ref-middle-3col-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.ref-role-col {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.2);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.3s ease, border-color 0.3s ease;
}

.ref-role-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(5, 150, 105, 0.12);
}

.ref-role-col.role-referrer {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, rgba(254, 243, 199, 0.12) 100%);
}

.ref-role-col.role-referrer:hover {
  border-color: #d4af37;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.18);
}

.ref-role-col.role-newclient {
  border-color: rgba(5, 150, 105, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 253, 244, 0.15) 100%);
}

.ref-role-col.role-newclient:hover {
  border-color: #059669;
  box-shadow: 0 14px 34px rgba(5, 150, 105, 0.18);
}

.ref-role-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.ref-role-avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ref-role-avatar-circle.gold-avatar {
  background: rgba(212, 175, 55, 0.18);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  color: #b45309;
}

.ref-role-avatar-circle.emerald-avatar {
  background: rgba(5, 150, 105, 0.12);
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  color: #059669;
}

.ref-role-avatar-circle i,
.ref-role-avatar-circle svg {
  width: 22px;
  height: 22px;
}

.ref-role-header-info h4 {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.role-referrer .ref-role-header-info h4 {
  color: #b45309;
}

.role-newclient .ref-role-header-info h4 {
  color: #047857;
}

.ref-role-header-info p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

.ref-unlimited-stacked-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ref-unlimited-card-modern {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ref-unlimited-card-modern:hover {
  transform: translateY(-4px);
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.12);
}

.ref-unlimited-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.ref-infinity-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.12);
  border: 1.5px solid rgba(5, 150, 105, 0.3);
  color: #059669;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ref-unlimited-card-header h4 {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.98rem;
  font-weight: 900;
  color: #064E3B;
  margin: 0;
  line-height: 1.25;
}

.ref-vip-highlight-mini-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.06), rgba(212, 175, 55, 0.1));
  border: 1.5px solid rgba(147, 51, 234, 0.25);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ref-vip-highlight-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 51, 234, 0.5);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(212, 175, 55, 0.18));
}

.ref-vip-percent-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.ref-vip-highlight-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  color: #581c87;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ref-vip-highlight-text p {
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.35;
  margin: 0;
}

/* VIP Membership Referral Bonus Bar (Full Width Bar matching Reference 1) */
.ref-vip-bonus-bar-modern {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.7), rgba(255, 255, 255, 0.95));
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  border-radius: 20px;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.ref-vip-bonus-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
}

.ref-vip-bar-crown-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.ref-vip-bar-crown-icon i,
.ref-vip-bar-crown-icon svg {
  width: 24px;
  height: 24px;
}

.ref-vip-bonus-bar-text h4 {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 900;
  color: #78350f;
  margin: 0 0 2px 0;
}

.ref-vip-bonus-bar-text p {
  font-size: 0.8rem;
  color: #475569;
  margin: 0;
}

.ref-vip-bonus-pills-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vip-bonus-pill {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.25);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease;
}

.vip-bonus-pill:hover {
  transform: translateY(-2px);
}

.vip-bonus-pill.standard {
  border-color: rgba(5, 150, 105, 0.35);
}

.vip-bonus-pill.standard .pill-val {
  color: #059669;
}

.vip-bonus-pill.silver {
  border-color: rgba(147, 51, 234, 0.35);
}

.vip-bonus-pill.silver .pill-val {
  color: #9333ea;
}

.vip-bonus-pill.gold {
  border-color: rgba(217, 119, 6, 0.45);
  background: rgba(254, 243, 199, 0.8);
}

.vip-bonus-pill.gold .pill-val {
  color: #b45309;
}

.vip-bonus-pill .pill-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: #475569;
}

.vip-bonus-pill .pill-val {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 900;
}

/* Trust Strip & Action CTA Bar (matching Reference 1) */
.ref-trust-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1.5px solid rgba(5, 150, 105, 0.14);
  margin-top: 1.8rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.ref-trust-items-row {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.ref-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ref-trust-item svg,
.ref-trust-item i {
  width: 20px;
  height: 20px;
  color: #059669;
  flex-shrink: 0;
}

.ref-trust-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.ref-trust-item-text span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.ref-cta-action-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.ref-cta-warm-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-cta-warm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.45);
}

.ref-cta-warm-btn svg,
.ref-cta-warm-btn i {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* Dual Comparison Grid: Referrer vs New Client */
.ref-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.ref-role-card {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: transform 0.35s var(--spring, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ref-role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
}

.ref-role-card.role-a {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, rgba(254, 243, 199, 0.15) 100%);
}

.ref-role-card.role-a:hover {
  border-color: #d4af37;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18);
}

.ref-role-card.role-b {
  border-color: rgba(5, 150, 105, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 253, 244, 0.2) 100%);
}

.ref-role-card.role-b:hover {
  border-color: #059669;
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.18);
}

.ref-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.ref-role-badge.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #b45309;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.ref-role-badge.badge-emerald {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.ref-role-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 0.8rem;
  line-height: 1.25;
}

.ref-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ref-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
}

.ref-points-list li svg,
.ref-points-list li i {
  width: 16px;
  height: 16px;
  color: #059669;
  flex-shrink: 0;
  margin-top: 3px;
}

.ref-role-card.role-a .ref-points-list li svg,
.ref-role-card.role-a .ref-points-list li i {
  color: #d97706;
}

.ref-role-footer-note {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  color: #64748b;
  margin-top: auto;
}

/* VIP Membership Referral Bonus Section */
.ref-vip-bonus-wrap {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.65), rgba(255, 255, 255, 0.95));
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  border-radius: 24px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.ref-vip-bonus-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.ref-vip-bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.35);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.ref-vip-bonus-head h3 {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.3rem;
}

.ref-vip-bonus-head p {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}

.ref-vip-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ref-vip-bonus-card {
  background: #ffffff;
  border: 1.5px solid rgba(217, 119, 6, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-vip-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.18);
  border-color: #d97706;
}

.ref-vip-bonus-tier-name {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #78350f;
  margin-bottom: 0.3rem;
}

.ref-vip-bonus-val {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.8rem;
  font-weight: 950;
  color: #b45309;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.ref-vip-bonus-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.ref-vip-bonus-sub {
  font-size: 0.74rem;
  color: #64748b;
}

/* VIP 30-Day Rule Box */
.ref-30day-rule-box {
  background: #ffffff;
  border: 1.5px dashed rgba(5, 150, 105, 0.35);
  border-radius: 18px;
  padding: 1.3rem 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.ref-30day-rule-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #064E3B;
  margin-bottom: 0.6rem;
}

.ref-30day-rule-head svg,
.ref-30day-rule-head i {
  color: #059669;
  width: 18px;
  height: 18px;
}

.ref-30day-rule-body {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
}

.ref-30day-rule-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.ref-30day-step-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.4;
}

.ref-30day-step-pill strong {
  display: block;
  color: #0f172a;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

/* Unlimited Referrals & Real Example Visual */
.ref-unlimited-matrix-box {
  background: linear-gradient(135deg, #ffffff 0%, #f7faf8 50%, #ffffff 100%);
  border: 1.5px solid rgba(5, 150, 105, 0.22);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.ref-unlimited-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.ref-infinity-symbol {
  font-size: 2.4rem;
  font-weight: 900;
  color: #059669;
  display: block;
  line-height: 1;
}

.ref-unlimited-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: #062C22;
  margin: 0.2rem 0 0.3rem;
  letter-spacing: -0.01em;
}

.ref-unlimited-sub {
  font-size: 0.9rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.ref-matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.ref-matrix-card {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.18);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-matrix-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
  border-color: #059669;
}

.ref-matrix-card.infinite-card {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(212, 175, 55, 0.15));
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.1);
}

.ref-matrix-count {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 0.3rem;
}

.ref-matrix-result {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 900;
  color: #059669;
  line-height: 1.2;
}

.ref-matrix-card.infinite-card .ref-matrix-result {
  color: #b45309;
}

.ref-matrix-unit {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  margin-top: 2px;
}

.ref-matrix-disclaimer {
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* CTA & Trust Badges */
.home-ref-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.home-ref-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ref-primary-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #062C22 0%, #059669 100%);
  color: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 900;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-primary-cta-btn svg,
.ref-primary-cta-btn i {
  width: 18px;
  height: 18px;
  color: #d4af37;
}

.ref-primary-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.45), 0 0 20px rgba(212, 175, 55, 0.3);
}

.ref-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #047857;
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: all 0.25s ease;
}

.ref-secondary-btn:hover {
  border-color: #059669;
  background: #f0fdf4;
  transform: translateY(-2px);
}

.ref-cta-subtext {
  font-size: 0.86rem;
  color: #475569;
  margin: 0;
  text-align: center;
}

.ref-trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.ref-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #047857;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
  padding: 4px 12px;
  border-radius: 999px;
}

.ref-trust-badge svg,
.ref-trust-badge i {
  width: 14px;
  height: 14px;
  color: #059669;
}

/* RESPONSIVE DESIGN FOR PARTNER & CLIENT REWARDS */
@media (max-width: 991px) {
  .home-ref-title {
    font-size: 2.3rem;
  }

  .home-ref-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ref-middle-3col-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .ref-vip-bonus-bar-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .ref-vip-bonus-pills-row {
    width: 100%;
    justify-content: space-between;
  }

  .vip-bonus-pill {
    flex: 1;
    justify-content: center;
  }

  .ref-trust-cta-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .ref-trust-items-row {
    justify-content: center;
    gap: 1rem;
  }

  .ref-cta-box {
    align-items: center;
    width: 100%;
  }

  .ref-primary-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .home-ref-flow-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-ref-flow-arrow {
    display: none;
  }

  .home-ref-flow-step {
    flex: 1 1 45%;
    min-width: 220px;
  }

  .ref-dual-grid {
    grid-template-columns: 1fr;
  }

  .ref-matrix-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ref-30day-rule-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-referral-banner-card {
    padding: 2.2rem 1.2rem;
    border-radius: 24px;
  }

  .home-ref-title {
    font-size: 1.85rem;
  }

  .home-ref-subheading {
    font-size: 1.15rem;
  }

  .home-ref-flow-step {
    flex: 1 1 100%;
  }

  .ref-unlimited-title {
    font-size: 1.05rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .ref-vip-bonus-grid {
    grid-template-columns: 1fr;
  }

  .ref-matrix-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-ref-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .ref-primary-cta-btn,
  .ref-secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .ref-trust-badges-row {
    gap: 0.6rem;
  }
}

/* 3. Dedicated Referral Page Components */
.ref-hero-section {
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.ref-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(212, 175, 55, 0.12));
  border: 1.5px solid rgba(5, 150, 105, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #047857;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.ref-hero-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.ref-hero-title span.grad-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ref-hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* Dual Comparison Grid */
.ref-dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1150px;
}

.ref-role-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.2rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.ref-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(5, 150, 105, 0.12);
}

.ref-role-card.role-a {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, rgba(212, 175, 55, 0.03) 100%);
}

.ref-role-card.role-b {
  border-color: rgba(5, 150, 105, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, rgba(5, 150, 105, 0.03) 100%);
}

.ref-role-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.ref-role-card.role-a .ref-role-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #b45309;
}

.ref-role-card.role-b .ref-role-badge {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
}

.ref-reward-highlight {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0.4rem 0 0.8rem;
}

.ref-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ref-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
}

.ref-features-list li i,
.ref-features-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* VIP Bonus Cards Grid */
.ref-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem auto;
  max-width: 1100px;
}

.ref-vip-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.ref-vip-card:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.ref-vip-card.featured {
  border: 2px solid #059669;
  background: linear-gradient(180deg, #ffffff 0%, rgba(5, 150, 105, 0.04) 100%);
}

.ref-vip-tag {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
}

.ref-vip-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0.3rem 0;
}

.ref-vip-bonus-amt {
  font-size: 1.35rem;
  font-weight: 900;
  color: #059669;
  margin: 0.6rem 0;
}

/* Interactive Link Generator Box */
.ref-generator-box {
  background: #ffffff;
  border: 2px solid rgba(5, 150, 105, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 860px;
  margin: 2.5rem auto;
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.09);
}

.ref-link-display-row {
  display: flex;
  gap: 0.6rem;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  padding: 0.5rem 0.7rem;
  align-items: center;
  margin: 1.2rem 0;
}

.ref-link-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-m, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  outline: none;
}

/* FAQ Accordion */
.ref-faq-container {
  max-width: 880px;
  margin: 3rem auto;
}

.ref-faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.ref-faq-item:hover {
  border-color: #059669;
}

.ref-faq-question {
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ref-faq-answer {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  display: none;
}

.ref-faq-item.active .ref-faq-answer {
  display: block;
}

.ref-faq-item.active .ref-faq-question {
  color: #047857;
}

.ref-faq-item.active {
  border-color: #059669;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.08);
}

/* 4. Live Referral & Rewards Dashboard Styles */
.ref-dashboard-box {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  margin: 2.5rem 0;
}

.ref-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #f1f5f9;
}

.ref-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.ref-stat-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.3rem 1.1rem;
  text-align: center;
  transition: all 0.25s ease;
}

.ref-stat-card:hover {
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.08);
}

.ref-stat-card.highlight-green {
  background: linear-gradient(145deg, #ffffff 0%, rgba(5, 150, 105, 0.05) 100%);
  border-color: rgba(5, 150, 105, 0.35);
}

.ref-stat-card.highlight-gold {
  background: linear-gradient(145deg, #ffffff 0%, rgba(212, 175, 55, 0.06) 100%);
  border-color: rgba(212, 175, 55, 0.4);
}

.ref-stat-val {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0.2rem 0;
}

.ref-stat-val.green {
  color: #059669;
}

.ref-stat-val.gold {
  color: #d97706;
}

.ref-stat-label {
  font-size: 0.76rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ref-table-wrapper {
  overflow-x: auto;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  margin-top: 1.5rem;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.ref-table th {
  background: #f8fafc;
  padding: 1rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid #e2e8f0;
}

.ref-table td {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}

.ref-table tr:last-child td {
  border-bottom: none;
}

.ref-table tr:hover td {
  background: #fdfdfd;
}

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.70rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ref-badge.badge-pending {
  background: #fef3c7;
  color: #b45309;
}

.ref-badge.badge-qualified {
  background: #e0f2fe;
  color: #0369a1;
}

.ref-badge.badge-rewarded {
  background: #dcfce7;
  color: #15803d;
}

.ref-badge.badge-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.ref-badge.badge-expired {
  background: #f1f5f9;
  color: #64748b;
}

.ref-badge.badge-used {
  background: #ede9fe;
  color: #6d28d9;
}

/* 5. Checkout Referral Integration Styles */
.checkout-referral-box {
  background: #ffffff;
  border: 1.5px solid rgba(5, 150, 105, 0.3);
  border-radius: 18px;
  padding: 1.4rem;
  margin: 1.2rem 0;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.05);
}

.checkout-referral-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.checkout-referral-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.checkout-coupon-select-wrapper {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.checkout-coupon-select {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
}

.checkout-coupon-select:focus {
  border-color: #059669;
  background: #ffffff;
}

.checkout-credit-slider-wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

.checkout-credit-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.checkout-credit-amount-input {
  width: 110px;
  padding: 0.45rem 0.65rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-weight: 800;
  color: #059669;
  text-align: right;
}

.checkout-credit-cap-note {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 0.4rem;
}

/* ════════════════════════════════════════════════════════════
   ✦ PART 3 — SELLER PARTNER PROGRAM — HOMEPAGE DEDICATED BLOCK
   ════════════════════════════════════════════════════════════ */
.home-seller-banner-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 45%, #ffffff 100%);
  border: 1.5px solid rgba(6, 182, 212, 0.22);
  border-radius: 32px;
  padding: 3.5rem 2.6rem;
  box-shadow: 0 24px 60px -15px rgba(6, 182, 212, 0.10), 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  font-family: var(--font-b, 'Plus Jakarta Sans', sans-serif);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--text, #0f172a);
}

.home-seller-banner-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(75px);
  border-radius: 50%;
  pointer-events: none;
}

.home-seller-banner-card::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}

body.dark-mode .home-seller-banner-card,
[data-theme="dark"] .home-seller-banner-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(17, 24, 39, 0.92) 100%);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.3);
  color: #f8fafc;
}

.home-seller-top-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}

.home-seller-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(59, 130, 246, 0.10));
  color: #0891b2;
  border: 1.5px solid rgba(6, 182, 212, 0.32);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.08);
  animation: badgeShimmer 4s infinite ease-in-out;
}

.home-seller-badge svg,
.home-seller-badge i {
  color: #06b6d4;
  width: 15px;
  height: 15px;
}

.home-seller-grow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1.5px solid rgba(6, 182, 212, 0.22);
  border-radius: 999px;
  padding: 0.4rem 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

body.dark-mode .home-seller-grow-badge,
[data-theme="dark"] .home-seller-grow-badge {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(6, 182, 212, 0.3);
}

.home-seller-grow-badge i,
.home-seller-grow-badge svg {
  width: 18px;
  height: 18px;
  color: #0891b2;
}

.home-seller-grow-badge-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0e7490;
  line-height: 1.2;
}

body.dark-mode .home-seller-grow-badge-text strong,
[data-theme="dark"] .home-seller-grow-badge-text strong {
  color: #38bdf8;
}

.home-seller-grow-badge-text span {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.2;
}

body.dark-mode .home-seller-grow-badge-text span,
[data-theme="dark"] .home-seller-grow-badge-text span {
  color: #94a3b8;
}

.home-seller-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.home-seller-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.text-cyan-gradient {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-seller-title {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: #083344;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0.4rem 0 0.4rem;
}

body.dark-mode .home-seller-title,
[data-theme="dark"] .home-seller-title {
  color: #f0fdfa;
}

.home-seller-subheading {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.home-seller-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 auto;
}

body.dark-mode .home-seller-desc,
[data-theme="dark"] .home-seller-desc {
  color: #94a3b8;
}

/* Visual Flow Diagram */
.home-seller-flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.home-seller-flow-step {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid rgba(6, 182, 212, 0.18);
  border-radius: 20px;
  padding: 1.4rem 1.1rem;
  text-align: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

body.dark-mode .home-seller-flow-step,
[data-theme="dark"] .home-seller-flow-step {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-luxury-container .hero-logo-icon-standalone {
  width: clamp(115px, 11vw, 135px) !important;
  height: clamp(115px, 11vw, 135px) !important;
  max-height: none !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.2), 0 4px 14px rgba(212, 175, 55, 0.16) !important;
  animation: floatHeroIcon 4.5s ease-in-out infinite alternate !important;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease !important;
  display: block !important;
  margin: 0 auto !important;
}

.hero-luxury-container .hero-logo-icon-standalone:hover {
  transform: scale(1.06) translateY(-6px) !important;
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.32), 0 0 35px rgba(212, 175, 55, 0.3) !important;
}

.home-seller-flow-step:hover {
  border-color: #06b6d4;
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.14);
}

.home-seller-flow-step.highlight-seller {
  border-color: rgba(6, 182, 212, 0.45);
  background: linear-gradient(145deg, #ffffff 0%, rgba(6, 182, 212, 0.08) 100%);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
}

body.dark-mode .home-seller-flow-step.highlight-seller,
[data-theme="dark"] .home-seller-flow-step.highlight-seller {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95) 0%, rgba(6, 182, 212, 0.15) 100%);
  border-color: rgba(56, 189, 248, 0.45);
}

.home-seller-step-num {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.35);
  font-family: monospace;
}

.home-seller-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem auto 0.8rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-seller-step-icon svg,
.home-seller-step-icon i {
  width: 22px;
  height: 22px;
}

.home-seller-flow-step:hover .home-seller-step-icon {
  transform: scale(1.08) rotate(5deg);
}

.home-seller-step-title {
  display: block;
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

body.dark-mode .home-seller-step-title,
[data-theme="dark"] .home-seller-step-title {
  color: #f8fafc;
}

.home-seller-step-sub {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

body.dark-mode .home-seller-step-sub,
[data-theme="dark"] .home-seller-step-sub {
  color: #94a3b8;
}

.home-seller-flow-arrow {
  color: #0891b2;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowPulse 2.2s infinite ease-in-out;
}

/* Right Column Showcase Card */
.seller-home-showcase-box {
  width: 100%;
  position: relative;
  z-index: 2;
}

.seller-showcase-glass-card {
  background: #ffffff;
  border: 1.5px solid rgba(6, 182, 212, 0.22);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 16px 40px -10px rgba(6, 182, 212, 0.12), 0 4px 12px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .seller-showcase-glass-card,
[data-theme="dark"] .seller-showcase-glass-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.4);
}

.seller-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seller-showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.seller-showcase-pill svg,
.seller-showcase-pill i {
  width: 13px;
  height: 13px;
}

.seller-showcase-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748b;
}

.seller-deal-calc-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}

body.dark-mode .seller-deal-calc-box,
[data-theme="dark"] .seller-deal-calc-box {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(6, 182, 212, 0.25);
}

.deal-calc-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.6rem;
}

.deal-calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.deal-calc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
}

.calc-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
}

body.dark-mode .calc-val,
[data-theme="dark"] .calc-val {
  color: #f8fafc;
}

.text-cyan {
  color: #0891b2 !important;
}

.deal-calc-operator {
  font-weight: 800;
  color: #94a3b8;
  font-size: 1.1rem;
}

.highlight-comm {
  background: rgba(5, 150, 105, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.seller-payout-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.milestone-badge-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #334155;
}

body.dark-mode .milestone-badge-item,
[data-theme="dark"] .milestone-badge-item {
  color: #cbd5e1;
}

.milestone-badge-item svg,
.milestone-badge-item i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.seller-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

body.dark-mode .seller-showcase-footer,
[data-theme="dark"] .seller-showcase-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.seller-plan-pill-mini {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0891b2;
  background: rgba(6, 182, 212, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.seller-plan-pill-mini svg,
.seller-plan-pill-mini i {
  width: 12px;
  height: 12px;
}

.seller-showcase-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seller-showcase-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.4);
}

.seller-showcase-cta-btn svg,
.seller-showcase-cta-btn i {
  width: 13px;
  height: 13px;
}

/* 3-Column Middle Grid */
.seller-middle-3col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.seller-role-col {
  background: #ffffff;
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

body.dark-mode .seller-role-col,
[data-theme="dark"] .seller-role-col {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.seller-role-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.12);
  border-color: #06b6d4;
}

.seller-role-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.seller-role-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.seller-role-avatar-circle svg,
.seller-role-avatar-circle i {
  width: 22px;
  height: 22px;
}

.cyan-avatar {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.15));
  color: #0891b2;
  border: 1.5px solid rgba(6, 182, 212, 0.35);
}

.purple-avatar {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.15));
  color: #7c3aed;
  border: 1.5px solid rgba(139, 92, 246, 0.35);
}

.emerald-avatar {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(16, 185, 129, 0.15));
  color: #059669;
  border: 1.5px solid rgba(5, 150, 105, 0.35);
}

.seller-role-header-info h4 {
  font-family: var(--font-h, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.2rem;
}

body.dark-mode .seller-role-header-info h4,
[data-theme="dark"] .seller-role-header-info h4 {
  color: #f8fafc;
}

.seller-role-header-info p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

.seller-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.seller-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.45;
}

body.dark-mode .seller-points-list li,
[data-theme="dark"] .seller-points-list li {
  color: #cbd5e1;
}

.seller-points-list li svg,
.seller-points-list li i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.seller-role-footer-note {
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid;
  text-align: center;
}

/* Bottom Strip */
.home-seller-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(6, 182, 212, 0.18);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.seller-trust-badges-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.seller-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.seller-trust-item svg,
.seller-trust-item i {
  width: 20px;
  height: 20px;
  color: #0891b2;
}

.seller-trust-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

body.dark-mode .seller-trust-item-text strong,
[data-theme="dark"] .seller-trust-item-text strong {
  color: #f8fafc;
}

.seller-trust-item-text span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.seller-primary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seller-primary-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(8, 145, 178, 0.45);
}

@media (max-width: 960px) {
  .home-seller-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .seller-middle-3col-grid {
    grid-template-columns: 1fr;
  }
  .home-seller-flow-wrapper {
    flex-wrap: wrap;
  }
  .home-seller-flow-arrow {
    display: none;
  }
  .home-seller-flow-step {
    flex: 1 1 45%;
  }
}

@media (max-width: 640px) {
  .home-seller-banner-card {
    padding: 2.2rem 1.2rem;
    border-radius: 24px;
  }
  .home-seller-title {
    font-size: 1.85rem;
  }
  .home-seller-subheading {
    font-size: 1.15rem;
  }
  .home-seller-flow-step {
    flex: 1 1 100%;
  }
  .seller-primary-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM LUXURY HERO SECTION MASTER REDESIGN
   ========================================================================== */
.hero-luxury-container {
  position: relative !important;
  background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.035) 45%, transparent 75%),
              linear-gradient(180deg, #f8fcf9 0%, #f4f8f5 100%) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(226, 232, 240, 0.85) !important;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.95) inset !important;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) clamp(1.2rem, 3vw, 2rem) clamp(2.8rem, 5vw, 4rem) !important;
  margin-bottom: 2.5rem !important;
  overflow: hidden !important;
}

.hero-luxury-container::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(rgba(5, 150, 105, 0.12) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.hero-luxury-container .hero-content {
  position: relative !important;
  z-index: 5 !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

/* Standalone Logo & Monogram */
.hero-luxury-container .hero-logo-reveal {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.25rem !important;
  position: relative !important;
  z-index: 10 !important;
}

.hero-luxury-container .hero-fn-monogram {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
}

.hero-luxury-container .hero-logo-icon-standalone {
  width: clamp(200px, 22vw, 290px) !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 25px rgba(212, 175, 55, 0.22)) drop-shadow(0 4px 12px rgba(16, 185, 129, 0.14)) !important;
  animation: floatHeroPedestal 5s ease-in-out infinite alternate !important;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease !important;
  display: block !important;
  margin: 0 auto !important;
}

.hero-luxury-container .hero-logo-icon-standalone:hover {
  transform: scale(1.04) translateY(-6px) !important;
  filter: drop-shadow(0 18px 30px rgba(212, 175, 55, 0.3)) drop-shadow(0 6px 16px rgba(16, 185, 129, 0.2)) !important;
}

@keyframes floatHeroPedestal {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Hero Main Heading (Clean 2-Line Layout) */
.hero-luxury-container .hero-main-heading {
  font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: clamp(1.95rem, 2.5vw, 2.75rem) !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
  max-width: 1240px !important;
  margin: 0 auto 1.35rem !important;
  color: #0b1f18 !important;
  text-align: center !important;
  text-shadow: none !important;
}

.hero-luxury-container .hero-main-heading .text-gradient-emerald {
  background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #0284c7 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.hero-luxury-container .hero-main-heading .text-gradient-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

/* Hero Subheading (Frosted Glass Capsule) */
.hero-luxury-container .hero-subheading {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 10px 30px -8px rgba(16, 24, 40, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  border-radius: 9999px !important;
  padding: 0.85rem 2.2rem !important;
  max-width: 960px !important;
  margin: 0 auto 2.4rem !important;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem) !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  text-align: center !important;
  text-shadow: none !important;
  display: block !important;
}

.hero-luxury-container .hero-subheading .highlight-emerald {
  color: #059669 !important;
  font-weight: 700 !important;
}

.hero-luxury-container .hero-subheading .highlight-teal {
  color: #0284c7 !important;
  font-weight: 700 !important;
}

.hero-luxury-container .hero-subheading .highlight-gold {
  color: #d97706 !important;
  font-weight: 700 !important;
}

.hero-luxury-container .hero-subheading .highlight-dark {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* 3 Hero Reward Cards Grid */
.hero-luxury-container .hero-rewards-typography {
  margin: 0 auto 2.2rem !important;
  max-width: 1240px !important;
  width: 100% !important;
  padding: 0 !important;
  display: block !important;
}

.hero-luxury-container .hero-rewards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.35rem !important;
  width: 100% !important;
  align-items: stretch !important;
}

.hero-luxury-container .hero-reward-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.90) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 22px !important;
  padding: 1.65rem 1.45rem 1.45rem !important;
  box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.02), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-luxury-container .hero-reward-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-luxury-container .reward-card-launch:hover {
  border-color: rgba(5, 150, 105, 0.5) !important;
  box-shadow: 0 24px 48px -12px rgba(5, 150, 105, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-luxury-container .reward-card-referral:hover {
  border-color: rgba(217, 119, 6, 0.5) !important;
  box-shadow: 0 24px 48px -12px rgba(217, 119, 6, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-luxury-container .reward-card-seller:hover {
  border-color: rgba(2, 132, 199, 0.5) !important;
  box-shadow: 0 24px 48px -12px rgba(2, 132, 199, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-luxury-container .reward-card-headline {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  color: #0f172a !important;
  margin: 0.85rem 0 1rem !important;
}

.hero-luxury-container .rewards-perks-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  margin-bottom: 1.15rem !important;
}

.hero-luxury-container .perk-chip {
  background: rgba(241, 245, 249, 0.85) !important;
  border: 1px solid rgba(203, 213, 225, 0.8) !important;
  border-radius: 9999px !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  transition: all 0.25s ease !important;
}

.hero-luxury-container .perk-chip:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.hero-luxury-container .perk-plus {
  font-weight: 700 !important;
  color: #94a3b8 !important;
  font-size: 0.8rem !important;
}

/* Discount & Offer Boxes Inside Reward Cards */
.hero-luxury-container .hero-vip-discount-box,
.hero-luxury-container .hero-partner-discount-box,
.hero-luxury-container .hero-seller-discount-box {
  border-radius: 14px !important;
  padding: 0.85rem 1rem !important;
  margin-bottom: 1.25rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.hero-luxury-container .hero-vip-discount-box:hover,
.hero-luxury-container .hero-partner-discount-box:hover,
.hero-luxury-container .hero-seller-discount-box:hover {
  transform: translateY(-3px) !important;
}

/* Card CTA Buttons */
.hero-luxury-container .reward-cta-btn {
  border-radius: 14px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0.8rem 1.35rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.hero-luxury-container .reward-cta-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

/* Primary Action Buttons (All 3 Enabled & Styled) */
.hero-luxury-container .hero-cta-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.15rem !important;
  flex-wrap: wrap !important;
  margin: 1.8rem auto 1.5rem !important;
}

.hero-luxury-container .hero-cta-emerald {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 9999px !important;
  border: none !important;
  box-shadow: 0 10px 28px -6px rgba(5, 150, 105, 0.45) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.hero-luxury-container .hero-cta-emerald:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 14px 34px -4px rgba(5, 150, 105, 0.55) !important;
}

.hero-luxury-container .hero-cta-glass {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  color: #0b1f18 !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 9999px !important;
  border: 1.5px solid rgba(5, 150, 105, 0.35) !important;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.hero-luxury-container .hero-cta-glass:hover {
  transform: translateY(-3px) scale(1.02) !important;
  border-color: #059669 !important;
  box-shadow: 0 12px 30px -4px rgba(5, 150, 105, 0.2) !important;
}

.hero-luxury-container .hero-cta-gold {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 9999px !important;
  border: none !important;
  box-shadow: 0 10px 28px -6px rgba(217, 119, 6, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.hero-luxury-container .hero-cta-gold:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 14px 34px -4px rgba(217, 119, 6, 0.52) !important;
}

/* Glassmorphism Spotlight Search Bar & Quick Tags */
.hero-luxury-container .hero-search-box {
  display: block !important;
  max-width: 780px !important;
  margin: 1.8rem auto 1.2rem !important;
  width: 100% !important;
}

.hero-luxury-container .hero-search-input-wrap {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1.5px solid rgba(203, 213, 225, 0.85) !important;
  border-radius: 9999px !important;
  padding: 0.45rem 0.65rem 0.45rem 1.3rem !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 0 12px 36px -10px rgba(15, 23, 42, 0.08) !important;
  transition: all 0.3s ease !important;
}

.hero-luxury-container .hero-search-input-wrap:focus-within {
  border-color: #059669 !important;
  box-shadow: 0 16px 40px -10px rgba(5, 150, 105, 0.22), 0 0 0 3px rgba(5, 150, 105, 0.12) !important;
}

.hero-luxury-container .hero-search-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  width: 100% !important;
  padding: 0.4rem 0.6rem !important;
}

.hero-luxury-container .hero-search-badge {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%) !important;
  color: #ffffff !important;
  padding: 0.45rem 1rem !important;
  border-radius: 9999px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  white-space: nowrap !important;
}

.hero-luxury-container .hero-quick-tags {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  margin-top: 0.75rem !important;
}

.hero-luxury-container .quick-tag-label {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-right: 0.2rem !important;
}

.hero-luxury-container .quick-tag-pill {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 9999px !important;
  padding: 0.3rem 0.85rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
}

.hero-luxury-container .quick-tag-pill:hover {
  background: #ffffff !important;
  border-color: #059669 !important;
  color: #059669 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.12) !important;
}

/* Trust Strip (All 4 Chips Visible & Styled with Frosted Glass) */
.hero-luxury-container .hero-trust-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.9rem !important;
  flex-wrap: wrap !important;
  margin-top: 1.8rem !important;
}

.hero-luxury-container .trust-chip,
.hero-luxury-container .hero-trust-strip .trust-chip:nth-child(n+3) {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 9999px !important;
  padding: 0.45rem 1.15rem !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.3s ease !important;
}

.hero-luxury-container .trust-chip:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(5, 150, 105, 0.4) !important;
  color: #059669 !important;
  box-shadow: 0 8px 18px -2px rgba(5, 150, 105, 0.12) !important;
}

.hero-luxury-container .trust-chip i {
  color: #059669 !important;
}

/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .hero-luxury-container .hero-rewards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
  .hero-luxury-container .reward-card-seller {
    grid-column: span 2 !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .hero-luxury-container {
    padding: 2rem 1rem 2.5rem !important;
    border-radius: 20px !important;
  }
  .hero-luxury-container .hero-main-heading {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .hero-luxury-container .hero-subheading {
    border-radius: 20px !important;
    padding: 0.75rem 1.2rem !important;
    font-size: 0.92rem !important;
  }
  .hero-luxury-container .hero-rewards-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-luxury-container .reward-card-seller {
    grid-column: span 1 !important;
  }
  .hero-luxury-container .hero-cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-luxury-container .hero-cta-emerald,
  .hero-luxury-container .hero-cta-glass,
  .hero-luxury-container .hero-cta-gold {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   ADVANCED OMNI SEARCH ENGINE STYLES (LUXURY AUTOCOMPLETE & SEARCH DROPDOWN)
   ========================================================================== */
.omni-search-dropdown,
.search-dropdown-menu.omni-dropdown-active,
.hub-search-dropdown.omni-dropdown-active {
  background: rgba(255, 255, 255, 0.98) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  backdrop-filter: blur(24px) !important;
  border: 1.5px solid rgba(5, 150, 105, 0.35) !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.2), 0 0 35px rgba(5, 150, 105, 0.15) !important;
  padding: 0 !important;
  overflow: hidden !important;
  z-index: 99999 !important;
  display: block !important;
}

.nav-search-wrapper .search-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: 440px;
  max-width: 92vw;
}

.hero-search-box .search-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  width: 100%;
}

.mobile-search-box .search-dropdown-menu {
  position: relative;
  top: 8px;
  width: 100%;
  left: 0;
  right: 0;
}

.omni-dropdown-header {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #059669;
  background: rgba(5, 150, 105, 0.05);
  border-bottom: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.omni-keyboard-hint {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
}

.omni-results-scroll {
  max-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.4rem;
}

.omni-search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border-bottom: 1px solid rgba(241, 245, 249, 0.7);
  margin-bottom: 2px;
  text-decoration: none;
  user-select: none;
}

.omni-search-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.omni-search-item:hover,
.omni-search-item.focused,
.omni-search-item.active {
  background: rgba(5, 150, 105, 0.08);
  transform: translateX(4px);
}

.omni-search-item.focused {
  box-shadow: inset 0 0 0 1.5px #059669, 0 4px 12px rgba(5, 150, 105, 0.15);
}

.omni-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.omni-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.omni-item-icon.omni-icon-palette {
  background: rgba(212, 175, 55, 0.12);
  color: #b45309;
  border-color: rgba(212, 175, 55, 0.25);
}

.omni-item-icon.omni-icon-bot {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.25);
}

.omni-item-icon.omni-icon-globe {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  border-color: rgba(6, 182, 212, 0.25);
}

.omni-item-icon.omni-icon-home {
  background: rgba(234, 88, 12, 0.12);
  color: #c2410c;
  border-color: rgba(234, 88, 12, 0.25);
}

.omni-item-icon.omni-icon-rocket {
  background: rgba(236, 72, 153, 0.12);
  color: #db2777;
  border-color: rgba(236, 72, 153, 0.25);
}

.omni-item-details {
  flex: 1;
  min-width: 0;
}

.omni-item-title-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.omni-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.omni-highlight {
  background: rgba(5, 150, 105, 0.18);
  color: #047857;
  border-radius: 4px;
  padding: 0 3px;
  font-weight: 800;
}

.omni-type-pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-service {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.badge-category {
  background: rgba(212, 175, 55, 0.15);
  color: #92400e;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-package {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-portfolio {
  background: rgba(6, 182, 212, 0.12);
  color: #0e7490;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.badge-addon {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.25);
}

.omni-ugc-badge {
  font-size: 0.64rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.omni-item-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

.omni-item-category {
  font-weight: 600;
  color: #059669;
}

.omni-dot {
  color: #cbd5e1;
  font-size: 0.7rem;
}

.omni-item-subcat {
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.omni-item-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.omni-item-price {
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
}

.omni-item-cta-btn {
  padding: 0.32rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.omni-search-item:hover .omni-item-cta-btn,
.omni-search-item.focused .omni-item-cta-btn {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

/* Empty State */
.omni-search-empty {
  padding: 1.5rem 1rem;
  text-align: center;
}

.omni-empty-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.omni-empty-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.omni-empty-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.85rem;
}

.omni-empty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.omni-chip {
  padding: 0.35rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 9999px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.18s ease;
}

.omni-chip:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  transform: translateY(-1px);
}

/* Dark Mode Theme Support */
body.dark-mode .omni-search-dropdown,
body.dark-mode .search-dropdown-menu.omni-dropdown-active,
body.dark-mode .hub-search-dropdown.omni-dropdown-active,
[data-theme="dark"] .omni-search-dropdown,
[data-theme="dark"] .search-dropdown-menu.omni-dropdown-active,
[data-theme="dark"] .hub-search-dropdown.omni-dropdown-active {
  background: rgba(15, 23, 42, 0.96) !important;
  border-color: rgba(5, 150, 105, 0.4) !important;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(5, 150, 105, 0.25) !important;
}

body.dark-mode .omni-item-title,
[data-theme="dark"] .omni-item-title {
  color: #f1f5f9;
}

body.dark-mode .omni-empty-title,
[data-theme="dark"] .omni-empty-title {
  color: #f1f5f9;
}

body.dark-mode .omni-search-item,
[data-theme="dark"] .omni-search-item {
  border-bottom-color: rgba(51, 65, 85, 0.5);
}

body.dark-mode .omni-search-item:hover,
body.dark-mode .omni-search-item.focused,
[data-theme="dark"] .omni-search-item:hover,
[data-theme="dark"] .omni-search-item.focused {
  background: rgba(5, 150, 105, 0.16);
}

body.dark-mode .omni-chip,
[data-theme="dark"] .omni-chip {
  background: #1e293b;
  color: #cbd5e1;
  border-color: #334155;
}

body.dark-mode .omni-dropdown-header,
[data-theme="dark"] .omni-dropdown-header {
  background: rgba(5, 150, 105, 0.1);
  border-bottom-color: rgba(5, 150, 105, 0.25);
}








/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE HEADER FIX — CRITICAL
   ---------------------------------------------------------------------------
   BUG: 320px–414px tak `.header-controls` (Sign In + Project Quote + hamburger)
        ki width itni thi ki hamburger button screen se BAHAR chala jaata tha
        (375px screen pe hamburger 394px pe). Result: mobile pe navigation
        menu khul hi nahi sakta tha — user ko Services/Portfolio/Contact
        kuch nahi milta tha.

   FIX: Chhote screens pe labels hata ke icon-only kar diya, brand ko shrink
        hone diya, aur hamburger ko hamesha visible + last element rakha.
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {

  /* Container ko overflow se bachao */
  .nav-container {
    padding: 0 0.6rem !important;
    gap: 0.3rem !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }

  /* Brand ko shrink hone do taaki controls ki jagah bane */
  .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .brand-logo {
    min-width: 0 !important;
  }
  .brand-logo .brand-name,
  .brand-logo > span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.95rem !important;
  }
  .brand-tagline {
    display: none !important;
  }
  .nav-logo-img {
    width: 30px !important;
    height: 30px !important;
  }

  /* Controls kabhi shrink na ho, aur screen ke andar hi rahein */
  .header-controls {
    flex: 0 0 auto !important;
    gap: 0.28rem !important;
    margin-left: auto !important;
    max-width: 62vw !important;
  }

  /* "Sign In / Sign Up" -> sirf icon */
  .header-controls .nav-auth-btn-unified span,
  .header-controls .sign-in-btn span,
  .header-controls .auth-btn span,
  .header-controls .auth-user-name {
    display: none !important;
  }
  .header-controls .nav-auth-btn-unified,
  .header-controls .sign-in-btn,
  .header-controls .auth-btn,
  .header-controls .auth-profile-badge {
    padding: 0.42rem 0.5rem !important;
    min-width: 0 !important;
  }

  /* "Project Quote" -> sirf cart icon + counter badge */
  .nav-quote-cta-btn .quote-btn-label,
  .nav-quote-cta-btn > span:not(.quote-btn-counter) {
    display: none !important;
  }
  .nav-quote-cta-btn {
    padding: 0.42rem 0.55rem !important;
    gap: 0.25rem !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
  }
  .quote-btn-counter {
    font-size: 0.66rem !important;
    padding: 0 0.28rem !important;
  }

  /* Header ka search mobile drawer mein hai, yahan chhupao */
  .nav-search-wrapper,
  .navbar-search,
  .currency-select {
    display: none !important;
  }

  /* Hamburger — hamesha dikhe, hamesha aakhri element, kabhi shrink na ho */
  .hamburger-btn {
    display: flex !important;
    flex-shrink: 0 !important;
    order: 99 !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0.4rem !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Poore page pe horizontal scroll rokо */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
}

/* Extra-small phones (320px – iPhone SE 1st gen) */
@media (max-width: 380px) {
  .brand-logo .brand-name,
  .brand-logo > span {
    font-size: 0.85rem !important;
  }
  .header-controls {
    gap: 0.22rem !important;
  }
  .nav-logo-img {
    width: 26px !important;
    height: 26px !important;
  }
}

/* ── Screen-reader / crawler-only text (audit fix) ───────────────────────── */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);clip-path:inset(50%);white-space:nowrap;border:0}
.sr-only-focusable:focus,.sr-only-focusable:active{position:static!important;width:auto;
  height:auto;margin:0;overflow:visible;clip:auto;clip-path:none;white-space:normal}

/* ── TOUCH TAP-TARGET FIX (audit) ──────────────────────────────────────────
   Footer/legal/CTA links were only ~16px tall. WCAG 2.5.8 ka minimum 24px hai
   aur Google 48px recommend karta hai. Neeche sirf PADDING badhaya gaya hai,
   font-size / colour / layout waisa hi hai — sirf ungli ka area bada hua.   */
@media (pointer:coarse), (max-width:1024px){
  .omni-foot-col a,
  .omni-foot-legal a,
  .footer-link,
  .curated-editorial-cta,
  .case-study-card-cta,
  nav.links li a{
    display:inline-block;
    padding-top:9px;padding-bottom:9px;
    min-height:24px;
    line-height:1.45;
  }
  .close-modal-btn,
  .modal-8k-close,
  .pw-toggle-btn,
  .nav-auth-btn-unified{
    min-width:40px;min-height:40px;
    display:inline-flex;align-items:center;justify-content:center;
  }
}

/* ── ACCESSIBILITY: visible keyboard focus + reduced motion (launch fix 17 Sep 2026) ── */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #059669 !important;
  outline-offset: 2px !important;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   OMNI LUXURY MULTI-COLOR NEON HOVER BORDER SYSTEM (UNIVERSAL A-TO-Z SITE-WIDE)
   Universal 4-sided animated glowing neon border lines on hover
   ========================================================================== */

@keyframes omniNeonFlowMain {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Master Selector List: Every square & rectangular card, box, panel, wrap & modal across all pages */
:is(
  .omni-neon-box,
  /* Contact Section & Cards */
  .contact-info-card,
  .contact-form-card,
  .c-detail-item,
  .contact-details,
  .contact-layout-grid > div,
  #consultation-form,
  #direct-channels > div,
  #formReadyOutput,
  .contact-form-wrapper,
  /* Auth Modal & Client Portal */
  .of-modal-card,
  .auth-card,
  .auth-logo-badge,
  .auth-tab,
  .method-pill,
  .auth-field,
  .auth-input-wrap,
  .google-btn,
  .auth-submit,
  .pw-toggle-btn,
  .auth-modal-box,
  .auth-modal-left,
  .auth-modal-right,
  .modal-card,
  .modal-box,
  .modal-content,
  .modal-dialog,
  .modal-form,
  .portal-user,
  .portal-nav-btn,
  .portal-empty,
  /* Form Wrappers & Input Containers */
  .form-group,
  .hero-search-input-wrap,
  .hub-search-glass-wrapper,
  .search-input-wrap,
  .input-group,
  .card-inputs-box,
  .ref-dashboard-box,
  .ref-generator-box,
  /* Core Showcase & Service Cards */
  .service-full-poster,
  .featured-card,
  .category-hub-card,
  .category-card,
  .stat-counter-card,
  .stat-box,
  .testimonial-card,
  .ind-card,
  .portfolio-item-card,
  .membership-card,
  .vip-tier-card,
  .pricing-card,
  .vip-plan-card,
  .poster-vip-showcase-card,
  .poster-vip-plan-chip,
  .hero-vip-discount-box,
  .hero-seller-discount-box,
  .hero-partner-discount-box,
  .rewards-hero-vip-note,
  .ref-vip-highlight-mini-card,
  .service-card,
  .main-service-card,
  .package-card,
  .poster-feature-card,
  .poster-benefit-subcard,
  .poster-calc-card,
  .poster-step-node,
  .poster-cta-banner,
  .bento-card,
  .bento-item,
  .step-card,
  .process-step-card,
  .workflow-step,
  .ref-step-card,
  .about-card,
  .about-pillar-card,
  .about-stat-box,
  .about-commitment-card,
  .about-vm-card,
  .hero-addon-card,
  .rewards-calc-card,
  .rewards-card,
  .wizard-card,
  .wizard-price-summary-card,
  .wizard-step-box,
  .faq-item,
  .hero-chat-recommendation-card,
  .seller-partner-card,
  .partner-step-card,
  .perk-box,
  .device-window-card,
  .psec-card,
  .glass-card,
  .flagship-card,
  .case-study-card,
  .benefit-card,
  .poster-benefit-card,
  /* Seller Partner & Dashboard Subpages */
  .sp-plan-card,
  .sp-party-card,
  .sp-step-card,
  .sp-resp-card,
  .sp-comm-card,
  .sp-commission-highlight-box,
  .sp-sc-card,
  .sp-diff-card,
  .sp-together-card,
  .sp-term-card,
  .sp-modal-card,
  .sp-terms-modal-card,
  .sp-calc-table,
  .sp-newsletter-input-box,
  .sp-hero-trust-item,
  .sp-timeline-step-item,
  .sp-win-summary-bar,
  /* Checkout & Dashboard */
  .chk-step-panel,
  .checkout-main-panel,
  .checkout-summary-sidebar,
  .summary-card-box,
  .vip-detection-card,
  .checkout-referral-box,
  .success-summary-card,
  .cd-card,
  .dash-stat-card,
  .dash-card,
  .stat-card,
  .ref-box,
  .infinite-card,
  .ref-role-card,
  .ref-matrix-card,
  .ref-unlimited-card-modern,
  .ref-unlimited-matrix-box,
  .poster-vip-tier-box,
  .poster-vip-tiers-mini,
  .poster-calc-vip-row,
  .poster-trust-item,
  .ref-trust-item,
  .legal-card-section,
  .legal-pdf-box,
  .legal-search-box,
  .legal-meta-chip,
  .reward-glass-card,
  .timeline-step-card,
  .ai-info-card,
  .ai-pillar-card,
  .ai-roi-calculator-box,
  .ai-roi-stat-card,
  .deal-calc-item
) {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #00BBF9, #10B981, #00F5D4);
  --omni-border-glow: rgba(0, 245, 212, 0.4);
  position: relative;
}

/* 5 Alternating Colorway Themes by nth-child */
:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, #consultation-form,
  .of-modal-card, .auth-tab, .method-pill, .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn,
  .modal-card, .modal-box, .form-group,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .service-card, .main-service-card, .package-card, .poster-feature-card, .poster-benefit-subcard,
  .bento-card, .bento-item, .step-card, .process-step-card, .about-card, .hero-addon-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card, .sp-commission-highlight-box,
  .chk-step-panel, .checkout-main-panel, .summary-card-box, .dash-stat-card, .dash-card, .infinite-card,
  .benefit-card, .poster-benefit-card
):nth-child(5n + 1),
.omni-neon-box[data-omni-theme="1"] {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #00BBF9, #10B981, #00F5D4);
  --omni-border-glow: rgba(0, 245, 212, 0.45);
}

:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, #consultation-form,
  .of-modal-card, .auth-tab, .method-pill, .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn,
  .modal-card, .modal-box, .form-group,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .service-card, .main-service-card, .package-card, .poster-feature-card, .poster-benefit-subcard,
  .bento-card, .bento-item, .step-card, .process-step-card, .about-card, .hero-addon-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card, .sp-commission-highlight-box,
  .chk-step-panel, .checkout-main-panel, .summary-card-box, .dash-stat-card, .dash-card, .infinite-card,
  .benefit-card, .poster-benefit-card
):nth-child(5n + 2),
.omni-neon-box[data-omni-theme="2"] {
  --omni-border-flow: linear-gradient(135deg, #FFE082, #F59E0B, #D4AF37, #FFE082);
  --omni-border-glow: rgba(245, 158, 11, 0.45);
}

:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, #consultation-form,
  .of-modal-card, .auth-tab, .method-pill, .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn,
  .modal-card, .modal-box, .form-group,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .service-card, .main-service-card, .package-card, .poster-feature-card, .poster-benefit-subcard,
  .bento-card, .bento-item, .step-card, .process-step-card, .about-card, .hero-addon-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card, .sp-commission-highlight-box,
  .chk-step-panel, .checkout-main-panel, .summary-card-box, .dash-stat-card, .dash-card, .infinite-card,
  .benefit-card, .poster-benefit-card
):nth-child(5n + 3),
.omni-neon-box[data-omni-theme="3"] {
  --omni-border-flow: linear-gradient(135deg, #A855F7, #EC4899, #6366F1, #A855F7);
  --omni-border-glow: rgba(236, 72, 153, 0.45);
}

:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, #consultation-form,
  .of-modal-card, .auth-tab, .method-pill, .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn,
  .modal-card, .modal-box, .form-group,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .service-card, .main-service-card, .package-card, .poster-feature-card, .poster-benefit-subcard,
  .bento-card, .bento-item, .step-card, .process-step-card, .about-card, .hero-addon-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card, .sp-commission-highlight-box,
  .chk-step-panel, .checkout-main-panel, .summary-card-box, .dash-stat-card, .dash-card, .infinite-card,
  .benefit-card, .poster-benefit-card
):nth-child(5n + 4),
.omni-neon-box[data-omni-theme="4"] {
  --omni-border-flow: linear-gradient(135deg, #FF6B6B, #FF8E53, #FF007A, #FF6B6B);
  --omni-border-glow: rgba(255, 107, 107, 0.45);
}

:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, #consultation-form,
  .of-modal-card, .auth-tab, .method-pill, .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn,
  .modal-card, .modal-box, .form-group,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .service-card, .main-service-card, .package-card, .poster-feature-card, .poster-benefit-subcard,
  .bento-card, .bento-item, .step-card, .process-step-card, .about-card, .hero-addon-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card, .sp-commission-highlight-box,
  .chk-step-panel, .checkout-main-panel, .summary-card-box, .dash-stat-card, .dash-card, .infinite-card,
  .benefit-card, .poster-benefit-card
):nth-child(5n + 5),
.omni-neon-box[data-omni-theme="5"] {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #7B2CBF, #FF007A, #F59E0B, #00F5D4);
  --omni-border-glow: rgba(123, 44, 191, 0.45);
}

/* 4-Sided Neon Border Pseudo-Element */
:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, .contact-details, .contact-layout-grid > div,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-form-wrapper,
  .of-modal-card, .auth-card, .auth-logo-badge, .auth-tab, .method-pill, .auth-field,
  .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn, .auth-modal-box, .auth-modal-left,
  .auth-modal-right, .modal-card, .modal-box, .modal-content, .modal-dialog, .modal-form,
  .portal-user, .portal-nav-btn, .portal-empty,
  .form-group, .hero-search-input-wrap, .hub-search-glass-wrapper, .search-input-wrap,
  .input-group, .card-inputs-box, .ref-dashboard-box, .ref-generator-box,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .poster-vip-plan-chip, .hero-vip-discount-box, .hero-seller-discount-box, .hero-partner-discount-box,
  .rewards-hero-vip-note, .ref-vip-highlight-mini-card, .service-card, .main-service-card,
  .package-card, .poster-feature-card, .poster-benefit-subcard, .poster-calc-card,
  .poster-step-node, .poster-cta-banner, .bento-card, .bento-item, .step-card,
  .process-step-card, .workflow-step, .ref-step-card, .about-card, .about-pillar-card,
  .about-stat-box, .about-commitment-card, .about-vm-card, .hero-addon-card,
  .rewards-calc-card, .rewards-card, .wizard-card, .wizard-price-summary-card,
  .wizard-step-box, .faq-item, .hero-chat-recommendation-card, .seller-partner-card,
  .partner-step-card, .perk-box, .device-window-card, .psec-card, .glass-card,
  .flagship-card, .case-study-card, .benefit-card, .poster-benefit-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card,
  .sp-commission-highlight-box, .sp-sc-card, .sp-diff-card, .sp-together-card,
  .sp-term-card, .sp-modal-card, .sp-terms-modal-card, .sp-calc-table,
  .sp-newsletter-input-box, .sp-hero-trust-item, .sp-timeline-step-item, .sp-win-summary-bar,
  .chk-step-panel, .checkout-main-panel, .checkout-summary-sidebar, .summary-card-box,
  .vip-detection-card, .checkout-referral-box, .success-summary-card, .cd-card,
  .dash-stat-card, .dash-card, .stat-card, .ref-box, .infinite-card, .ref-role-card,
  .ref-matrix-card, .ref-unlimited-card-modern, .ref-unlimited-matrix-box,
  .poster-vip-tier-box, .poster-vip-tiers-mini, .poster-calc-vip-row, .poster-trust-item,
  .ref-trust-item,
  .legal-card-section, .legal-pdf-box, .legal-search-box, .legal-meta-chip,
  .reward-glass-card, .timeline-step-card, .ai-info-card, .ai-pillar-card,
  .ai-roi-calculator-box, .ai-roi-stat-card, .deal-calc-item
)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.2px;
  background: var(--omni-border-flow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

/* Hover Illumination for All Square/Rectangular Boxes */
:is(
  .omni-neon-box,
  .contact-info-card, .contact-form-card, .c-detail-item, .contact-details, .contact-layout-grid > div,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-form-wrapper,
  .of-modal-card, .auth-card, .auth-logo-badge, .auth-tab, .method-pill, .auth-field,
  .auth-input-wrap, .google-btn, .auth-submit, .pw-toggle-btn, .auth-modal-box, .auth-modal-left,
  .auth-modal-right, .modal-card, .modal-box, .modal-content, .modal-dialog, .modal-form,
  .portal-user, .portal-nav-btn, .portal-empty,
  .form-group, .hero-search-input-wrap, .hub-search-glass-wrapper, .search-input-wrap,
  .input-group, .card-inputs-box, .ref-dashboard-box, .ref-generator-box,
  .service-full-poster, .featured-card, .category-hub-card, .category-card,
  .stat-counter-card, .stat-box, .testimonial-card, .ind-card, .portfolio-item-card,
  .membership-card, .vip-tier-card, .pricing-card, .vip-plan-card, .poster-vip-showcase-card,
  .poster-vip-plan-chip, .hero-vip-discount-box, .hero-seller-discount-box, .hero-partner-discount-box,
  .rewards-hero-vip-note, .ref-vip-highlight-mini-card, .service-card, .main-service-card,
  .package-card, .poster-feature-card, .poster-benefit-subcard, .poster-calc-card,
  .poster-step-node, .poster-cta-banner, .bento-card, .bento-item, .step-card,
  .process-step-card, .workflow-step, .ref-step-card, .about-card, .about-pillar-card,
  .about-stat-box, .about-commitment-card, .about-vm-card, .hero-addon-card,
  .rewards-calc-card, .rewards-card, .wizard-card, .wizard-price-summary-card,
  .wizard-step-box, .faq-item, .hero-chat-recommendation-card, .seller-partner-card,
  .partner-step-card, .perk-box, .device-window-card, .psec-card, .glass-card,
  .flagship-card, .case-study-card, .benefit-card, .poster-benefit-card,
  .sp-plan-card, .sp-party-card, .sp-step-card, .sp-resp-card, .sp-comm-card,
  .sp-commission-highlight-box, .sp-sc-card, .sp-diff-card, .sp-together-card,
  .sp-term-card, .sp-modal-card, .sp-terms-modal-card, .sp-calc-table,
  .sp-newsletter-input-box, .sp-hero-trust-item, .sp-timeline-step-item, .sp-win-summary-bar,
  .chk-step-panel, .checkout-main-panel, .checkout-summary-sidebar, .summary-card-box,
  .vip-detection-card, .checkout-referral-box, .success-summary-card, .cd-card,
  .dash-stat-card, .dash-card, .stat-card, .ref-box, .infinite-card, .ref-role-card,
  .ref-matrix-card, .ref-unlimited-card-modern, .ref-unlimited-matrix-box,
  .poster-vip-tier-box, .poster-vip-tiers-mini, .poster-calc-vip-row, .poster-trust-item,
  .ref-trust-item,
  .legal-card-section, .legal-pdf-box, .legal-search-box, .legal-meta-chip,
  .reward-glass-card, .timeline-step-card, .ai-info-card, .ai-pillar-card,
  .ai-roi-calculator-box, .ai-roi-stat-card, .deal-calc-item
):hover::after {
  opacity: 1;
  animation: omniNeonFlowMain 3s linear infinite;
  filter: drop-shadow(0 0 8px var(--omni-border-glow));
}

/* Direct Multi-Color Glow & Border on Form Controls on Hover & Focus */
:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select,
  .otp-inputs input
) {
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select,
  .otp-inputs input
):hover,
:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select,
  .otp-inputs input
):focus {
  outline: none !important;
  border-color: #00F5D4 !important;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.45), inset 0 0 5px rgba(0, 245, 212, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 2):hover,
:is(input, textarea, select):nth-of-type(5n + 2):focus {
  border-color: #F59E0B !important;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.45), inset 0 0 5px rgba(245, 158, 11, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 3):hover,
:is(input, textarea, select):nth-of-type(5n + 3):focus {
  border-color: #EC4899 !important;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.45), inset 0 0 5px rgba(236, 72, 153, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 4):hover,
:is(input, textarea, select):nth-of-type(5n + 4):focus {
  border-color: #FF6B6B !important;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.45), inset 0 0 5px rgba(255, 107, 107, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 5):hover,
:is(input, textarea, select):nth-of-type(5n + 5):focus {
  border-color: #A855F7 !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.45), inset 0 0 5px rgba(168, 85, 247, 0.15) !important;
}


