/* ==========================================================================
   PIQUE SQUID CYBERSECURITY DESIGN SYSTEM
   Modeled directly from Pique Squid Ecosystem (hosting.piquesquid.com & piquesquid.com)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inder&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Brand Core Colors */
  --ps-primary: #25225E;         /* Deep Midnight Navy / Indigo */
  --ps-primary-dark: #0E0C28;    /* Deep Space Black-Navy */
  --ps-accent: #FF4C01;          /* Pique Squid Sunset Orange / Electric Coral */
  --ps-accent-hover: #E04200;    /* Darker Coral for Hover */
  --ps-accent-light: rgba(255, 76, 1, 0.12);
  
  /* Cybersecurity Telemetry Colors */
  --ps-cyan: #06B6D4;            /* Threat Shield Electric Cyan */
  --ps-cyan-glow: rgba(6, 182, 212, 0.2);
  --ps-green: #10B981;           /* SOC Active / Secure Emerald Green */
  --ps-green-glow: rgba(16, 185, 129, 0.25);
  --ps-purple: #8B5CF6;          /* Deep Violet */
  --ps-amber: #F59E0B;           /* Warning / Incident Alert */
  
  /* Neutrals & Surfaces */
  --ps-canvas: #F8FAFB;          /* Crisp Light Background */
  --ps-surface: #FFFFFF;
  --ps-surface-subtle: #F1F4F7;
  --ps-dark-surface: #120F35;    /* High-Security Dark Card */
  --ps-dark-surface-2: #1A1647;
  --ps-text-main: #25225E;
  --ps-text-muted: rgba(37, 34, 94, 0.7);
  --ps-text-light: #FFFFFF;
  --ps-text-light-muted: rgba(255, 255, 255, 0.7);
  
  /* Borders & Shadows */
  --ps-border-subtle: rgba(37, 34, 94, 0.08);
  --ps-border-glass: rgba(255, 255, 255, 0.25);
  --ps-border-card: rgba(37, 34, 94, 0.1);
  --ps-shadow-glass: 0 20px 48px rgba(37, 34, 94, 0.14);
  --ps-shadow-card: 0 12px 36px -8px rgba(37, 34, 94, 0.08);
  --ps-shadow-card-hover: 0 25px 50px -12px rgba(37, 34, 94, 0.18);
  --ps-shadow-orange: 0 12px 28px -4px rgba(255, 76, 1, 0.35);

  /* Radius Tokens */
  --ps-radius-pill: 9999px;
  --ps-radius-card: 2.5rem;      /* 40px - signature Pique Squid bento card curve */
  --ps-radius-card-sm: 1.75rem;   /* 28px */
  --ps-radius-input: 1rem;
}

/* Base resets & typography */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--ps-canvas);
  color: var(--ps-text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--ps-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Mesh gradient background utility */
.mesh-gradient-bg {
  background-color: var(--ps-canvas);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 34, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 76, 1, 0.06) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.04) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(37, 34, 94, 0.05) 0px, transparent 50%);
}

.mesh-gradient-dark {
  background-color: #0B0920;
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 34, 94, 0.6) 0px, transparent 60%),
    radial-gradient(at 100% 0%, rgba(255, 76, 1, 0.2) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(6, 182, 212, 0.15) 0px, transparent 60%);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.loaded {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 260px;
}

.loader-logo {
  height: 48px;
  width: auto;
}

.loader-bar-bg {
  width: 180px;
  height: 3px;
  background: rgba(37, 34, 94, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--ps-accent);
  transform-origin: left;
  animation: ps-loader-progress 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes ps-loader-progress {
  0% { transform: scaleX(0); }
  60% { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* ==========================================================================
   FLOATING FAMILY-STYLE NAVBAR
   ========================================================================== */
.ps-nav-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none;
  transition: top 0.3s ease;
}

.ps-nav-pill {
  pointer-events: auto;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 34, 94, 0.12);
  box-shadow: 0 20px 48px rgba(37, 34, 94, 0.15);
  border-radius: var(--ps-radius-pill);
  width: 100%;
  max-width: 1200px;
  height: 76px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ps-nav-wrapper.scrolled .ps-nav-pill {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 60px rgba(37, 34, 94, 0.22);
  border-color: rgba(37, 34, 94, 0.16);
  height: 70px;
}

.ps-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ps-nav-logo {
  height: 38px;
  width: auto;
  display: block;
}

.ps-nav-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: rgba(37, 34, 94, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-primary);
}

.ps-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1080px) {
  .ps-nav-links {
    display: flex;
  }
}

