/* ===================================================
   NEON SIGN CREATOR - GLOBAL STYLESHEET (style.css)
   =================================================== */

:root {
  /* Backgrounds & Surfaces */
  --bg-root: #08080c;
  --surface-1: #101016;
  --surface-2: #181822;
  --bg-surface-1: #12121a;
  --bg-surface-2: #181824;
  --glass-border: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  /* Neon Accent Colors */
  --neon-pink: #FF2E93;
  --neon-cyan: #00F0FF;
  --neon-green: #39FF14;
  --neon-green-glow: rgba(57, 255, 20, 0.45);
  --price-color: var(--neon-green, #39FF14);
  --price-glow: rgba(57, 255, 20, 0.45);
  --neon-amber: #FFB800;
  --neon-purple: #A855F7;
  --neon-red: #FF3131;
  --neon-bright-red: #FF385C;
  --neon-bright-red-glow: rgba(255, 56, 92, 0.4);
  --neon-blue: #3B82F6;
  --neon-white: #FFFFFF;
  --neon-warm-white: #FFE4B5;
  --neon-yellow: #FACC15;
  --neon-orange: #FF6B00;
  --neon-ice-blue: #7DD3FC;
  
  /* Text */
  --text-primary: #F3F3F8;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-root);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global Heading Descender Protection (Ensures glowing shadows and descenders are never clipped) */
h1, h2, h3, h4, h5, h6 {
  overflow: visible;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: var(--neon-pink);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--tr-fast);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================================
   TOP ANNOUNCEMENT BAR
   =================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #18081a 0%, #0a141e 50%, #18081a 100%);
  border-bottom: 1px solid rgba(255, 46, 147, 0.25);
  padding: 8px 0;
  font-size: 12px;
  position: relative;
  z-index: 1001;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-badge {
  background: linear-gradient(135deg, var(--neon-pink), #9D00FF);
  color: #fff;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.announcement-text {
  color: #e2e2ec;
}

.announcement-text strong {
  color: #fff;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a0a0b0;
  font-size: 11px;
}

.announcement-perk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.announcement-perk i {
  color: var(--neon-cyan);
}

.announcement-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ===================================================
   NAVIGATION & HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-nav {
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--tr-fast);
}

.site-nav.nav-scrolled {
  background: rgba(8, 8, 12, 0.96);
  border-bottom-color: rgba(255, 46, 147, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--neon-pink);
  font-size: 20px;
  margin-right: 4px;
  filter: drop-shadow(0 0 10px var(--neon-pink));
  animation: neonPulseIcon 3s infinite alternate;
  flex-shrink: 0;
}

@keyframes neonPulseIcon {
  0% { filter: drop-shadow(0 0 6px var(--neon-pink)); transform: scale(1); }
  100% { filter: drop-shadow(0 0 14px var(--neon-pink)); transform: scale(1.08); }
}

.logo-neon {
  color: var(--neon-pink);
  text-shadow: 0 0 14px rgba(255, 46, 147, 0.7), 0 0 30px rgba(255, 46, 147, 0.3);
  white-space: nowrap;
}

.logo-sign {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.logo-creator {
  color: var(--text-secondary);
  font-weight: 400;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  flex-shrink: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #c9cdd4;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--tr-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
  transition: width var(--tr-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.nav-link-highlight {
  color: var(--neon-pink);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255, 46, 147, 0.4);
  white-space: nowrap;
}

.nav-link.nav-link-highlight i {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 6px var(--neon-cyan));
}

/* Upload Logo Navbar Icon: Luminous Neon Green Cloud with Solid Black Arrow */
.nav-upload-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 2px;
}

.nav-upload-logo-icon .svg-cloud-upload {
  width: 17px;
  height: 14px;
  display: inline-block;
  vertical-align: -0.15em;
  filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.55));
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.nav-upload-logo-icon .cloud-shape {
  fill: var(--neon-green, #39FF14);
}

.nav-upload-logo-icon .arrow-shape {
  fill: #000000;
}

.nav-link:hover .nav-upload-logo-icon .svg-cloud-upload,
.nav-link.active .nav-upload-logo-icon .svg-cloud-upload {
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.85));
  transform: scale(1.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.currency-selector {
  font-size: 12px;
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  transition: border-color var(--tr-fast);
}

.currency-selector:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.currency-selector i {
  color: var(--neon-cyan);
  font-size: 12px;
}

.currency-dropdown {
  color-scheme: dark;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.currency-dropdown option {
  background-color: #14141c !important;
  color: #ffffff !important;
  padding: 8px 12px;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.35);
  transition: all var(--tr-fast);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 46, 147, 0.6);
  color: #fff;
}

.btn-nav-cta i {
  font-size: 11px;
  transition: transform var(--tr-fast);
}

.btn-nav-cta:hover i {
  transform: translateX(3px);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 10px 9px;
  transition: all var(--tr-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-pink);
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all var(--tr-fast);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── Nav Auth & User Dropdown ─── */
.btn-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #d1d5db;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all var(--tr-fast);
  white-space: nowrap;
}

.btn-nav-login:hover {
  color: #fff;
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
  transform: translateY(-1px);
}

.btn-nav-login i {
  color: var(--neon-cyan);
  font-size: 13px;
}

/* Admin Quick Access Button */
.btn-nav-admin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-pink);
  text-decoration: none;
  background: rgba(255, 46, 147, 0.1);
  border: 1px solid rgba(255, 46, 147, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  transition: all var(--tr-fast);
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.2);
}

.btn-nav-admin:hover {
  color: #fff;
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 22px rgba(255, 46, 147, 0.6);
  transform: translateY(-1px);
}

/* Navigation Cart Button (Bag Icon) */
.btn-nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
  position: relative;
  line-height: 1;
}

.btn-nav-cart:hover {
  color: #fff;
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
  transform: translateY(-1px);
}

.nav-cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cart-icon-wrap i {
  color: var(--neon-cyan);
  font-size: 14px;
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.btn-nav-cart:hover .nav-cart-icon-wrap i {
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  transform: scale(1.1);
}

.nav-cart-label {
  font-size: 13px;
  font-weight: 500;
  color: #e5e7eb;
}

.nav-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neon-pink), #a855f7);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.7);
  border: 1.5px solid #0a0a0c;
  line-height: 1;
}

.nav-cart-badge.badge-visible {
  display: inline-flex;
}

/* User Dropdown */
.nav-user-dropdown {
  position: relative;
}

.nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 14px 4px 4px;
  color: #ffffff;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tr-fast);
  white-space: nowrap;
}

.nav-user-btn:hover,
.nav-user-dropdown.active .nav-user-btn {
  border-color: var(--neon-pink);
  background: rgba(255, 46, 147, 0.08);
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.25);
}

.nav-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.4);
  flex-shrink: 0;
}

.nav-user-avatar i {
  font-size: 12.5px;
  line-height: 1;
}

.nav-user-name {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-chevron {
  font-size: 10px;
  color: var(--text-secondary);
  transition: transform var(--tr-fast);
}

.nav-user-dropdown.active .nav-user-chevron {
  transform: rotate(180deg);
}

.nav-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(255, 46, 147, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  display: block;
  pointer-events: none;
}

/* Invisible bridge so moving cursor between button and menu never drops hover */
.nav-user-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-user-dropdown.active .nav-user-menu,
.nav-user-dropdown.open .nav-user-menu,
.nav-user-dropdown:focus-within .nav-user-menu,
.nav-user-menu.active,
.nav-user-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.nav-user-dropdown.active .nav-user-chevron,
.nav-user-dropdown.open .nav-user-chevron,
.nav-user-dropdown:focus-within .nav-user-chevron {
  transform: rotate(180deg);
}

/* Desktop Hover support */
@media (hover: hover) and (pointer: fine) {
  .nav-user-dropdown:hover .nav-user-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  .nav-user-dropdown:hover .nav-user-chevron {
    transform: rotate(180deg);
  }
  .nav-user-dropdown:hover .nav-user-btn {
    border-color: var(--neon-pink);
    background: rgba(255, 46, 147, 0.08);
    box-shadow: 0 0 16px rgba(255, 46, 147, 0.25);
  }
}

.nav-user-menu-header {
  padding: 10px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.nav-user-menu-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.nav-user-menu-email {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: #d1d5db;
  font-size: 13px;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--tr-fast);
}

.nav-user-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-user-item i {
  width: 18px;
  text-align: center;
  font-size: 13px;
}

.nav-user-item.admin-item {
  color: var(--neon-pink);
  font-weight: 500;
}
.nav-user-item.admin-item i {
  color: var(--neon-pink);
}
.nav-user-item.admin-item:hover {
  background: rgba(255, 46, 147, 0.12);
  color: #ff5eb0;
}

.nav-user-item.logout-item {
  color: #ef4444;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  padding-top: 10px;
}
.nav-user-item.logout-item i {
  color: #ef4444;
}
.nav-user-item.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

/* Mobile Nav Auth Section */
.mobile-nav-auth {
  display: none;
  width: 100%;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ===================================================
   HERO BANNER IMAGE SECTION (assets/Images/hero.png)
   =================================================== */
.hero-banner-image-section {
  position: relative;
  background: #08080c url('../Images/hero.png') no-repeat center right;
  background-size: cover;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 85px 0 35px;
  overflow: hidden;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,12,0.94) 0%, rgba(8,8,12,0.82) 42%, rgba(8,8,12,0.2) 80%, rgba(8,8,12,0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-banner-image-section {
    background-position: 70% center;
  }
  .hero-banner-overlay {
    background: linear-gradient(180deg, rgba(8,8,12,0.92) 0%, rgba(8,8,12,0.85) 55%, rgba(8,8,12,0.45) 100%);
  }
}

.hero-banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  width: 100%;
}

.hero-banner-content {
  max-width: 660px;
  padding-top: 15px;
}

.hero-image-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-image-title {
    font-size: 32px;
    line-height: 1.2;
  }
}

.hero-image-subtext {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-image-subtext p {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 17.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .hero-image-subtext p {
    font-size: 15px;
  }
}

.hero-banner-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #0a0a0e;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.35);
  transition: all var(--tr-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-white:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.55);
  color: #000000;
}

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--tr-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: auto;
}

@media (max-width: 1024px) {
  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.hero-trust-badge:hover {
  transform: translateY(-2px);
}

.trust-icon-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Glowing Neon Variants */
.trust-badge-cyan .trust-icon-circle {
  background: rgba(0, 240, 255, 0.12);
  border: 1.5px solid #00F0FF;
  color: #00F0FF;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.45), inset 0 0 12px rgba(0, 240, 255, 0.25);
  text-shadow: 0 0 8px #00F0FF, 0 0 18px rgba(0, 240, 255, 0.8);
}
.trust-badge-cyan:hover .trust-icon-circle {
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.75), inset 0 0 16px rgba(0, 240, 255, 0.4);
  transform: scale(1.08);
}

.trust-badge-pink .trust-icon-circle {
  background: rgba(255, 46, 147, 0.12);
  border: 1.5px solid #FF2E93;
  color: #FF2E93;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.45), inset 0 0 12px rgba(255, 46, 147, 0.25);
  text-shadow: 0 0 8px #FF2E93, 0 0 18px rgba(255, 46, 147, 0.8);
}
.trust-badge-pink:hover .trust-icon-circle {
  box-shadow: 0 0 32px rgba(255, 46, 147, 0.75), inset 0 0 16px rgba(255, 46, 147, 0.4);
  transform: scale(1.08);
}

.trust-badge-amber .trust-icon-circle {
  background: rgba(255, 184, 0, 0.12);
  border: 1.5px solid #FFB800;
  color: #FFB800;
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.45), inset 0 0 12px rgba(255, 184, 0, 0.25);
  text-shadow: 0 0 8px #FFB800, 0 0 18px rgba(255, 184, 0, 0.8);
}
.trust-badge-amber:hover .trust-icon-circle {
  box-shadow: 0 0 32px rgba(255, 184, 0, 0.75), inset 0 0 16px rgba(255, 184, 0, 0.4);
  transform: scale(1.08);
}

