/* ============================================================
   PAYCLIO THEME — Glassmorphism Dark Edition
   Colors: #050a1a · #001652 · #8773ee · #ffffff
   Font: Inter (Stripe-style)
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --pc-dark:        #050a1a;
  --pc-dark-2:      #090e22;
  --pc-navy:        #001652;
  --pc-navy-2:      #01205f;
  --pc-purple:      #8773ee;
  --pc-purple-lt:   #a896f5;
  --pc-purple-dk:   #6a57d5;
  --pc-white:       #ffffff;
  --pc-w60:         rgba(255,255,255,0.60);
  --pc-w40:         rgba(255,255,255,0.40);
  --pc-w20:         rgba(255,255,255,0.20);
  --pc-w10:         rgba(255,255,255,0.10);
  --pc-w05:         rgba(255,255,255,0.05);
  --pc-w03:         rgba(255,255,255,0.03);
  --pc-glass-bg:    rgba(255,255,255,0.04);
  --pc-glass-bgh:   rgba(135,115,238,0.08);
  --pc-glass-bd:    rgba(135,115,238,0.15);
  --pc-glass-bdh:   rgba(135,115,238,0.38);
  --pc-blur:        blur(22px);
  --pc-r-sm:        8px;
  --pc-r:           16px;
  --pc-r-lg:        24px;
  --pc-r-xl:        32px;
  --pc-ease:        cubic-bezier(0.4,0,0.2,1);
  --pc-trans:       all 0.32s cubic-bezier(0.4,0,0.2,1);
  --pc-shadow:      0 8px 32px rgba(0,0,0,0.35);
  --pc-shadow-p:    0 8px 32px rgba(135,115,238,0.28);
  --pc-glow:        0 0 48px rgba(135,115,238,0.18);
  --pc-font:        'Inter','SF Pro Display',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
}

/* ---------- Body / Page ---------- */
body {
  background: var(--pc-dark) !important;
  color: var(--pc-white);
  font-family: var(--pc-font) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Gradient Mesh Background ---------- */
.pc-bg {
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0,22,82,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 5%,  rgba(135,115,238,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 50% 105%,rgba(0,22,82,0.28) 0%, transparent 70%),
    var(--pc-dark);
}

/* Animated orbs */
.pc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: pcFloat 9s ease-in-out infinite;
  z-index: 0;
}
.pc-orb-a {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(135,115,238,0.18) 0%, transparent 70%);
  top: -180px; right: -140px; opacity: 0.7;
  animation-delay: 0s;
}
.pc-orb-b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,22,82,0.7) 0%, transparent 70%);
  bottom: -120px; left: -100px; opacity: 0.8;
  animation-delay: 4s;
}
.pc-orb-c {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(135,115,238,0.10) 0%, transparent 70%);
  top: 50%; left: 28%; opacity: 0.6;
  animation-delay: 2s;
}
@keyframes pcFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.04); }
}

/* ---------- Glassmorphism Card ---------- */
.pc-glass {
  background: var(--pc-glass-bg);
  backdrop-filter: var(--pc-blur);
  -webkit-backdrop-filter: var(--pc-blur);
  border: 1px solid var(--pc-glass-bd);
  border-radius: var(--pc-r);
}
.pc-glass:hover {
  background: var(--pc-glass-bgh);
  border-color: var(--pc-glass-bdh);
}

/* ---------- Typography ---------- */
.pc-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px;
  background: rgba(135,115,238,0.10);
  border: 1px solid rgba(135,115,238,0.28);
  border-radius: 100px;
  color: var(--pc-purple-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--pc-font);
}

.pc-h1 {
  font-family: var(--pc-font);
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--pc-white);
}
.pc-h2 {
  font-family: var(--pc-font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--pc-white);
}
.pc-h3 {
  font-family: var(--pc-font);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--pc-white);
}

.pc-gradient-text {
  background: linear-gradient(135deg, #fff 0%, #c4b8ff 45%, #8773ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-body    { font-size: 1rem;    line-height: 1.72; color: var(--pc-w60); font-family: var(--pc-font); }
.pc-body-sm { font-size: .875rem; line-height: 1.65; color: var(--pc-w40); font-family: var(--pc-font); }

/* ---------- Buttons ---------- */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--pc-font);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--pc-trans);
  white-space: nowrap;
  border: none;
  outline: none;
  letter-spacing: -0.01em;
}
.pc-btn-primary {
  background: var(--pc-purple);
  color: var(--pc-white) !important;
  box-shadow: 0 0 22px rgba(135,115,238,0.32);
}
.pc-btn-primary:hover {
  background: var(--pc-purple-lt);
  box-shadow: 0 0 34px rgba(135,115,238,0.5);
  transform: translateY(-2px);
}
.pc-btn-outline {
  background: transparent;
  color: var(--pc-white) !important;
  border: 1px solid rgba(255,255,255,0.22);
}
.pc-btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}
.pc-btn-ghost {
  background: transparent;
  color: var(--pc-w60) !important;
  padding: 13px 18px;
}
.pc-btn-ghost:hover { color: var(--pc-white) !important; }