.ps-nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(37, 34, 94, 0.82);
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.ps-nav-link:hover,
.ps-nav-link.active {
  color: var(--ps-accent);
  background: rgba(255, 76, 1, 0.08);
}

/* Nav Dropdown */
.ps-nav-dropdown {
  position: relative;
}

.ps-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 580px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(37, 34, 94, 0.12);
  box-shadow: 0 25px 60px rgba(37, 34, 94, 0.18);
  border-radius: 1.75rem;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  z-index: 2100;
}

.ps-nav-dropdown:hover .ps-nav-dropdown-menu,
.ps-nav-dropdown.show .ps-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ps-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--ps-primary);
  transition: all 0.2s ease;
}

.ps-dropdown-item:hover {
  background: rgba(255, 76, 1, 0.06);
  transform: translateX(4px);
}

.ps-dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.65rem;
  background: rgba(37, 34, 94, 0.06);
  color: var(--ps-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.ps-dropdown-item:hover .ps-dropdown-icon {
  background: var(--ps-accent);
  color: #FFFFFF;
}

.ps-dropdown-title {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  color: var(--ps-primary);
}

.ps-dropdown-desc {
  font-size: 0.72rem;
  color: var(--ps-text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Nav Actions */
.ps-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Luxury Pill Button */
.ps-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  background-color: var(--ps-accent);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--ps-radius-pill);
  text-decoration: none;
  border: none;
  box-shadow: var(--ps-shadow-orange);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ps-btn-primary:hover {
  background-color: var(--ps-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(255, 76, 1, 0.45);
}

.ps-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  background-color: rgba(37, 34, 94, 0.06);
  color: var(--ps-primary) !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--ps-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(37, 34, 94, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ps-btn-secondary:hover {
  background-color: rgba(37, 34, 94, 0.12);
  transform: translateY(-2px);
}

.ps-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--ps-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ps-btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Mobile Toggle */
.ps-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(37, 34, 94, 0.05);
  border: 1px solid rgba(37, 34, 94, 0.1);
  color: var(--ps-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 1080px) {
  .ps-nav-toggle {
    display: none;
  }
}

/* Mobile Offcanvas Drawer */
.ps-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -15px 0 40px rgba(0,0,0,0.15);
  z-index: 3000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-mobile-drawer.open {
  right: 0;
}

.ps-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 40, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ps-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.ps-hero-root {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ps-hero-bg-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.ps-hero-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 12, 40, 0.88) 0%, rgba(14, 12, 40, 0.94) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ps-hero-overlay-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(248, 250, 251, 0.85) 0%, rgba(248, 250, 251, 0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ps-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Badge Pill */
.ps-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--ps-radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 34, 94, 0.12);
  color: var(--ps-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ps-badge-pill-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

/* Active Live Pulse */
.badge-live-pulse {
  position: relative;
  display: inline-flex;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background-color: var(--ps-green);
}

.badge-live-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--ps-green);
  animation: badge-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badge-ping {
  75%, 100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Hero Typography */
.ps-hero-title-main {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1.25rem 0;
}

.ps-hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 680px;
  font-weight: 400;
}

/* Scroll Line Indicator */
.ps-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

.ps-scroll-bar-track {
  width: 2px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.ps-scroll-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--ps-accent);
  border-radius: 999px;
  animation: scroll-line 2.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ==========================================================================
   INFINITE MARQUEE TICKER
   ========================================================================== */
.text-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  border-top: 1px solid rgba(37, 34, 94, 0.08);
  border-bottom: 1px solid rgba(37, 34, 94, 0.08);
  padding: 1.4rem 0;
  background: #FFFFFF;
}

.text-marquee-dark {
  background: #120F35;
  border-color: rgba(255, 255, 255, 0.08);
}

.text-marquee-track {
  display: flex;
  animation: marquee-scroll 32s linear infinite;
  min-width: 100%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.text-marquee-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ps-primary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-marquee-dark .text-marquee-item {
  color: #FFFFFF;
}

.text-marquee-dot {
  width: 7px;
  height: 7px;
  background-color: var(--ps-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ==========================================================================
   BENTO GRID & LUXURY CARDS
   ========================================================================== */
.bento-card {
  border-radius: var(--ps-radius-card);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-8px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 34, 94, 0.08);
  box-shadow: var(--ps-shadow-card);
}

.glass-card:hover {
  box-shadow: var(--ps-shadow-card-hover);
  border-color: rgba(255, 76, 1, 0.25);
}

.glass-card-dark {
  background: rgba(18, 15, 53, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

.glass-card-dark:hover {
  border-color: rgba(255, 76, 1, 0.4);
  box-shadow: 0 25px 50px -12px rgba(255, 76, 1, 0.15);
}

/* Glow Elements */
.glow-orange {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 76, 1, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.glow-purple {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-cyan {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Icon Badges */
.ps-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 1.25rem;
  background: rgba(255, 76, 1, 0.1);
  color: var(--ps-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.bento-card:hover .ps-icon-box {
  background: var(--ps-accent);
  color: #FFFFFF;
  transform: scale(1.08) rotate(3deg);
}

.ps-icon-box-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--ps-cyan);
}

.bento-card:hover .ps-icon-box-cyan {
  background: var(--ps-cyan);
  color: #FFFFFF;
}

/* Feature Checklists */
.ps-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ps-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--ps-text-main);
}

.glass-card-dark .ps-checklist li {
  color: rgba(255, 255, 255, 0.85);
}

.ps-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--ps-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   LUXURY FORM INPUTS & WIZARDS
   ========================================================================== */
.luxury-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 34, 94, 0.12);
  border-radius: var(--ps-radius-input);
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ps-primary);
  transition: all 0.3s ease;
  outline: none;
}

.luxury-input:focus {
  background: #FFFFFF;
  border-color: var(--ps-accent);
  box-shadow: 0 0 0 4px rgba(255, 76, 1, 0.12);
}

.luxury-input::placeholder {
  color: rgba(37, 34, 94, 0.4);
}

.ps-field-error {
  color: #FF4C01;
  font-weight: 600;
}

.luxury-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2325225E'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
}

/* Multi-Step Wizard Styling */
.ps-wizard-step {
  display: none;
}

.ps-wizard-step.active {
  display: block;
  animation: ps-step-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ps-step-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ps-wizard-progress-bar {
  height: 4px;
  background: rgba(37, 34, 94, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.ps-wizard-progress-fill {
  height: 100%;
  background: var(--ps-accent);
  transition: width 0.4s ease;
}

/* ==========================================================================
   FAQ & ACCORDION
   ========================================================================== */
.ps-accordion-item {
  border: 1px solid rgba(37, 34, 94, 0.08);
  background: #FFFFFF;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ps-accordion-item:hover {
  border-color: rgba(255, 76, 1, 0.3);
  box-shadow: 0 10px 25px rgba(37, 34, 94, 0.05);
}

.ps-accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ps-primary);
  user-select: none;
}

.ps-accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 34, 94, 0.06);
  color: var(--ps-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.ps-accordion-item.active .ps-accordion-icon {
  transform: rotate(180deg);
  background: var(--ps-accent);
  color: #FFFFFF;
}

.ps-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 2rem;
  color: var(--ps-text-muted);
  line-height: 1.7;
}

.ps-accordion-item.active .ps-accordion-body {
  max-height: 500px;
  padding: 0 2rem 1.75rem 2rem;
}

/* ==========================================================================
   MASTER FOOTER
   ========================================================================== */
.ps-footer {
  background: #0E0C28;
  color: #FFFFFF;
  padding: 2.75rem 0 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.ps-footer .row.g-5 {
  --bs-gutter-y: 2rem;
}

.ps-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
}

.ps-footer a:hover {
  color: var(--ps-accent);
  transform: translateX(3px);
}

.ps-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.ps-social-icon:hover {
  background: var(--ps-accent);
  border-color: var(--ps-accent);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.ps-footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.ps-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Toast Notifications */
.ps-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(37, 34, 94, 0.12);
  box-shadow: 0 20px 48px rgba(37, 34, 94, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