.trust-badge-green .trust-icon-circle {
  background: rgba(0, 255, 136, 0.12);
  border: 1.5px solid #00FF88;
  color: #00FF88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.45), inset 0 0 12px rgba(0, 255, 136, 0.25);
  text-shadow: 0 0 8px #00FF88, 0 0 18px rgba(0, 255, 136, 0.8);
}
.trust-badge-green:hover .trust-icon-circle {
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.75), inset 0 0 16px rgba(0, 255, 136, 0.4);
  transform: scale(1.08);
}

.trust-badge-label {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Neon Text Glow Effects */
.trust-badge-cyan .trust-badge-label {
  color: #ffffff;
  text-shadow:
    0 0 4px #00F0FF,
    0 0 10px #00F0FF,
    0 0 20px rgba(0, 240, 255, 0.85),
    0 0 35px rgba(0, 240, 255, 0.6);
}
.trust-badge-cyan:hover .trust-badge-label {
  text-shadow:
    0 0 6px #00F0FF,
    0 0 14px #00F0FF,
    0 0 28px #00F0FF,
    0 0 45px rgba(0, 240, 255, 0.85);
}

.trust-badge-pink .trust-badge-label {
  color: #ffffff;
  text-shadow:
    0 0 4px #FF2E93,
    0 0 10px #FF2E93,
    0 0 20px rgba(255, 46, 147, 0.85),
    0 0 35px rgba(255, 46, 147, 0.6);
}
.trust-badge-pink:hover .trust-badge-label {
  text-shadow:
    0 0 6px #FF2E93,
    0 0 14px #FF2E93,
    0 0 28px #FF2E93,
    0 0 45px rgba(255, 46, 147, 0.85);
}

.trust-badge-amber .trust-badge-label {
  color: #ffffff;
  text-shadow:
    0 0 4px #FFB800,
    0 0 10px #FFB800,
    0 0 20px rgba(255, 184, 0, 0.85),
    0 0 35px rgba(255, 184, 0, 0.6);
}
.trust-badge-amber:hover .trust-badge-label {
  text-shadow:
    0 0 6px #FFB800,
    0 0 14px #FFB800,
    0 0 28px #FFB800,
    0 0 45px rgba(255, 184, 0, 0.85);
}

.trust-badge-green .trust-badge-label {
  color: #ffffff;
  text-shadow:
    0 0 4px #00FF88,
    0 0 10px #00FF88,
    0 0 20px rgba(0, 255, 136, 0.85),
    0 0 35px rgba(0, 255, 136, 0.6);
}
.trust-badge-green:hover .trust-badge-label {
  text-shadow:
    0 0 6px #00FF88,
    0 0 14px #00FF88,
    0 0 28px #00FF88,
    0 0 45px rgba(0, 255, 136, 0.85);
}


/* ===================================================
   3 FEATURE PATHWAYS SECTION (White / Clean Background)
   =================================================== */
.hero-pathways-section {
  background: #FFFFFF;
  padding: 42px 0;
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pathways-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
  }
}

.pathway-card {
  border-radius: 20px;
  padding: 28px 16px;
  min-height: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal), border-color var(--tr-normal);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pathway-card:hover {
  transform: translateY(-5px);
}

/* Card 1: TYPE TEXT - Hot / Baby Pink (Entire Square) */
.pathway-type-text {
  background: linear-gradient(150deg, #ffebf3 0%, #ffd1e4 100%);
  border-color: #ff65a3;
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.16);
}
.pathway-type-text .pathway-icon-wrap {
  background: rgba(255, 46, 147, 0.18);
  color: #d81b60;
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.35);
}
.pathway-type-text .pathway-btn {
  color: #c2185b;
  border: 1.5px solid #d81b60;
  background: #FFFFFF;
}
.pathway-type-text:hover {
  border-color: #ff2e93;
  box-shadow: 0 16px 36px rgba(255, 46, 147, 0.28);
}
.pathway-type-text .pathway-btn:hover {
  background: #d81b60;
  border-color: #d81b60;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(216, 27, 96, 0.35);
}

/* Card 2: UPLOAD LOGO - Ice Blue / Neon Blue (Entire Square) */
.pathway-upload-logo {
  background: linear-gradient(150deg, #e5f6fd 0%, #c4edfe 100%);
  border-color: #0ea5e9;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.16);
}
.pathway-upload-logo .pathway-icon-wrap {
  background: rgba(14, 165, 233, 0.18);
  color: #0284c7;
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.35);
}
.pathway-upload-logo .pathway-btn {
  color: #0369a1;
  border: 1.5px solid #0284c7;
  background: #FFFFFF;
}
.pathway-upload-logo:hover {
  border-color: #00b4d8;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.28);
}
.pathway-upload-logo .pathway-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Card 3: BROWSE DESIGNS - Neon Red (Entire Square) */
.pathway-browse-designs {
  background: linear-gradient(150deg, #ffeaec 0%, #ffcbd1 100%);
  border-color: #f43f5e;
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.16);
}
.pathway-browse-designs .pathway-icon-wrap {
  background: rgba(244, 63, 94, 0.18);
  color: #e11d48;
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.35);
}
.pathway-browse-designs .pathway-btn {
  color: #be123c;
  border: 1.5px solid #e11d48;
  background: #FFFFFF;
}
.pathway-browse-designs:hover {
  border-color: #ef4444;
  box-shadow: 0 16px 36px rgba(244, 63, 94, 0.28);
}
.pathway-browse-designs .pathway-btn:hover {
  background: #e11d48;
  border-color: #e11d48;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.pathway-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: transform var(--tr-fast);
}

.pathway-card:hover .pathway-icon-wrap {
  transform: scale(1.1);
}

.pathway-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pathway-desc {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
  margin-bottom: 18px;
}

.pathway-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--tr-fast);
}


/* ===================================================
   SHOP BY PURPOSE SECTION (7 Curated Category Cards)
   =================================================== */
.shop-by-purpose-section {
  padding: 70px 0 80px;
  background: var(--bg-root, #08080c);
}

.purpose-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  row-gap: 28px;
}

.purpose-card {
  flex: 0 0 calc(14.285% - 14px);
  max-width: calc(14.285% - 14px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .purpose-card {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
  }
}

@media (max-width: 768px) {
  .purpose-cards-grid {
    gap: 14px;
    row-gap: 20px;
  }
  .purpose-card {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
  }
}

@media (max-width: 440px) {
  .purpose-cards-grid {
    gap: 10px;
    row-gap: 16px;
  }
  .purpose-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
}

.purpose-card-media {
  position: relative;
  aspect-ratio: 3 / 4.3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #12121a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--tr-fast), border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.purpose-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.purpose-card:hover .purpose-card-media {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 147, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 46, 147, 0.25);
}

.purpose-card:hover .purpose-card-img {
  transform: scale(1.08);
}

.purpose-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 12, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  opacity: 0;
  transition: opacity var(--tr-fast);
}

.purpose-card:hover .purpose-card-overlay {
  opacity: 1;
}

.purpose-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: #08080c;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.purpose-card-meta {
  text-align: center;
  padding-top: 10px;
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.purpose-card-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color var(--tr-fast), text-shadow var(--tr-fast);
}

.purpose-card:hover .purpose-card-name {
  color: var(--neon-cyan, #00F0FF);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}


/* ===================================================
   HERO SHOWCASE SECTION (LEGACY)
   =================================================== */
.hero-showcase-section {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.glow-pink-spot {
  top: -150px;
  left: 20%;
  background: var(--neon-pink);
}

.glow-cyan-spot {
  top: 50px;
  right: 15%;
  background: var(--neon-cyan);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-trust-header {
  margin-bottom: 20px;
}

.trustpilot-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.stars-gold {
  color: var(--neon-amber);
}

.hero-main-title {
  margin-bottom: 20px;
}

.title-sub {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.title-primary {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
}

.neon-text-glow {
  display: inline-block;
  padding-bottom: 6px;
  overflow: visible;
  text-shadow: 
    0 0 2px #FFFFFF,
    0 0 10px rgba(255, 46, 147, 0.6),
    0 0 25px rgba(255, 46, 147, 0.4),
    0 0 50px rgba(0, 240, 255, 0.25);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero Brand Statement Card */
.hero-statement-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 18, 28, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 36px;
  max-width: 860px;
  margin: 10px auto 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 46, 147, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr-fast), border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.hero-statement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 147, 0.6), rgba(0, 240, 255, 0.6), transparent);
}

.hero-statement-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 46, 147, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 45px rgba(255, 46, 147, 0.2);
}

.statement-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.statement-body {
  font-size: 16.5px;
  line-height: 1.8;
  color: #e2e5ec;
  margin: 0;
  text-align: center;
}

.statement-body strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-glow-pink {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 46, 147, 0.6);
  border-bottom: 1px dashed rgba(255, 46, 147, 0.5);
}

.text-glow-cyan {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
  border-bottom: 1px dashed rgba(0, 240, 255, 0.5);
}

@media (max-width: 768px) {
  .hero-statement-card {
    padding: 22px 20px;
  }
  
  .statement-body {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all var(--tr-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink) 0%, #9D00FF 100%);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 46, 147, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-hero {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ===================================================
   6-ICON TRUST BADGES STRIP
   =================================================== */
.trust-icons-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 45px 0 40px;
}

.price-beat-header {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-beat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.12);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), inset 0 0 10px rgba(57, 255, 20, 0.2);
  margin-bottom: 12px;
  animation: neonPulseGreen 3s infinite alternate;
}

@keyframes neonPulseGreen {
  0% {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.35);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.7);
    transform: scale(1.06);
  }
}

.price-beat-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.price-beat-sub {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0;
  line-height: 1.5;
}

.trust-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===================================================
   SECTION HEADERS
   =================================================== */