/* ---------- Dividers ---------- */
.pc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,transparent 0%,rgba(135,115,238,0.25) 50%,transparent 100%);
}
.pc-gradient-line {
  height: 1px;
  background: linear-gradient(90deg,transparent 0%,rgba(135,115,238,0.20) 25%,rgba(135,115,238,0.20) 75%,transparent 100%);
}

/* ---------- Utility ---------- */
.pc-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pc-text-center { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.pc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.38s var(--pc-ease);
}
.pc-nav.scrolled {
  background: rgba(5,10,26,0.88);
  backdrop-filter: var(--pc-blur);
  -webkit-backdrop-filter: var(--pc-blur);
  border-bottom: 1px solid rgba(135,115,238,0.10);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.pc-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.pc-nav-logo img {
  height: 34px;
  object-fit: contain;
}

/* Nav links */
.pc-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.pc-nav-links > li { position: relative; }
.pc-nav-links > li > a,
.pc-nav-links > li > span.pc-nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 450;
  font-family: var(--pc-font);
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: -0.01em;
  background: none; border: none;
}
.pc-nav-links > li > a:hover,
.pc-nav-links > li > span.pc-nav-trigger:hover,
.pc-nav-links > li:hover > span.pc-nav-trigger {
  color: var(--pc-white);
  background: rgba(255,255,255,0.06);
}
.pc-nav-links > li > a.pc-nav-active {
  color: var(--pc-purple-lt);
}

/* Dropdown */
.pc-dropdown { position: relative; }
.pc-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(8,13,30,0.96);
  backdrop-filter: var(--pc-blur);
  -webkit-backdrop-filter: var(--pc-blur);
  border: 1px solid rgba(135,115,238,0.18);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  z-index: 200;
}
.pc-dropdown-menu.pc-dropdown-wide {
  min-width: 580px;
  display: none;
}
.pc-dropdown:hover .pc-dropdown-menu {
  display: block;
  animation: pcDropIn 0.2s ease;
}
@keyframes pcDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pc-dropdown-section {
  padding: 6px 8px 2px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(135,115,238,0.65);
  font-family: var(--pc-font);
}
.pc-dropdown-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pc-dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 11px;
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  text-decoration: none !important;
  font-family: var(--pc-font);
  transition: all 0.18s;
}
.pc-dropdown-item:hover {
  background: rgba(135,115,238,0.10);
  color: var(--pc-white);
}
.pc-dropdown-item .di-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(135,115,238,0.11);
  border-radius: 9px;
  color: var(--pc-purple-lt);
  font-size: 15px;
  flex-shrink: 0;
}
.pc-dropdown-item .di-text h4 {
  font-size: 13px; font-weight: 500; color: var(--pc-white); margin: 0;
  font-family: var(--pc-font);
}
.pc-dropdown-item .di-text p {
  font-size: 11.5px; color: rgba(255,255,255,0.38); margin: 0;
  font-family: var(--pc-font);
}

/* Nav right */
.pc-nav-right {
  display: flex; align-items: center; gap: 10px;
}
.pc-lang-sel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--pc-font);
  padding: 7px 10px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.pc-lang-sel option { background: #0a0f22; }

.pc-nav-btn-login {
  padding: 8px 18px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8) !important;
  font-size: 13.5px;
  font-family: var(--pc-font);
  font-weight: 500;
  text-decoration: none !important;
  transition: var(--pc-trans);
  letter-spacing: -0.01em;
}
.pc-nav-btn-login:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.35);
  color: var(--pc-white) !important;
}
.pc-nav-btn-signup {
  padding: 8px 18px;
  border-radius: 9px;
  background: var(--pc-purple);
  color: var(--pc-white) !important;
  font-size: 13.5px;
  font-family: var(--pc-font);
  font-weight: 500;
  text-decoration: none !important;
  transition: var(--pc-trans);
  letter-spacing: -0.01em;
  box-shadow: 0 0 18px rgba(135,115,238,0.28);
}
.pc-nav-btn-signup:hover {
  background: var(--pc-purple-lt);
  box-shadow: 0 0 28px rgba(135,115,238,0.45);
  transform: translateY(-1px);
}
.pc-nav-btn-dash {
  padding: 8px 18px;
  border-radius: 9px;
  background: var(--pc-purple);
  color: var(--pc-white) !important;
  font-size: 13.5px;
  font-family: var(--pc-font);
  font-weight: 500;
  text-decoration: none !important;
  transition: var(--pc-trans);
  letter-spacing: -0.01em;
}
.pc-nav-btn-dash:hover {
  background: var(--pc-purple-lt);
  transform: translateY(-1px);
}