.section-title-lockup {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 46, 147, 0.12);
  border: 1px solid rgba(255, 46, 147, 0.3);
  color: var(--neon-pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-sub-heading {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================
   EMBEDDED CREATOR SECTION
   =================================================== */
.embedded-creator-section {
  padding: 70px 0 40px;
  background: #0a0a0e;
}

/* ===================================================
   GALLERY & SHOWCASE HERO STYLES
   =================================================== */
.gallery-hero-section,
.about-hero-section {
  position: relative;
  padding: 135px 0 60px;
  background: radial-gradient(ellipse at 50% 15%, rgba(0, 240, 255, 0.12) 0%, rgba(255, 46, 147, 0.08) 35%, rgba(10, 10, 12, 0.98) 75%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
}

.gallery-hero-inner,
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gallery-hero-title,
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin: 18px 0 16px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  word-break: break-word;
}

.gallery-hero-desc,
.about-hero-desc {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 780px;
}

.gallery-stats-row,
.story-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 32px auto 0;
}

.gallery-stat-card,
.story-stat-card {
  background: rgba(22, 22, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 16px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-stat-card:hover,
.story-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.18);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 840px) {
  .gallery-stats-row,
  .story-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .gallery-hero-section,
  .about-hero-section {
    padding: 110px 14px 45px;
  }
  .gallery-hero-title,
  .about-hero-title {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.25;
  }
  .gallery-hero-desc,
  .about-hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .gallery-stats-row,
  .story-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .gallery-stat-card,
  .story-stat-card {
    padding: 14px 10px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-label {
    font-size: 10px;
  }
}

/* ===================================================
   REAL-LIFE PHOTO GALLERY SHOWCASE
   =================================================== */
.real-life-gallery-section {
  padding: 80px 0;
}

.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.gallery-photo-card {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.photo-overlay-neon {
  height: 220px;
  background: #07070b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.neon-sign-display {
  font-size: 32px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.photo-info {
  padding: 18px 20px;
}

.photo-category {
  font-size: 11px;
  color: var(--neon-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.photo-title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.gallery-bottom-cta {
  text-align: center;
}

/* ===================================================
   FREE MOCKUP & LOGO QUOTE FORM
   =================================================== */
.free-quote-section {
  padding: 80px 0;
  background: #0a0a0f;
}

.quote-split-card {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.quote-title {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.2;
}

.quote-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.quote-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #e0e0ea;
}

.benefit-item i {
  color: var(--neon-green);
  font-size: 16px;
  margin-top: 2px;
}

.bespoke-quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
}

.highlight-budget {
  color: var(--neon-pink);
  font-weight: 700;
}

.neon-input, .bespoke-quote-form .neon-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: all var(--tr-fast);
}

.neon-input:focus, .bespoke-quote-form .neon-textarea:focus, .neon-select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

select,
.neon-select {
  color-scheme: dark;
}

.neon-select {
  background-color: #121218;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300F0FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 38px 12px 16px;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neon-select optgroup,
select optgroup {
  background-color: #121218 !important;
  color: #00f0ff !important;
  font-weight: 700 !important;
  font-size: 12px;
  padding: 8px 12px;
  font-style: normal;
}

.neon-select option,
select option {
  background-color: #161622 !important;
  color: #ffffff !important;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
}

.neon-select option:checked,
.neon-select option:hover,
select option:checked {
  background-color: #242436 !important;
  color: #00F0FF !important;
}

body.creator-page-body .neon-select,
body.creator-page-body select#power-plug-select,
select.creator-light-select {
  background-color: #ffffff !important;
  color: #0f172a !important;
  color-scheme: light !important;
}

body.creator-page-body .neon-select option,
body.creator-page-body select#power-plug-select option,
select.creator-light-select option {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

body.creator-page-body .neon-select option:checked,
body.creator-page-body select#power-plug-select option:checked,
select.creator-light-select option:checked {
  background-color: #f1f5f9 !important;
  color: #ff2e93 !important;
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.file-drop-zone {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--tr-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.file-drop-zone:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 46, 147, 0.03);
}

.file-drop-zone i {
  font-size: 28px;
  color: var(--neon-cyan);
}

.file-drop-zone span {
  font-size: 13px;
  color: #fff;
}

.file-drop-zone small {
  font-size: 11px;
  color: var(--text-muted);
}

.file-input-hidden {
  display: none;
}

/* ===================================================
   BRANDS MARQUEE TRACK
   =================================================== */
.brand-marquee-section {
  padding: 40px 0;
  background: #08080c;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-label {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 24px;
}

.marquee-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--tr-fast);
}

.brand-item:hover {
  color: #fff;
}

/* ===================================================
   CUSTOMER REVIEWS SECTION
   =================================================== */
.reviews-section {
  padding: 80px 0;
}

.testimonials-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--neon-amber);
  margin-bottom: 14px;
  font-size: 14px;
}

.review-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.review-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 46, 147, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer-avatar.reviewer-avatar-blank {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  font-size: 18px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.reviewer-tag {
  font-size: 11px;
  color: var(--neon-green);
  display: block;
}

/* Review Scorecard Wrap */
.review-scorecard-wrap {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(20, 20, 30, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 184, 0, 0.08);
}

.scorecard-big-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 30px;
}

.big-score {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.big-stars {
  color: var(--neon-amber);
  font-size: 20px;
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.score-caption {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
}

.scorecard-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.row-star-label {
  width: 55px;
  font-weight: 500;
}

.row-progress-bar {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-amber), #ff8800);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.bar-fill[style*="width: 0%"],
.bar-fill[style*="width:0%"],
.bar-fill[style*="width: 0"],
.bar-fill.bar-zero {
  display: none !important;
  width: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.row-percent {
  width: 35px;
  text-align: right;
  font-weight: 600;
  color: #ffffff;
}

/* Star Rating Picker */
.star-rating-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.star-btn {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform var(--tr-fast), color var(--tr-fast), text-shadow var(--tr-fast);
}

.star-btn:hover {
  transform: scale(1.2);
  color: var(--neon-amber);
}

.star-btn.active {
  color: var(--neon-amber);
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.7);
}

.rating-text-status {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .review-scorecard-wrap {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 25px;
  }
  
  .scorecard-big-rating {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 20px;
  }
}

/* ===================================================
   FAQ ACCORDION SECTION
   =================================================== */
.faq-section {
  padding: 70px 0 90px;
  background: #0a0a0f;
}

.faq-container {
  max-width: 840px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--tr-fast);
}

.faq-item.active {
  border-color: rgba(255, 46, 147, 0.4);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--neon-pink);
  transition: transform var(--tr-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================
   STANDALONE CREATOR PAGE HEADER
   =================================================== */
.creator-standalone-main {
  padding: 40px 0 60px;
}

.creator-page-header {
  text-align: center;
  margin-bottom: 20px;
}

.creator-page-title {
  font-size: 38px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-weight: 800;
  color: #fff;
  margin: 10px 0;
  line-height: 1.25;
  text-transform: uppercase;
  overflow: visible;
}

.creator-page-title .creator-title-line {
  display: block;
  line-height: 1.25;
  padding-bottom: 4px;
  overflow: visible;
}

.creator-page-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ===================================================
   SITE FOOTER (REDESIGNED 5-COLUMN LUXURY EXPERIENCE)
   =================================================== */
.site-footer.footer-redesign {
  background: linear-gradient(180deg, #09090e 0%, #030305 100%);
  border-top: 1px solid var(--glass-border);
  padding: 65px 0 35px;
  position: relative;
  z-index: 10;
}

/* VIP Newsletter Bar */
.footer-vip-banner {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.09) 0%, rgba(0, 240, 255, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.vip-banner-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vip-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-pink), #9d00ff);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.5);
  flex-shrink: 0;
}

.vip-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.vip-sub {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.vip-form {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
}

.vip-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.vip-input-wrap:focus-within {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.35);
}

.vip-input-icon {
  color: var(--neon-cyan);
  font-size: 14px;
  margin-right: 10px;
}

.vip-email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
}

.vip-email-input::placeholder {
  color: #7b7f8e;
}

.vip-submit-btn {
  background: linear-gradient(135deg, var(--neon-pink), #a855f7);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

.vip-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 46, 147, 0.6);
}

/* Main 5-Column Navigation Grid */
.footer-redesign-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* Column 1: Brand */
.footer-col-brand {
  padding-right: 10px;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 16px;
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.footer-brand-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.4)) drop-shadow(0 0 25px rgba(255, 46, 147, 0.35));
}

.footer-emblem-img {
  width: 170px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.25));
}

.footer-about-text {
  font-size: 13.5px;
  color: #a0a4b0;
  line-height: 1.6;
  margin: 0 0 18px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.contact-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cfd3dc;
  text-decoration: none;
  transition: all 0.25s ease;
}

a.contact-mini-item {
  cursor: pointer;
}

a.contact-mini-item:hover {
  color: #ffffff;
  transform: translateX(3px);
}

a.contact-mini-item:hover span {
  color: var(--neon-cyan);
}

a.contact-mini-item:hover i {
  color: var(--neon-pink);
  transform: scale(1.15);
}

.contact-mini-item i {
  color: var(--neon-cyan);
  font-size: 13px;
  width: 16px;
  text-align: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--tr-fast);
}

.social-bubble:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.6);
}

/* Nav Columns */
.footer-col-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.heading-accent {
  width: 4px;
  height: 14px;
  background: var(--neon-pink);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-pink);
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list li {
  margin: 0;
  padding: 0;
}

.footer-link-list a {
  color: #9ca3af;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr-fast), padding-left var(--tr-fast), text-shadow var(--tr-fast);
}

.footer-link-list a:hover {
  color: #ffffff;
  padding-left: 4px;
  text-shadow: 0 0 10px rgba(255, 46, 147, 0.6);
}

.footer-link-list .link-highlight {
  color: var(--neon-pink);
  font-weight: 600;
}

.footer-link-list .link-highlight:hover {
  color: #fff;
}

/* Footer Bottom Bar */
.footer-redesign-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

.bottom-copyright p {
  color: #7b7f8e;
  margin: 0;
}

.bottom-copyright strong {
  color: #d1d5db;
}

.bottom-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-size: 12.5px;
  font-weight: 500;
}

.bottom-security-badge i {
  font-size: 12px;
}

.bottom-payment-cluster {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  color: #7b7f8e;
}

.bottom-payment-cluster span {
  display: inline-flex;
  transition: color var(--tr-fast), transform var(--tr-fast);
}

.bottom-payment-cluster span:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Queries for Redesigned Footer */
@media (max-width: 1200px) {
  .footer-redesign-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer-col-brand {
    grid-column: span 3;
    max-width: 550px;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .footer-vip-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  
  .vip-form {
    max-width: 100%;
  }
  
  .footer-redesign-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-redesign-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-col-brand {
    grid-column: span 1;
  }
  
  .vip-input-wrap {
    flex-direction: column;
    border-radius: 14px;
    padding: 12px;
    gap: 10px;
  }
  
  .vip-submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-redesign-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* ===================================================
   RESPONSIVE LAYOUT (GLOBAL)
   =================================================== */
@media (max-width: 1024px) {
  .trust-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .gallery-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quote-split-card {
    grid-template-columns: 1fr;
    padding: 35px;
  }
  
  .testimonials-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mid-size Desktop adjustments (1081px - 1280px) */
@media (min-width: 1081px) and (max-width: 1280px) {
  .nav-inner {
    gap: 12px;
  }
  
  .nav-links {
    gap: 14px;
  }
  
  .nav-link {
    font-size: 13px;
    padding: 4px 0;
  }
  
  .btn-nav-cta {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .nav-logo {
    font-size: 19px;
  }
}

@media (max-width: 1080px) {
  .top-announcement-bar {
    font-size: 11px;
    padding: 6px 0;
  }
  
  .announcement-right {
    display: none;
  }
  
  .announcement-inner {
    justify-content: center;
  }
  
  .nav-inner {
    height: 68px;
  }
  
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 36px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 46, 147, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--tr-normal), opacity var(--tr-normal);
    z-index: 999;
  }
  
  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-link {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .currency-selector {
    display: none;
  }

  .nav-actions .btn-nav-cart {
    padding: 7px 11px;
  }

  .nav-actions .btn-nav-cart .nav-cart-label {
    display: none;
  }

  .nav-actions .btn-nav-login {
    display: none;
  }

  .mobile-nav-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-auth-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .mobile-btn-login,
  .mobile-btn-signup {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--tr-fast);
  }

  .mobile-btn-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .mobile-btn-signup {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.35);
  }

  .mobile-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0 8px;
  }

  .mobile-user-info {
    display: flex;
    flex-direction: column;
  }

  .mobile-user-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
  }

  .mobile-user-email {
    color: var(--text-secondary);
    font-size: 12px;
  }

  .mobile-auth-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    color: #d1d5db;
  }

  .mobile-auth-link.admin {
    color: var(--neon-pink);
    border: 1px solid rgba(255, 46, 147, 0.2);
    background: rgba(255, 46, 147, 0.06);
  }

  .mobile-auth-link.logout {
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.06);
  }

  /* Compact nav actions on mobile and tablets */
  .nav-actions .btn-nav-admin span {
    display: none;
  }

  .nav-actions .btn-nav-admin {
    padding: 7px 10px;
  }

  @media (max-width: 640px) {
    .nav-user-name,
    .nav-user-chevron {
      display: none;
    }

    .nav-user-btn {
      padding: 3px;
    }

    .nav-user-menu {
      right: -10px;
      min-width: 210px;
      max-width: calc(100vw - 32px);
    }
  }
  
  .title-primary {
    font-size: 32px;
  }
  
  .trust-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ===================================================
   BUSINESS NEON SIGNS GALLERY PAGE
   =================================================== */
.business-page-main {
  position: relative;
  overflow: hidden;
}

/* Business Hero */
.business-hero-section {
  position: relative;
  padding: 60px 0 50px;
  background: radial-gradient(ellipse at 50% 20%, rgba(20, 15, 35, 0.8) 0%, var(--bg-root) 80%);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.business-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.business-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.business-breadcrumbs a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.business-breadcrumbs a:hover {
  color: var(--neon-pink);
}

.crumb-sep {
  color: rgba(255, 255, 255, 0.2);
}

.crumb-current {
  color: #fff;
  font-weight: 600;
}

.business-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin: 18px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.business-hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 auto 30px;
  max-width: 760px;
}

.business-hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.business-perks-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
}

.business-perk-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #d1d5db;
  font-weight: 500;
}

.business-perk-item i {
  color: var(--neon-cyan);
  font-size: 15px;
}

/* Gallery Section & Filter Tabs */
.business-gallery-section {
  padding: 80px 0 60px;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b4be;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-tab-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.2), rgba(0, 240, 255, 0.15));
  border-color: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.35);
}

.filter-count {
  font-size: 11px;
  opacity: 0.7;
}

/* Grid of 27 Cards */
.business-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.business-sign-card {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-normal), box-shadow var(--tr-normal), border-color var(--tr-normal);
}

.business-sign-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.2);
}

.card-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.card-sign-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.business-sign-card:hover .card-sign-img {
  transform: scale(1.08);
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr-fast);
}

.business-sign-card:hover .card-hover-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(10px);
  transition: transform var(--tr-fast), background var(--tr-fast);
}

.business-sign-card:hover .btn-quick-view {
  transform: translateY(0);
}

.card-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 16, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--neon-cyan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.card-meta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.35;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-card-order {
  flex-grow: 1;
  background: rgba(255, 46, 147, 0.1);
  border: 1px solid rgba(255, 46, 147, 0.3);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--tr-fast);
}

.btn-card-order:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 46, 147, 0.5);
  transform: translateY(-2px);
}

.btn-card-quote {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.btn-card-quote:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* Callout Banner (Strict Dark Theme) */
.gallery-bottom-callout {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.12) 0%, rgba(0, 240, 255, 0.08) 100%) !important;
  background-color: #12121a !important;
  border: 1px solid rgba(255, 46, 147, 0.3) !important;
  border-radius: 20px !important;
  padding: 40px 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  margin-top: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.callout-badge {
  color: var(--neon-pink) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.callout-title {
  font-family: var(--font-display) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 8px 0 !important;
}

.callout-desc {
  color: var(--text-secondary) !important;
  font-size: 14.5px !important;
  max-width: 650px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Business Features Grid */
.business-benefits-section {
  padding: 70px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.business-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 24px;
  border-radius: 14px;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 147, 0.3);
}

.feature-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 46, 147, 0.12);
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Quote Section */
.business-quote-section {
  padding: 80px 0;
}

/* FAQ Section */
.business-faq-section {
  padding: 60px 0 80px;
  background: var(--surface-1);
  border-top: 1px solid var(--glass-border);
}

/* Lightbox Modal */
.business-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.business-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 8, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  background: #101016;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--tr-fast);
}

.lightbox-close-btn:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
}

.lightbox-image-wrap {
  width: 100%;
  max-height: 500px;
  background: #050508;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.lightbox-info-bar {
  padding: 20px 24px;
  background: #14141c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--glass-border);
}

.lightbox-tag {
  color: var(--neon-cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.lightbox-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* Responsive Media Queries for Business Page */
@media (max-width: 1024px) {
  .business-signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .business-perks-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .business-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-bottom-callout {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .business-hero-title {
    font-size: 30px;
  }
  
  .business-signs-grid {
    grid-template-columns: 1fr;
  }
  
  .business-perks-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .business-perk-item {
    justify-content: flex-start;
  }
  
  .business-features-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-info-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lightbox-actions {
    width: 100%;
  }
  
  .lightbox-actions a {
    flex: 1;
    text-align: center;
  }
}

/* ===================================================
   HOMEPAGE COLLECTIONS HUB
   =================================================== */
.collections-hub-section {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--glass-border);
}

.hub-header {
  text-align: center;
  margin-bottom: 35px;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hub-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.hub-sub {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.collections-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 45px;
}

.collection-hub-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all var(--tr-fast);
}

.collection-hub-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--neon-pink);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 46, 147, 0.25);
}

.hub-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 46, 147, 0.12);
  border: 1px solid rgba(255, 46, 147, 0.3);
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--tr-fast);
}

.collection-hub-card:hover .hub-card-icon {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 12px var(--neon-pink);
}

.hub-card-info {
  flex-grow: 1;
  min-width: 0;
}

.hub-card-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hub-card-count {
  font-size: 11.5px;
  color: var(--text-secondary);
  display: block;
}

.hub-card-arrow {
  color: var(--text-muted);
  font-size: 12px;
  transition: transform var(--tr-fast), color var(--tr-fast);
}

.collection-hub-card:hover .hub-card-arrow {
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 1120px) {
  .collections-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .collections-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   ABOUT US PAGE — BRAND MANIFESTO STYLES
   ----------------------------------------- */
.about-page-main {
  background: #0a0a0c;
  color: #f0f0f5;
  overflow-x: hidden;
}

/* 1. Hero Section */
.about-manifesto-hero {
  position: relative;
  padding: 105px 0 35px;
  background: radial-gradient(ellipse at 50% 12%, rgba(255, 46, 147, 0.14) 0%, rgba(10, 10, 12, 0.98) 72%);
  overflow: hidden;
  text-align: center;
}

.about-manifesto-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.manifesto-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 12px 0 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.manifesto-lead-statement {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.8vw, 27px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin: 0 auto 10px;
  max-width: 840px;
}

.manifesto-sub-statement {
  font-size: clamp(15.5px, 2vw, 18.5px);
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 800px;
}

.manifesto-ideas-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
  max-width: 900px;
}

.idea-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(22, 22, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.idea-chip i {
  color: var(--neon-pink);
  font-size: 14px;
}

.idea-chip:hover {
  transform: translateY(-2px);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.35);
}

.manifesto-hero-conclusion {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 15.5px;
  color: #e2e8f0;
  line-height: 1.65;
}

.manifesto-art-badge {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.manifesto-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Glowing Divider */
.manifesto-glow-divider {
  position: relative;
  height: 1px;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(0, 240, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
}

/* Sections General */
.manifesto-section {
  padding: 38px 0;
  position: relative;
}

.manifesto-centered-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.manifesto-section-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.manifesto-section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

.manifesto-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.manifesto-split-layout.align-start {
  align-items: flex-start;
}

.manifesto-text-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manifesto-body-para {
  font-size: 15.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

.manifesto-body-para.lead-para {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.55;
}

/* Callout Quote */
.manifesto-callout-quote {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.04);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 0 14px 14px 0;
  margin-top: 6px;
}

.manifesto-callout-quote .quote-icon {
  color: var(--neon-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.manifesto-callout-quote .quote-text {
  font-size: 15px;
  line-height: 1.65;
  color: #e2e8f0;
}

.manifesto-callout-quote .quote-text strong {
  color: #ffffff;
  display: block;
  margin-top: 4px;
}

/* Feature Card in Section 2 */
.manifesto-feature-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.manifesto-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
}

.card-neon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 46, 147, 0.12);
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(255, 46, 147, 0.3);
}

.manifesto-feature-card .card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.manifesto-feature-card .card-text {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 16px;
}

.card-spec-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.card-spec-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.card-spec-tags span i {
  color: var(--neon-green, #39FF14);
}

/* 3. Exceptional Grid */
.exceptional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.exceptional-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.exceptional-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.exceptional-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 46, 147, 0.1);
  color: var(--neon-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.exceptional-icon.icon-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
}

.exceptional-icon.icon-amber {
  background: rgba(255, 184, 0, 0.1);
  color: var(--neon-amber);
}

.exceptional-icon.icon-green {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green, #39FF14);
}

.exceptional-icon.icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}

.exceptional-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}

.exceptional-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

.exceptional-card-highlight {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.1), rgba(0, 240, 255, 0.08));
  border-color: rgba(255, 46, 147, 0.35);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.15);
}

.exceptional-card-highlight .exceptional-content h4 {
  color: var(--neon-pink);
}

.exceptional-card-highlight .exceptional-content p {
  color: #ffffff;
  font-weight: 600;
}

/* 4. Vision Banner Card */
.vision-banner-card {
  background: radial-gradient(ellipse at 50% 20%, rgba(0, 240, 255, 0.12) 0%, rgba(22, 22, 31, 0.95) 75%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 36px rgba(0, 240, 255, 0.1);
}

.vision-inner {
  max-width: 820px;
  margin: 0 auto;
}

.vision-grand-question {
  margin: 18px auto 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.6);
  letter-spacing: -0.01em;
}

.vision-cta-wrap {
  margin-top: 14px;
}

/* 5. Tenets Row */
.tenets-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.tenet-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
}

.tenet-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.tenet-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
}

.tenet-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}

.details-philosophy-box {
  background: rgba(22, 22, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 28px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.details-philosophy-box p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.details-punchline {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.45;
}

/* 6. Transform List & Visual Mock in Section 6 */
.transform-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 10px;
}

.transform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 500;
}

.transform-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
  flex-shrink: 0;
}

.more-sign-conclusion {
  margin-top: 10px;
}

.manifesto-accent-quote {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--neon-pink);
  text-shadow: 0 0 14px rgba(255, 46, 147, 0.4);
  line-height: 1.45;
  margin-top: 6px;
}

.atmosphere-visual-card {
  background: radial-gradient(circle at center, #1b1622 0%, #0d0d12 80%);
  border: 1px solid rgba(255, 46, 147, 0.25);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 0 36px rgba(255, 46, 147, 0.15);
  position: relative;
  overflow: hidden;
}

.visual-sign-mock {
  padding: 20px 14px;
}

.glowing-word {
  font-family: 'Pacifico', cursive;
  font-size: clamp(26px, 3.6vw, 40px);
  color: #ffffff;
  text-shadow: 0 0 5px #fff, 0 0 12px var(--neon-pink), 0 0 25px var(--neon-pink), 0 0 45px var(--neon-pink);
}

.visual-card-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.badge-ambient {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 999px;
}

/* 7. People & Brands Card */
.people-brands-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 34px 32px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.people-brands-body {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ambition-highlight-banner {
  margin-top: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.12), rgba(0, 240, 255, 0.1));
  border: 1px solid rgba(255, 46, 147, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.45;
}

.ambition-highlight-banner i {
  color: var(--neon-pink);
  font-size: 20px;
  flex-shrink: 0;
}

/* 8. Creator Identity Section */
.creator-lead-punch {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 2px 0 8px;
}

.creator-pillars-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-step-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-bullet {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.pillar-text {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
}

.creator-climax-pill {
  margin-top: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--neon-pink), #A855F7);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.4);
}

/* 9. Remembered Card */
.remembered-card {
  background: var(--bg-surface-1, #16161f);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 34px 32px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.remembered-prose {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.remembered-line-lead {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.remembered-para {
  font-size: 15.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

.remembered-distinction {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.distinction-item.not-this {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  opacity: 0.7;
}

.distinction-arrow {
  color: var(--neon-cyan);
  font-size: 15px;
}

.distinction-item.is-this {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

/* 10. Final Manifesto CTA Section */
.manifesto-final-cta-section {
  position: relative;
  padding: 42px 0 48px;
  background: radial-gradient(ellipse at 50% 80%, rgba(255, 46, 147, 0.15) 0%, rgba(10, 10, 12, 0.98) 75%);
  overflow: hidden;
}

.final-manifesto-card {
  background: rgba(22, 22, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.final-manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 8px 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.final-manifesto-title .neon-text-glow {
  display: inline-block;
  max-width: 100%;
}

.final-manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.manifesto-line-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #e2e8f0;
}

.manifesto-line-item i {
  color: var(--neon-cyan);
  font-size: 14px;
}

.final-motto-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.motto-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.motto-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--neon-cyan);
}

.motto-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.motto-box-glow {
  background: rgba(255, 46, 147, 0.12);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.3);
}

.motto-box-glow .motto-text {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.motto-divider {
  color: #64748b;
  font-size: 13px;
}

.final-actions-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .manifesto-split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .exceptional-grid,
  .tenets-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-manifesto-hero {
    padding: 95px 0 25px;
  }
  .manifesto-section {
    padding: 26px 0;
  }
  .exceptional-grid,
  .tenets-row {
    grid-template-columns: 1fr;
  }
  .vision-banner-card,
  .final-manifesto-card,
  .people-brands-card,
  .remembered-card {
    padding: 24px 16px;
  }
  .card-spec-tags {
    grid-template-columns: 1fr;
  }
  .final-motto-strip {
    flex-direction: column;
    gap: 8px;
  }
  .motto-divider {
    display: none;
  }
}

/* -----------------------------------------
   WARRANTY POLICY PAGE STYLES
   ----------------------------------------- */
.warranty-hero-section {
  position: relative;
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 10%, rgba(0, 240, 255, 0.12) 0%, rgba(10, 10, 12, 0.98) 70%);
  overflow: hidden;
  text-align: center;
}

.warranty-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin: 12px auto 20px;
}

.warranty-nav-sticky {
  position: sticky;
  top: 75px;
  z-index: 10;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  margin-bottom: 40px;
}

.warranty-nav-links {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  padding: 4px 0;
}

.warranty-nav-links::-webkit-scrollbar {
  display: none;
}

.warranty-nav-btn {
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--tr-fast);
}