/* Mobile toggle */
.pc-nav-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 8px 13px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 17px;
}

/* Mobile nav drawer */
.pc-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(5,10,26,0.98);
  backdrop-filter: var(--pc-blur);
  flex-direction: column;
  padding: 88px 28px 36px;
  overflow-y: auto;
}
.pc-mobile-nav.open { display: flex; }
.pc-mobile-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 9px 14px;
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  cursor: pointer;
}
.pc-mobile-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.pc-mobile-links li a {
  display: block;
  padding: 13px 14px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  font-family: var(--pc-font);
  font-weight: 450;
  text-decoration: none !important;
  border-radius: 11px;
  transition: all 0.18s;
}
.pc-mobile-links li a:hover {
  background: rgba(135,115,238,0.08);
  color: var(--pc-white);
}
.pc-mobile-actions {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.pc-mobile-actions a {
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--pc-font);
  text-decoration: none !important;
  transition: var(--pc-trans);
}

/* ============================================================
   HERO
   ============================================================ */
.pc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.pc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pc-hero-content { position: relative; z-index: 2; }
.pc-hero-content .pc-label { margin-bottom: 28px; }
.pc-hero-title {
  font-family: var(--pc-font);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--pc-white);
  margin: 0 0 22px;
}
.pc-hero-title .accent {
  background: linear-gradient(135deg, #c4b8ff 0%, #8773ee 60%, #6a57d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-hero-sub {
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  margin-bottom: 40px;
  font-family: var(--pc-font);
}
.pc-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px;
}
.pc-hero-stats {
  display: flex; align-items: center; gap: 22px;
}
.pc-hero-stat .num {
  display: block;
  font-size: 1.45rem; font-weight: 700;
  color: var(--pc-white); letter-spacing: -0.025em;
  font-family: var(--pc-font);
}
.pc-hero-stat .lbl {
  font-size: 11.5px; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: var(--pc-font);
}
.pc-hero-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.10);
}