.warranty-nav-btn:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: var(--neon-cyan);
  color: #fff;
}

.warranty-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.warranty-section-block {
  margin-bottom: 60px;
  scroll-margin-top: 150px;
}

.warranty-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.warranty-block-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.warranty-block-header i {
  color: var(--neon-cyan);
  font-size: 22px;
}

.warranty-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.warranty-product-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.warranty-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.warranty-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.warranty-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.warranty-badge-2yr {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.15), rgba(0, 240, 255, 0.15));
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.warranty-card-body {
  font-size: 13.5px;
  color: #c9cdd4;
  line-height: 1.6;
}

.warranty-card-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warranty-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.warranty-card-body li i {
  color: var(--neon-cyan);
  font-size: 13px;
  margin-top: 3px;
}

.warranty-alert-box {
  background: rgba(255, 184, 0, 0.06);
  border-left: 4px solid var(--neon-amber);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.warranty-alert-box.alert-danger {
  background: rgba(255, 49, 49, 0.06);
  border-left-color: #ff3131;
}

.warranty-alert-box.alert-cyan {
  background: rgba(0, 240, 255, 0.05);
  border-left-color: var(--neon-cyan);
}

.warranty-alert-box h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warranty-alert-box p,
.warranty-alert-box li {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
}

.warranty-alert-box ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.warranty-steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.warranty-step-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}

.warranty-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.warranty-step-card h4 {
  font-size: 16px;
  color: #fff;
  margin: 0 0 8px;
}

.warranty-step-card p {
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.warranty-contact-card {
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.95), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
  margin-top: 50px;
}

.warranty-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 12px 26px;
  border-radius: 9999px;
  margin: 20px 0;
  text-decoration: none;
  transition: all var(--tr-fast);
}

.warranty-contact-email:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

@media (max-width: 768px) {
  .warranty-steps-list {
    grid-template-columns: 1fr;
  }
  .warranty-hero-section {
    padding: 120px 0 40px;
  }
  .warranty-contact-card {
    padding: 28px 20px;
  }
}

/* -----------------------------------------
   SHIPPING POLICY PAGE STYLES
   ----------------------------------------- */
.shipping-hero-section {
  position: relative;
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 10%, rgba(255, 184, 0, 0.12) 0%, rgba(10, 10, 12, 0.98) 70%);
  overflow: hidden;
  text-align: center;
}

.shipping-stat-banner {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-card);
}

.shipping-stat-col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.shipping-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.1);
  color: var(--neon-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.shipping-stat-icon.icon-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
}

.shipping-stat-icon.icon-green {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
}

.shipping-stat-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.shipping-stat-info p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}

.shipping-timeline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.shipping-timeline-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.shipping-timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.shipping-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.shipping-timeline-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.shipping-tag-badge {
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--neon-amber);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.shipping-exceptions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.shipping-exception-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.shipping-exception-item i {
  color: var(--neon-amber);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.shipping-exception-item h4 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 6px;
}

.shipping-exception-item p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .shipping-stat-banner {
    grid-template-columns: 1fr;
  }
  .shipping-exceptions-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   CLEAN POLICY DOCUMENT STYLES
   ----------------------------------------- */
.policy-page-main {
  background: var(--bg-root);
  color: #c9cdd4;
  min-height: 100vh;
}

.policy-header-section {
  padding: 130px 0 40px;
  background: radial-gradient(ellipse at 50% 10%, rgba(255, 46, 147, 0.08) 0%, rgba(10, 10, 12, 0.98) 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-page-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.policy-subtitle {
  font-size: 15px;
  color: var(--neon-cyan);
  font-weight: 500;
  margin: 0;
}

.policy-body-container {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.policy-content-card {
  background: var(--bg-surface-1, #12121a);
  border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-card, 0 10px 30px rgba(0, 0, 0, 0.5));
}

.policy-content-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}

.policy-content-card h2:first-of-type {
  margin-top: 0;
}

.policy-content-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #e5e7eb;
  margin: 20px 0 8px;
}

.policy-content-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 8px;
}

.policy-content-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #c9cdd4;
  margin: 0 0 14px;
}

.policy-lead {
  font-size: 16px !important;
  color: #e5e7eb !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
}

.policy-content-card ul {
  padding-left: 22px;
  margin: 0 0 20px;
}

.policy-content-card li {
  font-size: 14.5px;
  line-height: 1.8;
  color: #c9cdd4;
  margin-bottom: 6px;
}

.policy-content-card strong {
  color: #fff;
}

.policy-content-card a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tr-fast);
}

.policy-content-card a:hover {
  color: var(--neon-pink);
}

.policy-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 36px 0;
}

.policy-item-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 14px 0;
}

.policy-item-block h3 {
  margin-top: 0;
}

.policy-item-block p,
.policy-item-block ul {
  margin-bottom: 0;
}

.policy-callout-box {
  background: rgba(0, 240, 255, 0.04);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.policy-callout-box h4 {
  margin-top: 0;
  color: var(--neon-cyan);
}

.policy-callout-box p,
.policy-callout-box ul {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .policy-content-card {
    padding: 26px 18px;
  }
  .policy-header-section {
    padding: 110px 0 30px;
  }
}

/* -----------------------------------------
   CONTACT CUSTOMER CARE PAGE STYLES
   ----------------------------------------- */
.contact-hero-section {
  position: relative;
  padding: 140px 0 50px;
  background: radial-gradient(ellipse at 50% 10%, rgba(0, 240, 255, 0.1) 0%, rgba(10, 10, 12, 0.98) 70%);
  text-align: center;
  overflow: hidden;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-channel-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-channel-icon.icon-pink {
  background: rgba(255, 46, 147, 0.1);
  color: var(--neon-pink);
}

.contact-channel-icon.icon-amber {
  background: rgba(255, 184, 0, 0.1);
  color: var(--neon-amber);
}

.contact-channel-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.contact-channel-card p {
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0 0 14px;
}

.contact-channel-link {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr-fast);
}

.contact-channel-link:hover {
  color: var(--neon-pink);
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  margin-bottom: 70px;
}

.contact-form-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.contact-form-header p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #d1d5db;
}

.contact-form-group label span {
  color: var(--neon-pink);
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.contact-select {
  color-scheme: dark;
  background-color: #161622;
}

.contact-select option {
  background: #161622 !important;
  color: #ffffff !important;
  padding: 8px;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--neon-pink), #a855f7);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 46, 147, 0.35);
  transition: all var(--tr-fast);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 46, 147, 0.5);
}

.contact-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-quick-links-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 28px;
}

.contact-quick-links-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.contact-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #d1d5db;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--tr-fast);
}

.contact-links-list a:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  color: #fff;
  transform: translateX(3px);
}

.contact-success-msg {
  display: none;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
  .contact-main-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-hero-section {
    padding: 120px 0 40px;
  }
}

/* ===================================================
   5-STEP LOGO & ARTWORK QUOTE WIZARD (CUSTOM NEON FLOW)
   =================================================== */
.wizard-section-wrap {
  padding: 40px 20px 90px;
  background: #08080c;
}

.wizard-card-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 44px 40px;
  color: #1a1a24;
  position: relative;
  font-family: var(--font-body);
}

.wizard-header-lockup {
  margin-bottom: 24px;
}

.wizard-main-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.wizard-progress-track {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff2e93, #ff4081);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}

.wizard-step-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-top: 10px;
}

.wizard-step-pane {
  display: none;
  animation: wizardFadeIn 0.3s ease;
}

.wizard-step-pane.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-lead-desc {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
  margin: 16px 0 24px 0;
}

.wizard-subheading {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 16px 0;
}

/* Step 1: Upload Dropzone */
.wizard-dropzone {
  border: 1.5px solid #f472b6;
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.wizard-dropzone:hover,
.wizard-dropzone.dragover {
  border-color: #ff2e93;
  background: #fff5f9;
  box-shadow: 0 0 0 4px rgba(255, 46, 147, 0.1);
}

.wizard-upload-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  transition: transform 0.2s;
}

.wizard-dropzone:hover .wizard-upload-icon-circle {
  transform: scale(1.08);
}

.wizard-dropzone-title {
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 6px;
}

.wizard-dropzone-title .pink-accent {
  color: #ff2e93;
}

.wizard-dropzone-meta {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.wizard-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.wizard-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12.5px;
  color: #1e293b;
  max-width: 240px;
}

.wizard-file-chip-thumb {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
}

.wizard-file-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wizard-file-remove-btn {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: background 0.2s;
}

.wizard-file-remove-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.wizard-bullets-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wizard-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #334155;
}

.wizard-bullet-item::before {
  content: '•';
  color: #64748b;
  font-size: 18px;
  line-height: 1;
}

.wizard-bullet-item a {
  color: #4f52f5;
  text-decoration: underline;
  font-weight: 500;
}

/* Step 2: Environment Selection */
.wizard-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 10px;
}

.wizard-option-card {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.2s ease;
  user-select: none;
}

.wizard-option-card:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.wizard-option-card.active {
  border-color: #ff2e93;
  color: #ff2e93;
  background: #fff5f9;
  box-shadow: 0 0 0 3px rgba(255, 46, 147, 0.15);
}

/* Step 3: Requirements & Size */
.wizard-textarea-label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.wizard-textarea {
  width: 100%;
  min-height: 130px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #1e293b;
  font-family: inherit;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wizard-textarea:focus {
  border-color: #4f52f5;
  box-shadow: 0 0 0 3px rgba(79, 82, 245, 0.15);
}

.wizard-size-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 24px 0 6px 0;
}

.wizard-size-subtext {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.wizard-size-group {
  display: flex;
  max-width: 270px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wizard-size-group:focus-within {
  border-color: #4f52f5;
  box-shadow: 0 0 0 3px rgba(79, 82, 245, 0.15);
}

.wizard-size-input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  outline: none;
  width: 100%;
}

.wizard-size-select {
  border: none;
  border-left: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  outline: none;
  cursor: pointer;
}

/* Step 4: Budget & Currency & Gallery */
.wizard-currency-row {
  display: flex;
  gap: 24px;
  margin: 18px 0 28px 0;
}

.wizard-currency-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
}

.wizard-currency-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #ff2e93;
  cursor: pointer;
}

.wizard-slider-wrap {
  position: relative;
  margin: 36px 0 24px 0;
}

.wizard-slider-bubble {
  position: absolute;
  top: -34px;
  transform: translateX(-50%);
  background: #4f52f5;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(79, 82, 245, 0.35);
  pointer-events: none;
  white-space: nowrap;
}

.wizard-range-slider {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  accent-color: #4f52f5;
  margin: 0;
}

.wizard-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.wizard-tick-pill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-tick-pill:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.wizard-gallery-title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 26px 0 12px 0;
}

.wizard-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}

.wizard-gallery-item {
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.wizard-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wizard-gallery-item:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Step 5: Contact Details */
.wizard-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.wizard-input-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wizard-input-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
}

.wizard-input-field input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wizard-input-field input:focus {
  border-color: #4f52f5;
  box-shadow: 0 0 0 3px rgba(79, 82, 245, 0.15);
}

.wizard-input-subtext {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0 0;
}

.wizard-phone-wrap {
  display: flex;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wizard-phone-wrap:focus-within {
  border-color: #4f52f5;
  box-shadow: 0 0 0 3px rgba(79, 82, 245, 0.15);
}

.wizard-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  padding: 0 12px;
  border-right: 1px solid #e2e8f0;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  user-select: none;
}

.wizard-phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  flex: 1;
}

.wizard-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff2e93, #ff4081);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 999px;
  padding: 16px 42px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 46, 147, 0.4);
  transition: all 0.25s ease;
  margin: 28px auto 0;
}

.wizard-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 46, 147, 0.55);
}

/* Wizard Navigation Bar */
.wizard-nav-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.wizard-btn-back {
  background: #ffffff;
  border: 1.5px solid #4f52f5;
  color: #4f52f5;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wizard-btn-back:hover {
  background: #f4f5ff;
}

.wizard-btn-next {
  background: #4f52f5;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 32px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(79, 82, 245, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wizard-btn-next:hover {
  background: #4345db;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .wizard-card-wrapper {
    padding: 28px 18px;
  }
  .wizard-options-grid {
    grid-template-columns: 1fr;
  }
  .wizard-inputs-grid {
    grid-template-columns: 1fr;
  }
  .wizard-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .wizard-gallery-strip .wizard-gallery-item:nth-child(n+4) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *:not(.hero-editorial-trust-strip):not(.hero-trust-item):not(.trust-icon):not(.trust-text) {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===================================================
   EDITORIAL LUXURY ARCHITECTURAL HOMEPAGE STYLING
   (Matches media_1789628794296.png Reference Mockup)
   =================================================== */

:root {
  --font-editorial: 'Cinzel', 'Playfair Display', Georgia, serif;
}

/* 1. HERO EDITORIAL SECTION */
.hero-editorial-section {
  position: relative;
  min-height: 680px;
  max-height: 850px;
  display: flex;
  align-items: center;
  background-color: #181920;
  background-image: url('../Images/hero-cover-v2.jpg');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 14, 0.72) 0%, rgba(8, 9, 14, 0.48) 36%, rgba(8, 9, 14, 0.12) 54%, transparent 68%, transparent 100%);
  pointer-events: none;
}

.hero-editorial-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-editorial-content {
  max-width: 1050px;
}

.hero-editorial-title {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
  margin: 0 0 22px;
  max-width: 820px;
  text-transform: uppercase;
}

.hero-editorial-title .hero-title-line {
  display: block;
}

.hero-editorial-sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 32px;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-sub-line {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  color: #e5e7eb;
  margin: 0;
}

.hero-editorial-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0c0d12 !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn-editorial-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-editorial-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.btn-editorial-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* SINGLE-LINE 4-COLOR GLOWING TRUST STRIP WITH CIRCULAR BADGES & BREATHING NEON PULSE */
.hero-editorial-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  width: max-content;
  max-width: 100%;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.hero-trust-item:hover {
  transform: translateY(-2px);
}

.hero-trust-item .trust-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(10, 12, 18, 0.65);
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-trust-item:hover .trust-icon-circle {
  transform: scale(1.08);
}

.hero-trust-item .trust-icon {
  font-size: 19px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-trust-item:hover .trust-icon {
  transform: scale(1.15);
  animation-play-state: paused !important;
}

.hero-trust-item .trust-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
  display: inline-block;
  color: #ffffff;
  transition: text-shadow 0.25s ease;
}

.hero-trust-item:hover .trust-text {
  animation-play-state: paused !important;
}