/* QR Visual */
.pc-hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.pc-phone {
  position: relative;
  width: 260px;
  margin: 0 auto;
  animation: pcPhoneFloat 6.5s ease-in-out infinite;
}
@keyframes pcPhoneFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-22px) rotate(1.5deg); }
}
.pc-phone-frame {
  background: rgba(9,14,34,0.92);
  border: 2px solid rgba(135,115,238,0.28);
  border-radius: 44px;
  padding: 20px 14px;
  box-shadow:
    0 48px 96px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.pc-phone-notch {
  width: 72px; height: 7px;
  background: rgba(135,115,238,0.25);
  border-radius: 100px;
  margin: 0 auto 18px;
}
.pc-phone-screen {
  background: #050a1a;
  border-radius: 26px;
  padding: 22px 18px;
  min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  position: relative; overflow: hidden;
}

/* Screen header */
.pc-screen-header {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.pc-screen-header .title {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: var(--pc-font);
}
.pc-screen-header .amount {
  font-size: 13px; font-weight: 700;
  color: var(--pc-purple-lt);
  font-family: var(--pc-font);
}

/* QR code SVG */
.pc-qr-wrap {
  position: relative;
  width: 154px; height: 154px;
}
.pc-qr-wrap svg { width: 100%; height: 100%; }
.pc-qr-scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,rgba(135,115,238,0.5),#8773ee,rgba(135,115,238,0.5),transparent);
  box-shadow: 0 0 12px rgba(135,115,238,0.9), 0 0 24px rgba(135,115,238,0.4);
  animation: pcQrScan 2.2s linear infinite;
  z-index: 10; border-radius: 2px;
}
@keyframes pcQrScan {
  0%   { top: 0; opacity: 1; }
  92%  { top: calc(100% - 2px); opacity: 1; }
  100% { top: calc(100% - 2px); opacity: 0; }
}

/* QR brackets */
.pc-qr-bracket {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 5;
}
.pc-qr-bracket-tl { top: -3px; left: -3px; border-top: 2.5px solid #8773ee; border-left: 2.5px solid #8773ee; border-radius: 3px 0 0 0; }
.pc-qr-bracket-tr { top: -3px; right: -3px; border-top: 2.5px solid #8773ee; border-right: 2.5px solid #8773ee; border-radius: 0 3px 0 0; }
.pc-qr-bracket-bl { bottom: -3px; left: -3px; border-bottom: 2.5px solid #8773ee; border-left: 2.5px solid #8773ee; border-radius: 0 0 0 3px; }
.pc-qr-bracket-br { bottom: -3px; right: -3px; border-bottom: 2.5px solid #8773ee; border-right: 2.5px solid #8773ee; border-radius: 0 0 3px 0; }

/* Payment success overlay */
.pc-pay-success {
  position: absolute; inset: 0;
  background: rgba(5,10,26,0.96);
  border-radius: 26px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0;
  animation: pcSuccessPulse 5s ease-in-out infinite;
  animation-delay: 2.5s;
}
@keyframes pcSuccessPulse {
  0%,38%,100% { opacity: 0; }
  48%,80%     { opacity: 1; }
}
.pc-pay-success .si {
  width: 54px; height: 54px;
  background: linear-gradient(135deg,#8773ee,#a896f5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  box-shadow: 0 0 28px rgba(135,115,238,0.55);
}
.pc-pay-success .st {
  font-size: 15px; font-weight: 600; color: white; font-family: var(--pc-font);
}
.pc-pay-success .sa {
  font-size: 12px; color: rgba(255,255,255,0.50); font-family: var(--pc-font);
}

/* Phone screen bottom */
.pc-screen-action {
  width: 100%; padding: 10px 14px;
  background: rgba(135,115,238,0.12);
  border: 1px solid rgba(135,115,238,0.20);
  border-radius: 12px;
  text-align: center;
  font-size: 12px; font-weight: 500;
  color: var(--pc-purple-lt); font-family: var(--pc-font);
}

/* Floating cards */
.pc-float-card {
  position: absolute;
  background: rgba(9,14,34,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(135,115,238,0.20);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  font-family: var(--pc-font);
  z-index: 3;
}
.pc-float-card-1 {
  top: 30px; right: -18px;
  animation: pcCardFloat1 5.5s ease-in-out infinite;
}
.pc-float-card-2 {
  bottom: 50px; left: -18px;
  animation: pcCardFloat1 5.5s ease-in-out infinite;
  animation-delay: 2.5s;
}
@keyframes pcCardFloat1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.pc-float-card .fc-amt {
  font-size: 17px; font-weight: 700; color: white; display: block; font-family: var(--pc-font);
}
.pc-float-card .fc-lbl {
  font-size: 10.5px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.06em;
}
.pc-float-card .fc-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e; margin-right: 5px;
}

/* Phone glow */
.pc-phone-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle,rgba(135,115,238,0.10) 0%,transparent 65%);
  pointer-events: none; border-radius: 50%;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.pc-features { padding: 100px 0; position: relative; }

.pc-section-head { text-align: center; margin-bottom: 60px; }
.pc-section-head .pc-label { margin-bottom: 18px; }

.pc-features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.pc-feat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(135,115,238,0.09);
  border-radius: 20px;
  padding: 30px 26px;
  transition: var(--pc-trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.pc-feat-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg,rgba(135,115,238,0.055) 0%,transparent 60%);
  opacity: 0; transition: opacity 0.32s;
}
.pc-feat-card:hover::before { opacity: 1; }
.pc-feat-card:hover {
  border-color: rgba(135,115,238,0.32);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(135,115,238,0.10), 0 0 0 1px rgba(135,115,238,0.08);
}
.pc-feat-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg,rgba(135,115,238,0.14),rgba(0,22,82,0.28));
  border: 1px solid rgba(135,115,238,0.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; color: var(--pc-purple-lt);
  margin-bottom: 18px; transition: all 0.3s;
}
.pc-feat-card:hover .pc-feat-icon {
  background: linear-gradient(135deg,rgba(135,115,238,0.24),rgba(0,22,82,0.38));
  box-shadow: 0 0 22px rgba(135,115,238,0.20);
}
.pc-feat-title {
  font-size: .97rem; font-weight: 600;
  color: var(--pc-white); margin-bottom: 9px;
  font-family: var(--pc-font); letter-spacing: -0.01em;
}
.pc-feat-desc {
  font-size: .84rem; line-height: 1.65;
  color: rgba(255,255,255,0.46); font-family: var(--pc-font);
}
.pc-feat-arrow {
  position: absolute; bottom: 22px; right: 22px;
  width: 26px; height: 26px;
  background: rgba(135,115,238,0.09); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-purple-lt); font-size: 10px;
  opacity: 0; transform: translateX(-4px);
  transition: all 0.28s;
}
.pc-feat-card:hover .pc-feat-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.pc-how { padding: 100px 0; position: relative; }

.pc-steps-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  position: relative;
}
.pc-steps-connector {
  position: absolute;
  top: 52px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(90deg,rgba(135,115,238,0.5),rgba(135,115,238,0.15) 50%,rgba(135,115,238,0.5));
  z-index: 0;
}
.pc-steps-connector::before,
.pc-steps-connector::after {
  content: '';
  position: absolute; top: -3.5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pc-purple);
  box-shadow: 0 0 12px rgba(135,115,238,0.65);
}
.pc-steps-connector::before { left: 0; }
.pc-steps-connector::after  { right: 0; }