/* 1. CYAN GLOW (Free Neon Designs) */
.hero-trust-item.glow-cyan .trust-icon-circle {
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4), inset 0 0 8px rgba(0, 240, 255, 0.2);
  animation: neonBreatheCyanCircle 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-cyan:hover .trust-icon-circle {
  border-color: #00f0ff !important;
  box-shadow: 0 0 4px #ffffff, 0 0 16px #00f0ff, 0 0 30px rgba(0, 240, 255, 0.9), inset 0 0 12px rgba(0, 240, 255, 0.5) !important;
}
.hero-trust-item.glow-cyan .trust-icon {
  color: #00f0ff;
  animation: neonBreatheCyanIcon 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-cyan:hover .trust-icon {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 9px #00f0ff) drop-shadow(0 0 20px rgba(0, 240, 255, 1)) !important;
  opacity: 1 !important;
}
.hero-trust-item.glow-cyan .trust-text {
  animation: neonBreatheCyanText 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-cyan:hover .trust-text {
  color: #ffffff !important;
  text-shadow: 0 0 3px #fff, 0 0 9px #00f0ff, 0 0 20px #00f0ff, 0 0 32px rgba(0, 240, 255, 0.95), 0 0 46px rgba(0, 240, 255, 0.65) !important;
}

/* 2. PINK GLOW (Exact Preview) */
.hero-trust-item.glow-pink .trust-icon-circle {
  border-color: #ff2e93;
  box-shadow: 0 0 10px rgba(255, 46, 147, 0.4), inset 0 0 8px rgba(255, 46, 147, 0.2);
  animation: neonBreathePinkCircle 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-pink:hover .trust-icon-circle {
  border-color: #ff2e93 !important;
  box-shadow: 0 0 4px #ffffff, 0 0 16px #ff2e93, 0 0 30px rgba(255, 46, 147, 0.9), inset 0 0 12px rgba(255, 46, 147, 0.5) !important;
}
.hero-trust-item.glow-pink .trust-icon {
  color: #ff2e93;
  animation: neonBreathePinkIcon 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-pink:hover .trust-icon {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 9px #ff2e93) drop-shadow(0 0 20px rgba(255, 46, 147, 1)) !important;
  opacity: 1 !important;
}
.hero-trust-item.glow-pink .trust-text {
  animation: neonBreathePinkText 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-pink:hover .trust-text {
  color: #ffffff !important;
  text-shadow: 0 0 3px #fff, 0 0 9px #ff2e93, 0 0 20px #ff2e93, 0 0 32px rgba(255, 46, 147, 0.95), 0 0 46px rgba(255, 46, 147, 0.65) !important;
}

/* 3. AMBER GLOW (Your Instant Price) */
.hero-trust-item.glow-amber .trust-icon-circle {
  border-color: #ffb800;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.4), inset 0 0 8px rgba(255, 184, 0, 0.2);
  animation: neonBreatheAmberCircle 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-amber:hover .trust-icon-circle {
  border-color: #ffb800 !important;
  box-shadow: 0 0 4px #ffffff, 0 0 16px #ffb800, 0 0 30px rgba(255, 184, 0, 0.9), inset 0 0 12px rgba(255, 184, 0, 0.5) !important;
}
.hero-trust-item.glow-amber .trust-icon {
  color: #ffb800;
  animation: neonBreatheAmberIcon 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-amber:hover .trust-icon {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 9px #ffb800) drop-shadow(0 0 20px rgba(255, 184, 0, 1)) !important;
  opacity: 1 !important;
}
.hero-trust-item.glow-amber .trust-text {
  animation: neonBreatheAmberText 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-amber:hover .trust-text {
  color: #ffffff !important;
  text-shadow: 0 0 3px #fff, 0 0 9px #ffb800, 0 0 20px #ffb800, 0 0 32px rgba(255, 184, 0, 0.95), 0 0 46px rgba(255, 184, 0, 0.65) !important;
}

/* 4. GREEN GLOW (Your 2-year Warranty) */
.hero-trust-item.glow-green .trust-icon-circle {
  border-color: #39ff14;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4), inset 0 0 8px rgba(57, 255, 20, 0.2);
  animation: neonBreatheGreenCircle 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-green:hover .trust-icon-circle {
  border-color: #39ff14 !important;
  box-shadow: 0 0 4px #ffffff, 0 0 16px #39ff14, 0 0 30px rgba(57, 255, 20, 0.9), inset 0 0 12px rgba(57, 255, 20, 0.5) !important;
}
.hero-trust-item.glow-green .trust-icon {
  color: #39ff14;
  animation: neonBreatheGreenIcon 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-green:hover .trust-icon {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 9px #39ff14) drop-shadow(0 0 20px rgba(57, 255, 20, 1)) !important;
  opacity: 1 !important;
}
.hero-trust-item.glow-green .trust-text {
  animation: neonBreatheGreenText 2.2s infinite ease-in-out !important;
}
.hero-trust-item.glow-green:hover .trust-text {
  color: #ffffff !important;
  text-shadow: 0 0 3px #fff, 0 0 9px #39ff14, 0 0 20px #39ff14, 0 0 32px rgba(57, 255, 20, 0.95), 0 0 46px rgba(57, 255, 20, 0.65) !important;
}

/* INCREASING & DECREASING NEON LIGHT KEYFRAME ANIMATIONS */
@keyframes neonBreatheCyanCircle {
  0%, 100% {
    border-color: rgba(0, 240, 255, 0.65);
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.3), inset 0 0 5px rgba(0, 240, 255, 0.15);
  }
  50% {
    border-color: #ffffff;
    box-shadow: 0 0 3px #ffffff, 0 0 12px #00f0ff, 0 0 24px rgba(0, 240, 255, 0.8), inset 0 0 10px rgba(0, 240, 255, 0.4);
  }
}
@keyframes neonBreatheCyanText {
  0%, 100% {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 2px rgba(0, 240, 255, 0.5), 0 0 6px rgba(0, 240, 255, 0.3);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 7px #00f0ff, 0 0 16px #00f0ff, 0 0 28px #00f0ff, 0 0 44px rgba(0, 240, 255, 0.85);
  }
}
@keyframes neonBreatheCyanIcon {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.5));
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 10px #00f0ff) drop-shadow(0 0 22px #00f0ff) drop-shadow(0 0 34px rgba(0, 240, 255, 0.8));
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes neonBreathePinkCircle {
  0%, 100% {
    border-color: rgba(255, 46, 147, 0.65);
    box-shadow: 0 0 5px rgba(255, 46, 147, 0.3), inset 0 0 5px rgba(255, 46, 147, 0.15);
  }
  50% {
    border-color: #ffffff;
    box-shadow: 0 0 3px #ffffff, 0 0 12px #ff2e93, 0 0 24px rgba(255, 46, 147, 0.8), inset 0 0 10px rgba(255, 46, 147, 0.4);
  }
}
@keyframes neonBreathePinkText {
  0%, 100% {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 2px rgba(255, 46, 147, 0.5), 0 0 6px rgba(255, 46, 147, 0.3);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 7px #ff2e93, 0 0 16px #ff2e93, 0 0 28px #ff2e93, 0 0 44px rgba(255, 46, 147, 0.85);
  }
}
@keyframes neonBreathePinkIcon {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 46, 147, 0.5));
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 10px #ff2e93) drop-shadow(0 0 22px #ff2e93) drop-shadow(0 0 34px rgba(255, 46, 147, 0.8));
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes neonBreatheAmberCircle {
  0%, 100% {
    border-color: rgba(255, 184, 0, 0.65);
    box-shadow: 0 0 5px rgba(255, 184, 0, 0.3), inset 0 0 5px rgba(255, 184, 0, 0.15);
  }
  50% {
    border-color: #ffffff;
    box-shadow: 0 0 3px #ffffff, 0 0 12px #ffb800, 0 0 24px rgba(255, 184, 0, 0.8), inset 0 0 10px rgba(255, 184, 0, 0.4);
  }
}
@keyframes neonBreatheAmberText {
  0%, 100% {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 2px rgba(255, 184, 0, 0.5), 0 0 6px rgba(255, 184, 0, 0.3);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 7px #ffb800, 0 0 16px #ffb800, 0 0 28px #ffb800, 0 0 44px rgba(255, 184, 0, 0.85);
  }
}
@keyframes neonBreatheAmberIcon {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 184, 0, 0.5));
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 10px #ffb800) drop-shadow(0 0 22px #ffb800) drop-shadow(0 0 34px rgba(255, 184, 0, 0.8));
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes neonBreatheGreenCircle {
  0%, 100% {
    border-color: rgba(57, 255, 20, 0.65);
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.3), inset 0 0 5px rgba(57, 255, 20, 0.15);
  }
  50% {
    border-color: #ffffff;
    box-shadow: 0 0 3px #ffffff, 0 0 12px #39ff14, 0 0 24px rgba(57, 255, 20, 0.8), inset 0 0 10px rgba(57, 255, 20, 0.4);
  }
}
@keyframes neonBreatheGreenText {
  0%, 100% {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 2px rgba(57, 255, 20, 0.5), 0 0 6px rgba(57, 255, 20, 0.3);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 7px #39ff14, 0 0 16px #39ff14, 0 0 28px #39ff14, 0 0 44px rgba(57, 255, 20, 0.85);
  }
}
@keyframes neonBreatheGreenIcon {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(57, 255, 20, 0.5));
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 3px #ffffff) drop-shadow(0 0 10px #39ff14) drop-shadow(0 0 22px #39ff14) drop-shadow(0 0 34px rgba(57, 255, 20, 0.8));
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Keep trust strip neon breathing pulse alive even if reduced motion is on in OS */
@media (prefers-reduced-motion: reduce) {
  .hero-trust-item .trust-icon-circle,
  .hero-trust-item .trust-icon,
  .hero-trust-item .trust-text {
    animation-duration: 2.2s !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }
}

/* 2. THREE CREATIVE PATHWAYS SECTION */
.editorial-pathways-section {
  background: #ffffff;
  padding: 85px 0;
}

.editorial-pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.editorial-pathway-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.editorial-pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.editorial-pathway-card .pathway-img-wrap {
  height: 240px;
  overflow: hidden;
  background: #0f1015;
}

.editorial-pathway-card .pathway-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.editorial-pathway-card:hover .pathway-img-wrap img {
  transform: scale(1.05);
}

.editorial-pathway-card .pathway-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.editorial-pathway-card .pathway-kicker {
  font-family: var(--font-editorial);
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: #111827;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.editorial-pathway-card .pathway-tagline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #374151;
  margin: 0 0 12px;
}

.editorial-pathway-card .pathway-text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 22px;
  flex-grow: 1;
}

.editorial-pathway-card .pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.editorial-pathway-card .pathway-link:hover {
  gap: 12px;
  color: var(--neon-pink);
}

/* Card 1: TYPE IT - Baby Pink (#FFB7CE) */
/* Card 1: TYPE IT - Hot / Baby Pink */
.editorial-pathway-card.pathway-card-pink {
  background: linear-gradient(150deg, #ffb8d6 0%, #ff8ab6 100%);
  border-color: #ff4d94;
  box-shadow: 0 14px 34px rgba(255, 77, 148, 0.28);
}
.editorial-pathway-card.pathway-card-pink:hover {
  border-color: #ff2e93;
  box-shadow: 0 18px 44px rgba(255, 46, 147, 0.44);
}
.editorial-pathway-card.pathway-card-pink .pathway-kicker {
  color: #a80042;
}
.editorial-pathway-card.pathway-card-pink .pathway-tagline {
  color: #000000;
}
.editorial-pathway-card.pathway-card-pink .pathway-text {
  color: #111827;
}
.editorial-pathway-card.pathway-card-pink .pathway-link {
  color: #8f0037;
}
.editorial-pathway-card.pathway-card-pink .pathway-link:hover {
  color: #c2004d;
}

/* Card 2: UPLOAD IT - Ice Blue / Neon Blue */
.editorial-pathway-card.pathway-card-blue {
  background: linear-gradient(150deg, #8adcff 0%, #48c6f7 100%);
  border-color: #00a6e0;
  box-shadow: 0 14px 34px rgba(0, 166, 224, 0.28);
}
.editorial-pathway-card.pathway-card-blue:hover {
  border-color: #00d2ff;
  box-shadow: 0 18px 44px rgba(0, 210, 255, 0.44);
}
.editorial-pathway-card.pathway-card-blue .pathway-kicker {
  color: #0033aa;
}
.editorial-pathway-card.pathway-card-blue .pathway-tagline {
  color: #000000;
}
.editorial-pathway-card.pathway-card-blue .pathway-text {
  color: #111827;
}
.editorial-pathway-card.pathway-card-blue .pathway-link {
  color: #00298a;
}
.editorial-pathway-card.pathway-card-blue .pathway-link:hover {
  color: #0044d6;
}

/* Card 3: FIND INSPIRATION - Neon Red */
.editorial-pathway-card.pathway-card-red {
  background: linear-gradient(150deg, #ff9999 0%, #ff6666 100%);
  border-color: #fa3838;
  box-shadow: 0 14px 34px rgba(250, 56, 56, 0.28);
}
.editorial-pathway-card.pathway-card-red:hover {
  border-color: #ff2222;
  box-shadow: 0 18px 44px rgba(255, 34, 34, 0.44);
}
.editorial-pathway-card.pathway-card-red .pathway-kicker {
  color: #b50012;
}
.editorial-pathway-card.pathway-card-red .pathway-tagline {
  color: #000000;
}
.editorial-pathway-card.pathway-card-red .pathway-text {
  color: #111827;
}
.editorial-pathway-card.pathway-card-red .pathway-link {
  color: #94000e;
}
.editorial-pathway-card.pathway-card-red .pathway-link:hover {
  color: #d60015;
}

/* 3. CUSTOMIZER STUDIO SHOWCASE */
.studio-showcase-section {
  background: #f8f7f4;
  padding: 95px 0;
  border-top: 1px solid #ebe8e1;
}

.studio-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 55px;
  align-items: center;
}

.studio-content {
  padding-right: 15px;
}

.studio-title {
  font-family: var(--font-editorial);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.studio-desc {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 26px;
}

.studio-checklist-label {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111827;
  margin: 0 0 14px;
}

.studio-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 34px;
}

.studio-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.studio-check-item i {
  color: #111827;
  font-size: 12px;
}

.btn-editorial-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-editorial-dark:hover {
  background: #232a3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.studio-device-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.studio-device-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   3.5 & 3.6 SEE IT IN YOUR SPACE & MADE AROUND YOUR VISION
   ========================================================================== */

.space-visualizer-section {
  background: #fbf9f5;
  padding: 85px 0 50px;
  border-top: 1px solid #eee8df;
}

.space-visualizer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.05fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.space-hero-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  aspect-ratio: 16 / 9;
  background: #111827;
}

.space-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.space-hero-media:hover img {
  transform: scale(1.03);
}

.space-content-col {
  padding: 0 10px;
}

.space-section-title {
  font-family: var(--font-editorial, 'Playfair Display', serif);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.space-section-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 26px;
}

.btn-space-upload {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.15);
}

.btn-space-upload:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.25);
  color: #ffffff;
}

.space-steps-card {
  background: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  padding: 16px 14px 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.space-steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.space-step-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.space-step-thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  border: 1px solid #ece8e1;
}

.space-step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.space-step-thumb:hover img {
  transform: scale(1.05);
}

.space-step-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  line-height: 1.35;
}

/* 3.6 MADE AROUND YOUR VISION */
.craft-vision-section {
  background: #fbf9f5;
  padding: 20px 0 85px;
  border-bottom: 1px solid #eee8df;
}

.craft-vision-header {
  margin-bottom: 34px;
}

.craft-vision-title {
  font-family: var(--font-editorial, 'Playfair Display', serif);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.craft-vision-sub {
  font-size: 15px;
  color: #4b5563;
  margin: 0;
}

.craft-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.craft-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.craft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #d1cbc1;
}

.craft-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111827;
}

.craft-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.craft-card:hover .craft-card-media img {
  transform: scale(1.06);
}

.craft-card-info {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.craft-card-title {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.craft-card-desc {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

/* Craft Badges Strip */
.craft-badges-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 10px;
}

.craft-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;
  transition: transform 0.25s ease;
}

.craft-badge-item:hover {
  transform: translateY(-2px);
}

.craft-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.craft-badge-icon i {
  transition: all 0.3s ease;
}

/* 1. Cyber Cyan Glow (Thoughtful Design) - Light Mode */
.craft-badge-item.craft-badge-cyan .craft-badge-icon,
.craft-badge-item:nth-child(1) .craft-badge-icon {
  border: 1.5px solid #00f0ff;
  color: #00b4d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 14px rgba(0, 240, 255, 0.35);
}
.craft-badge-item.craft-badge-cyan .craft-badge-icon i,
.craft-badge-item:nth-child(1) .craft-badge-icon i {
  filter: drop-shadow(0 0 3px rgba(0, 240, 255, 0.6));
}
.craft-badge-item.craft-badge-cyan:hover .craft-badge-icon,
.craft-badge-item:nth-child(1):hover .craft-badge-icon {
  border-color: #00f0ff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 20px rgba(0, 240, 255, 0.65);
  transform: scale(1.08);
}

/* 2. Electric Pink Glow (Precise Proportions) - Light Mode */
.craft-badge-item.craft-badge-pink .craft-badge-icon,
.craft-badge-item:nth-child(2) .craft-badge-icon {
  border: 1.5px solid #ff2e93;
  color: #ff2e93;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 14px rgba(255, 46, 147, 0.35);
}
.craft-badge-item.craft-badge-pink .craft-badge-icon i,
.craft-badge-item:nth-child(2) .craft-badge-icon i {
  filter: drop-shadow(0 0 3px rgba(255, 46, 147, 0.6));
}
.craft-badge-item.craft-badge-pink:hover .craft-badge-icon,
.craft-badge-item:nth-child(2):hover .craft-badge-icon {
  border-color: #ff2e93;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 20px rgba(255, 46, 147, 0.65);
  transform: scale(1.08);
}

/* 3. Warm Amber Glow (Bespoke Typography) - Light Mode */
.craft-badge-item.craft-badge-amber .craft-badge-icon,
.craft-badge-item:nth-child(3) .craft-badge-icon {
  border: 1.5px solid #ffb800;
  color: #e69d00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 14px rgba(255, 184, 0, 0.35);
}
.craft-badge-item.craft-badge-amber .craft-badge-icon i,
.craft-badge-item:nth-child(3) .craft-badge-icon i {
  filter: drop-shadow(0 0 3px rgba(255, 184, 0, 0.6));
}
.craft-badge-item.craft-badge-amber:hover .craft-badge-icon,
.craft-badge-item:nth-child(3):hover .craft-badge-icon {
  border-color: #ffb800;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 20px rgba(255, 184, 0, 0.65);
  transform: scale(1.08);
}

/* 4. Emerald Volt Glow (Premium Craftsmanship) - Light Mode */
.craft-badge-item.craft-badge-green .craft-badge-icon,
.craft-badge-item:nth-child(4) .craft-badge-icon {
  border: 1.5px solid #00e676;
  color: #00b050;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 14px rgba(0, 230, 118, 0.35);
}
.craft-badge-item.craft-badge-green .craft-badge-icon i,
.craft-badge-item:nth-child(4) .craft-badge-icon i {
  filter: drop-shadow(0 0 3px rgba(0, 230, 118, 0.6));
}
.craft-badge-item.craft-badge-green:hover .craft-badge-icon,
.craft-badge-item:nth-child(4):hover .craft-badge-icon {
  border-color: #00e676;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 20px rgba(0, 230, 118, 0.65);
  transform: scale(1.08);
}

.craft-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.craft-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.craft-badge-sub {
  font-size: 11.5px;
  color: #6b7280;
}

/* 4. TRANSPARENT PRICING TEASER BANNER */
.pricing-teaser-section {
  background-color: #ede9e1;
  background-image: url('../Images/inspire.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid #dfdad0;
  border-bottom: 1px solid #dfdad0;
  position: relative;
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  align-items: stretch;
}

.pricing-teaser-content {
  padding: 60px 40px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}

.pricing-teaser-title {
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.pricing-teaser-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 480px;
}

.pricing-teaser-strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 30px;
}

.pricing-teaser-image {
  opacity: 0;
  pointer-events: none;
}

.pricing-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 5. CURATED SPACES GRID (SEE WHAT'S POSSIBLE) */
.see-possible-section {
  background: #08080c;
  padding: 85px 0 95px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.see-possible-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 20px;
}

.possible-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-pink, #ff2e93);
  margin-bottom: 8px;
}

.possible-title {
  font-family: var(--font-editorial, 'Syne', sans-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.possible-sub {
  font-size: 14.5px;
  color: #9ca3af;
  margin: 0;
  max-width: 680px;
}

.possible-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.possible-view-all:hover {
  gap: 12px;
  color: var(--neon-pink, #ff2e93);
}

.see-possible-footer-cta {
  text-align: center;
  margin-top: 48px;
}

.purpose-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--tr-fast);
}

.purpose-gallery-btn:hover {
  background: rgba(255, 46, 147, 0.15);
  border-color: var(--neon-pink, #ff2e93);
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(255, 46, 147, 0.35);
  transform: translateY(-2px);
}

.possible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.possible-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  text-decoration: none;
  display: block;
  background: #0f1015;
}

.possible-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.possible-card:hover img {
  transform: scale(1.06);
}

.possible-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 14, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  transition: background 0.3s ease;
}

.possible-card:hover .possible-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 14, 0.9) 100%);
}