.pc-step { position: relative; z-index: 1; text-align: center; }
.pc-step-icon-wrap {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  position: relative;
}
.pc-step-num {
  position: absolute; top: -7px; right: -7px;
  width: 23px; height: 23px;
  background: var(--pc-purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  font-family: var(--pc-font); z-index: 2;
  box-shadow: 0 0 14px rgba(135,115,238,0.55);
}
.pc-step-icon-bg {
  width: 70px; height: 70px;
  background: rgba(135,115,238,0.07);
  border: 1px solid rgba(135,115,238,0.18);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--pc-purple-lt);
  transition: var(--pc-trans);
}
.pc-step:hover .pc-step-icon-bg {
  background: rgba(135,115,238,0.14);
  border-color: rgba(135,115,238,0.38);
  box-shadow: 0 0 32px rgba(135,115,238,0.18);
  transform: scale(1.05);
}
.pc-step-title {
  font-size: 1.05rem; font-weight: 600;
  color: var(--pc-white); margin-bottom: 11px;
  font-family: var(--pc-font); letter-spacing: -0.012em;
}
.pc-step-desc {
  font-size: .855rem; line-height: 1.65;
  color: rgba(255,255,255,0.46); font-family: var(--pc-font);
}

/* ============================================================
   INTEGRATION / CODE PREVIEW
   ============================================================ */
.pc-integration { padding: 100px 0; position: relative; }
.pc-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}

/* Code Window */
.pc-code-win {
  background: rgba(8,13,30,0.85);
  border: 1px solid rgba(135,115,238,0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.pc-code-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(135,115,238,0.08);
  background: rgba(0,0,0,0.22);
}
.pc-code-dots { display: flex; gap: 6px; }
.pc-code-dot { width: 12px; height: 12px; border-radius: 50%; }
.cdr { background: #ff5f57; }
.cdy { background: #febc2e; }
.cdg { background: #28c840; }
.pc-code-tabs {
  display: flex; gap: 3px; margin-left: 6px;
}
.pc-code-tab {
  padding: 4px 12px;
  border-radius: 7px;
  font-size: 12px; font-family: var(--pc-font);
  color: rgba(255,255,255,0.36);
  cursor: pointer; transition: all 0.18s;
  border: none; background: none;
}
.pc-code-tab.active,
.pc-code-tab:hover {
  background: rgba(135,115,238,0.14);
  color: var(--pc-purple-lt);
}
.pc-code-body {
  padding: 22px 24px;
  font-family: 'JetBrains Mono','Fira Code','SF Mono','Consolas',monospace;
  font-size: 13px; line-height: 1.72;
  overflow-x: auto;
}
.pc-code-panel { display: none; }
.pc-code-panel.active { display: block; }

/* Syntax */
.ck  { color: #c792ea; }      /* keyword */
.cs  { color: #a8ff78; }      /* string */
.cc  { color: rgba(255,255,255,.28); font-style: italic; } /* comment */
.cf  { color: #82aaff; }      /* function */
.cn  { color: #f78c6c; }      /* number */
.cp  { color: #8773ee; }      /* property */
.cv  { color: #a896f5; }      /* variable */
.co  { color: rgba(255,255,255,.55); } /* operator */
.cpt { color: rgba(255,255,255,.45); } /* punctuation */
.ct  { color: rgba(255,255,255,.82); } /* plain text */

/* Integration content */
.pc-integration-content .pc-label { margin-bottom: 20px; }

.pc-int-features {
  list-style: none; padding: 0; margin: 30px 0;
  display: flex; flex-direction: column; gap: 15px;
}
.pc-int-features li {
  display: flex; align-items: flex-start; gap: 13px;
  font-family: var(--pc-font);
}
.pc-int-features li .ck-icon {
  width: 20px; height: 20px;
  background: rgba(135,115,238,0.13); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-purple-lt); font-size: 10px;
  flex-shrink: 0; margin-top: 2px;
}
.pc-int-features li .ck-text {
  font-size: 14.5px; color: rgba(255,255,255,0.68); line-height: 1.5;
}

.pc-docs-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pc-purple-lt);
  font-size: 14px; font-family: var(--pc-font); font-weight: 500;
  text-decoration: none !important;
  transition: all 0.2s;
  padding: 11px 0;
}
.pc-docs-link:hover { color: white; gap: 12px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.pc-stats { padding: 70px 0; }
.pc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(135,115,238,0.07);
  border: 1px solid rgba(135,115,238,0.07);
  border-radius: 22px;
  overflow: hidden;
}
.pc-stat-item {
  padding: 38px 28px;
  text-align: center;
  background: var(--pc-dark);
  transition: background 0.28s;
}
.pc-stat-item:hover { background: rgba(135,115,238,0.04); }
.pc-stat-num {
  font-size: 2.4rem; font-weight: 700;
  color: var(--pc-white); letter-spacing: -0.035em;
  font-family: var(--pc-font); line-height: 1;
  margin-bottom: 7px;
}
.pc-stat-num span { color: var(--pc-purple-lt); }
.pc-stat-lbl {
  font-size: 12.5px; color: rgba(255,255,255,0.38);
  font-family: var(--pc-font); text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pc-pricing { padding: 100px 0; position: relative; }
.pc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
  gap: 22px;
}
.pc-price-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(135,115,238,0.09);
  border-radius: 22px;
  padding: 30px;
  transition: var(--pc-trans);
  position: relative;
  overflow: hidden;
}
.pc-price-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,transparent,var(--pc-purple),transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pc-price-card:hover {
  border-color: rgba(135,115,238,0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.30);
}
.pc-price-card:hover::after { opacity: 1; }

.pc-price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(135,115,238,0.09);
  border: 1px solid rgba(135,115,238,0.18);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 600;
  color: var(--pc-purple-lt); font-family: var(--pc-font);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.pc-price-title {
  font-size: 1.05rem; font-weight: 600;
  color: var(--pc-white); margin-bottom: 0;
  font-family: var(--pc-font); letter-spacing: -0.012em;
}
.pc-price-sep {
  height: 1px;
  background: rgba(135,115,238,0.08);
  margin: 18px 0;
}
.pc-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; font-family: var(--pc-font);
}
.pc-price-row .pk {
  font-size: 13px; color: rgba(255,255,255,0.40);
}
.pc-price-row .pv {
  font-size: 13px; color: var(--pc-white); font-weight: 500;
}
.pc-price-row .pvp {
  font-size: 13px; font-weight: 600; color: var(--pc-purple-lt);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.pc-cta { padding: 100px 0; }
.pc-cta-card {
  background: linear-gradient(135deg,rgba(135,115,238,0.09) 0%,rgba(0,22,82,0.18) 100%);
  border: 1px solid rgba(135,115,238,0.18);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.pc-cta-card::before {
  content: '';
  position: absolute; top: -60%; left: -60%; width: 220%; height: 220%;
  background: radial-gradient(ellipse at center,rgba(135,115,238,0.06) 0%,transparent 60%);
  pointer-events: none;
}
.pc-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-top: 38px;
}
.pc-app-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-top: 24px;
}
.pc-app-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  text-decoration: none !important;
  transition: var(--pc-trans);
}
.pc-app-btn:hover {
  background: rgba(135,115,238,0.09);
  border-color: rgba(135,115,238,0.22);
}
.pc-app-btn img { width: 22px; height: 22px; object-fit: contain; }
.pc-app-btn .abt-sub {
  font-size: 10px; color: rgba(255,255,255,0.35);
  font-family: var(--pc-font); display: block;
}
.pc-app-btn .abt-main {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
  font-family: var(--pc-font); display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pc-footer {
  background: rgba(5,10,26,0.97);
  border-top: 1px solid rgba(135,115,238,0.09);
  padding: 80px 0 0;
  font-family: var(--pc-font);
}
.pc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 60px;
}
.pc-footer-logo-img { height: 32px; object-fit: contain; }
.pc-footer-tagline {
  font-size: .975rem; font-weight: 500; font-style: italic;
  color: rgba(255,255,255,0.58); line-height: 1.65; margin: 12px 0 22px;
}
.pc-footer-contacts {
  display: flex; flex-direction: column; gap: 9px;
}
.pc-footer-contacts a {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.38); font-size: 13.5px;
  text-decoration: none !important; transition: color 0.2s;
}
.pc-footer-contacts a:hover { color: rgba(255,255,255,0.75); }

.pc-footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(255,255,255,0.30);
  margin-bottom: 18px;
}
.pc-footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.pc-footer-links li a {
  color: rgba(255,255,255,0.50); font-size: 13.5px;
  text-decoration: none !important; transition: color 0.2s;
  font-family: var(--pc-font);
}
.pc-footer-links li a:hover { color: var(--pc-white); }

.pc-footer-app-list {
  display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px;
}
.pc-footer-app-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-decoration: none !important; transition: all 0.2s;
}
.pc-footer-app-item:hover {
  background: rgba(135,115,238,0.07);
  border-color: rgba(135,115,238,0.18);
}
.pc-footer-app-item img { width: 22px; height: 22px; object-fit: contain; }
.pc-footer-app-item .fa-sub {
  font-size: 10px; color: rgba(255,255,255,0.30); font-family: var(--pc-font);
}
.pc-footer-app-item .fa-main {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72); font-family: var(--pc-font);
}