.possible-label {
  font-family: var(--font-editorial);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.possible-label i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.possible-card:hover .possible-label i {
  transform: translateX(4px);
}

/* 6. VALUE PILLARS (WHY NEONSIGNCREATOR) */
.why-us-section {
  background: #f8f7f4;
  padding: 85px 0;
  border-top: 1px solid #ebe8e1;
  border-bottom: 1px solid #ebe8e1;
}

.why-us-header {
  margin-bottom: 45px;
}

.why-us-title {
  font-family: var(--font-editorial);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.why-us-sub {
  font-size: 14.5px;
  color: #6b7280;
  margin: 0;
}

.why-us-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.why-pillar {
  padding-right: 16px;
  border-right: 1px solid #e0dcd4;
  display: flex;
  flex-direction: column;
}

.why-pillar:last-child {
  border-right: none;
  padding-right: 0;
}

.why-pillar .pillar-icon {
  font-size: 24px;
  color: #111827;
  margin-bottom: 14px;
  height: 32px;
  display: flex;
  align-items: center;
}

/* Value Pillars Colored Icons */
.why-pillar:nth-child(1) .pillar-icon {
  color: #ff2e93;
  filter: drop-shadow(0 2px 8px rgba(255, 46, 147, 0.35));
}
.why-pillar:nth-child(2) .pillar-icon {
  color: #00b4d8;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 216, 0.35));
}
.why-pillar:nth-child(3) .pillar-icon {
  color: #8b5cf6;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.35));
}
.why-pillar:nth-child(4) .pillar-icon {
  color: #10b981;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.35));
}
.why-pillar:nth-child(5) .pillar-icon {
  color: #f59e0b;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.35));
}
.why-pillar:nth-child(6) .pillar-icon {
  color: #ff3131;
  filter: drop-shadow(0 2px 8px rgba(255, 49, 49, 0.35));
}

.why-pillar .pillar-icon i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-pillar:hover .pillar-icon i {
  transform: scale(1.18);
}

.why-pillar .pillar-title {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.3;
}

.why-pillar .pillar-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* 7. PROCESS TIMELINE (FROM IDEA TO ILLUMINATION) */
.process-timeline-section {
  background: #ffffff;
  padding: 90px 0;
}

.timeline-title {
  font-family: var(--font-editorial);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 45px;
}

.timeline-steps-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 45px;
}

.timeline-steps-row::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #e5e7eb;
  z-index: 1;
}

.timeline-step-item {
  position: relative;
  z-index: 2;
}

.timeline-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111827;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.timeline-step-item:hover .timeline-step-icon {
  transform: scale(1.15);
}

/* Timeline Steps Colored Badges */
.timeline-step-item:nth-child(1) .timeline-step-icon {
  color: #ff2e93;
  background: #fff0f7;
  border-color: #ff80bf;
  box-shadow: 0 4px 16px rgba(255, 46, 147, 0.22);
}
.timeline-step-item:nth-child(2) .timeline-step-icon {
  color: #0099e6;
  background: #f0f9ff;
  border-color: #7dd3fc;
  box-shadow: 0 4px 16px rgba(0, 153, 230, 0.22);
}
.timeline-step-item:nth-child(3) .timeline-step-icon {
  color: #8b5cf6;
  background: #f5f3ff;
  border-color: #c4b5fd;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.22);
}
.timeline-step-item:nth-child(4) .timeline-step-icon {
  color: #10b981;
  background: #ecfdf5;
  border-color: #6ee7b7;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.22);
}
.timeline-step-item:nth-child(5) .timeline-step-icon {
  color: #f59e0b;
  background: #fffbeb;
  border-color: #fcd34d;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.22);
}
.timeline-step-item:nth-child(6) .timeline-step-icon {
  color: #ff3131;
  background: #fef2f2;
  border-color: #fca5a5;
  box-shadow: 0 4px 16px rgba(255, 49, 49, 0.22);
}

.timeline-step-title {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.timeline-step-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

.timeline-cta-wrap {
  text-align: center;
}

/* 8. COMMERCIAL FOCUS ("FROM ONE SIGN TO AN ENTIRE BRAND.") */
.commercial-feature-section {
  background: #f8f7f4;
  padding: 70px 0;
  border-top: 1px solid #ebe8e1;
}

.commercial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  display: grid;
  grid-template-columns: 310px 1fr 225px;
  gap: 28px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.commercial-image {
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1015;
  position: relative;
  flex-shrink: 0;
}

.commercial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.commercial-image:hover img {
  transform: scale(1.03);
}

.commercial-content {
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.commercial-title {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.25;
}

.commercial-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0 0 18px;
}

.commercial-sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}

.commercial-sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.commercial-sector-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.commercial-sector-item:hover {
  color: #111827;
}

.sector-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(var(--icon-rgb), 0.12);
  color: var(--icon-color);
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(var(--icon-rgb), 0.22);
  transition: all 0.25s ease;
}

.commercial-sector-item:hover .sector-icon-badge {
  transform: scale(1.15);
  background: rgba(var(--icon-rgb), 0.24);
  box-shadow: 0 0 10px rgba(var(--icon-rgb), 0.5);
}

.sector-name {
  font-size: 13px;
  color: #374151;
}

.commercial-action-panel {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
}

.btn-commercial-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 12px 14px;
  color: #111827;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-commercial-action span {
  color: #111827;
}

.btn-commercial-action i,
.btn-commercial-action .btn-arrow {
  font-size: 11px;
  color: #4b5563;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.btn-commercial-action:hover {
  border-color: #111827;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-commercial-action:hover i,
.btn-commercial-action:hover .btn-arrow {
  transform: translateX(4px);
  color: #111827;
}

@media (max-width: 1080px) {
  .commercial-card {
    grid-template-columns: 280px 1fr 200px;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .commercial-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .commercial-image {
    height: 240px;
  }
  .commercial-action-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn-commercial-action {
    flex: 1 1 200px;
  }
}

@media (max-width: 600px) {
  .commercial-sectors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .commercial-action-panel {
    flex-direction: column;
  }
  .btn-commercial-action {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .commercial-sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* 8.5. SEO SEMANTIC EDITORIAL SECTION */
.seo-semantic-section {
  background: #ffffff;
  padding: 85px 0 45px;
  border-top: 1px solid #e5e7eb;
}

.seo-semantic-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.seo-semantic-title {
  font-family: var(--font-editorial, 'Syne', sans-serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.seo-semantic-text {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: clamp(15px, 1.15vw, 16.5px);
  line-height: 1.85;
  color: #4b5563;
  margin: 0 auto;
  max-width: 900px;
}

.seo-semantic-text strong {
  color: #111827;
  font-weight: 600;
}

/* 9. REAL REVIEWS (REAL PEOPLE. REAL SPACES) */
.social-proof-section {
  background: #ffffff;
  padding: 45px 0 90px;
  border-top: none;
}

.social-proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.proof-title {
  font-family: var(--font-editorial);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.proof-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.proof-trust-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-rating-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}

.proof-rating-lockup .stars {
  color: #ffb800;
  font-size: 14px;
}

.proof-metrics {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6b7280;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.proof-review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.proof-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.review-sign-media {
  width: 100%;
  height: 205px;
  background: #0f1015;
  overflow: hidden;
  position: relative;
}

.review-sign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-review-card:hover .review-sign-media img {
  transform: scale(1.05);
}

.review-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.proof-review-card .review-stars {
  color: var(--neon-amber, #ffb800);
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  gap: 3px;
  line-height: 1;
}

.proof-review-card .star-glyph {
  color: #ffb800;
  display: inline-block;
  line-height: 1;
}

.proof-review-card .review-card-quote {
  font-size: 14px;
  color: #1f2937;
  line-height: 1.6;
  font-style: normal;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.proof-review-card .reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.proof-review-card .reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 46, 147, 0.06);
  border: 2px solid rgba(255, 46, 147, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-review-card .reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.proof-review-card .reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-review-card .reviewer-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
  display: block;
  line-height: 1.3;
}

.proof-review-card .reviewer-tag {
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  line-height: 1.35;
}

.proof-review-card .reviewer-tag svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
}

.proof-review-card .reviewer-tag i {
  font-size: 14px;
}

/* 10. BOTTOM SUNSET ROOFTOP CTA */
.bottom-editorial-cta-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: #0b0c10;
  background-image: url('../Images/footimage-v2.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 80px 0;
  color: #ffffff;
}

.bottom-editorial-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 12, 0.25) 0%, rgba(8, 8, 12, 0.55) 45%, rgba(8, 8, 12, 0.90) 72%, rgba(8, 8, 12, 0.96) 100%);
  pointer-events: none;
}

.bottom-editorial-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.bottom-cta-box {
  max-width: 520px;
  text-align: right;
}

.bottom-cta-title {
  font-family: var(--font-editorial);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.bottom-cta-line1 {
  font-size: 15px;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0 0 4px;
}

.bottom-cta-line2 {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0 0 28px;
}

.bottom-cta-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-editorial-trust-strip {
    flex-wrap: wrap;
    white-space: normal;
    width: 100%;
    gap: 12px 20px;
  }
  .studio-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-teaser-section {
    background-image: none;
  }
  .pricing-teaser-grid {
    grid-template-columns: 1fr;
  }
  .pricing-teaser-content {
    padding: 50px 30px;
    max-width: 100%;
  }
  .pricing-teaser-image {
    opacity: 1;
    pointer-events: auto;
    min-height: 260px;
  }
  .why-us-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .why-pillar {
    border-right: none;
    border-bottom: 1px solid #e0dcd4;
    padding-bottom: 20px;
  }
  .timeline-steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .timeline-steps-row::before {
    display: none;
  }
  .commercial-card {
    grid-template-columns: 1fr;
  }
  .commercial-image {
    min-height: 350px;
  }
  .space-visualizer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .space-steps-col {
    grid-column: span 2;
  }
  .craft-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .craft-badges-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-editorial-section {
    min-height: 70vh;
  }
  .hero-editorial-overlay {
    background: rgba(7, 8, 12, 0.88);
  }
  .hero-editorial-trust-strip {
    gap: 12px 20px;
  }
  .editorial-pathways-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .possible-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-us-strip {
    grid-template-columns: 1fr;
  }
  .timeline-steps-row {
    grid-template-columns: 1fr;
  }
  .commercial-checklists-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proof-reviews-grid {
    grid-template-columns: 1fr;
  }
  .space-visualizer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .space-steps-col {
    grid-column: span 1;
  }
  .craft-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .craft-badges-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bottom-editorial-cta-overlay {
    background: rgba(8, 8, 12, 0.85);
  }
  .bottom-cta-box {
    text-align: left;
  }
  .bottom-cta-btns {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .possible-grid {
    grid-template-columns: 1fr;
  }
  .studio-checklist {
    grid-template-columns: 1fr;
  }
  .proof-review-card {
    padding: 24px 20px;
  }
  .craft-steps-grid {
    grid-template-columns: 1fr;
  }
  .space-steps-list {
    grid-template-columns: 1fr;
  }
}