/* Newsletter */
.pc-nl-label {
  font-size: 12.5px; color: rgba(255,255,255,0.42); margin-bottom: 10px; font-family: var(--pc-font);
}
.pc-nl-row { display: flex; gap: 8px; }
.pc-nl-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
  font-size: 13.5px; font-family: var(--pc-font);
  outline: none; transition: border-color 0.2s;
}
.pc-nl-input::placeholder { color: rgba(255,255,255,0.22); }
.pc-nl-input:focus { border-color: rgba(135,115,238,0.38); }
.pc-nl-btn {
  padding: 10px 16px;
  background: var(--pc-purple); border: none; border-radius: 10px;
  color: white; cursor: pointer; font-size: 13.5px;
  font-family: var(--pc-font); font-weight: 500;
  transition: background 0.2s; white-space: nowrap;
}
.pc-nl-btn:hover { background: var(--pc-purple-lt); }

/* Footer bottom */
.pc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.pc-footer-copy {
  font-size: 12.5px; color: rgba(255,255,255,0.28);
  font-family: var(--pc-font);
}
.pc-footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none !important; }
.pc-social-wrap {
  display: flex; align-items: center; gap: 7px;
}
.pc-social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.36); font-size: 13px;
  text-decoration: none !important; transition: all 0.2s;
}
.pc-social-icon:hover {
  background: rgba(135,115,238,0.10);
  border-color: rgba(135,115,238,0.28);
  color: var(--pc-purple-lt);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.pc-reveal,
.pc-reveal-l,
.pc-reveal-r {
  opacity: 0;
  transition: opacity 0.72s var(--pc-ease), transform 0.72s var(--pc-ease);
}
.pc-reveal     { transform: translateY(28px); }
.pc-reveal-l   { transform: translateX(-28px); }
.pc-reveal-r   { transform: translateX(28px); }
.pc-reveal.in,
.pc-reveal-l.in,
.pc-reveal-r.in { opacity: 1; transform: translate(0,0); }
.pc-d1 { transition-delay: .08s; }
.pc-d2 { transition-delay: .16s; }
.pc-d3 { transition-delay: .24s; }
.pc-d4 { transition-delay: .32s; }
.pc-d5 { transition-delay: .40s; }
.pc-d6 { transition-delay: .48s; }
.pc-d7 { transition-delay: .56s; }
.pc-d8 { transition-delay: .64s; }
.pc-d9 { transition-delay: .72s; }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scrollToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 42px; height: 42px;
  background: var(--pc-purple);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 14px;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 990;
  box-shadow: 0 4px 18px rgba(135,115,238,0.42);
}
.scrollToTop.active {
  opacity: 1;
  transform: translateY(0);
}
.scrollToTop span { font-size: 8px; letter-spacing: 0.04em; }
.scrollToTop:hover { background: var(--pc-purple-lt); color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pc-hero-grid        { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .pc-hero-cta         { justify-content: center; }
  .pc-hero-stats       { justify-content: center; }
  .pc-hero-sub         { max-width: 100%; }
  .pc-features-grid    { grid-template-columns: repeat(2,1fr); }
  .pc-integration-grid { grid-template-columns: 1fr; gap: 48px; }
  .pc-footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pc-stats-grid       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .pc-nav-links,
  .pc-lang-sel       { display: none; }
  .pc-nav-toggle     { display: block; }
  .pc-nav-inner      { padding: 0 20px; height: 64px; }
  .pc-hero           { padding: 96px 0 56px; }
  .pc-hero-grid,
  .pc-features-grid  { padding: 0; }
  .pc-container      { padding: 0 20px; }
  .pc-phone          { width: 220px; }
  .pc-float-card-1   { right: -8px; }
  .pc-float-card-2   { left: -8px; }
  .pc-features-grid  { grid-template-columns: 1fr; }
  .pc-steps-wrap     { grid-template-columns: 1fr; }
  .pc-steps-connector{ display: none; }
  .pc-pricing-grid   { grid-template-columns: 1fr; }
  .pc-footer-grid    { grid-template-columns: 1fr; gap: 30px; }
  .pc-cta-card       { padding: 50px 28px; }
  .pc-stats-grid     { grid-template-columns: 1fr 1fr; }
  .pc-footer-bottom  { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .pc-hero-cta       { flex-direction: column; align-items: stretch; }
  .pc-hero-cta .pc-btn { justify-content: center; }
  .pc-stats-grid     { grid-template-columns: 1fr 1fr; }
  .pc-stat-num       { font-size: 1.8rem; }
}

/* ============================================================
   COOKIE BANNER — Dark Theme Override
   ============================================================ */
.cookie-main-wrapper {
  background: rgba(9,14,34,0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(135,115,238,0.20) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5) !important;
  font-family: var(--pc-font) !important;
}
.cookie-main-wrapper .cookie-content p {
  font-family: var(--pc-font) !important;
  color: rgba(255,255,255,0.65) !important;
  font-size: 13.5px !important;
}
.cookie-main-wrapper .cookie-content p a {
  color: var(--pc-purple-lt) !important;
}
.cookie-btn {
  background: var(--pc-purple) !important;
  border-color: var(--pc-purple) !important;
  font-family: var(--pc-font) !important;
  border-radius: 8px !important;
}
.cookie-btn:hover {
  background: var(--pc-purple-lt) !important;
  border-color: var(--pc-purple-lt) !important;
}
.cookie-btn-cross {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.55) !important;
  font-family: var(--pc-font) !important;
  border-radius: 8px !important;
}

/* ============================================================
   PC-STAGGER — cascade delays for grid children
   ============================================================ */
.pc-stagger > .pc-reveal:nth-child(1)  { transition-delay: 0s; }
.pc-stagger > .pc-reveal:nth-child(2)  { transition-delay: .09s; }
.pc-stagger > .pc-reveal:nth-child(3)  { transition-delay: .18s; }
.pc-stagger > .pc-reveal:nth-child(4)  { transition-delay: .27s; }
.pc-stagger > .pc-reveal:nth-child(5)  { transition-delay: .36s; }
.pc-stagger > .pc-reveal:nth-child(6)  { transition-delay: .45s; }
.pc-stagger > .pc-reveal:nth-child(7)  { transition-delay: .54s; }
.pc-stagger > .pc-reveal:nth-child(8)  { transition-delay: .63s; }
.pc-stagger > .pc-reveal:nth-child(9)  { transition-delay: .72s; }

/* Bootstrap modal dark override (download app modal) */
.modal-content {
  background: rgba(9,14,34,0.98) !important;
  border: 1px solid rgba(135,115,238,0.20) !important;
  border-radius: 18px !important;
  font-family: var(--pc-font) !important;
}
.modal-header {
  border-bottom: 1px solid rgba(135,115,238,0.12) !important;
}
.modal-title {
  color: white !important;
  font-family: var(--pc-font) !important;
}
.btn-close {
  filter: invert(1) !important;
}

/* primary color override to purple */
:root {
  --primary-color: #8773ee;
}

/* ============================================================
   SECTION / PAGE HELPERS
   ============================================================ */
/* Spacing for sections after nav */
.pc-page-offset { padding-top: 80px; }

/* Nicer select language on older pages */
.nice-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.65) !important;
  border-radius: 8px !important;
  font-family: var(--pc-font) !important;
}
.nice-select .list {
  background: rgba(9,14,34,0.97) !important;
  border: 1px solid rgba(135,115,238,0.18) !important;
  border-radius: 12px !important;
}
.nice-select .option {
  color: rgba(255,255,255,0.65) !important;
  font-family: var(--pc-font) !important;
}
.nice-select .option:hover,
.nice-select .option.selected {
  background: rgba(135,115,238,0.10) !important;
  color: white !important;
}
