@charset "UTF-8";
/* =========================================
   CATEGORY COLOR SYSTEM
   Global CSS variables for all 11 life domains
   Generated from config.php $categoryColors
   ========================================= */
/* Global category list - use this in @each loops throughout the project */
:root {
  /* Living Environment */
  --cat-living-environment-from: #e1ec0d;
  --cat-living-environment-to: #16a34a;
  --cat-living-environment-gradient: linear-gradient(135deg, #e1ec0d, #16a34a);
  /* Personal Care & Health */
  --cat-personal-care-health-from: #ef4444;
  --cat-personal-care-health-to: #dc2626;
  --cat-personal-care-health-gradient: linear-gradient(135deg, #ef7544, #dc2626);
  /* Food, Leisure & Experiences */
  --cat-food-leisure-experiences-from: #ec4899;
  --cat-food-leisure-experiences-to: #db2777;
  --cat-food-leisure-experiences-gradient: linear-gradient(135deg, #ec4871, #db2777);
  /* Learning & Development */
  --cat-learning-development-from: #f59e0b;
  --cat-learning-development-to: #f59e0b;
  --cat-learning-development-gradient: linear-gradient(135deg, #fbbf24, #f59e0b);
  /* Work, Business & Economy */
  --cat-work-business-economy-from: #3b82f6;
  --cat-work-business-economy-to: #2563eb;
  --cat-work-business-economy-gradient: linear-gradient(135deg, #3b67f6, #2563eb);
  /* Creation & Expression */
  --cat-creation-expression-from: #a855f7;
  --cat-creation-expression-to: #9333ea;
  --cat-creation-expression-gradient: linear-gradient(135deg, #c955f7, #9333ea);
  /* Mobility & Logistics */
  --cat-mobility-logistics-from: #0ea5e9;
  --cat-mobility-logistics-to: #0284c7;
  --cat-mobility-logistics-gradient: linear-gradient(135deg, #0e6de9, #0284c7);
  /* Community & Social Life */
  --cat-community-social-life-from: #14b8a6;
  --cat-community-social-life-to: #0d9488;
  --cat-community-social-life-gradient: linear-gradient(135deg, #14a0b8, #0d9488);
  /* Administration & Legal */
  --cat-administration-legal-from: #64748b;
  --cat-administration-legal-to: #475569;
  --cat-administration-legal-gradient: linear-gradient(135deg, #646b8b, #475569);
  /* Digital Life & Technology */
  --cat-digital-life-technology-from: #6366f1;
  --cat-digital-life-technology-to: #4f46e5;
  --cat-digital-life-technology-gradient: linear-gradient(135deg, #7863f1, #4f46e5);
  /* Life Transitions & Support */
  --cat-life-transitions-support-from: #fb923c;
  --cat-life-transitions-support-to: #f97316;
  --cat-life-transitions-support-gradient: linear-gradient(135deg, #fbb83c, #f97316);
  /* Default Fallback */
  --cat-default-from: #26b513;
  --cat-default-to: #136ec2;
  --cat-default-gradient: linear-gradient(135deg, #26b513, #136ec2);
  /* Navbar height — single source of truth za padding-top hero sekcija */
  --nav-h: 100px;
}

/* =========================================
   UTILITY CLASSES
   Apply category colors directly
   ========================================= */
/* Text color utilities */
.text-cat-living-environment {
  color: var(--cat-living-environment-from);
}

/* Background gradient utilities */
.bg-cat-living-environment {
  background: var(--cat-living-environment-gradient);
}

/* Border color utilities */
.border-cat-living-environment {
  border: 2px solid var(--cat-living-environment-from);
}

/* Text color utilities */
.text-cat-personal-care-health {
  color: var(--cat-personal-care-health-from);
}

/* Background gradient utilities */
.bg-cat-personal-care-health {
  background: var(--cat-personal-care-health-gradient);
}

/* Border color utilities */
.border-cat-personal-care-health {
  border: 2px solid var(--cat-personal-care-health-from);
}

/* Text color utilities */
.text-cat-food-leisure-experiences {
  color: var(--cat-food-leisure-experiences-from);
}

/* Background gradient utilities */
.bg-cat-food-leisure-experiences {
  background: var(--cat-food-leisure-experiences-gradient);
}

/* Border color utilities */
.border-cat-food-leisure-experiences {
  border: 2px solid var(--cat-food-leisure-experiences-from);
}

/* Text color utilities */
.text-cat-learning-development {
  color: var(--cat-learning-development-from);
}

/* Background gradient utilities */
.bg-cat-learning-development {
  background: var(--cat-learning-development-gradient);
}

/* Border color utilities */
.border-cat-learning-development {
  border: 2px solid var(--cat-learning-development-from);
}

/* Text color utilities */
.text-cat-work-business-economy {
  color: var(--cat-work-business-economy-from);
}

/* Background gradient utilities */
.bg-cat-work-business-economy {
  background: var(--cat-work-business-economy-gradient);
}

/* Border color utilities */
.border-cat-work-business-economy {
  border: 2px solid var(--cat-work-business-economy-from);
}

/* Text color utilities */
.text-cat-creation-expression {
  color: var(--cat-creation-expression-from);
}

/* Background gradient utilities */
.bg-cat-creation-expression {
  background: var(--cat-creation-expression-gradient);
}

/* Border color utilities */
.border-cat-creation-expression {
  border: 2px solid var(--cat-creation-expression-from);
}

/* Text color utilities */
.text-cat-mobility-logistics {
  color: var(--cat-mobility-logistics-from);
}

/* Background gradient utilities */
.bg-cat-mobility-logistics {
  background: var(--cat-mobility-logistics-gradient);
}

/* Border color utilities */
.border-cat-mobility-logistics {
  border: 2px solid var(--cat-mobility-logistics-from);
}

/* Text color utilities */
.text-cat-community-social-life {
  color: var(--cat-community-social-life-from);
}

/* Background gradient utilities */
.bg-cat-community-social-life {
  background: var(--cat-community-social-life-gradient);
}

/* Border color utilities */
.border-cat-community-social-life {
  border: 2px solid var(--cat-community-social-life-from);
}

/* Text color utilities */
.text-cat-administration-legal {
  color: var(--cat-administration-legal-from);
}

/* Background gradient utilities */
.bg-cat-administration-legal {
  background: var(--cat-administration-legal-gradient);
}

/* Border color utilities */
.border-cat-administration-legal {
  border: 2px solid var(--cat-administration-legal-from);
}

/* Text color utilities */
.text-cat-digital-life-technology {
  color: var(--cat-digital-life-technology-from);
}

/* Background gradient utilities */
.bg-cat-digital-life-technology {
  background: var(--cat-digital-life-technology-gradient);
}

/* Border color utilities */
.border-cat-digital-life-technology {
  border: 2px solid var(--cat-digital-life-technology-from);
}

/* Text color utilities */
.text-cat-life-transitions-support {
  color: var(--cat-life-transitions-support-from);
}

/* Background gradient utilities */
.bg-cat-life-transitions-support {
  background: var(--cat-life-transitions-support-gradient);
}

/* Border color utilities */
.border-cat-life-transitions-support {
  border: 2px solid var(--cat-life-transitions-support-from);
}

/* =========================================
   2. NAVIGATION (Sticky Glass)
   ========================================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding-top: var(--safe-area-top);
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 950px) {
  .navbar {
    padding: calc(6px + var(--safe-area-top)) 20px 6px;
  }
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-glow {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-glow img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  transition: transform 0.4s ease;
}
@media (max-width: 950px) {
  .logo-glow img {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 768px) {
  .logo-glow img {
    width: 48px;
    height: 48px;
  }
}
.logo-glow .logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-glow .logo-gradient {
  background: linear-gradient(135deg, #22d3ee 0%, rgb(255, 255, 255) 50%, #a3e635 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-glow:hover .logo-icon-wrapper::before {
  opacity: 1;
}

.flag-icon {
  width: 29px;
  height: 17px;
  object-fit: cover;
  border-radius: 2px;
}

/* =========================================
   MOBILE MENU OVERLAY (Blur Background)
   ========================================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(var(--overlay-blur));
  -webkit-backdrop-filter: blur(var(--overlay-blur));
  z-index: 998;
}
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* =========================================
   HAMBURGER MENU BUTTON (Fixed Position)
   ========================================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
    position: fixed;
    right: 20px;
    top: calc(var(--safe-area-top) + 26px);
    width: 26px;
    height: 22px;
  }
}
.hamburger-btn span {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   NAV LINKS (Premium Mobile Slide-in)
   ========================================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--viewport-height);
    width: 100vw;
    background: linear-gradient(135deg, rgba(5, 5, 15, 0.99), rgba(10, 10, 20, 0.99));
    backdrop-filter: blur(var(--overlay-blur-strong)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--overlay-blur-strong)) saturate(140%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(100px + var(--safe-area-top)) 30px calc(30px + var(--safe-area-bottom));
    gap: 0;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-links.mobile-open {
    transform: translateX(0);
  }
  .nav-links:not(.mobile-open) {
    display: none;
  }
  .nav-links.sys-panel-open > a {
    display: none !important;
  }
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }
  .nav-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }
  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 10px;
  }
  .nav-links::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
  }
  .nav-links > a {
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }
  .nav-links > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-links > a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  }
  .nav-links > a:hover::before {
    opacity: 1;
  }
  .nav-links > a::after {
    display: none;
  }
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

/* CTA */
.btn-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 12px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-cta:hover {
  background: var(--accent-alt);
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* =========================================
   SYSTEM MENU STYLES (Premium Mobile)
   ========================================= */
.sys-menu {
  min-width: 250px;
  padding: 15px;
  z-index: 1000000;
}

.action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}

.action-tile:hover {
  transform: translateY(-2px);
}

.action-tile:active {
  transform: scale(0.95);
}

/* =========================================
   DROPDOWN SYSTEM MENU
   ========================================= */
.sys-dropdown {
  position: relative;
  display: inline-block;
}
@media (min-width: 769px) {
  .sys-dropdown {
    order: 999;
  }
}
@media (max-width: 768px) {
  .sys-dropdown {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 20;
    margin: 0;
    width: auto;
  }
}

/* Gear / sys toggle button — icon-only on mobile */
.sys-dropdown-button {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 12px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sys-dropdown-button:hover {
  background: var(--accent-alt);
}
.sys-dropdown-button .gear-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .sys-dropdown-button {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }
  .sys-dropdown-button:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(99, 179, 246, 0.35);
  }
  .sys-dropdown-button:active {
    transform: scale(0.91);
  }
}

@media (max-width: 768px) {
  .sys-dropdown.sys-open .sys-dropdown-button {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
  }
  .sys-dropdown.sys-open .sys-dropdown-button .gear-icon {
    transform: rotate(110deg);
  }
}

.navigation-lists {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.about-list {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.vision-list {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.quick-actions {
  font-size: 0.65rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.access-node {
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.sys-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 220px;
  padding: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  z-index: 1000;
}
@media (max-width: 768px) {
  .sys-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    min-width: unset;
  }
}

.sys-menu.active {
  display: block;
  animation: sysMenuDesktopIn 0.25s ease;
}
@media (max-width: 768px) {
  .sys-menu.active {
    animation: sysMenuSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

@media (max-width: 768px) {
  .sys-menu.closing {
    animation: sysMenuSlideOut 0.3s cubic-bezier(0.55, 0, 1, 0.45) forwards;
  }
}

@keyframes sysMenuDesktopIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sysMenuSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sysMenuSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(40px);
  }
}
/* Theme toggle row */
.theme-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 15px;
}

.inteface-mode {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

/* Toggle (improved theme harmony) */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  transition: 0.35s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text);
  transition: 0.35s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgba(201, 162, 39, 0.35);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Language switcher row */
.lang-switch-row {
  display: flex;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.language-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.lang-options {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.lang-btn.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

/* =========================================
   NAV LINK ICON COLORS + HOVER ANIMATION
   ========================================= */
.nav-links a.nav-link-colored {
  transition: color 0.25s ease, transform 0.2s ease;
}
.nav-links a.nav-link-colored i {
  display: inline-block;
  transition: color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a.nav-golden-heart i {
  color: #fbbf24;
}
.nav-links a.nav-golden-heart:hover {
  color: #fcd34d;
}
.nav-links a.nav-golden-heart:hover i {
  color: #fcd34d;
  transform: scale(1.25) rotate(-10deg);
}

.nav-links a.nav-link-b2b i {
  color: #60a5fa;
}
.nav-links a.nav-link-b2b:hover {
  color: #93c5fd;
}
.nav-links a.nav-link-b2b:hover i {
  color: #93c5fd;
  transform: scale(1.2) rotate(8deg);
}

.nav-links a.nav-link-about i {
  color: #34d399;
}
.nav-links a.nav-link-about:hover {
  color: #6ee7b7;
}
.nav-links a.nav-link-about:hover i {
  color: #6ee7b7;
  transform: scale(1.2);
}

.nav-links a.nav-link-vision i {
  color: #a78bfa;
}
.nav-links a.nav-link-vision:hover {
  color: #c4b5fd;
}
.nav-links a.nav-link-vision:hover i {
  color: #c4b5fd;
  transform: scale(1.2) translateY(-2px);
}

.nav-links a.nav-link-contact i {
  color: #2dd4bf;
}
.nav-links a.nav-link-contact:hover {
  color: #5eead4;
}
.nav-links a.nav-link-contact:hover i {
  color: #5eead4;
  transform: scale(1.2) rotate(-5deg);
}

.nav-links a.nav-link-register i {
  color: #fbbf24;
}
.nav-links a.nav-link-register:hover {
  color: #fcd34d;
}
.nav-links a.nav-link-register:hover i {
  color: #fcd34d;
  transform: scale(1.2);
}

/* =========================================
   CATEGORY & SEARCH ENGINE STYLES
   ========================================= */
.category-main {
  --hero-c1: #fff;
  --hero-c2: #ccc;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* === REDIZAJNIRANI DOCK (Osnovno stanje) === */
.sticky-search-dock,
.category-sticky-search-dock {
  position: relative;
  z-index: 900;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  max-height: 300px;
  overflow: visible;
  width: 100%;
}
@media (max-width: 768px) {
  .sticky-search-dock .search-dock-layout,
  .category-sticky-search-dock .search-dock-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .sticky-search-dock .search-dock-content,
  .category-sticky-search-dock .search-dock-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sticky-search-dock .search-input-wrapper,
  .category-sticky-search-dock .search-input-wrapper {
    grid-column: 1/-1;
    width: 100%;
  }
  .sticky-search-dock .btn-outline,
  .category-sticky-search-dock .btn-outline {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

body.category-menu-open .category-sticky-search-dock {
  z-index: 10050;
}

body.light-mode .category-menu-open .category-sticky-search-dock {
  z-index: 10050;
}

/* === STICKY STANJE (Aktivira se preko JS) === */
body.search-active {
  /* Oba dock-a dele istu logiku fiksiranja */
}
body.search-active .sticky-search-dock,
body.search-active .category-sticky-search-dock {
  position: fixed;
  top: calc(var(--safe-area-top) + 100px); /* Pozicija ispod tvog navbara */
  left: 0;
  width: 100%;
  padding: 0;
  padding-top: 15px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(var(--surface-blur));
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
  z-index: 70;
  animation: searchSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  /* Smanjujemo donji margin pill-a u fiksnom stanju */
}
@media (max-width: 952px) {
  body.search-active .sticky-search-dock,
  body.search-active .category-sticky-search-dock {
    top: calc(var(--safe-area-top) + 83px);
  }
}
body.search-active.category-menu-open .category-sticky-search-dock {
  z-index: 10050;
}
body.search-active {
  /* Padding na kontejneru ispod da layout ne "trzne" */
}
body.search-active .padding-fixed,
body.search-active .modern-hero + .results-grid {
  padding-top: 100px;
}

body.search-active.search-dock-hidden .sticky-search-dock,
body.search-active.search-dock-hidden .category-sticky-search-dock {
  animation: none;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  box-shadow: none;
}
@media (max-width: 900px) {
  body.search-active.search-dock-hidden .sticky-search-dock,
  body.search-active.search-dock-hidden .category-sticky-search-dock {
    transform: none;
    max-height: 0 !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom-width: 0 !important;
  }
}

/* --- GLAVNI KONTEJNER (Centriranje leve i desne strane) --- */
.search-dock-layout {
  display: flex;
  align-items: center; /* Vertikalno centrira Pill i Input blok */
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- LEVA SEKCIJA (Current Sector) --- */
.dock-section.left-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

/* --- CENTRALNA SEKCIJA (Input + Status ispod) --- */
.dock-section.center-section {
  flex: 1;
  display: flex;
  flex-direction: column; /* Ređa elemente jedan ispod drugog */
  align-items: flex-start; /* Poravnava input i status uz levu ivicu */
  max-width: 800px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  /* LUPA FIX */
}
.search-input-wrapper .search-icon {
  position: absolute;
  left: 18px; /* Pozicija unutar polja */
  top: 50%;
  transform: translateY(-50%);
  color: var(--prof-c1, #666);
  font-size: 1.1rem;
  z-index: 5;
  pointer-events: none;
  opacity: 0.7;
}
.search-input-wrapper input {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  /* Ključno: 52px padding levo da tekst krene nakon lupe */
  padding: 14px 20px 14px 52px !important;
  color: #eee;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.search-input-wrapper input:focus {
  border-color: var(--prof-c1);
  background: #161616;
}

/* STATUS TEKST ISPOD INPUTA */
#searchStatus {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--prof-c1);
  text-transform: uppercase;
  margin-top: 8px; /* Razmak između polja i teksta */
  padding-left: 2px; /* Malo poravnanje sa ivicom inputa */
  min-height: 15px;
}

.sector-label {
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 4px; /* Smanjeno sa 5px za bolji balans */
  text-transform: uppercase;
}

/* Base sector-pill styles */
.sector-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 50px;
  min-width: 260px;
  transition: 0.3s;
  position: relative;
  z-index: 201;
  cursor: pointer;
}

/* Category-specific colors */
.category-living-environment .sector-pill {
  border: 1px solid var(--cat-living-environment-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-living-environment .sector-pill {
    background: var(--cat-living-environment-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-living-environment .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-living-environment-rgb, 255, 255, 255), 0.2);
}

.category-personal-care-health .sector-pill {
  border: 1px solid var(--cat-personal-care-health-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-personal-care-health .sector-pill {
    background: var(--cat-personal-care-health-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-personal-care-health .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-personal-care-health-rgb, 255, 255, 255), 0.2);
}

.category-food-leisure-experiences .sector-pill {
  border: 1px solid var(--cat-food-leisure-experiences-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-food-leisure-experiences .sector-pill {
    background: var(--cat-food-leisure-experiences-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-food-leisure-experiences .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-food-leisure-experiences-rgb, 255, 255, 255), 0.2);
}

.category-learning-development .sector-pill {
  border: 1px solid var(--cat-learning-development-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-learning-development .sector-pill {
    background: var(--cat-learning-development-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-learning-development .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-learning-development-rgb, 255, 255, 255), 0.2);
}

.category-work-business-economy .sector-pill {
  border: 1px solid var(--cat-work-business-economy-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-work-business-economy .sector-pill {
    background: var(--cat-work-business-economy-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-work-business-economy .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-work-business-economy-rgb, 255, 255, 255), 0.2);
}

.category-creation-expression .sector-pill {
  border: 1px solid var(--cat-creation-expression-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-creation-expression .sector-pill {
    background: var(--cat-creation-expression-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-creation-expression .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-creation-expression-rgb, 255, 255, 255), 0.2);
}

.category-mobility-logistics .sector-pill {
  border: 1px solid var(--cat-mobility-logistics-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-mobility-logistics .sector-pill {
    background: var(--cat-mobility-logistics-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-mobility-logistics .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-mobility-logistics-rgb, 255, 255, 255), 0.2);
}

.category-community-social-life .sector-pill {
  border: 1px solid var(--cat-community-social-life-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-community-social-life .sector-pill {
    background: var(--cat-community-social-life-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-community-social-life .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-community-social-life-rgb, 255, 255, 255), 0.2);
}

.category-administration-legal .sector-pill {
  border: 1px solid var(--cat-administration-legal-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-administration-legal .sector-pill {
    background: var(--cat-administration-legal-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-administration-legal .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-administration-legal-rgb, 255, 255, 255), 0.2);
}

.category-digital-life-technology .sector-pill {
  border: 1px solid var(--cat-digital-life-technology-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-digital-life-technology .sector-pill {
    background: var(--cat-digital-life-technology-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-digital-life-technology .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-digital-life-technology-rgb, 255, 255, 255), 0.2);
}

.category-life-transitions-support .sector-pill {
  border: 1px solid var(--cat-life-transitions-support-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-life-transitions-support .sector-pill {
    background: var(--cat-life-transitions-support-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.category-life-transitions-support .sector-pill:hover {
  box-shadow: 0 0 15px rgba(var(--cat-life-transitions-support-rgb, 255, 255, 255), 0.2);
}

/* Category-specific colors */
body.light-mode .category-living-environment .sector-pill {
  border: 1px solid var(--cat-living-environment-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-living-environment .sector-pill {
    background: var(--cat-living-environment-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-personal-care-health .sector-pill {
  border: 1px solid var(--cat-personal-care-health-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-personal-care-health .sector-pill {
    background: var(--cat-personal-care-health-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-food-leisure-experiences .sector-pill {
  border: 1px solid var(--cat-food-leisure-experiences-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-food-leisure-experiences .sector-pill {
    background: var(--cat-food-leisure-experiences-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-learning-development .sector-pill {
  border: 1px solid var(--cat-learning-development-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-learning-development .sector-pill {
    background: var(--cat-learning-development-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-work-business-economy .sector-pill {
  border: 1px solid var(--cat-work-business-economy-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-work-business-economy .sector-pill {
    background: var(--cat-work-business-economy-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-creation-expression .sector-pill {
  border: 1px solid var(--cat-creation-expression-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-creation-expression .sector-pill {
    background: var(--cat-creation-expression-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-mobility-logistics .sector-pill {
  border: 1px solid var(--cat-mobility-logistics-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-mobility-logistics .sector-pill {
    background: var(--cat-mobility-logistics-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-community-social-life .sector-pill {
  border: 1px solid var(--cat-community-social-life-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-community-social-life .sector-pill {
    background: var(--cat-community-social-life-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-administration-legal .sector-pill {
  border: 1px solid var(--cat-administration-legal-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-administration-legal .sector-pill {
    background: var(--cat-administration-legal-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-digital-life-technology .sector-pill {
  border: 1px solid var(--cat-digital-life-technology-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-digital-life-technology .sector-pill {
    background: var(--cat-digital-life-technology-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

body.light-mode .category-life-transitions-support .sector-pill {
  border: 1px solid var(--cat-life-transitions-support-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  body.light-mode .category-life-transitions-support .sector-pill {
    background: var(--cat-life-transitions-support-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.clear-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #666;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.clear-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* --- NAVIGATOR --- */
.category-navigator {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-navigator .nav-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .category-navigator .nav-label {
    display: none;
  }
}

/* Glavno dugme koje otvara meni */
.custom-select-trigger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  justify-content: space-between;
}

.sector-pill-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-trigger:hover,
.custom-select-trigger.open {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.current-cat {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-icon {
  font-size: 1.2em;
}

.chevron {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.custom-select-trigger.open .pill-arrow {
  transform: rotate(180deg);
}

/* --- DROPDOWN KONTEJNER --- */
.custom-dropdown-menu {
  position: absolute;
  /* Postavlja meni tačno ispod pilule sa malim razmakom */
  top: calc(100% - 50px);
  left: 0;
  width: 100%;
  min-width: 260px;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 15px 0 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99999;
  overflow: hidden;
}

.custom-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- KONTEJNER ZA SKROL --- */
.menu-grid {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 8px;
}
.menu-grid::-webkit-scrollbar {
  width: 4px;
}
.menu-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.menu-header {
  padding: 0 24px 15px 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

/* --- STAVKE U MENIJU --- */
.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  border: 1px solid transparent;
}
.menu-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transform: translateX(4px);
}

/* Category-specific menu item colors */
.category-living-environment .menu-item:hover {
  background: color-mix(in srgb, var(--cat-living-environment-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-living-environment-from) 15%, transparent);
}
.category-living-environment .menu-item.active {
  background: color-mix(in srgb, var(--cat-living-environment-from) 12%, transparent);
  color: var(--cat-living-environment-from);
  border-color: color-mix(in srgb, var(--cat-living-environment-from) 25%, transparent);
}
.category-living-environment .menu-item.active .item-icon {
  color: var(--cat-living-environment-from);
}

.category-living-environment .menu-header {
  color: color-mix(in srgb, var(--cat-living-environment-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-living-environment .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-living-environment-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-living-environment-from) 10%, transparent);
}

.category-personal-care-health .menu-item:hover {
  background: color-mix(in srgb, var(--cat-personal-care-health-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-personal-care-health-from) 15%, transparent);
}
.category-personal-care-health .menu-item.active {
  background: color-mix(in srgb, var(--cat-personal-care-health-from) 12%, transparent);
  color: var(--cat-personal-care-health-from);
  border-color: color-mix(in srgb, var(--cat-personal-care-health-from) 25%, transparent);
}
.category-personal-care-health .menu-item.active .item-icon {
  color: var(--cat-personal-care-health-from);
}

.category-personal-care-health .menu-header {
  color: color-mix(in srgb, var(--cat-personal-care-health-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-personal-care-health .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-personal-care-health-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-personal-care-health-from) 10%, transparent);
}

.category-food-leisure-experiences .menu-item:hover {
  background: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 15%, transparent);
}
.category-food-leisure-experiences .menu-item.active {
  background: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 12%, transparent);
  color: var(--cat-food-leisure-experiences-from);
  border-color: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 25%, transparent);
}
.category-food-leisure-experiences .menu-item.active .item-icon {
  color: var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .menu-header {
  color: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-food-leisure-experiences .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-food-leisure-experiences-from) 10%, transparent);
}

.category-learning-development .menu-item:hover {
  background: color-mix(in srgb, var(--cat-learning-development-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-learning-development-from) 15%, transparent);
}
.category-learning-development .menu-item.active {
  background: color-mix(in srgb, var(--cat-learning-development-from) 12%, transparent);
  color: var(--cat-learning-development-from);
  border-color: color-mix(in srgb, var(--cat-learning-development-from) 25%, transparent);
}
.category-learning-development .menu-item.active .item-icon {
  color: var(--cat-learning-development-from);
}

.category-learning-development .menu-header {
  color: color-mix(in srgb, var(--cat-learning-development-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-learning-development .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-learning-development-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-learning-development-from) 10%, transparent);
}

.category-work-business-economy .menu-item:hover {
  background: color-mix(in srgb, var(--cat-work-business-economy-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-work-business-economy-from) 15%, transparent);
}
.category-work-business-economy .menu-item.active {
  background: color-mix(in srgb, var(--cat-work-business-economy-from) 12%, transparent);
  color: var(--cat-work-business-economy-from);
  border-color: color-mix(in srgb, var(--cat-work-business-economy-from) 25%, transparent);
}
.category-work-business-economy .menu-item.active .item-icon {
  color: var(--cat-work-business-economy-from);
}

.category-work-business-economy .menu-header {
  color: color-mix(in srgb, var(--cat-work-business-economy-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-work-business-economy .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-work-business-economy-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-work-business-economy-from) 10%, transparent);
}

.category-creation-expression .menu-item:hover {
  background: color-mix(in srgb, var(--cat-creation-expression-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-creation-expression-from) 15%, transparent);
}
.category-creation-expression .menu-item.active {
  background: color-mix(in srgb, var(--cat-creation-expression-from) 12%, transparent);
  color: var(--cat-creation-expression-from);
  border-color: color-mix(in srgb, var(--cat-creation-expression-from) 25%, transparent);
}
.category-creation-expression .menu-item.active .item-icon {
  color: var(--cat-creation-expression-from);
}

.category-creation-expression .menu-header {
  color: color-mix(in srgb, var(--cat-creation-expression-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-creation-expression .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-creation-expression-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-creation-expression-from) 10%, transparent);
}

.category-mobility-logistics .menu-item:hover {
  background: color-mix(in srgb, var(--cat-mobility-logistics-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-mobility-logistics-from) 15%, transparent);
}
.category-mobility-logistics .menu-item.active {
  background: color-mix(in srgb, var(--cat-mobility-logistics-from) 12%, transparent);
  color: var(--cat-mobility-logistics-from);
  border-color: color-mix(in srgb, var(--cat-mobility-logistics-from) 25%, transparent);
}
.category-mobility-logistics .menu-item.active .item-icon {
  color: var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .menu-header {
  color: color-mix(in srgb, var(--cat-mobility-logistics-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-mobility-logistics .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-mobility-logistics-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-mobility-logistics-from) 10%, transparent);
}

.category-community-social-life .menu-item:hover {
  background: color-mix(in srgb, var(--cat-community-social-life-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-community-social-life-from) 15%, transparent);
}
.category-community-social-life .menu-item.active {
  background: color-mix(in srgb, var(--cat-community-social-life-from) 12%, transparent);
  color: var(--cat-community-social-life-from);
  border-color: color-mix(in srgb, var(--cat-community-social-life-from) 25%, transparent);
}
.category-community-social-life .menu-item.active .item-icon {
  color: var(--cat-community-social-life-from);
}

.category-community-social-life .menu-header {
  color: color-mix(in srgb, var(--cat-community-social-life-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-community-social-life .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-community-social-life-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-community-social-life-from) 10%, transparent);
}

.category-administration-legal .menu-item:hover {
  background: color-mix(in srgb, var(--cat-administration-legal-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-administration-legal-from) 15%, transparent);
}
.category-administration-legal .menu-item.active {
  background: color-mix(in srgb, var(--cat-administration-legal-from) 12%, transparent);
  color: var(--cat-administration-legal-from);
  border-color: color-mix(in srgb, var(--cat-administration-legal-from) 25%, transparent);
}
.category-administration-legal .menu-item.active .item-icon {
  color: var(--cat-administration-legal-from);
}

.category-administration-legal .menu-header {
  color: color-mix(in srgb, var(--cat-administration-legal-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-administration-legal .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-administration-legal-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-administration-legal-from) 10%, transparent);
}

.category-digital-life-technology .menu-item:hover {
  background: color-mix(in srgb, var(--cat-digital-life-technology-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-digital-life-technology-from) 15%, transparent);
}
.category-digital-life-technology .menu-item.active {
  background: color-mix(in srgb, var(--cat-digital-life-technology-from) 12%, transparent);
  color: var(--cat-digital-life-technology-from);
  border-color: color-mix(in srgb, var(--cat-digital-life-technology-from) 25%, transparent);
}
.category-digital-life-technology .menu-item.active .item-icon {
  color: var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .menu-header {
  color: color-mix(in srgb, var(--cat-digital-life-technology-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-digital-life-technology .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-digital-life-technology-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-digital-life-technology-from) 10%, transparent);
}

.category-life-transitions-support .menu-item:hover {
  background: color-mix(in srgb, var(--cat-life-transitions-support-from) 8%, transparent);
  border-color: color-mix(in srgb, var(--cat-life-transitions-support-from) 15%, transparent);
}
.category-life-transitions-support .menu-item.active {
  background: color-mix(in srgb, var(--cat-life-transitions-support-from) 12%, transparent);
  color: var(--cat-life-transitions-support-from);
  border-color: color-mix(in srgb, var(--cat-life-transitions-support-from) 25%, transparent);
}
.category-life-transitions-support .menu-item.active .item-icon {
  color: var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .menu-header {
  color: color-mix(in srgb, var(--cat-life-transitions-support-from) 50%, rgba(255, 255, 255, 0.3));
}

.category-life-transitions-support .custom-dropdown-menu {
  border-color: color-mix(in srgb, var(--cat-life-transitions-support-from) 15%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px color-mix(in srgb, var(--cat-life-transitions-support-from) 10%, transparent);
}

.item-icon {
  margin-right: 14px;
  font-size: 1.2rem;
  width: 24px;
  display: flex;
  justify-content: center;
  opacity: 0.9;
  transition: filter 0.2s ease, color 0.2s ease;
}

.check-mark {
  margin-left: auto;
  font-size: 0.8em;
}

.menu-item[data-category=living_environment]:hover,
.menu-item[data-category=living_environment].active {
  color: var(--cat-living-environment-from);
}

.dock-mini-item[data-cat=living_environment]:hover,
.dock-mini-item[data-cat=living_environment].active {
  color: var(--cat-living-environment-from);
}

.menu-item[data-category=personal_care_health]:hover,
.menu-item[data-category=personal_care_health].active {
  color: var(--cat-personal-care-health-from);
}

.dock-mini-item[data-cat=personal_care_health]:hover,
.dock-mini-item[data-cat=personal_care_health].active {
  color: var(--cat-personal-care-health-from);
}

.menu-item[data-category=food_leisure_experiences]:hover,
.menu-item[data-category=food_leisure_experiences].active {
  color: var(--cat-food-leisure-experiences-from);
}

.dock-mini-item[data-cat=food_leisure_experiences]:hover,
.dock-mini-item[data-cat=food_leisure_experiences].active {
  color: var(--cat-food-leisure-experiences-from);
}

.menu-item[data-category=learning_development]:hover,
.menu-item[data-category=learning_development].active {
  color: var(--cat-learning-development-from);
}

.dock-mini-item[data-cat=learning_development]:hover,
.dock-mini-item[data-cat=learning_development].active {
  color: var(--cat-learning-development-from);
}

.menu-item[data-category=work_business_economy]:hover,
.menu-item[data-category=work_business_economy].active {
  color: var(--cat-work-business-economy-from);
}

.dock-mini-item[data-cat=work_business_economy]:hover,
.dock-mini-item[data-cat=work_business_economy].active {
  color: var(--cat-work-business-economy-from);
}

.menu-item[data-category=creation_expression]:hover,
.menu-item[data-category=creation_expression].active {
  color: var(--cat-creation-expression-from);
}

.dock-mini-item[data-cat=creation_expression]:hover,
.dock-mini-item[data-cat=creation_expression].active {
  color: var(--cat-creation-expression-from);
}

.menu-item[data-category=mobility_logistics]:hover,
.menu-item[data-category=mobility_logistics].active {
  color: var(--cat-mobility-logistics-from);
}

.dock-mini-item[data-cat=mobility_logistics]:hover,
.dock-mini-item[data-cat=mobility_logistics].active {
  color: var(--cat-mobility-logistics-from);
}

.menu-item[data-category=community_social_life]:hover,
.menu-item[data-category=community_social_life].active {
  color: var(--cat-community-social-life-from);
}

.dock-mini-item[data-cat=community_social_life]:hover,
.dock-mini-item[data-cat=community_social_life].active {
  color: var(--cat-community-social-life-from);
}

.menu-item[data-category=administration_legal]:hover,
.menu-item[data-category=administration_legal].active {
  color: var(--cat-administration-legal-from);
}

.dock-mini-item[data-cat=administration_legal]:hover,
.dock-mini-item[data-cat=administration_legal].active {
  color: var(--cat-administration-legal-from);
}

.menu-item[data-category=digital_life_technology]:hover,
.menu-item[data-category=digital_life_technology].active {
  color: var(--cat-digital-life-technology-from);
}

.dock-mini-item[data-cat=digital_life_technology]:hover,
.dock-mini-item[data-cat=digital_life_technology].active {
  color: var(--cat-digital-life-technology-from);
}

.menu-item[data-category=life_transitions_support]:hover,
.menu-item[data-category=life_transitions_support].active {
  color: var(--cat-life-transitions-support-from);
}

.dock-mini-item[data-cat=life_transitions_support]:hover,
.dock-mini-item[data-cat=life_transitions_support].active {
  color: var(--cat-life-transitions-support-from);
}

.item-icon,
.dock-mini-item-icon {
  opacity: 1 !important;
}

/* --- DESNI DEO: BACK DUGME --- */
.nav-back-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid transparent; /* Za layout consistency */
  text-decoration: none;
  gap: 5px;
}

.nav-back-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-back-btn .icon-arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.nav-back-btn:hover .icon-arrow {
  transform: translateX(-4px); /* Strelica ide levo pri hoveru */
}

.search-engine-page .sticky-search-dock .search-input-wrapper .clear-btn {
  right: 225px;
  z-index: 7;
}

/* Mobilno prilagođavanje */
@media (max-width: 576px) {
  .custom-select-trigger {
    min-width: auto;
    padding: 8px 15px;
  }
  .nav-back-btn .text {
    display: none; /* Sakrij tekst "Search Engine" na malim ekranima */
  }
  .nav-back-btn {
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
  }
}
#searchStatus {
  text-align: center;
  font-size: 0.73rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  padding-left: 0;
  margin-top: 6px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  min-height: 18px;
  transition: opacity 0.25s ease;
}
#searchStatus em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
#searchStatus strong {
  color: #fff;
  font-weight: 700;
}

.search-engine-page {
  min-height: var(--viewport-height-static);
  padding-top: 101px;
}
@media (max-width: 950px) {
  .search-engine-page {
    padding-top: 101px;
  }
}
@media (max-width: 768px) {
  .search-engine-page {
    padding-top: 85px;
  }
}

.search-dock-content {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .search-dock-content {
    flex-wrap: wrap;
  }
}

.search-dock-content .dock-icon-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  line-height: 1;
}
.search-dock-content .dock-icon-btn span,
.search-dock-content .dock-icon-btn svg {
  pointer-events: none;
}
.search-dock-content .dock-icon-btn span {
  font-size: 1.15rem;
  font-weight: 700;
}

.dock-mini-filter {
  position: relative;
}

.dock-mini-pill {
  width: auto;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  gap: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.dock-mini-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.dock-mini-pill .dock-mini-icon {
  font-size: 0.92rem;
  line-height: 1;
}
.dock-mini-pill .dock-mini-arrow {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.28s ease, opacity 0.22s ease, max-width 0.22s ease;
}
.dock-mini-pill.open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.dock-mini-pill.open .dock-mini-arrow {
  opacity: 0.7;
  max-width: 20px;
}
.dock-mini-pill.open .dock-mini-arrow {
  transform: rotate(180deg);
}

.dock-mini-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 230px;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 9999;
}
.dock-mini-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dock-mini-header {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
  padding: 4px 8px 10px;
}

.dock-mini-grid {
  max-height: 270px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 2px;
}
.dock-mini-grid::-webkit-scrollbar {
  width: 3px;
}
.dock-mini-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.dock-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  width: 100%;
}
.dock-mini-item .dock-mini-item-icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.8;
  flex-shrink: 0;
}
.dock-mini-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.dock-mini-item.active {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.18);
  color: #c7d2fe;
}
.dock-mini-item.active .dock-mini-item-icon {
  opacity: 1;
}

.dock-mini-pill.map-locked,
#filterToggle.map-locked {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.6);
}

@media (max-width: 480px) {
  .dock-mini-dropdown {
    min-width: 210px;
  }
}
.search-engine-page .sticky-search-dock .search-input-wrapper {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.search-engine-page .sticky-search-dock .search-input-wrapper #engineInput {
  border-color: rgba(255, 255, 255, 0.06);
  padding-right: 196px !important;
}
.search-engine-page .sticky-search-dock .search-input-wrapper #engineInput:focus {
  border-color: rgba(102, 126, 234, 0.35);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.07);
}
.search-engine-page .sticky-search-dock .input-actions {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 6;
  pointer-events: all;
}
.search-engine-page .sticky-search-dock .input-actions .dock-icon-btn {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.search-engine-page .sticky-search-dock .input-actions .dock-icon-btn span, .search-engine-page .sticky-search-dock .input-actions .dock-icon-btn svg {
  pointer-events: none;
}
.search-engine-page .sticky-search-dock .input-actions .dock-icon-btn span {
  font-size: 1rem;
  font-weight: 700;
}
.search-engine-page .sticky-search-dock .input-actions .dock-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.search-engine-page .sticky-search-dock .input-actions .dock-icon-btn.dock-filter-btn.active {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.35);
  color: #a5b4fc;
}
.search-engine-page .sticky-search-dock .dock-mini-filter {
  position: relative;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn {
  width: auto;
  min-width: 36px;
  padding: 0 9px;
  gap: 1px;
  border-radius: 9px;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn .dock-mini-icon {
  font-size: 0.95rem;
  line-height: 1;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn .dock-mini-arrow {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.25s ease, max-width 0.25s ease;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn.open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn.open .dock-mini-arrow {
  opacity: 0.7;
  max-width: 20px;
}
.search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn.open .dock-mini-arrow {
  transform: rotate(180deg);
}
.search-engine-page .sticky-search-dock .dock-mini-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 230px;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 9999;
}
.search-engine-page .sticky-search-dock .dock-mini-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-engine-page .sticky-search-dock .dock-mini-header {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
  padding: 4px 8px 10px;
}
.search-engine-page .sticky-search-dock .dock-mini-grid {
  max-height: 270px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 2px;
}
.search-engine-page .sticky-search-dock .dock-mini-grid::-webkit-scrollbar {
  width: 3px;
}
.search-engine-page .sticky-search-dock .dock-mini-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.search-engine-page .sticky-search-dock .dock-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  width: 100%;
}
.search-engine-page .sticky-search-dock .dock-mini-item .dock-mini-item-icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.8;
  flex-shrink: 0;
}
.search-engine-page .sticky-search-dock .dock-mini-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.search-engine-page .sticky-search-dock .dock-mini-item.active {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.18);
  color: #c7d2fe;
}
.search-engine-page .sticky-search-dock .dock-mini-item.active .dock-mini-item-icon {
  opacity: 1;
}
@media (max-width: 480px) {
  .search-engine-page .sticky-search-dock .dock-mini-dropdown {
    min-width: 210px;
  }
}
.search-engine-page .sticky-search-dock .search-status-action {
  display: none;
}
.search-engine-page .sticky-search-dock .search-status-bar {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0 2px;
  min-height: 20px;
  letter-spacing: 0.3px;
  transition: opacity 0.25s ease;
}
.search-engine-page .sticky-search-dock .search-status-bar em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}
.search-engine-page .sticky-search-dock .search-status-bar strong {
  color: #7c93f0;
  font-weight: 600;
}
@media (max-width: 630px) {
  .search-engine-page .sticky-search-dock {
    padding: 8px 0 70px;
    background: linear-gradient(180deg, rgba(4, 6, 8, 0.99) 0%, rgba(7, 9, 11, 0.97) 72%, rgba(10, 12, 15, 0.95) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.64);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body:not(.light-mode) .search-engine-page .sticky-search-dock {
    background: linear-gradient(180deg, rgba(4, 6, 8, 0.99) 0%, rgba(7, 9, 11, 0.97) 72%, rgba(10, 12, 15, 0.95) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.search-active:not(.light-mode) .search-engine-page .sticky-search-dock {
    background: linear-gradient(180deg, rgba(4, 6, 8, 0.99) 0%, rgba(7, 9, 11, 0.97) 72%, rgba(10, 12, 15, 0.95) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .search-engine-page .sticky-search-dock .search-status-bar {
    display: none;
  }
  .search-engine-page .sticky-search-dock .search-input-wrapper #engineInput {
    padding-right: 40px !important;
  }
  .search-engine-page .sticky-search-dock .search-input-wrapper .clear-btn {
    right: 10px;
  }
  .search-engine-page .sticky-search-dock .input-actions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    z-index: 6;
    background: linear-gradient(180deg, rgba(10, 12, 15, 0.88) 0%, rgba(10, 12, 15, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }
  .search-engine-page .sticky-search-dock .input-actions .view-toggle {
    margin-left: auto;
  }
  .search-engine-page .sticky-search-dock .input-actions .dock-icon-btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }
  .search-engine-page .sticky-search-dock .search-status-action {
    display: block;
    flex: 1;
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
  }
  .search-engine-page .sticky-search-dock .dock-mini-dropdown {
    top: calc(100% + 8px);
    bottom: auto;
    left: 0;
    right: auto;
  }
}

body.light-mode .sticky-search-dock,
body.light-mode .category-sticky-search-dock {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
body.light-mode.search-active .sticky-search-dock,
body.light-mode.search-active .category-sticky-search-dock {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(99, 102, 241, 0.2);
}
body.light-mode .search-engine-page .sticky-search-dock .search-input-wrapper #engineInput,
body.light-mode .sticky-search-dock #engineInput,
body.light-mode .category-sticky-search-dock #engineInput {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #1a1a2e !important;
}
body.light-mode .search-engine-page .sticky-search-dock .search-input-wrapper #engineInput::placeholder,
body.light-mode .sticky-search-dock #engineInput::placeholder,
body.light-mode .category-sticky-search-dock #engineInput::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
}
body.light-mode .search-engine-page .sticky-search-dock .search-input-wrapper #engineInput:focus,
body.light-mode .sticky-search-dock #engineInput:focus,
body.light-mode .category-sticky-search-dock #engineInput:focus {
  border-color: rgba(99, 102, 241, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
}
body.light-mode .sticky-search-dock .search-icon svg,
body.light-mode .category-sticky-search-dock .search-icon svg {
  color: rgba(0, 0, 0, 0.35);
}
body.light-mode .sticky-search-dock .dock-icon-btn,
body.light-mode .category-sticky-search-dock .dock-icon-btn,
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
}
body.light-mode .sticky-search-dock .dock-icon-btn:hover,
body.light-mode .category-sticky-search-dock .dock-icon-btn:hover,
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
  color: #1a1a2e;
}
body.light-mode .sticky-search-dock .dock-icon-btn.dock-filter-btn.active,
body.light-mode .category-sticky-search-dock .dock-icon-btn.dock-filter-btn.active,
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn.dock-filter-btn.active {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: #4f46e5;
}
body.light-mode .sticky-search-dock .dock-mini-pill,
body.light-mode .category-sticky-search-dock .dock-mini-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
}
body.light-mode .sticky-search-dock .dock-mini-pill.open, body.light-mode .sticky-search-dock .dock-mini-pill:hover,
body.light-mode .category-sticky-search-dock .dock-mini-pill.open,
body.light-mode .category-sticky-search-dock .dock-mini-pill:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
  color: #1a1a2e;
}
body.light-mode .sticky-search-dock .clear-btn,
body.light-mode .category-sticky-search-dock .clear-btn {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.5);
}
body.light-mode .sticky-search-dock .clear-btn:hover,
body.light-mode .category-sticky-search-dock .clear-btn:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}
body.light-mode .search-engine-page .sticky-search-dock .search-status-bar,
body.light-mode .search-status-bar {
  color: rgba(0, 0, 0, 0.45);
}
body.light-mode .search-engine-page .sticky-search-dock .search-status-bar em,
body.light-mode .search-status-bar em {
  color: rgba(0, 0, 0, 0.65);
  font-style: normal;
}
body.light-mode .search-engine-page .sticky-search-dock .search-status-bar strong,
body.light-mode .search-status-bar strong {
  color: #4f46e5;
}
body.light-mode .search-status-action {
  color: rgba(0, 0, 0, 0.4) !important;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 8px; /* Razmak do statusa */
}
.search-input-wrapper .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666; /* Tamnija boja lupe */
  pointer-events: none;
  display: flex;
  align-items: center;
}
.search-input-wrapper .search-icon svg {
  color: var(--prof-c1); /* Opcionalno: Boja kategorije za lupu */
  opacity: 0.7;
}
.search-input-wrapper {
  /* --- DESNA SEKCIJA (Back Link) --- */
}
.search-input-wrapper .dock-section {
  flex-shrink: 0;
}
.search-input-wrapper #engineInput {
  width: 100%;
  padding: 14px 50px 14px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.search-input-wrapper #engineInput:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.search-input-wrapper #engineInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.search-input-wrapper .clear-btn {
  position: absolute;
  right: 12px;
  width: 28px;
  height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.search-input-wrapper .clear-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.engine-back-link {
  background: none;
  border: none;
  color: #888;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  margin-bottom: 2.3rem;
}

@media (max-width: 600px) {
  .search-dock-content .dock-icon-btn {
    width: 44px !important;
    min-width: 44px;
    height: 44px;
  }
}
.search-results-wrapper {
  padding: 40px 0 100px;
}
@media (max-width: 768px) {
  .search-results-wrapper {
    padding: 30px 0 60px;
  }
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.results-content {
  min-width: 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .results-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.results-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 576px) {
  .results-header h2 {
    font-size: 1.4rem;
  }
}

.results-grid {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 2rem auto;
  /* DEFAULT (Mobilni): 1 kolona */
  grid-template-columns: 1fr;
  /* TABLET: 2 kolone (kada je ekran širi od 768px) */
}
@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1250px) {
  .results-grid {
    padding: 0 20px;
  }
}
.results-grid {
  /* DESKTOP: 3 kolone (kada je ekran širi od 1024px) */
}
@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.results-grid {
  /* --- Ostatak tvog koda za List View --- */
}
.results-grid.list-view {
  grid-template-columns: 1fr; /* Uvek 1 kolona za list view */
}
.results-grid.list-view .result-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.results-grid.list-view .result-card .card-body {
  order: 0;
}
.results-grid.list-view .result-card .card-footer {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.results-grid {
  /* Fallback za veoma male ekrane ako je potrebno */
}
@media (max-width: 768px) {
  .results-grid {
    gap: 16px;
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  body.mobile-nav-active #sysMenu, body.mobile-nav-active .navbar-collapse {
    z-index: 10001 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body.mobile-nav-active .sticky-search-dock {
    visibility: hidden;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .custom-dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 5%;
    right: 5%;
    width: 90%;
    max-height: 60vh;
    transform: translateY(20px);
  }
  .custom-dropdown-menu.show {
    transform: translateY(0);
  }
}
/* =========================================
   SYSTEM MENU (SYS-MENU) STYLES
   ========================================= */
.sys-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 220px;
  padding: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  z-index: 1000;
}
@media (max-width: 768px) {
  .sys-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(var(--surface-blur));
    margin-top: 12px;
    border-radius: 14px;
  }
}

.sys-menu.active {
  display: block;
  animation: slideUp 0.25s ease;
}
@media (max-width: 768px) {
  .sys-menu.active {
    animation: slideDown 0.3s ease;
  }
}

.sys-menu.closing {
  animation: slideUpOut 0.25s ease forwards;
}
@media (max-width: 768px) {
  .sys-menu.closing {
    animation: slideDownOut 0.3s ease forwards;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
@keyframes slideUpOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes slideDownOut {
  from {
    opacity: 1;
    max-height: 500px;
  }
  to {
    opacity: 0;
    max-height: 0;
  }
}
/* Theme toggle row */
.theme-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 15px;
}

.inteface-mode {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

/* Language switch row */
.lang-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 15px;
}

.language-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

/* Language options */
.lang-options {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.lang-btn {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lang-btn.active {
  background: rgba(0, 243, 255, 0.2);
  border-color: #00f3ff;
  color: #00f3ff;
}

/* Quick actions label */
.quick-actions {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* User action grid */
.user-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
}
.action-tile:hover {
  transform: translateY(-2px);
}
.action-tile:active {
  transform: scale(0.95);
}

/* --- SYSTEM MENU STYLES --- */
.sys-menu {
  min-width: 250px;
  padding: 15px;
}

/* OSNOVNI STIL PLOČICE */
.action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}

.action-tile:hover {
  transform: translateY(-2px);
}

.action-tile:active {
  transform: scale(0.95);
}

.tile-icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.tile-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- SPECIFIČNE BOJE --- */
/* 1. Dashboard (Plava) */
.tile-dash {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent); /* Pretpostavljam da je ovo plava/cyan */
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* 2. Logout (Crvena) */
.tile-logout {
  background: rgba(255, 85, 85, 0.1);
  color: #ff5555;
  border: 1px solid rgba(255, 85, 85, 0.2);
}

/* 3. Login (Amber/Gold) */
.tile-login {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.1);
}

.tile-login:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.2);
}

/* 4. Register (Accent/CTA - Istaknuto) */
.tile-register {
  background: rgba(16, 185, 129, 0.1); /* Emerald Green tint ili koristi var(--accent) */
  color: #34d399; /* Zelena za Growth/Register */
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1); /* Blagi sjaj */
}

.tile-register:hover {
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

/* 5. Engine (Teal/Blue) */
.tile-engine {
  background: rgba(14, 165, 233, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(14, 165, 233, 0.28);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.12);
}

.tile-engine:hover {
  background: rgba(14, 165, 233, 0.2);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.2);
}

/* 6. Listing (Violet/Indigo) */
.tile-listing {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.1);
}

.tile-listing:hover {
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.18);
}

/* 8. Compare (Rose/Pink) */
.tile-compare {
  background: rgba(244, 63, 94, 0.1);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.26);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.1);
}

.tile-compare:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: rgba(244, 63, 94, 0.42);
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.18);
}

/* 9. Blog (Teal/Cyan) */
.tile-blog {
  background: rgba(20, 184, 166, 0.1);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.26);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.1);
}

.tile-blog:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.18);
}

/* Buttons (your cinematic hover style, made theme-safe) */
.btn-glow, .btn-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-glow {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-gold:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #d97706;
  color: #d97706;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.18);
}

.btn-verify:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: #00f3ff;
  color: #00f3ff;
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.18);
}

.btn-ban:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff5555;
  color: #ff5555;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.18);
}

.btn-open:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.18);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 369px;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--gh-gold-1), #d97706);
  color: #1c1207;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-gold.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-save {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}
.btn-save:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.btn-danger {
  background: rgba(255, 85, 85, 0.1);
  color: #ff5555;
  border: 1px solid rgba(255, 85, 85, 0.3);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}
.btn-danger:hover {
  background: rgba(255, 85, 85, 0.2);
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hover-overlay);
  opacity: 0;
  transform: scale(1.15);
  transform-origin: center;
  will-change: opacity, transform;
  z-index: -1;
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.btn-glow:hover::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hover-overlay);
  opacity: 0;
  transform: scale(1.12);
  will-change: opacity, transform;
  z-index: -1;
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.btn-outline:hover::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.btn-outline:hover {
  border-color: rgba(124, 92, 255, 0.55);
  transform: translateY(-2px);
}

@keyframes sys-border-orbit {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes sys-glow-breathe {
  0%, 100% {
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15), 0 0 0 rgba(139, 92, 246, 0);
  }
  50% {
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.3), 0 0 28px rgba(139, 92, 246, 0.08);
  }
}
@keyframes sys-gear-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.sys-dropdown-button {
  position: relative;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-radius: 12px;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease;
  animation: sys-glow-breathe 3.5s ease-in-out infinite;
}
.sys-dropdown-button::before {
  content: none;
}
@supports ((-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)) and (-webkit-mask-composite: xor)) or ((mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)) and (mask-composite: exclude)) {
  .sys-dropdown-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(270deg, rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.4), rgba(59, 130, 246, 0.6));
    background-size: 300% 300%;
    animation: sys-border-orbit 5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    transition: padding 0.3s ease, opacity 0.3s ease;
  }
}
.sys-dropdown-button:hover {
  transform: scale(1.06) translateY(-1px);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25), 0 8px 30px rgba(139, 92, 246, 0.12);
  animation: none;
}
.sys-dropdown-button:hover::before {
  padding: 2px;
  opacity: 1;
}
.sys-dropdown-button:hover span:first-child {
  display: inline-block;
  animation: sys-gear-spin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.sys-dropdown-button:active {
  transform: scale(0.97);
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.15);
  animation: none;
}

body.light-mode .sys-dropdown-button {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.light-mode .sys-dropdown-button::before {
  background: linear-gradient(270deg, rgba(37, 99, 235, 0.5), rgba(124, 58, 237, 0.4), rgba(219, 39, 119, 0.35), rgba(37, 99, 235, 0.5));
  background-size: 300% 300%;
  animation: sys-border-orbit 5s linear infinite;
}
body.light-mode .sys-dropdown-button:hover {
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.18), 0 6px 24px rgba(124, 58, 237, 0.1);
}

.btn-ghost {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: none;
}

body.light-mode .btn-ghost {
  background: linear-gradient(135deg, #6cfe3f, #42b2fd);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
body.light-mode .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* _modern-hero.scss */
.modern-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: #050505;
  --hero-title-gradient: var(--cat-default-gradient);
  --hero-title-color: var(--cat-default-from);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h, 100px) + 60px) 0 60px;
}

/* Ambient Background */
.hero-glow-bg {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--hero-c1-rgb, 59, 130, 246), 0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}

/* --- LEFT SIDE: CONTENT --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(rgba(var(--hero-c1, 59, 130, 246), 0.15), transparent 10%);
  border: 1px solid rgba(var(--hero-c1-rgb, 59, 130, 246), 0.6);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 2px;
  box-shadow: 0 0 10px rgba(var(--hero-c1-rgb, 59, 130, 246), 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pill-badge:hover {
  background: linear-gradient(rgba(var(--hero-c1, 59, 130, 246), 0.25), transparent 70%);
  border-color: var(--hero-c1);
}

.pill-badge .dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(30deg, var(--hero-c1), #fff, var(--hero-c2));
  border-radius: 50%;
  box-shadow: 0 0 10px var(--hero-c1);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 25px;
  padding: 1rem 0;
  letter-spacing: -1.5px;
  text-align: left;
  color: var(--hero-title-color);
}

/* Gradijent za dark mode */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-title {
    background: var(--cat-default-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .category-living-environment .hero-title {
    background: var(--cat-living-environment-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-living-environment .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-living-environment-from), var(--cat-living-environment-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-personal-care-health .hero-title {
    background: var(--cat-personal-care-health-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-personal-care-health .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-personal-care-health-from), var(--cat-personal-care-health-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-food-leisure-experiences .hero-title {
    background: var(--cat-food-leisure-experiences-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-food-leisure-experiences .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-food-leisure-experiences-from), var(--cat-food-leisure-experiences-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-learning-development .hero-title {
    background: var(--cat-learning-development-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-learning-development .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-learning-development-from), var(--cat-learning-development-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-work-business-economy .hero-title {
    background: var(--cat-work-business-economy-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-work-business-economy .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-work-business-economy-from), var(--cat-work-business-economy-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-creation-expression .hero-title {
    background: var(--cat-creation-expression-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-creation-expression .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-creation-expression-from), var(--cat-creation-expression-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-mobility-logistics .hero-title {
    background: var(--cat-mobility-logistics-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-mobility-logistics .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-mobility-logistics-from), var(--cat-mobility-logistics-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-community-social-life .hero-title {
    background: var(--cat-community-social-life-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-community-social-life .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-community-social-life-from), var(--cat-community-social-life-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-administration-legal .hero-title {
    background: var(--cat-administration-legal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-administration-legal .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-administration-legal-from), var(--cat-administration-legal-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-digital-life-technology .hero-title {
    background: var(--cat-digital-life-technology-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-digital-life-technology .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-digital-life-technology-from), var(--cat-digital-life-technology-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .category-life-transitions-support .hero-title {
    background: var(--cat-life-transitions-support-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  body.light-mode .category-life-transitions-support .hero-title .category-tag-float {
    background: linear-gradient(135deg, var(--cat-life-transitions-support-from), var(--cat-life-transitions-support-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 400;
  text-align: left;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(30deg, var(--hero-c1), var(--hero-c2));
  padding: 15px 25px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mobile-scroll-btn {
  display: none;
}

/* --- RIGHT SIDE: VISUALS (MODERN SINGLE IMPACT) --- */
.hero-visuals {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.showcase-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: none;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 5;
  padding: 0;
  margin: 0;
}
.main-image-frame .category-hero-img {
  width: 100%;
  height: 100%;
  display: block;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .modern-hero {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.category-tag-float {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 12px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(var(--hero-c1-rgb, 59, 130, 246), 0.28), rgba(var(--hero-c1-rgb, 59, 130, 246), 0.08));
  border: 1px solid rgba(var(--hero-c1-rgb, 59, 130, 246), 0.55);
  box-shadow: 0 14px 34px rgba(var(--hero-c1-rgb, 59, 130, 246), 0.22);
  transition: all 0.3s ease;
  z-index: 10;
}
.category-tag-float i {
  color: #fff;
  font-size: 1.2rem;
}
.category-tag-float span {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-image-frame:hover .category-tag-float {
  background: linear-gradient(135deg, rgba(var(--hero-c1-rgb, 59, 130, 246), 0.28), rgba(var(--hero-c1-rgb, 59, 130, 246), 0.08));
  border-color: rgba(var(--hero-c1-rgb, 59, 130, 246), 0.55);
  box-shadow: 0 14px 34px rgba(var(--hero-c1-rgb, 59, 130, 246), 0.22);
}

.category-living-environment .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-living-environment-from) 0%, color-mix(in srgb, var(--cat-living-environment-to) 60%, transparent));
  border-color: var(--cat-living-environment-from);
}

.category-personal-care-health .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-personal-care-health-from) 0%, color-mix(in srgb, var(--cat-personal-care-health-to) 60%, transparent));
  border-color: var(--cat-personal-care-health-from);
}

.category-food-leisure-experiences .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-food-leisure-experiences-from) 0%, color-mix(in srgb, var(--cat-food-leisure-experiences-to) 60%, transparent));
  border-color: var(--cat-food-leisure-experiences-from);
}

.category-learning-development .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-learning-development-from) 0%, color-mix(in srgb, var(--cat-learning-development-to) 60%, transparent));
  border-color: var(--cat-learning-development-from);
}

.category-work-business-economy .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-work-business-economy-from) 0%, color-mix(in srgb, var(--cat-work-business-economy-to) 60%, transparent));
  border-color: var(--cat-work-business-economy-from);
}

.category-creation-expression .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-creation-expression-from) 0%, color-mix(in srgb, var(--cat-creation-expression-to) 60%, transparent));
  border-color: var(--cat-creation-expression-from);
}

.category-mobility-logistics .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-mobility-logistics-from) 0%, color-mix(in srgb, var(--cat-mobility-logistics-to) 60%, transparent));
  border-color: var(--cat-mobility-logistics-from);
}

.category-community-social-life .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-community-social-life-from) 0%, color-mix(in srgb, var(--cat-community-social-life-to) 60%, transparent));
  border-color: var(--cat-community-social-life-from);
}

.category-administration-legal .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-administration-legal-from) 0%, color-mix(in srgb, var(--cat-administration-legal-to) 60%, transparent));
  border-color: var(--cat-administration-legal-from);
}

.category-digital-life-technology .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-digital-life-technology-from) 0%, color-mix(in srgb, var(--cat-digital-life-technology-to) 60%, transparent));
  border-color: var(--cat-digital-life-technology-from);
}

.category-life-transitions-support .main-image-frame .category-tag-float {
  background: linear-gradient(135deg, var(--cat-life-transitions-support-from) 0%, color-mix(in srgb, var(--cat-life-transitions-support-to) 60%, transparent));
  border-color: var(--cat-life-transitions-support-from);
}

.modern-hero:hover .pill-badge {
  border-color: var(--hero-c1);
  box-shadow: 0 0 14px rgba(var(--hero-c1-rgb, 59, 130, 246), 0.38);
}

body.light-mode .search-main-row .btn-primary {
  color: #fff;
}

.accent-ring {
  position: absolute;
  width: 130%;
  height: 130%;
  border: 1px solid rgba(var(--hero-c1), 0.5);
  border-radius: 50%;
  z-index: -1;
}

/* Animirani puls za pozadinu */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
/* Responsive prilagođavanje */
@media (max-width: 992px) {
  .hero-visuals {
    height: 400px;
    margin-top: 40px;
  }
  .main-image-frame {
    transform: none;
  }
}
/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin-top: 80px;
  }
  .pill-badge {
    margin-left: 0;
  }
  .hero-visuals {
    height: 500px;
    transform: translateX(0) scale(0.9);
    margin-top: 20px;
  }
  .hero-desc {
    text-align: center;
  }
}
@media (max-width: 993px) {
  .modern-hero {
    padding-top: calc(var(--nav-h, 100px) + 20px);
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .modern-hero {
    padding-top: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-visuals {
    display: flex;
    height: 380px;
    margin-top: 0;
    transform: scale(0.65);
    transform-origin: center top;
    margin-bottom: -60px;
    pointer-events: none;
  }
  .mobile-scroll-btn {
    display: block;
    margin: 40px 0;
  }
  .visual-divider {
    width: 4px;
  }
  .mobile-scroll-btn {
    display: block;
    margin-top: 10px;
    background: var(--hero-c1);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    position: relative;
  }
  .pill-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
    gap: 5px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
  }
}
/* =========================================
   CATEGORY-SPECIFIC COLORS (Dark Mode)
   Override --hero-c1/c2 with category colors
   ========================================= */
.category-living-environment {
  --hero-c1-rgb: 225, 236, 13;
}

.category-personal-care-health {
  --hero-c1-rgb: 239, 68, 68;
}

.category-food-leisure-experiences {
  --hero-c1-rgb: 236, 72, 153;
}

.category-learning-development {
  --hero-c1-rgb: 245, 158, 11;
}

.category-work-business-economy {
  --hero-c1-rgb: 59, 130, 246;
}

.category-creation-expression {
  --hero-c1-rgb: 168, 85, 247;
}

.category-mobility-logistics {
  --hero-c1-rgb: 14, 165, 233;
}

.category-community-social-life {
  --hero-c1-rgb: 20, 184, 166;
}

.category-administration-legal {
  --hero-c1-rgb: 100, 116, 139;
}

.category-digital-life-technology {
  --hero-c1-rgb: 99, 102, 241;
}

.category-life-transitions-support {
  --hero-c1-rgb: 251, 146, 60;
}

.category-living-environment {
  --hero-c1: var(--cat-living-environment-from);
  --hero-c2: var(--cat-living-environment-to);
  --hero-title-gradient: var(--cat-living-environment-gradient);
  --hero-title-color: var(--cat-living-environment-from);
}

.category-living-environment .pill-badge {
  border-color: var(--cat-living-environment-from);
}

.category-living-environment .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-living-environment-from), #fff, var(--cat-living-environment-to));
  box-shadow: 0 0 10px var(--cat-living-environment-from);
}

.category-living-environment .mobile-scroll-btn {
  background: var(--cat-living-environment-from);
}

.category-living-environment .btn-cta {
  background: var(--cat-living-environment-from);
}

.category-living-environment .btn-cta:hover {
  background: var(--cat-living-environment-to);
}

.category-living-environment .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-living-environment-from), var(--cat-living-environment-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-living-environment .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-living-environment-from) !important;
}

.category-living-environment .nav-links a:hover {
  color: var(--cat-living-environment-from);
}

.category-personal-care-health {
  --hero-c1: var(--cat-personal-care-health-from);
  --hero-c2: var(--cat-personal-care-health-to);
  --hero-title-gradient: var(--cat-personal-care-health-gradient);
  --hero-title-color: var(--cat-personal-care-health-from);
}

.category-personal-care-health .pill-badge {
  border-color: var(--cat-personal-care-health-from);
}

.category-personal-care-health .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-personal-care-health-from), #fff, var(--cat-personal-care-health-to));
  box-shadow: 0 0 10px var(--cat-personal-care-health-from);
}

.category-personal-care-health .mobile-scroll-btn {
  background: var(--cat-personal-care-health-from);
}

.category-personal-care-health .btn-cta {
  background: var(--cat-personal-care-health-from);
}

.category-personal-care-health .btn-cta:hover {
  background: var(--cat-personal-care-health-to);
}

.category-personal-care-health .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-personal-care-health-from), var(--cat-personal-care-health-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-personal-care-health .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-personal-care-health-from) !important;
}

.category-personal-care-health .nav-links a:hover {
  color: var(--cat-personal-care-health-from);
}

.category-food-leisure-experiences {
  --hero-c1: var(--cat-food-leisure-experiences-from);
  --hero-c2: var(--cat-food-leisure-experiences-to);
  --hero-title-gradient: var(--cat-food-leisure-experiences-gradient);
  --hero-title-color: var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .pill-badge {
  border-color: var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-food-leisure-experiences-from), #fff, var(--cat-food-leisure-experiences-to));
  box-shadow: 0 0 10px var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .mobile-scroll-btn {
  background: var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .btn-cta {
  background: var(--cat-food-leisure-experiences-from);
}

.category-food-leisure-experiences .btn-cta:hover {
  background: var(--cat-food-leisure-experiences-to);
}

.category-food-leisure-experiences .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-food-leisure-experiences-from), var(--cat-food-leisure-experiences-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-food-leisure-experiences .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-food-leisure-experiences-from) !important;
}

.category-food-leisure-experiences .nav-links a:hover {
  color: var(--cat-food-leisure-experiences-from);
}

.category-learning-development {
  --hero-c1: var(--cat-learning-development-from);
  --hero-c2: var(--cat-learning-development-to);
  --hero-title-gradient: var(--cat-learning-development-gradient);
  --hero-title-color: var(--cat-learning-development-from);
}

.category-learning-development .pill-badge {
  border-color: var(--cat-learning-development-from);
}

.category-learning-development .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-learning-development-from), #fff, var(--cat-learning-development-to));
  box-shadow: 0 0 10px var(--cat-learning-development-from);
}

.category-learning-development .mobile-scroll-btn {
  background: var(--cat-learning-development-from);
}

.category-learning-development .btn-cta {
  background: var(--cat-learning-development-from);
}

.category-learning-development .btn-cta:hover {
  background: var(--cat-learning-development-to);
}

.category-learning-development .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-learning-development-from), var(--cat-learning-development-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-learning-development .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-learning-development-from) !important;
}

.category-learning-development .nav-links a:hover {
  color: var(--cat-learning-development-from);
}

.category-work-business-economy {
  --hero-c1: var(--cat-work-business-economy-from);
  --hero-c2: var(--cat-work-business-economy-to);
  --hero-title-gradient: var(--cat-work-business-economy-gradient);
  --hero-title-color: var(--cat-work-business-economy-from);
}

.category-work-business-economy .pill-badge {
  border-color: var(--cat-work-business-economy-from);
}

.category-work-business-economy .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-work-business-economy-from), #fff, var(--cat-work-business-economy-to));
  box-shadow: 0 0 10px var(--cat-work-business-economy-from);
}

.category-work-business-economy .mobile-scroll-btn {
  background: var(--cat-work-business-economy-from);
}

.category-work-business-economy .btn-cta {
  background: var(--cat-work-business-economy-from);
}

.category-work-business-economy .btn-cta:hover {
  background: var(--cat-work-business-economy-to);
}

.category-work-business-economy .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-work-business-economy-from), var(--cat-work-business-economy-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-work-business-economy .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-work-business-economy-from) !important;
}

.category-work-business-economy .nav-links a:hover {
  color: var(--cat-work-business-economy-from);
}

.category-creation-expression {
  --hero-c1: var(--cat-creation-expression-from);
  --hero-c2: var(--cat-creation-expression-to);
  --hero-title-gradient: var(--cat-creation-expression-gradient);
  --hero-title-color: var(--cat-creation-expression-from);
}

.category-creation-expression .pill-badge {
  border-color: var(--cat-creation-expression-from);
}

.category-creation-expression .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-creation-expression-from), #fff, var(--cat-creation-expression-to));
  box-shadow: 0 0 10px var(--cat-creation-expression-from);
}

.category-creation-expression .mobile-scroll-btn {
  background: var(--cat-creation-expression-from);
}

.category-creation-expression .btn-cta {
  background: var(--cat-creation-expression-from);
}

.category-creation-expression .btn-cta:hover {
  background: var(--cat-creation-expression-to);
}

.category-creation-expression .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-creation-expression-from), var(--cat-creation-expression-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-creation-expression .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-creation-expression-from) !important;
}

.category-creation-expression .nav-links a:hover {
  color: var(--cat-creation-expression-from);
}

.category-mobility-logistics {
  --hero-c1: var(--cat-mobility-logistics-from);
  --hero-c2: var(--cat-mobility-logistics-to);
  --hero-title-gradient: var(--cat-mobility-logistics-gradient);
  --hero-title-color: var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .pill-badge {
  border-color: var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-mobility-logistics-from), #fff, var(--cat-mobility-logistics-to));
  box-shadow: 0 0 10px var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .mobile-scroll-btn {
  background: var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .btn-cta {
  background: var(--cat-mobility-logistics-from);
}

.category-mobility-logistics .btn-cta:hover {
  background: var(--cat-mobility-logistics-to);
}

.category-mobility-logistics .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-mobility-logistics-from), var(--cat-mobility-logistics-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-mobility-logistics .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-mobility-logistics-from) !important;
}

.category-mobility-logistics .nav-links a:hover {
  color: var(--cat-mobility-logistics-from);
}

.category-community-social-life {
  --hero-c1: var(--cat-community-social-life-from);
  --hero-c2: var(--cat-community-social-life-to);
  --hero-title-gradient: var(--cat-community-social-life-gradient);
  --hero-title-color: var(--cat-community-social-life-from);
}

.category-community-social-life .pill-badge {
  border-color: var(--cat-community-social-life-from);
}

.category-community-social-life .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-community-social-life-from), #fff, var(--cat-community-social-life-to));
  box-shadow: 0 0 10px var(--cat-community-social-life-from);
}

.category-community-social-life .mobile-scroll-btn {
  background: var(--cat-community-social-life-from);
}

.category-community-social-life .btn-cta {
  background: var(--cat-community-social-life-from);
}

.category-community-social-life .btn-cta:hover {
  background: var(--cat-community-social-life-to);
}

.category-community-social-life .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-community-social-life-from), var(--cat-community-social-life-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-community-social-life .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-community-social-life-from) !important;
}

.category-community-social-life .nav-links a:hover {
  color: var(--cat-community-social-life-from);
}

.category-administration-legal {
  --hero-c1: var(--cat-administration-legal-from);
  --hero-c2: var(--cat-administration-legal-to);
  --hero-title-gradient: var(--cat-administration-legal-gradient);
  --hero-title-color: var(--cat-administration-legal-from);
}

.category-administration-legal .pill-badge {
  border-color: var(--cat-administration-legal-from);
}

.category-administration-legal .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-administration-legal-from), #fff, var(--cat-administration-legal-to));
  box-shadow: 0 0 10px var(--cat-administration-legal-from);
}

.category-administration-legal .mobile-scroll-btn {
  background: var(--cat-administration-legal-from);
}

.category-administration-legal .btn-cta {
  background: var(--cat-administration-legal-from);
}

.category-administration-legal .btn-cta:hover {
  background: var(--cat-administration-legal-to);
}

.category-administration-legal .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-administration-legal-from), var(--cat-administration-legal-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-administration-legal .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-administration-legal-from) !important;
}

.category-administration-legal .nav-links a:hover {
  color: var(--cat-administration-legal-from);
}

.category-digital-life-technology {
  --hero-c1: var(--cat-digital-life-technology-from);
  --hero-c2: var(--cat-digital-life-technology-to);
  --hero-title-gradient: var(--cat-digital-life-technology-gradient);
  --hero-title-color: var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .pill-badge {
  border-color: var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-digital-life-technology-from), #fff, var(--cat-digital-life-technology-to));
  box-shadow: 0 0 10px var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .mobile-scroll-btn {
  background: var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .btn-cta {
  background: var(--cat-digital-life-technology-from);
}

.category-digital-life-technology .btn-cta:hover {
  background: var(--cat-digital-life-technology-to);
}

.category-digital-life-technology .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-digital-life-technology-from), var(--cat-digital-life-technology-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-digital-life-technology .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-digital-life-technology-from) !important;
}

.category-digital-life-technology .nav-links a:hover {
  color: var(--cat-digital-life-technology-from);
}

.category-life-transitions-support {
  --hero-c1: var(--cat-life-transitions-support-from);
  --hero-c2: var(--cat-life-transitions-support-to);
  --hero-title-gradient: var(--cat-life-transitions-support-gradient);
  --hero-title-color: var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .pill-badge {
  border-color: var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .pill-badge .dot {
  background: linear-gradient(30deg, var(--cat-life-transitions-support-from), #fff, var(--cat-life-transitions-support-to));
  box-shadow: 0 0 10px var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .mobile-scroll-btn {
  background: var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .btn-cta {
  background: var(--cat-life-transitions-support-from);
}

.category-life-transitions-support .btn-cta:hover {
  background: var(--cat-life-transitions-support-to);
}

.category-life-transitions-support .btn-cta.sys-dropdown-button {
  background: linear-gradient(30deg, var(--cat-life-transitions-support-from), var(--cat-life-transitions-support-to), rgba(var(--hero-c1-rgb), 0.85), rgba(var(--hero-c1-rgb), 0.65), rgba(var(--hero-c1-rgb), 0.45), rgba(var(--hero-c1-rgb), 0.25), rgba(var(--hero-c1-rgb), 0.05));
}

.category-life-transitions-support .btn-cta.sys-dropdown-button:hover {
  background: rgba(var(--hero-c1-rgb), 0.25) !important;
  border-color: var(--cat-life-transitions-support-from) !important;
}

.category-life-transitions-support .nav-links a:hover {
  color: var(--cat-life-transitions-support-from);
}

.about-page {
  background: var(--bg-dark);
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  min-height: var(--viewport-height-static);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  .about-hero {
    min-height: max(540px, var(--viewport-height-dynamic) - 96px);
    padding: 100px 0 60px;
  }
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}
.about-hero-bg .gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.about-hero-bg .gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #9addff 0%, #1f4ad9 100%);
  top: 30%;
  right: -5%;
  animation-delay: -7s;
}
.about-hero-bg .gradient-orb.orb-3 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  bottom: -20%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.about-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-content .pill-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--surface-blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.about-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}
.about-hero-content .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media (max-width: 576px) {
  .hero-stats {
    gap: 30px;
  }
}

.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-mission {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .about-mission {
    padding: 60px 0;
  }
}

.mission-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}
@media (max-width: 768px) {
  .mission-card {
    padding: 40px 30px;
  }
}
.mission-card .mission-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
}
.mission-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}
.mission-card .mission-statement {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.mission-card .mission-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
  margin: 40px auto;
}
.mission-card .mission-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}
.mission-card .mission-tagline strong {
  color: #fff;
  font-weight: 700;
}

.about-timeline {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .about-timeline {
    padding: 60px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }
}
.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
}

.timeline-grid {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-grid::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.5) 10%, rgba(102, 126, 234, 0.5) 90%, transparent 100%);
  }
}

.timeline-item {
  display: flex;
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item {
    gap: 20px;
  }
}
.timeline-item .timeline-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(102, 126, 234, 0.5);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .timeline-item .timeline-badge {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}
.timeline-item .timeline-content {
  flex: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item .timeline-content {
    padding: 20px;
  }
}
.timeline-item .timeline-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: -60px;
  top: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(102, 126, 234, 0.7);
}
@media (max-width: 768px) {
  .timeline-item::before {
    display: none;
  }
}

.timeline-phase {
  margin-bottom: 60px;
}
.timeline-phase:last-child {
  margin-bottom: 0;
}

.timeline-phase-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}
.timeline-phase-label .phase-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}
.timeline-phase-label .phase-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.timeline-phase-label .phase-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.timeline-phase-label .phase-period {
  font-size: 0.78rem;
  color: rgba(102, 126, 234, 0.85);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.timeline-phase-items {
  display: grid;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-phase-items::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.5) 0%, rgba(102, 126, 234, 0.5) 90%, transparent 100%);
  }
}

.timeline-period-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(102, 126, 234, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.timeline-period-tag--gold {
  color: #fbbf24;
}

.timeline-item--milestone .timeline-badge {
  border-color: rgba(251, 191, 36, 0.6) !important;
  background: rgba(251, 191, 36, 0.08) !important;
}
.timeline-item--milestone .timeline-content {
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.04);
}

.timeline-ultimate {
  margin-top: 60px;
  text-align: center;
}

.timeline-ultimate-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.timeline-ultimate-connector .ultimate-line {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6));
}
.timeline-ultimate-connector .ultimate-line:last-child {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.6), transparent);
}
.timeline-ultimate-connector .ultimate-diamond {
  font-size: 1.1rem;
  color: #fbbf24;
  margin: 0 12px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.timeline-ultimate-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 60px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.07) 0%, rgba(245, 158, 11, 0.04) 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.08), 0 20px 60px rgba(251, 191, 36, 0.12);
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .timeline-ultimate-card {
    padding: 36px 24px;
  }
}
.timeline-ultimate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.timeline-ultimate-card .ultimate-trophy {
  font-size: 3.2rem;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
  animation: trophyPulse 3s ease-in-out infinite;
}
.timeline-ultimate-card .ultimate-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
}
.timeline-ultimate-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}
.timeline-ultimate-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0;
}

.ultimate-date-slot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(251, 191, 36, 0.35);
  border-radius: 50px;
}
.ultimate-date-slot .ultimate-date-prefix {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ultimate-date-slot .ultimate-date-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
  letter-spacing: 2px;
}

@keyframes trophyPulse {
  0%, 100% {
    transform: scale(1) rotate(-3deg);
  }
  50% {
    transform: scale(1.1) rotate(3deg);
  }
}
body.light-mode .timeline-ultimate-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.1), 0 20px 60px rgba(217, 119, 6, 0.14);
}
body.light-mode .timeline-ultimate-card h3 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #b45309;
}
body.light-mode .timeline-ultimate-card p {
  color: #6b7280;
}
body.light-mode .timeline-ultimate-card .ultimate-label {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.35);
  color: #92400e;
}
body.light-mode .ultimate-date-slot {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(217, 119, 6, 0.35);
}
body.light-mode .ultimate-date-slot .ultimate-date-prefix {
  color: rgba(180, 83, 9, 0.85);
}
body.light-mode .ultimate-date-slot .ultimate-date-value {
  color: rgba(0, 0, 0, 0.35);
}

.about-principles {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .about-principles {
    padding: 60px 0;
  }
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.principle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(137, 255, 253, 0.5);
  box-shadow: 0 2px 6px rgba(162, 255, 174, 0.2);
}
.principle-card:hover::before {
  transform: scaleX(1);
}
.principle-card:hover .principle-icon {
  transform: scale(1.2) rotate(10deg);
}
.principle-card .principle-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.principle-card .principle-icon:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.103), rgba(118, 75, 162, 0.087));
}
.principle-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.principle-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-why {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .about-why {
    padding: 60px 0;
  }
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.why-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
}
.why-text .why-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-item .feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
}
.feature-item .feature-check:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}
.feature-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.why-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 400px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.visual-stat {
  text-align: center;
  position: relative;
  z-index: 2;
}
.visual-stat .visual-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.visual-stat .visual-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-cta {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .about-cta {
    padding: 60px 0;
  }
}

.cta-card {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .cta-card {
    padding: 50px 30px;
  }
}
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.cta-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

@keyframes shine {
  to {
    left: 100%;
  }
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  color: #fff;
  border: 2px solid transparent;
}
.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(32, 32, 32, 0.032);
}
.cta-buttons .btn-primary svg {
  transition: transform 0.3s ease;
}
.cta-buttons .btn-primary:hover svg {
  transform: translateX(5px);
}
.cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.about-cta .cta-buttons .btn-primary,
.about-cta .cta-buttons .btn-secondary {
  width: auto;
  flex: 0 0 auto;
}

.pill-badge--amber {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
  color: #fbbf24 !important;
}

.pill-badge--blue {
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: rgba(99, 177, 241, 0.4) !important;
  color: #8ff881 !important;
}

.pill-badge--gold {
  background: rgba(251, 191, 36, 0.12) !important;
  border-color: rgba(251, 191, 36, 0.4) !important;
  color: #fde68a !important;
}

.about-dna {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .about-dna {
    padding: 60px 0;
  }
}

.about-dna-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 992px) {
  .about-dna-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.about-dna-text .pill-badge {
  margin-bottom: 24px;
}
.about-dna-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-dna-text .about-dna-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 36px;
}

.about-dna-quote {
  margin: 0;
  padding: 24px 30px;
  background: rgba(102, 126, 234, 0.07);
  border-left: 3px solid rgba(102, 126, 234, 0.6);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  position: relative;
}
.about-dna-quote .quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(102, 126, 234, 0.5);
  font-style: normal;
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: Georgia, serif;
}
.about-dna-quote {
  padding-left: 48px;
}

.about-dna-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dna-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.dna-card:hover {
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(102, 126, 234, 0.06);
  transform: translateX(6px);
}
.dna-card .dna-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.15);
  border-radius: 12px;
}
.dna-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.dna-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.about-trust {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about-trust {
    padding: 60px 0;
  }
}

.trust-bg-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(102, 126, 234, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-trust-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-trust-head .pill-badge {
  margin-bottom: 24px;
}
.about-trust-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-trust-head .about-trust-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 48px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fbbf24;
  transition: all 0.25s ease;
}
.trust-pill i {
  font-size: 0.85rem;
}
.trust-pill:hover {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.5);
}

.trust-pill--gh {
  background: rgba(248, 113, 113, 0.1) !important;
  border-color: rgba(248, 113, 113, 0.3) !important;
  color: #fca5a5 !important;
  text-decoration: none;
  cursor: pointer;
}
.trust-pill--gh i {
  color: #f87171;
}
.trust-pill--gh:hover {
  background: rgba(248, 113, 113, 0.2) !important;
  border-color: rgba(248, 113, 113, 0.55) !important;
}

.trust-quote-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 50px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  text-align: center;
  position: relative;
}
@media (max-width: 576px) {
  .trust-quote-card {
    padding: 28px 24px;
  }
}
.trust-quote-card .trust-quote-icon {
  font-size: 1.8rem;
  color: rgba(245, 158, 11, 0.4);
  margin-bottom: 16px;
}
.trust-quote-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

.about-cockpit {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .about-cockpit {
    padding: 60px 0;
  }
}

.about-cockpit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 992px) {
  .about-cockpit-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.cockpit-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 576px) {
  .cockpit-features {
    grid-template-columns: 1fr;
  }
}

.cockpit-feat-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.cockpit-feat-card:hover {
  border-color: rgba(99, 232, 241, 0.4);
  background: rgba(99, 102, 241, 0.06);
  transform: translateY(-4px);
}
.cockpit-feat-card .cockpit-feat-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.cockpit-feat-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cockpit-feat-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.cockpit-right .pill-badge {
  margin-bottom: 24px;
}
.cockpit-right h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.cockpit-right .about-cockpit-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 36px;
}

.cockpit-mock {
  background: rgba(15, 15, 30, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.cockpit-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cockpit-mock-bar .mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cockpit-mock-bar .mock-dot--red {
  background: #f87171;
}
.cockpit-mock-bar .mock-dot--yellow {
  background: #fbbf24;
}
.cockpit-mock-bar .mock-dot--green {
  background: #34d399;
}
.cockpit-mock-bar .mock-mock-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
  margin-left: 6px;
}

.cockpit-mock-stats {
  display: flex;
  justify-content: space-around;
  padding: 20px 16px 10px;
}

.mock-stat {
  text-align: center;
}
.mock-stat .mock-stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.mock-stat .mock-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cockpit-mock-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 16px 16px;
  height: 70px;
}
.cockpit-mock-bar-chart .mock-bar {
  flex: 1;
  background: rgba(102, 126, 234, 0.25);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}
.cockpit-mock-bar-chart .mock-bar--active {
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
}

.about-cockpit-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-cockpit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(36, 36, 36, 0.4);
}
.about-cockpit-cta i {
  font-size: 0.9rem;
}

.about-golden-heart {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .about-golden-heart {
    padding: 60px 0;
  }
}

.gh-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ghPulse 6s ease-in-out infinite;
}

@keyframes ghPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.about-gh-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-gh-head .pill-badge {
  margin-bottom: 24px;
}

.gh-heart-icon {
  font-size: 3.5rem;
  color: #f87171;
  margin-bottom: 28px;
  animation: heartbeat 2.5s ease-in-out infinite;
}
.gh-heart-icon i {
  filter: drop-shadow(0 0 18px rgba(248, 113, 113, 0.5));
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.15);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  56% {
    transform: scale(1);
  }
}
.about-gh-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-gh-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 44px;
}

.gh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
}

.gh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fde68a;
  transition: all 0.25s ease;
}
.gh-pill i {
  font-size: 0.85rem;
}
.gh-pill:hover {
  background: rgba(251, 191, 36, 0.16);
  border-color: rgba(251, 191, 36, 0.5);
}

.gh-quote-card {
  max-width: 620px;
  margin: 0 auto 44px;
  padding: 36px 44px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 20px;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  position: relative;
}
@media (max-width: 576px) {
  .gh-quote-card {
    padding: 24px 20px;
  }
}
.gh-quote-card .gh-quote-icon {
  display: block;
  font-size: 1.6rem;
  color: rgba(251, 191, 36, 0.35);
  margin-bottom: 12px;
}

.about-gh-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-gh-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}
.about-gh-cta i {
  font-size: 0.9rem;
}

.blog-hero {
  padding: 120px 0 50px;
  position: relative;
  overflow: hidden;
}

.blog-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 20px;
}
.blog-breadcrumb a {
  text-decoration: none;
}

.blog-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  margin: 0 0 14px;
}

.blog-subtitle {
  font-size: 1.05rem;
  opacity: 0.7;
  margin: 0 0 24px;
  max-width: 520px;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-pill {
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}

.blog-published {
  padding: 52px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--pc1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-cat {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--pc1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-date {
  font-size: 0.75rem;
  opacity: 0.45;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-card-read {
  font-size: 0.78rem;
  opacity: 0.45;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pc1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-cta:hover {
  opacity: 0.8;
}

.blog-coming-soon {
  padding: 48px 0 64px;
}

.blog-cs-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.blog-cs-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 10px;
}
.blog-cs-header p {
  opacity: 0.6;
  max-width: 460px;
  margin: 0 auto;
}

.blog-cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.blog-cs-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s;
}
.blog-cs-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.blog-cs-card:hover .blog-cs-overlay {
  opacity: 1;
}

.body.light-mode .blog-cs-overlay span {
  color: #fff;
}

.blog-cs-color-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--pc1), var(--pc2));
}

.blog-cs-body {
  padding: 18px 18px 20px;
}

.blog-cs-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pc1);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 8px;
}

.blog-cs-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
}
.blog-cs-body p {
  font-size: 0.83rem;
  opacity: 0.6;
  line-height: 1.55;
  margin: 0 0 10px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-cs-time {
  font-size: 0.75rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-cs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.2s;
  font-weight: 700;
  font-size: 0.9rem;
}
.blog-cs-overlay i {
  font-size: 1.6rem;
  color: #818cf8;
}

body.light-mode .blog-cs-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body.light-mode .blog-cs-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
}

.blog-newsletter {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.07);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

body.light-mode .blog-newsletter {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.blog-nl-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-nl-inner > div {
  flex: 1;
  min-width: 200px;
}
.blog-nl-inner h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.blog-nl-inner p {
  font-size: 0.87rem;
  opacity: 0.65;
  margin: 0;
}

.blog-nl-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.blog-b2b-tease {
  padding: 52px 0 72px;
}

.blog-b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 768px) {
  .blog-b2b-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.blog-b2b-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 10px 0 12px;
}
.blog-b2b-text p {
  opacity: 0.68;
  line-height: 1.65;
  margin-bottom: 22px;
}

.blog-b2b-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-b2b-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.blog-b2b-link i {
  color: #818cf8;
  width: 18px;
  text-align: center;
}
.blog-b2b-link:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(4px);
}

/* Blog refresh 2026-03-27 */
.blog-page,
.blog-article-page {
  position: relative;
}

.blog-hero {
  padding: 132px 0 42px;
}

.blog-hero-glow {
  background: radial-gradient(circle at 12% 18%, rgba(134, 188, 66, 0.16), transparent 32%), radial-gradient(circle at 78% 2%, rgba(92, 195, 246, 0.18), transparent 34%), radial-gradient(circle at 80% 32%, rgba(124, 58, 237, 0.16), transparent 30%);
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #86bc42, #316484);
}

.blog-title {
  max-width: 920px;
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.blog-subtitle {
  max-width: 760px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 28px;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.blog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 28px;
}

.blog-section-head.compact {
  margin-bottom: 22px;
}

.blog-section-title {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.blog-section-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.blog-directory {
  padding: 10px 0 34px;
  scroll-margin-top: 120px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-category-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), rgba(7, 8, 12, 0.76);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.blog-category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bcc1), var(--bcc2));
}

.blog-category-card:hover,
.blog-category-card.active {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.blog-category-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--bcc1), var(--bcc2));
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.blog-category-body strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.blog-category-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  min-height: 78px;
}

.blog-category-meta {
  display: inline-flex;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.52);
}

.blog-featured {
  padding: 8px 0 44px;
  scroll-margin-top: 120px;
}

.blog-lead-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.12fr);
  gap: 24px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--pc1) 18%, transparent), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), rgba(8, 9, 12, 0.84);
  overflow: hidden;
}

.blog-lead-media {
  width: min(100%, 380px);
  min-height: 290px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  justify-self: start;
  align-self: start;
  background: linear-gradient(135deg, color-mix(in srgb, var(--pc1) 50%, #0f172a), color-mix(in srgb, var(--pc2) 55%, #050505));
}

.blog-lead-media img,
.blog-lead-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.blog-lead-media img {
  object-fit: cover;
}

.blog-lead-placeholder {
  background: radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.24), transparent 22%), linear-gradient(135deg, var(--pc1), var(--pc2));
}

.blog-lead-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-lead-content h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 10px 0 0;
}

.blog-lead-subtitle {
  margin: 16px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-lead-excerpt {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 52ch;
}

.blog-lead-footer {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.blog-published {
  padding: 10px 0 56px;
  scroll-margin-top: 120px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  padding: 20px;
  border-radius: 24px;
  gap: 14px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)), rgba(8, 9, 12, 0.82);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.28);
}

.blog-card-media {
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(140deg, color-mix(in srgb, var(--pc1) 40%, #050505), color-mix(in srgb, var(--pc2) 45%, #111827));
}

.blog-card-img,
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.blog-card-img {
  object-fit: cover;
}

.blog-card-placeholder {
  background: radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.22), transparent 20%), linear-gradient(135deg, var(--pc1), var(--pc2));
}

.blog-card-top {
  gap: 16px;
}

.blog-card-title {
  font-size: 1.18rem;
  line-height: 1.28;
}

.blog-card-excerpt {
  min-height: 4.8em;
}

.blog-card-cta {
  font-weight: 800;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.blog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.blog-page-btn.active,
.blog-page-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.blog-coming-soon {
  padding: 28px 0 56px;
}

.blog-cs-grid {
  gap: 18px;
}

.blog-cs-card {
  border-radius: 22px;
  background: rgba(8, 9, 12, 0.74);
}

.blog-cs-body {
  padding: 22px;
}

.blog-newsletter-wrap {
  padding: 12px 0 8px;
}

.blog-newsletter {
  margin-top: 0;
  background: linear-gradient(135deg, rgba(49, 100, 132, 0.18), rgba(134, 188, 66, 0.15));
  border-color: rgba(134, 188, 66, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.blog-b2b-tease {
  padding: 60px 0 82px;
}

.blog-b2b-link {
  border-radius: 16px;
  background: rgba(8, 9, 12, 0.78);
}

.blog-preview-bar {
  position: sticky;
  top: 88px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.92), rgba(49, 100, 132, 0.92));
  color: #fff;
  font-weight: 700;
}

.blog-article-hero {
  padding: 130px 0 26px;
}

.blog-article-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.blog-article-hero-copy,
.blog-article-sidecard,
.blog-article-content,
.blog-faq-item,
.blog-service-link {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)), rgba(8, 9, 12, 0.82);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.blog-article-hero-copy {
  padding: 32px;
  border-radius: 28px;
}

.blog-article-cat {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-article-title {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}

.blog-article-subtitle {
  margin: 16px 0 0;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.82);
}

.blog-article-excerpt {
  margin: 16px 0 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.blog-article-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  color: rgba(255, 255, 255, 0.58);
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-article-sidecard {
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 120px;
}

.blog-article-sideitem + .blog-article-sideitem {
  margin-top: 16px;
}

.blog-article-sideitem span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 6px;
}

.blog-article-sideitem strong {
  font-size: 1rem;
}

.blog-article-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  text-decoration: none;
  font-weight: 700;
  color: var(--cat-c1);
}

.blog-article-hero-img {
  padding-bottom: 18px;
}

.blog-article-figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.24);
}

.blog-article-figure img {
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: cover;
}

.blog-article-content-wrap {
  padding: 8px 0 18px;
}

.blog-article-content {
  border-radius: 28px;
  padding: clamp(30px, 4vw, 52px);
}

.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-body > *:first-child {
  margin-top: 0;
}

.blog-article-body > * + * {
  margin-top: 1.45rem;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.blog-article-body h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  margin-top: 2.8rem;
}

.blog-article-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-top: 2.2rem;
}

.blog-article-body p,
.blog-article-body li,
.blog-faq-answer {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
  line-height: 1.92;
  letter-spacing: 0.002em;
}

.blog-article-body p {
  max-width: 66ch;
  white-space: pre-line;
  text-wrap: pretty;
}

.blog-article-body p + p {
  margin-top: 1.55rem;
}

.blog-article-body ul,
.blog-article-body ol {
  padding-left: 1.45rem;
  margin-top: 1.4rem;
}

.blog-article-body strong {
  color: rgba(255, 255, 255, 0.92);
}

.blog-article-body a {
  color: var(--cat-c1);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-article-body blockquote {
  margin: 2rem 0;
  padding: 1.35rem 1.55rem;
  border-left: 4px solid var(--cat-c1);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-article-faq,
.blog-article-services,
.blog-article-related {
  padding: 16px 0 18px;
}

.blog-article-faq h2,
.blog-article-services h2,
.blog-article-related h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 18px;
}

.blog-faq-list {
  display: grid;
  gap: 14px;
}

.blog-faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.blog-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

.blog-faq-answer {
  padding: 0 22px 20px;
}

.blog-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.blog-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
}

.blog-service-link i {
  color: var(--cat-c1);
}

body.light-mode .blog-subtitle,
body.light-mode .blog-section-copy,
body.light-mode .blog-category-body p,
body.light-mode .blog-category-meta,
body.light-mode .blog-lead-excerpt,
body.light-mode .blog-card-excerpt,
body.light-mode .blog-card-read,
body.light-mode .blog-card-date,
body.light-mode .blog-article-excerpt,
body.light-mode .blog-article-meta,
body.light-mode .blog-article-sideitem span,
body.light-mode .blog-article-body p,
body.light-mode .blog-article-body li,
body.light-mode .blog-faq-answer,
body.light-mode .blog-cs-body p,
body.light-mode .blog-nl-inner p,
body.light-mode .blog-b2b-text p {
  color: rgba(15, 23, 42, 0.68);
}

body.light-mode .blog-category-card,
body.light-mode .blog-lead-card,
body.light-mode .blog-card,
body.light-mode .blog-cs-card,
body.light-mode .blog-article-hero-copy,
body.light-mode .blog-article-sidecard,
body.light-mode .blog-article-content,
body.light-mode .blog-faq-item,
body.light-mode .blog-service-link,
body.light-mode .blog-b2b-link,
body.light-mode .blog-page-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)), rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.08);
}

body.light-mode .blog-newsletter {
  background: linear-gradient(135deg, rgba(49, 100, 132, 0.1), rgba(134, 188, 66, 0.12));
}

body.light-mode .blog-card-title,
body.light-mode .blog-lead-content h2,
body.light-mode .blog-section-title,
body.light-mode .blog-title,
body.light-mode .blog-article-title,
body.light-mode .blog-article-subtitle,
body.light-mode .blog-article-sideitem strong,
body.light-mode .blog-b2b-text h2,
body.light-mode .blog-cs-body h3,
body.light-mode .blog-nl-inner h3,
body.light-mode .blog-category-body strong {
  color: #0f172a;
}

body.light-mode .blog-tag-pill,
body.light-mode .blog-page-btn,
body.light-mode .blog-article-body blockquote {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: #1e293b;
}

body.light-mode .blog-card-cat,
body.light-mode .blog-card-cta,
body.light-mode .blog-article-backlink,
body.light-mode .blog-service-link,
body.light-mode .blog-b2b-link {
  color: #0f172a;
}

body.light-mode .blog-service-link i,
body.light-mode .blog-b2b-link i {
  color: var(--cat-c1);
}

@media (max-width: 1180px) {
  .blog-category-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .blog-section-head,
  .blog-article-hero-shell,
  .blog-lead-card,
  .blog-b2b-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .blog-section-head {
    align-items: start;
  }
  .blog-article-sidecard {
    position: static;
  }
  .blog-lead-media {
    width: 100%;
    max-width: none;
    min-height: 250px;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 760px) {
  .blog-hero,
  .blog-article-hero {
    padding-top: 118px;
  }
  .blog-category-grid,
  .blog-grid,
  .blog-services-grid,
  .blog-cs-grid {
    grid-template-columns: 1fr;
  }
  .blog-card,
  .blog-category-card,
  .blog-article-hero-copy,
  .blog-article-sidecard,
  .blog-article-content,
  .blog-newsletter,
  .blog-cs-body,
  .blog-lead-card {
    padding: 20px;
  }
  .blog-card-footer,
  .blog-lead-footer,
  .blog-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-card-top {
    flex-direction: column;
    align-items: start;
  }
  .blog-category-body p {
    min-height: 0;
  }
}
.b2b-hero {
  padding: calc(var(--nav-h, 100px) + 20px) 0 60px;
  position: relative;
  overflow: hidden;
}
.b2b-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.b2b-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0;
}
.b2b-hero .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-group .fa-plus {
  margin-right: 5px;
}

.b2b-page,
.b2b-ind-page {
  --b2b-primary-start: #3d7fb9;
  --b2b-primary-mid: #4d90ba;
  --b2b-primary-end: #67ab73;
  --b2b-primary-shadow: rgba(52, 117, 170, 0.32);
  --b2b-primary-border: rgba(138, 202, 207, 0.34);
  --b2b-secondary-bg: linear-gradient(180deg, rgba(15, 24, 37, 0.82) 0%, rgba(9, 15, 26, 0.96) 100%);
  --b2b-secondary-border: rgba(101, 150, 204, 0.34);
  --b2b-secondary-text: #dcecff;
  --b2b-secondary-shadow: rgba(7, 15, 28, 0.26);
}

.b2b-page .hero-cta-group .btn-primary,
.b2b-page .cta-actions .btn-primary,
.b2b-ind-page .b2bind-cta-row .btn-primary {
  background: linear-gradient(135deg, var(--b2b-primary-start) 0%, var(--b2b-primary-mid) 52%, var(--b2b-primary-end) 100%);
  color: #f8fbff;
  border: 1px solid var(--b2b-primary-border);
  border-radius: 999px;
  box-shadow: 0 18px 38px -22px var(--b2b-primary-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-shadow: 0 1px 0 rgba(5, 16, 28, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, border-color 0.24s ease;
}
.b2b-page .hero-cta-group .btn-primary::after,
.b2b-page .cta-actions .btn-primary::after,
.b2b-ind-page .b2bind-cta-row .btn-primary::after {
  display: none;
}
.b2b-page .hero-cta-group .btn-primary:hover,
.b2b-page .cta-actions .btn-primary:hover,
.b2b-ind-page .b2bind-cta-row .btn-primary:hover {
  transform: translateY(-3px);
  filter: saturate(1.04);
  border-color: rgba(169, 220, 220, 0.48);
  box-shadow: 0 22px 42px -22px rgba(58, 126, 176, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.b2b-page .hero-cta-group .btn-outline,
.b2b-page .cta-actions .btn-ghost,
.b2b-ind-page .b2bind-cta-row .btn-ghost {
  background: var(--b2b-secondary-bg);
  color: var(--b2b-secondary-text);
  border: 1px solid var(--b2b-secondary-border);
  border-radius: 999px;
  box-shadow: 0 16px 34px -24px var(--b2b-secondary-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.b2b-page .hero-cta-group .btn-outline::after,
.b2b-page .cta-actions .btn-ghost::after,
.b2b-ind-page .b2bind-cta-row .btn-ghost::after {
  display: none;
}
.b2b-page .hero-cta-group .btn-outline:hover,
.b2b-page .cta-actions .btn-ghost:hover,
.b2b-ind-page .b2bind-cta-row .btn-ghost:hover {
  transform: translateY(-3px);
  color: #f8fbff;
  border-color: rgba(137, 191, 225, 0.56);
  background: linear-gradient(180deg, rgba(23, 35, 53, 0.9) 0%, rgba(12, 19, 31, 0.98) 100%);
  box-shadow: 0 18px 34px -22px rgba(18, 31, 50, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.b2b-values,
.b2b-categories,
.b2b-how,
.b2b-cta-register {
  padding: 64px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 40px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.category-tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.category-tag-item i {
  color: var(--oc, #818cf8);
  opacity: 0.8;
  font-size: 1rem;
}
.category-tag-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.category-tag-all {
  font-weight: 600;
  border-color: #6366f1;
}
.category-tag-all i {
  color: #6366f1;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.how-step-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.how-step {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  min-height: 100%;
  min-height: 220px;
  padding: 34px 20px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.32);
}
.how-step:hover .how-step-icon {
  right: 10px;
  bottom: 8px;
  opacity: 0.11;
  transform: rotate(-14deg) scale(1.03);
}
.how-step h3 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 8px;
  padding: 0 30px;
}
.how-step p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
  padding: 0 8px;
}

.how-step .step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.18);
  font-variant-numeric: tabular-nums;
}

.how-step-icon {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 5.35rem;
  opacity: 0.07;
  transform: rotate(-12deg);
  transition: all 0.45s ease;
  pointer-events: none;
  line-height: 1;
}
.how-step-icon i {
  color: #818cf8;
}

@media (max-width: 520px) {
  .how-steps {
    gap: 14px;
  }
  .how-step {
    min-height: 0;
    padding: 28px 14px 22px;
  }
  .how-step .step-number {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
    top: 14px;
    left: 14px;
  }
  .how-step-icon {
    font-size: 4.9rem;
    right: 12px;
    bottom: 10px;
  }
}
.cta-box {
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(23, 19, 1, 0.073) 0%, rgba(212, 247, 85, 0.075) 100%);
  border: 1px solid rgba(241, 229, 99, 0.26);
}
.cta-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-box p {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-cta-group,
  .cta-actions,
  .b2bind-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .b2b-page .hero-cta-group .btn,
  .b2b-page .cta-actions .btn,
  .b2b-ind-page .b2bind-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}
.b2b-values {
  padding: 80px 0;
}

.b2bv-header {
  text-align: center;
  margin-bottom: 56px;
}

.b2bv-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 10px;
  padding: 4px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 6px;
}

.b2bv-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin: 0 0 12px;
}

.b2bv-subtitle {
  opacity: 0.6;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.b2bv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) {
  .b2bv-grid {
    grid-template-columns: 1fr;
  }
}

.b2bv-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0 18px;
  align-items: start;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent);
  position: relative;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  overflow: hidden;
}
.b2bv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), transparent 60%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.b2bv-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.2);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent) 20%, transparent);
}
.b2bv-card:hover::before {
  opacity: 1;
}
@media (max-width: 960px) {
  .b2bv-card {
    grid-template-columns: 52px 1fr;
  }
  .b2bv-card .b2bv-badge {
    grid-column: 2;
    align-self: start;
  }
}
@media (max-width: 720px) {
  .b2bv-card {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }
  .b2bv-card .b2bv-badge {
    display: none;
  }
}

.b2bv-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 40%, transparent);
  flex-shrink: 0;
  margin-top: 2px;
}
.b2bv-icon-box .fa-check {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  padding: 4px;
  background: rgb(255, 255, 255);
  color: var(--accent);
}

.b2bv-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b2bv-metric {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}

.b2bv-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
}

.b2bv-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

.b2bv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  color: var(--accent);
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
  flex-shrink: 0;
}

.b2bind-hero {
  position: relative;
  padding: 120px 0 20px;
  overflow: hidden;
}

.b2bind-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--c1-alpha, rgba(6, 182, 212, 0.18)) 0%, transparent 65%);
  pointer-events: none;
}

.b2bind-hero-inner {
  position: relative;
  z-index: 1;
}

.b2bind-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.83rem;
  opacity: 0.55;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.b2bind-breadcrumb a {
  text-decoration: none;
}

.b2bind-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.b2bind-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.1;
}

.b2bind-subtitle {
  font-size: 1.05rem;
  opacity: 0.72;
  margin: 0 0 28px;
  max-width: 600px;
  line-height: 1.6;
}

.b2bind-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.b2bind-stat {
  padding: 0 24px 0 0;
}
.b2bind-stat:first-child {
  padding-left: 0;
}

.b2bind-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c1);
}

.b2bind-stat-lbl {
  font-size: 0.75rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.b2bind-stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 24px 0 0;
}

.b2bind-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b2bind-desc {
  padding: 60px 0;
}

.b2bind-desc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 768px) {
  .b2bind-desc-inner {
    grid-template-columns: 1fr;
  }
}

.b2bind-desc-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 14px;
}
.b2bind-desc-text p {
  opacity: 0.72;
  line-height: 1.7;
  margin-bottom: 14px;
}

.b2bind-cities h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  opacity: 0.85;
}

.b2bind-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.b2bind-city-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.b2bind-city-btn i {
  opacity: 0.5;
  font-size: 0.8rem;
}
.b2bind-city-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.b2bind-city-remote {
  cursor: default;
  background: rgba(52, 211, 153, 0.06);
  border-color: rgba(52, 211, 153, 0.25);
  color: #34d399;
}
.b2bind-city-remote:hover {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.4);
}

.b2bind-section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.b2bind-agg-rating {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.b2bind-providers {
  padding: 56px 0;
}

.b2bind-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.b2bind-prov-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.b2bind-prov-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.b2bind-prov-plan {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.b2bind-prov-plan.premium {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
}
.b2bind-prov-plan.basic {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.31);
}
.b2bind-prov-plan.free {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.35);
}

.b2bind-prov-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.b2bind-prov-logo-ph {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.b2bind-prov-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.b2bind-prov-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.b2bind-prov-svc {
  font-size: 0.78rem;
  opacity: 0.55;
}

.b2bind-prov-city {
  font-size: 0.78rem;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.b2bind-prov-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
}

.star-on {
  color: #f59e0b;
}

.star-off {
  color: rgba(255, 255, 255, 0.2);
}

.b2bind-prov-tag {
  font-size: 0.83rem;
  opacity: 0.6;
  margin: 4px 0 0;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.b2bind-prov-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #818cf8;
  text-decoration: none;
  margin-top: auto;
}
.b2bind-prov-cta:hover {
  color: #a5b4fc;
}

.b2bind-see-all {
  text-align: center;
  margin-top: 32px;
}

.b2b-ind-page .faq-vision-section::before {
  content: "ФAQ";
}

.b2b-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}
.b2b-faq-grid .faq-vision-list {
  max-width: 100%;
}
@media (max-width: 900px) {
  .b2b-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.b2bind-other {
  padding: 48px 0 72px;
}

.b2bind-other-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2bind-other-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.b2bind-other-card i {
  color: var(--oc);
  font-size: 1rem;
}
.b2bind-other-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.featured-main {
  min-height: var(--viewport-height-static);
  background: var(--bg-primary);
}

.featured-hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}
.featured-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.08), transparent 60%);
  pointer-events: none;
}

.featured-hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), rgba(96, 165, 250, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.featured-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.featured-hero-content .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(var(--surface-blur-soft));
}
.featured-hero-content .pill-badge .dot {
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.featured-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}
.featured-hero-content h1 .featured-icon {
  display: inline-block;
  animation: starRotate 10s linear infinite;
  -webkit-text-fill-color: initial;
  background-clip: unset;
  -webkit-background-clip: unset;
  color: #fbbf24;
  font-size: 1.2em;
}

.featured-hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fbbf24;
}
.stat-value i {
  font-size: 1.8rem;
  color: #d3a134;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-grid-section {
  padding: 60px 0 80px;
}

.featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.featured-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.featured-card:hover {
  transform: translateY(-8px);
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(251, 191, 36, 0.15);
}
.featured-card:hover::before {
  opacity: 1;
}
.featured-card:hover .featured-logo img {
  transform: scale(1.05);
}
.featured-card:hover .featured-cta {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
}
.featured-card:hover .featured-cta i {
  transform: translateX(4px);
}
.featured-card[data-tier=premium] {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.03);
}
.featured-card[data-tier=basic] {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.03);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf24;
  backdrop-filter: blur(10px);
}
.featured-badge i {
  font-size: 0.85rem;
  animation: pulse 2s ease-in-out infinite;
}

.tier-indicator {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.tier-indicator.tier-premium {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}
.tier-indicator.tier-basic {
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #60a5fa;
}
.tier-indicator.tier-free {
  background: rgba(156, 163, 175, 0.2);
  border: 1px solid rgba(156, 163, 175, 0.4);
  color: #9ca3af;
}

.featured-logo {
  width: 100px;
  height: 100px;
  margin: 40px auto 20px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-content {
  text-align: center;
  margin-bottom: 20px;
}

.featured-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.featured-name a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-name a:hover {
  color: #fbbf24;
}

.featured-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.meta-item i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.featured-projects {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #34d399;
  font-weight: 500;
}
.projects-count i {
  font-size: 0.9rem;
}

.featured-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-cta i {
  transition: transform 0.3s ease;
}
.featured-cta:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state i {
  font-size: 4rem;
  color: #fbbf24;
  margin-bottom: 24px;
  opacity: 0.5;
}
.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0;
}
.empty-state p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.empty-state .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.empty-state .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.featured-cta-section {
  padding: 60px 0 80px;
}

.featured-cta-box {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(96, 165, 250, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.featured-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}
.featured-cta-box h2 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.featured-cta-box p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
}
.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}
.cta-secondary:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.5);
  transform: translateY(-4px);
}

@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}
@media (max-width: 768px) {
  .featured-hero {
    padding: 60px 0 40px;
  }
  .featured-hero-content h1 {
    font-size: 2rem;
  }
  .featured-stats {
    grid-template-columns: 1fr;
  }
  .featured-cards-grid {
    grid-template-columns: 1fr;
  }
  .featured-cta-box {
    padding: 40px 24px;
  }
  .featured-cta-box h2 {
    font-size: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .cta-primary,
  .cta-buttons .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 769px) {
  .featured-hero-content {
    margin-top: 60px;
  }
}
.gh-page {
  --gh-gold-1: #f59e0b;
  --gh-gold-2: #fbbf24;
  --gh-gold-heart: #fbbe2455;
  --gh-gold-3: #fde68a;
  --gh-red-1: #ef4444;
  --gh-red-2: #f87171;
  --gh-plat-1: #94a3b8;
  --gh-plat-2: #e2e8f0;
}

.gh-hero {
  position: relative;
  padding: 140px 0 70px;
  overflow: hidden;
  text-align: center;
}

.gh-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(245, 158, 11, 0.22) 0%, transparent 65%), radial-gradient(ellipse at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gh-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.gh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gh-gold-1);
}

.gh-pulse-heart {
  animation: gh-pulse 1.6s ease-in-out infinite;
  display: inline-block;
}

.img-width {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

@keyframes gh-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
.gh-title {
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.gh-gold-text {
  background: linear-gradient(135deg, var(--gh-gold-1), var(--gh-gold-2), var(--gh-gold-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gh-subtitle {
  font-size: 1.1rem;
  opacity: 0.78;
  line-height: 1.7;
  margin-bottom: 36px;
}

.gh-hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gh-stat {
  padding: 0 28px;
  text-align: center;
}

.gh-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gh-gold-1);
}

.gh-stat-label {
  font-size: 0.78rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gh-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.gh-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}
.gh-section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.gh-section-header p {
  opacity: 0.65;
  max-width: 480px;
  margin: 0 auto;
}

.gh-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gh-gold-1);
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 6px;
}

.gh-mission {
  padding: clamp(56px, 7vw, 84px) 0;
}

.gh-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}
@media (max-width: 992px) {
  .gh-mission-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.gh-mission-text {
  max-width: 620px;
}
.gh-mission-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 12px 0 18px;
}
.gh-mission-text p {
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .gh-mission-text {
    max-width: 100%;
  }
}

.gh-mission-lead {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  max-width: 58ch;
}

.gh-mission-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.gh-mission-callout p {
  margin: 0;
  opacity: 0.92;
}
@media (max-width: 640px) {
  .gh-mission-callout {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
  }
}

.gh-mission-callout-icon,
.gh-mission-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gh-mission-callout-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--gh-gold-2);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.18);
}
.gh-mission-callout-icon i {
  font-size: 1.05rem;
}
@media (max-width: 640px) {
  .gh-mission-callout-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .gh-mission-callout-icon i {
    font-size: 0.95rem;
  }
}

.gh-mission-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.gh-mission-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
@media (max-width: 640px) {
  .gh-mission-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
@media (max-width: 389px) {
  .gh-mission-proof-grid {
    grid-template-columns: 1fr;
  }
}

.gh-mission-proof {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
@media (max-width: 640px) {
  .gh-mission-proof {
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
  }
}

.gh-mission-proof-icon {
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gh-gold-1);
}
.gh-mission-proof-icon i {
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .gh-mission-proof-icon {
    width: 30px;
    height: 30px;
    margin-top: 0;
    border-radius: 10px;
  }
  .gh-mission-proof-icon i {
    font-size: 0.82rem;
  }
}

.gh-mission-proof-copy {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .gh-mission-proof-copy {
    font-size: 0.88rem;
    line-height: 1.4;
    text-wrap: balance;
  }
}

.gh-mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  perspective: 1400px;
}
@media (max-width: 992px) {
  .gh-mission-visual {
    perspective: none;
  }
}

.gh-heart-model-shell {
  --gh-heart-glow-rgb: 245, 158, 11;
  --gh-heart-shadow-rgb: 217, 119, 6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 500px);
  height: clamp(300px, 36vw, 440px);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px);
  isolation: isolate;
  transform-style: preserve-3d;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.28s ease;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32), 0 0 28px rgba(var(--gh-heart-shadow-rgb), 0.16);
}
.gh-heart-model-shell::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gh-heart-glow-rgb), 0.22) 0%, rgba(var(--gh-heart-glow-rgb), 0) 72%);
  filter: blur(16px);
  opacity: 0.8;
  pointer-events: none;
}
.gh-heart-model-shell::after {
  content: "";
  position: absolute;
  inset: auto 16% 6% 16%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.72) 0%, rgba(17, 24, 39, 0) 72%);
  filter: blur(14px);
  opacity: 0.64;
  pointer-events: none;
}
@media (max-width: 992px) {
  .gh-heart-model-shell {
    width: min(100%, 420px);
    height: 300px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 20px rgba(212, 175, 55, 0.08);
  }
}
@media (max-width: 640px) {
  .gh-heart-model-shell {
    width: min(100%, 348px);
    height: 264px;
    padding: 10px;
  }
}

.gh-heart-model-shell.is-static {
  max-width: 420px;
}

html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-poster-frame {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
}
html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host {
  opacity: 1;
  pointer-events: none;
}

html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host {
  overflow: hidden;
  background: radial-gradient(circle at 50% 18%, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0) 46%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(17, 24, 39, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -12px 36px rgba(0, 0, 0, 0.08);
  transition: background 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease, opacity 0.34s ease, filter 0.42s ease;
}
html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::before, html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity 0.42s ease, transform 0.5s ease, filter 0.42s ease;
}
html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::before {
  inset: 18% 28% 17%;
  border-radius: 44% 44% 52% 52%/28% 28% 64% 64%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 248, 220, 0.46), rgba(255, 248, 220, 0) 28%), linear-gradient(180deg, rgba(245, 158, 11, 0.34), rgba(217, 119, 6, 0.42));
  filter: blur(4px);
  opacity: 0.78;
  box-shadow: 0 20px 42px rgba(245, 158, 11, 0.1), inset 0 8px 18px rgba(255, 255, 255, 0.1);
  animation: gh-heart-loading-breathe 2.6s ease-in-out infinite;
}
html:not(.runtime-constrained):not(.save-data):not(.prefers-reduced-motion):not(.is-coarse-pointer) .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::after {
  top: -20%;
  left: -38%;
  width: 38%;
  height: 150%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 248, 220, 0.14), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  animation: gh-heart-loading-sheen 3.1s linear infinite;
}

.gh-heart-model-shell.is-ambient,
.gh-heart-model-shell.is-hovered {
  animation: gh-heart-shell-glow var(--gh-heart-shell-pulse-duration, 2.75s) ease-in-out infinite;
}

.gh-heart-model-shell.is-ambient {
  --gh-heart-shell-pulse-duration: 2.75s;
  filter: saturate(1.03) brightness(1.01);
}

.gh-heart-model-shell.is-hovered {
  --gh-heart-shell-pulse-duration: 1.05s;
  filter: saturate(1.14) brightness(1.07);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 44px rgba(var(--gh-heart-glow-rgb), 0.22), 0 0 74px rgba(var(--gh-heart-shadow-rgb), 0.16);
}

.gh-heart-poster-frame,
.gh-heart-model-host {
  position: absolute;
  inset: 12px;
  border-radius: 24px;
}
@media (max-width: 640px) {
  .gh-heart-poster-frame,
  .gh-heart-model-host {
    inset: 10px;
    border-radius: 20px;
  }
}

.gh-heart-poster-frame {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 22%, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0) 42%), linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(17, 24, 39, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
@media (max-width: 640px) {
  .gh-heart-poster-frame {
    padding: 12px 12px 10px;
  }
}

.gh-heart-poster {
  display: block;
  width: auto;
  height: auto;
  max-width: min(82%, 320px);
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.3));
}
@media (max-width: 992px) {
  .gh-heart-poster {
    max-width: min(78%, 250px);
    max-height: 92%;
  }
}
@media (max-width: 640px) {
  .gh-heart-poster {
    max-width: min(84%, 196px);
    max-height: 100%;
  }
}

.gh-heart-model-host {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, filter 0.42s ease, transform 0.42s ease, background 0.42s ease, box-shadow 0.42s ease;
  filter: blur(0);
  transform: scale(1);
}
@media (min-width: 993px) {
  .gh-heart-model-host {
    inset: 16px 18px 14px;
  }
}

.gh-heart-model-shell.is-3d-ready .gh-heart-model-host {
  opacity: 1;
  pointer-events: none;
}
.gh-heart-model-shell.is-3d-ready .gh-heart-model {
  opacity: 0;
  filter: blur(16px) saturate(0.86);
  transform: scale(0.965);
}

.gh-heart-model-shell.is-3d-visible .gh-heart-model-host {
  pointer-events: auto;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.gh-heart-model-shell.is-3d-visible .gh-heart-model-host::before,
.gh-heart-model-shell.is-3d-visible .gh-heart-model-host::after {
  opacity: 0;
  transform: scale(0.96);
}
.gh-heart-model-shell.is-3d-visible .gh-heart-poster-frame {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94);
}
.gh-heart-model-shell.is-3d-visible .gh-heart-model {
  visibility: visible;
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: scale(1);
  transition-delay: 0.06s;
}

.gh-heart-model {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: transparent !important;
  outline: none !important;
  border: 0;
  transform-origin: center center;
  opacity: 0;
  filter: blur(14px) saturate(0.9);
  transform: scale(0.97);
  transition: opacity 0.28s ease, filter 0.48s ease, transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
}
.gh-heart-model::part(default-progress-bar) {
  display: none;
}

.gh-heart-model.is-pulsing,
.gh-heart-model-shell.is-hovered .gh-heart-model {
  will-change: transform, filter;
}

.gh-heart-model-shell.is-ambient .gh-heart-model {
  --gh-heartbeat-duration: 1.9s;
}

.gh-heart-model-shell.is-hovered .gh-heart-model {
  --gh-heartbeat-duration: 0.9s;
}

#fajnder-heart {
  --poster-color: transparent;
  background-color: transparent !important;
  outline: none !important;
}

#fajnder-heart::part(poster) {
  background: transparent !important;
  border-radius: 28px;
}

#fajnder-heart::part(canvas) {
  background: transparent !important;
  border-radius: 28px;
}

#fajnder-heart::part(interaction-prompt) {
  display: none;
}

@keyframes gh-heart-shell-glow {
  0%, 100% {
    filter: saturate(1.02) brightness(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 28px rgba(var(--gh-heart-glow-rgb), 0.12), 0 0 52px rgba(var(--gh-heart-shadow-rgb), 0.08);
  }
  50% {
    filter: saturate(1.16) brightness(1.09);
    box-shadow: 0 40px 104px rgba(0, 0, 0, 0.48), 0 0 54px rgba(var(--gh-heart-glow-rgb), 0.24), 0 0 84px rgba(var(--gh-heart-shadow-rgb), 0.16);
  }
}
@keyframes gh-heart-loading-breathe {
  0%, 100% {
    transform: translateY(0) scale(0.99);
    opacity: 0.68;
  }
  50% {
    transform: translateY(-2px) scale(1.005);
    opacity: 0.9;
  }
}
@keyframes gh-heart-loading-sheen {
  0% {
    transform: translate3d(-18%, 0, 0) rotate(18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.1;
  }
  48% {
    opacity: 0.22;
  }
  100% {
    transform: translate3d(235%, 0, 0) rotate(18deg);
    opacity: 0;
  }
}
@keyframes gh-heartbeat {
  0%, 100% {
    transform: scale3d(1, 1, 1);
    filter: drop-shadow(0 16px 24px rgba(var(--gh-heart-glow-rgb), 0.22)) brightness(1);
  }
  18% {
    transform: scale3d(1.02, 1.02, 1.02);
    filter: drop-shadow(0 18px 28px rgba(var(--gh-heart-glow-rgb), 0.34)) brightness(1.04);
  }
  38% {
    transform: scale3d(0.992, 0.992, 0.992);
    filter: drop-shadow(0 14px 22px rgba(var(--gh-heart-glow-rgb), 0.2)) brightness(0.99);
  }
  58% {
    transform: scale3d(1.038, 1.038, 1.038);
    filter: drop-shadow(0 22px 34px rgba(var(--gh-heart-glow-rgb), 0.46)) brightness(1.08);
  }
  76% {
    transform: scale3d(1.008, 1.008, 1.008);
    filter: drop-shadow(0 18px 26px rgba(var(--gh-heart-glow-rgb), 0.28)) brightness(1.02);
  }
}
.gh-heart-model.is-pulsing {
  animation: gh-heartbeat var(--gh-heartbeat-duration, 1.9s) cubic-bezier(0.37, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .gh-mission-callout,
  .gh-heart-poster-frame,
  .gh-heart-model-host,
  .gh-heart-model-shell,
  .gh-heart-model {
    transition: none !important;
  }
  .gh-heart-model-shell.is-ambient,
  .gh-heart-model-shell.is-hovered,
  .gh-heart-model.is-pulsing {
    animation: none !important;
  }
}
.runtime-constrained .gh-heart-model-shell,
.save-data .gh-heart-model-shell,
.prefers-reduced-motion .gh-heart-model-shell {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.runtime-constrained .gh-heart-model-shell::before,
.save-data .gh-heart-model-shell::before,
.prefers-reduced-motion .gh-heart-model-shell::before,
.runtime-constrained .gh-heart-model-shell::after,
.save-data .gh-heart-model-shell::after,
.prefers-reduced-motion .gh-heart-model-shell::after {
  filter: blur(10px);
  opacity: 0.45;
}

.gh-tiers {
  padding: 72px 0;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}

.gh-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  gap: 20px;
  margin: 20px 0;
}

.gh-tier {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s, border-color 0.2s;
}
.gh-tier:hover {
  transform: translateY(-4px);
}
.gh-tier.gh-tier-featured {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.12);
}
.gh-tier.gh-tier-gold .gh-tier-amount {
  color: var(--gh-gold-1);
}
.gh-tier.gh-tier-gold .gh-tier-perks i {
  color: var(--gh-gold-1);
}

.gh-tier-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gh-gold-1), #d97706);
  color: #1c1207;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gh-tier-medal {
  font-size: 2.4rem;
}

.gh-tier-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.gh-tier-amount {
  font-size: 1.6rem;
  font-weight: 900;
}
.gh-tier-amount span {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
}

.gh-tier-desc {
  font-size: 0.88rem;
  opacity: 0.65;
  margin: 0;
}

.gh-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-self: center;
  width: fit-content;
}
.gh-tier-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.gh-tier-perks i {
  color: var(--gh-red-2);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.btn-tier {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
  margin-top: auto;
}
.btn-tier:hover {
  background: rgba(255, 255, 255, 0.13);
}
.btn-tier.btn-tier-gold {
  background: linear-gradient(135deg, var(--gh-gold-1), #d97706);
  color: #1c1207;
  border: none;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.35);
}
.btn-tier.btn-tier-gold:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}
.btn-tier.btn-tier-silver {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.3);
}
.btn-tier.btn-tier-platinum {
  background: linear-gradient(135deg, #475569, #1e293b);
  border-color: rgba(148, 163, 184, 0.4);
}

.gh-how {
  padding: 72px 0;
  max-width: 1300px;
  text-align: center;
  margin: 0 auto;
}

.gh-steps {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  padding: 0;
  margin: 20px auto;
}

.gh-step-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gh-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--gh-gold-2);
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.18);
}

.gh-step {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.gh-step:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
}
.gh-step:hover .gh-step-icon {
  right: -24px;
  bottom: -10px;
  opacity: 0.1;
  transform: rotate(-15deg) scale(1.03);
}
.gh-step h4 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.gh-step p {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.55;
  margin: 0;
}

.gh-step-icon {
  position: absolute;
  bottom: 18px;
  right: 10px;
  font-size: 5rem;
  opacity: 0.05;
  transform: rotate(14deg);
  transition: all 0.45s ease;
  pointer-events: none;
  line-height: 1;
}
.gh-step-icon i {
  color: var(--gh-gold-2);
}

.gh-step-arrow {
  font-size: 1.2rem;
  opacity: 0.25;
  padding-top: 100px;
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 860px) {
  .gh-step-arrow {
    display: none;
  }
}

@media (max-width: 860px) {
  .gh-steps {
    flex-wrap: wrap;
    gap: 16px;
  }
  .gh-step-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
}
@media (max-width: 520px) {
  .gh-how {
    padding: 48px 0;
  }
  .gh-steps {
    flex-direction: column;
    gap: 12px;
  }
  .gh-step-item {
    flex: 1 1 100%;
    min-width: unset;
  }
  .gh-step {
    padding: 22px 16px;
  }
  .gh-step-num {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }
  .gh-step-icon {
    font-size: 4.9rem;
  }
}
.gh-impact {
  padding: 60px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.gh-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gh-impact-card {
  padding: 28px 22px;
  border-radius: 16px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s;
}
.gh-impact-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.gh-impact-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.gh-impact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.gh-impact-card p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.55;
  margin: 0;
}

.gh-cta {
  padding: 80px 0;
}

.gh-cta-inner {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 70%), rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.gh-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 16px;
}
.gh-cta-inner p {
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 32px;
}

.gh-cta-heart {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 20px;
}

.gh-heart-img {
  display: inline-block;
  vertical-align: bottom; /* Sprečava sitan razmak ispod slike */
  max-height: 100%; /* Opciono: kontroliši veličinu slike ako već nisi */
}

.gh-cta-inner h2 {
  margin-top: 0; /* Osigurava da naslov ne gura sliku na gore */
}

.gh-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.local-page {
  min-height: 80vh;
}

.local-hero {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.local-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.local-breadcrumb a {
  text-decoration: none;
}
.local-breadcrumb a:hover {
  opacity: 1;
}

.local-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
}

.local-subtitle {
  font-size: 1rem;
  opacity: 0.78;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.local-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.local-results {
  padding: 48px 0;
}
.local-results .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

body .light-mode .results-grid .local-biz-card {
  background: rgba(255, 255, 255, 0.05);
}

.local-biz-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  background: rgba(255, 255, 255, 0.03);
}
.local-biz-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

body.light-mode .local-biz-card {
  border: 1px solid rgb(0, 0, 0);
}
body.light-mode .local-biz-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.lbc-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.lbc-plan-premium {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
}

.lbc-plan-basic {
  background: rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  border: 1px solid #6366f1;
}

.lbc-plan-free {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
}

.lbc-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.lbc-logo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0.4;
}

.lbc-body {
  flex: 1;
}

.lbc-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.lbc-service {
  font-size: 0.8rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}

.lbc-rating {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.lbc-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.lbc-tagline {
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.5;
  margin: 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lbc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #818cf8;
  text-decoration: none;
  margin-top: 4px;
}
.lbc-cta:hover {
  color: #a5b4fc;
}

.local-other-cities {
  padding: 40px 0 64px;
}
.local-other-cities h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.85;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-pill {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.city-pill:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: #6366f1;
}

.pricing-page {
  padding-bottom: 0;
}

.pricing-hero {
  text-align: center;
  padding: 8.5rem 1rem 3.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pricing-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
  letter-spacing: -0.5px;
}
.pricing-hero h1 span {
  color: var(--accent);
}

.pricing-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-section {
  padding: 3.5rem 1rem;
  background: var(--bg);
}
.pricing-section-alt {
  background: var(--section);
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.section-title i {
  margin-right: 0.45rem;
  color: var(--accent);
}

.section-desc {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.exchange-rate {
  display: block;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  width: fit-content;
  margin: -1rem auto 2rem;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tier-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.boost-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.credit-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.loyalty-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 760px;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.1rem 1.1rem 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.card-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 40%, transparent), 0 6px 28px rgba(0, 0, 0, 0.14);
}
.card-highlight::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.1rem;
  margin-bottom: 0.65rem;
  color: var(--accent);
}

.popular-badge,
.coming-soon-badge {
  position: absolute;
  top: -0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.popular-badge {
  right: 1rem;
  background: var(--accent);
  color: #fff;
}

.coming-soon-badge {
  left: 1rem;
  background: var(--muted);
  color: var(--bg);
}

.price-tag {
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  display: inline-block;
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 0.15rem;
}

.trial-badge {
  background: var(--success-bg);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  width: 100%;
}
.feature-list li {
  padding: 0.32rem 0;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list li i {
  color: var(--success);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.boost-score {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #d4a017;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.28rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}

.boost-req {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.credit-amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bonus-badge {
  background: var(--success);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 2rem;
  vertical-align: middle;
  margin-left: 0.3rem;
}

.locked-card {
  pointer-events: none;
}
.locked-card .card-icon {
  opacity: 0.45;
  filter: grayscale(0.4);
}
.locked-card h3 {
  opacity: 0.55;
}
.locked-card .coming-soon-badge {
  opacity: 0.9;
}

.locked-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.6rem 1rem 1rem;
  color: var(--muted);
  width: 100%;
  margin-top: 0.25rem;
}
.locked-body .fa-lock {
  font-size: 1.8rem;
  opacity: 0.35;
}
.locked-body p {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.65;
  max-width: 220px;
  margin: 0 auto;
}

.btn-pricing {
  display: inline-block;
  padding: 0.68rem 1.6rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: auto;
  border: 2px solid transparent;
}
.btn-pricing:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #111;
  border-color: transparent;
}
.btn-gold:hover {
  opacity: 1;
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.pricing-cta {
  text-align: center;
  padding: 3.5rem 1rem;
  background: linear-gradient(135deg, #1b4f72 0%, #1e7a50 50%, #26a655 100%);
  color: #fff;
}
.pricing-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-cta p {
  opacity: 0.88;
  margin: 0 auto 1.75rem;
  max-width: 480px;
  line-height: 1.6;
}
.pricing-cta .btn-gold {
  color: #111;
}
.pricing-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.pricing-cta .btn-outline:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

body.light-mode .pricing-cta {
  background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
}
body.light-mode .pricing-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
body.light-mode .pricing-cta .btn-outline:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.pricing-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: calc(85px + 1.5rem) 1rem 2.5rem;
  }
  .pricing-section,
  .pricing-section-alt {
    padding: 2.5rem 1rem;
  }
  .pricing-grid {
    gap: 1rem;
  }
  .pricing-card {
    padding: 1.5rem 1.1rem;
  }
  .price-amount {
    font-size: 1.75rem;
  }
}
.pricing-discount-table {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.pricing-discount-table .discount-table-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pricing-discount-table .discount-table-title i {
  color: var(--accent);
}
.pricing-discount-table .discount-table-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.25rem;
}

.discount-row-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.discount-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  min-width: 90px;
  flex: 1;
}
.discount-row-item.highlight-discount {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}
.discount-row-item .discount-period {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.discount-badge-save {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--success);
  background: var(--success-bg);
  padding: 0.18rem 0.55rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.discount-badge-save.best-deal {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
}

.discount-badge-none {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 600px) {
  .pricing-discount-table {
    padding: 1.1rem 1rem;
  }
  .discount-row-grid {
    gap: 0.5rem;
  }
  .discount-row-item {
    min-width: 70px;
    padding: 0.6rem 0.65rem;
  }
}
.period-btn {
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.period-btn:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--bg));
  transform: translateY(-2px);
}
.period-btn.active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  box-shadow: 0 0 0 1px var(--accent);
}
.period-btn.active .discount-period {
  color: var(--accent);
  font-weight: 700;
}

.price-was {
  display: none;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.65;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.plan-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-saving {
  display: none;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--success);
  color: var(--bg);
  padding: 0.14rem 0.4rem;
  border-radius: 2rem;
  white-space: nowrap;
  vertical-align: middle;
}

.guide-callout-section {
  background: var(--section);
}

.guide-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, color-mix(in srgb, #ffd700 6%, var(--card)), color-mix(in srgb, var(--accent) 6%, var(--card)));
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.25rem 2.5rem;
}

.guide-callout-text {
  flex: 1;
  min-width: 200px;
}

.guide-callout-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.guide-callout-title i {
  color: var(--accent);
  margin-right: 0.4rem;
}

.guide-callout-text p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.guide-callout-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 240px;
}

.guide-callout-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}
.guide-callout-link > i:first-child {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.guide-callout-link span {
  flex: 1;
}
.guide-callout-link .guide-callout-arrow {
  color: var(--muted);
  font-size: 0.7rem;
  transition: transform 0.18s;
}
.guide-callout-link:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--card));
  transform: translateX(4px);
}
.guide-callout-link:hover .guide-callout-arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .guide-callout-inner {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
  }
  .guide-callout-links {
    min-width: auto;
    width: 100%;
  }
}
.impresum-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 8px;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.impresum-trigger i {
  font-size: 0.9rem;
}
.impresum-trigger:hover {
  background: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
  color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.impresum-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.impresum-content {
  position: relative;
  max-width: 800px;
  width: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(96, 165, 250, 0.15);
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impresum-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.impresum-close i {
  font-size: 1.1rem;
}
.impresum-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg);
}

.impresum-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 40px 30px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.05));
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}
.impresum-header i {
  font-size: 2rem;
  color: #60a5fa;
}
.impresum-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.impresum-body {
  padding: 32px 40px;
  max-height: 60vh;
  overflow-y: auto;
  /* Custom Scrollbar */
}
.impresum-body::-webkit-scrollbar {
  width: 8px;
}
.impresum-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.impresum-body::-webkit-scrollbar-thumb {
  background: rgba(96, 165, 250, 0.3);
  border-radius: 4px;
}
.impresum-body::-webkit-scrollbar-thumb:hover {
  background: rgba(96, 165, 250, 0.5);
}

.impresum-section {
  margin-bottom: 32px;
}
.impresum-section:last-child {
  margin-bottom: 0;
}
.impresum-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.impresum-section h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  border-radius: 2px;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.info-item:hover {
  background: rgba(96, 165, 250, 0.05);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateX(4px);
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}
.info-value a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-value a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.impresum-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.impresum-footer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .impresum-content {
    border-radius: 16px;
  }
  .impresum-header {
    padding: 30px 24px 24px;
    flex-direction: column;
  }
  .impresum-header i {
    font-size: 1.5rem;
  }
  .impresum-header h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .impresum-body {
    padding: 24px;
    max-height: 50vh;
  }
  .impresum-section h3 {
    font-size: 1rem;
  }
  .info-item {
    padding: 12px;
  }
  .impresum-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}
/* --- GOLDEN RAIL CONTAINER --- */
.golden-rail-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.5), rgba(5, 5, 8, 0.5));
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(255, 217, 0, 0.4) 10%, rgb(255, 238, 0) 50%, rgba(255, 217, 0, 0.884) 90%, transparent 100%) 1;
  z-index: 9999;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9), 0 -2px 20px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(20px);
}
.golden-rail-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 50%, transparent 100%);
  animation: shimmerLine 3s ease-in-out infinite;
}
.golden-rail-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.8) 0%, transparent 5%, transparent 95%, rgba(5, 5, 8, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- POKRETNA TRAKA (TRACK) --- */
.golden-rail-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}
.golden-rail-track::-webkit-scrollbar {
  display: none;
}
.golden-rail-track.dragging {
  scroll-behavior: auto;
  user-select: none;
  cursor: grabbing;
}
.golden-rail-track.dragging .rail-card {
  user-drag: none;
  -webkit-user-drag: none;
}

/* --- KARTICA (PROVIDER CARD) --- */
.rail-card {
  flex: 0 0 auto;
  width: 290px;
  height: 105px;
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.95), rgb(20, 20, 25));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
  cursor: pointer;
  z-index: 2;
}
.rail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #b8860b, #ffd700, #ffed4e, #ffd700, #b8860b);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.rail-card::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rail-card:hover {
  background: linear-gradient(135deg, rgb(40, 38, 30), rgb(30, 28, 22));
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 215, 0, 0.2);
  z-index: 3;
}
.rail-card:hover::before {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}
.rail-card:hover::after {
  opacity: 1;
}
.rail-card:hover .rc-name {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
.rail-card:hover .rc-badge {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}
.rail-card:hover .rc-tagline {
  color: rgba(255, 255, 255, 0.8);
}

/* --- SADRŽAJ KARTICE --- */
.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.rc-name {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.rc-badge {
  font-size: 0.65rem;
  font-weight: 900;
  color: #000;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.rc-meta {
  display: flex;
  gap: 13px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.rc-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.rc-meta .rc-cat-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
}

.rc-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
  line-height: 1.4;
  max-width: 160px;
  opacity: 1;
}

body.has-golden-rail {
  padding-bottom: 110px !important;
}

body:not(.has-golden-rail) {
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  .golden-rail-wrapper {
    height: 90px;
  }
  .rail-card {
    width: 280px;
    height: 72px;
    padding: 10px 16px;
  }
  .rc-name {
    font-size: 0.9rem;
    max-width: 140px;
  }
  .rc-meta, .rc-tagline {
    font-size: 0.75rem;
    gap: 10px;
  }
  body.has-golden-rail {
    padding-bottom: 100px !important;
  }
  body:not(.has-golden-rail) {
    padding-bottom: 0 !important;
  }
}
.reviews-section {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  --review-accent-from: var(--cat-default-from);
  --review-accent-to: var(--cat-default-to);
  --review-accent-gradient: var(--cat-default-gradient);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-from) 5%, var(--review-accent-to) 15%);
  --review-accent-top-opacity: 0.18;
  --review-accent-bottom-opacity: 0.12;
  --review-accent-top-height: 240px;
  --review-accent-bottom-height: 220px;
}
.reviews-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 20px;
}

.reviews-section.glass-panel {
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: var(--review-accent-top-height);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 70%), linear-gradient(120deg, rgba(0, 0, 0, 0.1), transparent 60%), var(--review-accent-gradient);
  opacity: var(--review-accent-top-opacity);
  filter: blur(30px);
  pointer-events: none;
}

.reviews-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: var(--review-accent-bottom-height);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%), linear-gradient(120deg, rgba(0, 0, 0, 0.2), transparent 60%), var(--review-accent-shade-gradient);
  opacity: var(--review-accent-bottom-opacity);
  filter: blur(40px);
  pointer-events: none;
}

.reviews-section.cat-living-environment {
  --review-accent-from: var(--cat-living-environment-from);
  --review-accent-to: var(--cat-living-environment-to);
  --review-accent-gradient: var(--cat-living-environment-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-living-environment-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-living-environment-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-personal-care-health {
  --review-accent-from: var(--cat-personal-care-health-from);
  --review-accent-to: var(--cat-personal-care-health-to);
  --review-accent-gradient: var(--cat-personal-care-health-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-personal-care-health-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-personal-care-health-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-food-leisure-experiences {
  --review-accent-from: var(--cat-food-leisure-experiences-from);
  --review-accent-to: var(--cat-food-leisure-experiences-to);
  --review-accent-gradient: var(--cat-food-leisure-experiences-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-food-leisure-experiences-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-learning-development {
  --review-accent-from: var(--cat-learning-development-from);
  --review-accent-to: var(--cat-learning-development-to);
  --review-accent-gradient: var(--cat-learning-development-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-learning-development-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-learning-development-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-work-business-economy {
  --review-accent-from: var(--cat-work-business-economy-from);
  --review-accent-to: var(--cat-work-business-economy-to);
  --review-accent-gradient: var(--cat-work-business-economy-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-work-business-economy-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-work-business-economy-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-creation-expression {
  --review-accent-from: var(--cat-creation-expression-from);
  --review-accent-to: var(--cat-creation-expression-to);
  --review-accent-gradient: var(--cat-creation-expression-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-creation-expression-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-creation-expression-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-mobility-logistics {
  --review-accent-from: var(--cat-mobility-logistics-from);
  --review-accent-to: var(--cat-mobility-logistics-to);
  --review-accent-gradient: var(--cat-mobility-logistics-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-mobility-logistics-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-mobility-logistics-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-community-social-life {
  --review-accent-from: var(--cat-community-social-life-from);
  --review-accent-to: var(--cat-community-social-life-to);
  --review-accent-gradient: var(--cat-community-social-life-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-community-social-life-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-community-social-life-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-administration-legal {
  --review-accent-from: var(--cat-administration-legal-from);
  --review-accent-to: var(--cat-administration-legal-to);
  --review-accent-gradient: var(--cat-administration-legal-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-administration-legal-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-administration-legal-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-digital-life-technology {
  --review-accent-from: var(--cat-digital-life-technology-from);
  --review-accent-to: var(--cat-digital-life-technology-to);
  --review-accent-gradient: var(--cat-digital-life-technology-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-digital-life-technology-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-digital-life-technology-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.cat-life-transitions-support {
  --review-accent-from: var(--cat-life-transitions-support-from);
  --review-accent-to: var(--cat-life-transitions-support-to);
  --review-accent-gradient: var(--cat-life-transitions-support-gradient);
  --review-accent-shade-from: color-mix(in srgb, var(--cat-life-transitions-support-from) 35%, #0b1220);
  --review-accent-shade-to: color-mix(in srgb, var(--cat-life-transitions-support-to) 35%, #0b1220);
  --review-accent-shade-gradient: linear-gradient(135deg, var(--review-accent-shade-from) 0%, var(--review-accent-shade-to) 100%);
  --review-accent-top-opacity: 0.06;
  --review-accent-bottom-opacity: 0.04;
}

.reviews-section.is-form-open {
  --review-accent-top-opacity: 0.12;
  --review-accent-bottom-opacity: 0.08;
  --review-accent-top-height: 320px;
  --review-accent-bottom-height: 300px;
}

.reviews-header {
  margin-bottom: 40px;
}

.rating-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.rating-main {
  text-align: center;
}
.rating-main .rating-score {
  font-size: 48px;
  font-weight: 700;
  color: var(--review-accent-from);
  margin-bottom: 8px;
}
.rating-main .rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  margin-bottom: 8px;
}
.rating-main .rating-count {
  color: rgba(226, 232, 240, 0.7);
  font-size: 14px;
}

.rating-distribution {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-distribution .rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-distribution .rating-label {
  font-size: 13px;
  min-width: 40px;
  color: #cbd5f0;
}
.rating-distribution .rating-bar {
  flex: 1;
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.rating-distribution .rating-bar .rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--review-accent-from), var(--review-accent-to));
  transition: width 0.3s ease;
}
.rating-distribution .rating-count {
  font-size: 12px;
  min-width: 30px;
  color: rgba(226, 232, 240, 0.6);
}

.review-form-container {
  background: linear-gradient(160deg, color-mix(in srgb, var(--review-accent-shade-from, var(--review-accent-shade-gradient)) 0.5%, rgba(0, 0, 0, 0.096)), color-mix(in srgb, var(--review-accent-shade-to, var(--review-accent-shade-gradient)) 0.5%, rgba(0, 0, 0, 0.021)));
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 18%, rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.review-form-container::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 180px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 70%), var(--review-accent-gradient);
  opacity: 0.18;
  filter: blur(28px);
  pointer-events: none;
}
.review-form-container h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 20px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5f0;
  margin-bottom: 8px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  padding: 12px;
  background: color-mix(in srgb, var(--review-accent-from) 6%, rgba(148, 163, 184, 0.08));
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 16%, rgba(148, 163, 184, 0.2));
  border-radius: 8px;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group textarea::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--review-accent-from);
  background: rgba(148, 163, 184, 0.12);
}

.star-filled,
.star-lit {
  color: var(--review-accent-from, #fbbf24);
}

.star-empty,
.star-dim {
  color: rgba(203, 213, 240, 0.3);
}

.rating-input {
  display: none;
}

.char-count {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.5);
  margin-top: 4px;
}

.btn-primary,
.btn-secondary {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--review-accent-from), var(--review-accent-to));
  color: #1e293b;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5f0;
  border: 1px solid rgba(148, 163, 184, 0.3);
  width: 100%;
}
.btn-secondary:hover:not(:disabled) {
  background: rgba(148, 163, 184, 0.18);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-toggle-form {
  background: linear-gradient(135deg, var(--review-accent-from), var(--review-accent-to));
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.btn-toggle-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.btn-toggle-form.active {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5f0;
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.btn-toggle-form.active i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.btn-close {
  background: none;
  border: none;
  color: #cbd5f0;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.btn-close:hover {
  color: #f87171;
  transform: scale(1.1);
}

.btn-submit-review {
  background: linear-gradient(135deg, var(--review-accent-from), var(--review-accent-to));
  color: #1e293b;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  min-height: 44px;
}
.btn-submit-review .btn-text,
.btn-submit-review .btn-success {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-submit-review .btn-success {
  position: absolute;
  opacity: 0;
  transform: translateX(50px);
}
.btn-submit-review:not(:disabled):hover {
  background: var(--review-accent-shade-gradient);
  color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.btn-submit-review:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-submit-review.btn-locked {
  background: rgba(100, 116, 139, 0.25);
  color: #64748b;
  cursor: not-allowed;
}
.btn-submit-review.btn-locked::after {
  content: "\f023";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 0.85em;
}
.btn-submit-review.success {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}
.btn-submit-review.success .btn-text {
  opacity: 0;
  transform: translateX(-50px);
}
.btn-submit-review.success .btn-success {
  opacity: 1;
  transform: translateX(0);
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.reviews-list h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 20px;
}

.review-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(30, 41, 59, 0.95);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.reviewer-info {
  display: flex;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.reviewer-avatar .smiley-svg {
  width: 44px;
  height: 44px;
  display: block;
}

.reviewer-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 2px 0;
}

.review-date {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.6);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-rating i {
  font-size: 14px;
}
.review-rating .rating-text {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.7);
  margin-left: 8px;
}

.review-title {
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 8px 0;
}

.review-text {
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.review-response {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--review-accent-from);
  padding: 12px;
  border-radius: 6px;
  margin-top: 16px;
}
.review-response .response-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--review-accent-from);
  margin-bottom: 8px;
}
.review-response .response-header i {
  font-size: 12px;
}
.review-response .response-date {
  margin-left: auto;
  color: var(--review-accent-from);
  opacity: 0.7;
  font-size: 11px;
}
.review-response .response-text {
  color: rgba(226, 232, 240, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.reviews-empty {
  text-align: left;
  padding: 10px 0;
  color: rgba(226, 232, 240, 0.6);
}

.review-form-title {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin: 0 0 24px 0;
}

.btn-close-section {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #f87171;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-close-section:hover {
  background: rgba(248, 113, 113, 0.25);
  border-color: #f87171;
  transform: scale(1.1);
}

.rating-smiley-large {
  margin-bottom: 10px;
}
.rating-smiley-large .smiley-svg {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto;
}

.sub-ratings-summary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sub-rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}
.sub-rating-item i {
  width: 14px;
  text-align: center;
  color: var(--review-accent-from);
  font-size: 12px;
}
.sub-rating-item span {
  flex: 1;
}
.sub-rating-item strong {
  color: #e2e8f0;
  font-size: 13px;
}

.sliders-form-group > label {
  margin-bottom: 12px;
}

.sliders-panel {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 20%, rgba(255, 255, 255, 0.06));
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.sliders-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.composite-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.comp-smiley {
  flex-shrink: 0;
}
.comp-smiley .smiley-svg {
  width: 52px;
  height: 52px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.comp-smiley .smiley-svg:hover {
  transform: scale(1.08) rotate(-3deg);
}

.comp-score-info {
  flex: 1;
}

.comp-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--review-accent-from);
  font-feature-settings: "tnum";
  transition: color 0.3s ease;
}
.comp-number.updated {
  animation: compPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.comp-label {
  font-size: 11px;
  color: rgba(203, 213, 240, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.comp-stars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.comp-stars i {
  font-size: 11px;
}

@keyframes compPop {
  0% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
.slider-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.slider-row {
  display: grid;
  grid-template-columns: 130px 1fr 38px;
  align-items: center;
  gap: 12px;
}
@media (max-width: 500px) {
  .slider-row {
    grid-template-columns: 110px 1fr 34px;
    gap: 8px;
  }
}

.slider-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #cbd5f0;
}
.slider-meta i {
  font-size: 12px;
  color: var(--review-accent-from);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.slider-meta span {
  white-space: nowrap;
}

.rating-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  background: linear-gradient(to right, var(--review-accent-from) 0%, var(--review-accent-from) var(--slider-pct, 50%), rgba(148, 163, 184, 0.2) var(--slider-pct, 50%), rgba(148, 163, 184, 0.2) 100%);
  transition: background 0.1s;
}
.rating-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--review-accent-from);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rating-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--review-accent-from);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.rating-slider:hover::-webkit-slider-thumb, .rating-slider:focus::-webkit-slider-thumb {
  transform: scale(1.2);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 0 0 4px color-mix(in srgb, var(--review-accent-from) 25%, transparent);
}
.rating-slider:hover::-moz-range-thumb {
  transform: scale(1.2);
}

.slider-value-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--review-accent-from);
  text-align: center;
  min-width: 30px;
  font-feature-settings: "tnum";
  background: color-mix(in srgb, var(--review-accent-from) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 25%, transparent);
  border-radius: 6px;
  padding: 2px 5px;
  line-height: 1.6;
  transition: background 0.2s;
}

.sub-ratings-mini {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 4px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.08);
}
.sub-ratings-mini span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(203, 213, 240, 0.75);
  font-feature-settings: "tnum";
}
.sub-ratings-mini span i {
  font-size: 11px;
  color: var(--review-accent-from);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 24px;
  }
  .rating-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-header {
    flex-direction: column;
  }
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
  .rating-input {
    gap: 8px;
  }
  .rating-input .star-label {
    font-size: 20px;
  }
}
/* --- SUGGESTIONS SECTION --- */
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes iconPulse {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.1;
  }
  to {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}
@keyframes scrollRail {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.suggestions-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.suggestions-section .suggestions-header {
  margin-bottom: 40px;
  margin-top: 20px;
}
.suggestions-section .suggestions-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  display: block;
}
.suggestions-section .suggestions-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.suggestions-section .suggestions-subtitle .category-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  position: relative;
  cursor: default;
}
.suggestions-section .suggestions-subtitle .category-highlight .cat-icon {
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
  z-index: 2;
  animation: iconFloat 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.suggestions-section .suggestions-subtitle .category-highlight .cat-text {
  position: relative;
}
.suggestions-section .suggestions-subtitle .category-highlight .cat-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.4;
}
.suggestions-section .suggestions-subtitle .category-highlight:hover .cat-icon {
  transform: scale(1.3) rotate(-10deg);
}
.suggestions-section .suggestions-subtitle .category-highlight:hover .cat-text::after {
  opacity: 1;
  transition: 0.3s;
}
.suggestions-section .rail-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@supports (-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)) or (mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent)) {
  .suggestions-section .rail-wrapper {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
}
.suggestions-section .rail-track {
  display: flex;
  gap: 25px;
  width: max-content;
  padding: 20px 0;
}
.suggestions-section .rail-track.animate {
  animation: scrollRail 45s linear infinite;
}
.suggestions-section .rail-track.animate:hover {
  animation-play-state: paused;
}
.suggestions-section .static-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.suggestions-section .suggest-card {
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-top: 15px;
  padding: 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 300px;
  flex-shrink: 0;
}
.suggestions-section .suggest-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.suggestions-section .suggest-card.is-premium {
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.05);
}
.suggestions-section .suggest-card.is-premium:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(255, 215, 0, 0.15);
}
.suggestions-section .premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}
.suggestions-section .sug-logo-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a1a20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.suggestions-section .suggest-card:hover .sug-logo-wrapper {
  transform: scale(1.1);
  border-color: var(--prof-c1);
}
.suggestions-section .sug-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suggestions-section .sug-initials {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.suggestions-section .sug-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.suggestions-section .sug-category {
  color: var(--prof-c1);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
.suggestions-section .sug-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
}
.suggestions-section .sug-btn {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.suggestions-section .suggest-card:hover .sug-btn {
  background: var(--prof-c1);
}
@media (max-width: 900px) {
  .suggestions-section {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .suggestions-section .suggest-card {
    width: 260px;
  }
  .suggestions-section .rail-track {
    gap: 15px;
  }
}

/* =========================================
   CATEGORY-SPECIFIC COLORS (Dark Mode)
   ========================================= */
.suggestions-living-environment .suggestions-title {
  color: var(--cat-living-environment-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-living-environment .suggestions-title {
    background: var(--cat-living-environment-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-living-environment .category-highlight {
  color: var(--cat-living-environment-from);
}

.suggestions-living-environment .cat-text {
  color: var(--cat-living-environment-from);
}

.suggestions-living-environment .cat-text::after {
  background: linear-gradient(to right, var(--cat-living-environment-from), transparent);
}

.suggestions-personal-care-health .suggestions-title {
  color: var(--cat-personal-care-health-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-personal-care-health .suggestions-title {
    background: var(--cat-personal-care-health-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-personal-care-health .category-highlight {
  color: var(--cat-personal-care-health-from);
}

.suggestions-personal-care-health .cat-text {
  color: var(--cat-personal-care-health-from);
}

.suggestions-personal-care-health .cat-text::after {
  background: linear-gradient(to right, var(--cat-personal-care-health-from), transparent);
}

.suggestions-food-leisure-experiences .suggestions-title {
  color: var(--cat-food-leisure-experiences-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-food-leisure-experiences .suggestions-title {
    background: var(--cat-food-leisure-experiences-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-food-leisure-experiences .category-highlight {
  color: var(--cat-food-leisure-experiences-from);
}

.suggestions-food-leisure-experiences .cat-text {
  color: var(--cat-food-leisure-experiences-from);
}

.suggestions-food-leisure-experiences .cat-text::after {
  background: linear-gradient(to right, var(--cat-food-leisure-experiences-from), transparent);
}

.suggestions-learning-development .suggestions-title {
  color: var(--cat-learning-development-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-learning-development .suggestions-title {
    background: var(--cat-learning-development-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-learning-development .category-highlight {
  color: var(--cat-learning-development-from);
}

.suggestions-learning-development .cat-text {
  color: var(--cat-learning-development-from);
}

.suggestions-learning-development .cat-text::after {
  background: linear-gradient(to right, var(--cat-learning-development-from), transparent);
}

.suggestions-work-business-economy .suggestions-title {
  color: var(--cat-work-business-economy-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-work-business-economy .suggestions-title {
    background: var(--cat-work-business-economy-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-work-business-economy .category-highlight {
  color: var(--cat-work-business-economy-from);
}

.suggestions-work-business-economy .cat-text {
  color: var(--cat-work-business-economy-from);
}

.suggestions-work-business-economy .cat-text::after {
  background: linear-gradient(to right, var(--cat-work-business-economy-from), transparent);
}

.suggestions-creation-expression .suggestions-title {
  color: var(--cat-creation-expression-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-creation-expression .suggestions-title {
    background: var(--cat-creation-expression-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-creation-expression .category-highlight {
  color: var(--cat-creation-expression-from);
}

.suggestions-creation-expression .cat-text {
  color: var(--cat-creation-expression-from);
}

.suggestions-creation-expression .cat-text::after {
  background: linear-gradient(to right, var(--cat-creation-expression-from), transparent);
}

.suggestions-mobility-logistics .suggestions-title {
  color: var(--cat-mobility-logistics-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-mobility-logistics .suggestions-title {
    background: var(--cat-mobility-logistics-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-mobility-logistics .category-highlight {
  color: var(--cat-mobility-logistics-from);
}

.suggestions-mobility-logistics .cat-text {
  color: var(--cat-mobility-logistics-from);
}

.suggestions-mobility-logistics .cat-text::after {
  background: linear-gradient(to right, var(--cat-mobility-logistics-from), transparent);
}

.suggestions-community-social-life .suggestions-title {
  color: var(--cat-community-social-life-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-community-social-life .suggestions-title {
    background: var(--cat-community-social-life-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-community-social-life .category-highlight {
  color: var(--cat-community-social-life-from);
}

.suggestions-community-social-life .cat-text {
  color: var(--cat-community-social-life-from);
}

.suggestions-community-social-life .cat-text::after {
  background: linear-gradient(to right, var(--cat-community-social-life-from), transparent);
}

.suggestions-administration-legal .suggestions-title {
  color: var(--cat-administration-legal-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-administration-legal .suggestions-title {
    background: var(--cat-administration-legal-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-administration-legal .category-highlight {
  color: var(--cat-administration-legal-from);
}

.suggestions-administration-legal .cat-text {
  color: var(--cat-administration-legal-from);
}

.suggestions-administration-legal .cat-text::after {
  background: linear-gradient(to right, var(--cat-administration-legal-from), transparent);
}

.suggestions-digital-life-technology .suggestions-title {
  color: var(--cat-digital-life-technology-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-digital-life-technology .suggestions-title {
    background: var(--cat-digital-life-technology-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-digital-life-technology .category-highlight {
  color: var(--cat-digital-life-technology-from);
}

.suggestions-digital-life-technology .cat-text {
  color: var(--cat-digital-life-technology-from);
}

.suggestions-digital-life-technology .cat-text::after {
  background: linear-gradient(to right, var(--cat-digital-life-technology-from), transparent);
}

.suggestions-life-transitions-support .suggestions-title {
  color: var(--cat-life-transitions-support-from);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .suggestions-life-transitions-support .suggestions-title {
    background: var(--cat-life-transitions-support-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.suggestions-life-transitions-support .category-highlight {
  color: var(--cat-life-transitions-support-from);
}

.suggestions-life-transitions-support .cat-text {
  color: var(--cat-life-transitions-support-from);
}

.suggestions-life-transitions-support .cat-text::after {
  background: linear-gradient(to right, var(--cat-life-transitions-support-from), transparent);
}

.delete-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--error-bg, rgba(255, 85, 85, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 85, 85, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 85, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 85, 85, 0);
  }
}
body.page-404 {
  --bg-0: #0b0f1a;
  --bg-1: #10192b;
  --bg-2: #1a1132;
  --ink-0: #f8fafc;
  --ink-1: rgba(248, 250, 252, 0.72);
  --accent-0: #ff4da6;
  --accent-1: #4f7cff;
  --accent-2: #22d3ee;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-border: rgba(255, 255, 255, 0.08);
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink-0);
  background: radial-gradient(900px 420px at 15% -10%, rgba(79, 124, 255, 0.35), transparent 70%), radial-gradient(650px 500px at 85% 0%, rgba(255, 77, 166, 0.35), transparent 68%), linear-gradient(160deg, var(--bg-0), var(--bg-1) 55%, var(--bg-2));
  display: block;
  overflow-x: hidden;
  min-height: var(--viewport-height-static);
}

body.page-404 * {
  box-sizing: border-box;
}

body.page-404 .lost-astronaut {
  position: absolute;
  font-size: 1.6rem;
  color: #d1d5db;
  z-index: 3;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  /* Početna pozicija - negde sa strane */
  top: -20%;
  right: -10%;
  /* Glavna animacija plutanja */
  animation: drift 20s linear infinite;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: grab;
  user-select: none;
  touch-action: none;
  display: block;
}

/* Animacija nasumičnog kretanja kroz vidno polje */
@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-100px, 150px) rotate(90deg);
  }
  50% {
    transform: translate(-250px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(-150px, -100px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
body.page-404::before {
  /* ... tvoj postojeći kod ... */
  /* Dodajemo efekat treperenja zvezda preko box-shadow-a */
  box-shadow: 100px 200px #fff, 400px 500px #fff, 800px 100px #fff, 200px 800px #fff;
  opacity: 0.3;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 0.5;
  }
}
body.page-404::before {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent 70%);
  left: -180px;
  top: 10%;
}

body.page-404::after {
  background: radial-gradient(circle, rgba(255, 77, 166, 0.6), transparent 70%);
  right: -120px;
  bottom: -120px;
  animation-delay: -4s;
}

body.page-404 .error-shell {
  position: relative;
  width: min(920px, 92vw);
  padding: 32px;
  margin: 120px auto 120px;
  z-index: 1;
}

body.page-404 .error-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 42px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--surface-blur));
  position: relative;
  overflow: hidden;
}

body.page-404 .error-meta {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

body.page-404 .error-code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-0); /* Osnovna boja */
  position: relative;
  margin: 0 0 12px;
  display: inline-block;
  /* Slojevi za glitch */
}
body.page-404 .error-code::before, body.page-404 .error-code::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-1); /* Ista boja kao pozadina kartice da prekrije original */
  clip: rect(0, 0, 0, 0);
}
body.page-404 .error-code {
  /* Roze senka / pomeraj */
}
body.page-404 .error-code::before {
  left: -2px;
  text-shadow: 2px 0 var(--accent-0);
  animation: glitch-anim-1 3s infinite linear alternate-reverse;
}
body.page-404 .error-code {
  /* Plava senka / pomeraj */
}
body.page-404 .error-code::after {
  left: 2px;
  text-shadow: -2px 0 var(--accent-2);
  animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

/* --- GLITCH KEYFRAMES --- */
@keyframes glitch-anim-1 {
  0% {
    clip: rect(57px, 9999px, 140px, 0);
    transform: skew(-3deg);
  }
  5% {
    clip: rect(37px, 9999px, 44px, 0);
    transform: skew(-3deg);
  }
  10% {
    clip: rect(57px, 9999px, 145px, 0);
    transform: skew(0deg);
  }
  15% {
    clip: rect(94px, 9999px, 132px, 0);
    transform: skew(0deg);
  }
  20% {
    clip: rect(60px, 9999px, 98px, 0);
    transform: skew(-4deg);
  }
  25% {
    clip: rect(89px, 9999px, 149px, 0);
    transform: skew(1deg);
  }
  30% {
    clip: rect(2px, 9999px, 32px, 0);
    transform: skew(0deg);
  }
  35% {
    clip: rect(118px, 9999px, 150px, 0);
    transform: skew(-1deg);
  }
  40% {
    clip: rect(14px, 9999px, 122px, 0);
    transform: skew(-3deg);
  }
  45% {
    clip: rect(69px, 9999px, 40px, 0);
    transform: skew(5deg);
  }
  50% {
    clip: rect(134px, 9999px, 148px, 0);
    transform: skew(-4deg);
  }
  55% {
    clip: rect(55px, 9999px, 88px, 0);
    transform: skew(-1deg);
  }
  60% {
    clip: rect(52px, 9999px, 100px, 0);
    transform: skew(3deg);
  }
  65% {
    clip: rect(75px, 9999px, 42px, 0);
    transform: skew(-1deg);
  }
  70% {
    clip: rect(86px, 9999px, 128px, 0);
    transform: skew(-4deg);
  }
  75% {
    clip: rect(135px, 9999px, 149px, 0);
    transform: skew(-2deg);
  }
  80% {
    clip: rect(108px, 9999px, 109px, 0);
    transform: skew(1deg);
  }
  85% {
    clip: rect(66px, 9999px, 83px, 0);
    transform: skew(4deg);
  }
  90% {
    clip: rect(108px, 9999px, 63px, 0);
    transform: skew(5deg);
  }
  95% {
    clip: rect(39px, 9999px, 32px, 0);
    transform: skew(0deg);
  }
  100% {
    clip: rect(128px, 9999px, 146px, 0);
    transform: skew(2deg);
  }
}
@keyframes glitch-anim-2 {
  0% {
    clip: rect(43px, 9999px, 48px, 0);
    transform: skew(4deg);
  }
  5% {
    clip: rect(138px, 9999px, 81px, 0);
    transform: skew(-3deg);
  }
  10% {
    clip: rect(135px, 9999px, 75px, 0);
    transform: skew(1deg);
  }
  15% {
    clip: rect(75px, 9999px, 70px, 0);
    transform: skew(3deg);
  }
  20% {
    clip: rect(77px, 9999px, 66px, 0);
    transform: skew(-1deg);
  }
  25% {
    clip: rect(19px, 9999px, 147px, 0);
    transform: skew(2deg);
  }
  30% {
    clip: rect(33px, 9999px, 59px, 0);
    transform: skew(2deg);
  }
  35% {
    clip: rect(1px, 9999px, 116px, 0);
    transform: skew(1deg);
  }
  40% {
    clip: rect(96px, 9999px, 119px, 0);
    transform: skew(4deg);
  }
  45% {
    clip: rect(95px, 9999px, 12px, 0);
    transform: skew(5deg);
  }
  50% {
    clip: rect(112px, 9999px, 128px, 0);
    transform: skew(-1deg);
  }
  55% {
    clip: rect(121px, 9999px, 111px, 0);
    transform: skew(-4deg);
  }
  60% {
    clip: rect(76px, 9999px, 114px, 0);
    transform: skew(1deg);
  }
  65% {
    clip: rect(78px, 9999px, 104px, 0);
    transform: skew(3deg);
  }
  70% {
    clip: rect(30px, 9999px, 97px, 0);
    transform: skew(3deg);
  }
  75% {
    clip: rect(40px, 9999px, 122px, 0);
    transform: skew(-2deg);
  }
  80% {
    clip: rect(22px, 9999px, 21px, 0);
    transform: skew(5deg);
  }
  85% {
    clip: rect(13px, 9999px, 36px, 0);
    transform: skew(-3deg);
  }
  90% {
    clip: rect(73px, 9999px, 129px, 0);
    transform: skew(1deg);
  }
  95% {
    clip: rect(27px, 9999px, 129px, 0);
    transform: skew(-4deg);
  }
  100% {
    clip: rect(12px, 9999px, 40px, 0);
    transform: skew(-4deg);
  }
}
body.page-404 .error-title {
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 12px;
}

body.page-404 .error-body {
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}

body.page-404 .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-404 .btn-primary-404 {
  border-radius: 369px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.page-404 .btn-primary-404 {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-0), var(--accent-1));
  box-shadow: 0 18px 28px rgba(255, 77, 166, 0.25);
}

body.page-404 .btn-primary-404:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(255, 77, 166, 0.35);
}

/* --- VIZUELNI DEO SA RAKETOM --- */
body.page-404 .empty-visual {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  --orbit-radius: 130px; /* Radius kretanja rakete */
}

body.page-404 .empty-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: orbitSpin 20s linear infinite;
}

body.page-404 .empty-visual .planet {
  position: absolute;
  width: 130px;
  height: 130px;
  background: linear-gradient(140deg, #0b1220 0%, #1f2a44 45%, #3b2a6b 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 45px rgba(79, 124, 255, 0.35), inset 0 0 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Planeta sada blago pulsira i rotira se nezavisno */
  animation: float 6s ease-in-out infinite;
}

body.page-404 .empty-visual .planet i {
  font-size: 8rem;
  color: transparent;
  background: linear-gradient(140deg, #7dd3fc, #a855f7 55%, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.35));
}

/* --- RAKETA (MODIFIKOVANO) --- */
body.page-404 .empty-visual .ship {
  position: absolute;
  font-size: 2.4rem;
  color: #60a5fa;
  left: 50%;
  top: 50%;
  z-index: 2;
  /* Animacija ide suprotno od kazaljke i uvek je usmerena ka napred */
  animation: orbit-realistic 7s linear infinite;
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

body.page-404 .lost-astronaut {
  position: fixed;
  font-size: 2rem;
  color: rgba(248, 250, 252, 0.65);
  z-index: 999;
  cursor: grab;
  user-select: none;
  touch-action: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

body.page-404 .lost-astronaut.is-dragging {
  cursor: grabbing;
  color: var(--accent-2);
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.6));
}

/* Keep the visual container styling separate */
body.page-404 .empty-visual .lost-astronaut {
  position: absolute;
  font-size: 2rem;
  color: rgba(248, 250, 252, 0.65);
  z-index: 4;
  cursor: grab;
  user-select: none;
  touch-action: none;
  top: auto;
  left: auto;
  transform: none;
}

body.page-404 .empty-visual .lost-astronaut.is-dragging {
  cursor: grabbing;
  color: var(--accent-2);
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.6));
}

/* Efekt motora rakete */
body.page-404 .empty-visual .ship::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 15px;
  filter: blur(6px);
  border-radius: 50%;
  opacity: 0.7;
}

/* --- ANIMACIJE --- */
@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
/* Smanjen float intenzitet da ne udara u raketu */
@keyframes float {
  0%, 100% {
    transform: translateY(10px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}
/* REALISTIČNA ORBITA: Raketa ide ulevo i "nosi" nos ka napred */
@keyframes orbit-realistic {
  0% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(-90deg);
  }
}
@keyframes orbitSpin {
  to {
    transform: rotate(-360deg);
  }
}
@media (max-width: 860px) {
  body.page-404 .error-meta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.page-404 .error-actions {
    justify-content: center;
  }
}
body {
  --radar-c1: #34d399;
  --radar-c2: #000000;
}

.empty-state-container {
  grid-column: 1/-1;
  padding: 60px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(15px);
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.empty-state-container .category-highlight {
  font-weight: 800;
  transition: all 0.4s ease;
  color: var(--radar-c1);
}
.empty-state-container .cross-sector-alert {
  margin: 30px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  max-width: 550px;
  width: 100%;
}
.empty-state-container .cross-sector-alert .alert-text {
  color: var(--radar-c1);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 600;
}
.empty-state-container .cross-sector-alert .suggestion-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.empty-state-container .cross-sector-alert .suggestion-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.empty-state-container .cross-sector-alert .suggestion-pill .pill-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.empty-state-container .cross-sector-alert .suggestion-pill .pill-count {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 4px;
}
.empty-state-container .cross-sector-alert .suggestion-pill:hover {
  background: var(--radar-c1);
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: #0b1220;
}
.empty-state-container .cross-sector-alert .suggestion-pill:hover .pill-label {
  color: #0b1220;
}
.empty-state-container .cross-sector-alert .suggestion-pill:hover .pill-count {
  color: #0b1220;
}
.empty-state-container .modern-reset-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 35px;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}
.empty-state-container .modern-reset-btn .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.empty-state-container .modern-reset-btn .btn-content .btn-icon {
  font-size: 1.2rem;
}
.empty-state-container .modern-reset-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--radar-c1), var(--radar-c2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.empty-state-container .modern-reset-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--radar-c1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.empty-state-container .modern-reset-btn:hover .btn-glow {
  opacity: 0.15;
}
.empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--radar-c1);
}
.empty-state-container .modern-reset-btn:active {
  transform: scale(0.97);
}
.empty-state-container .radar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 150px;
  height: 150px;
}
.empty-state-container .radar-wrapper .empty-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: antenna-sway 3s infinite ease-in-out;
}
.empty-state-container .radar-wrapper .radar-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--radar-c1);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
  animation: radar-ping 2s infinite;
}
.empty-state-container .empty-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.empty-state-container .empty-text {
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Category-specific empty-state colors */
.category-living-environment {
  --radar-c1: var(--cat-living-environment-from);
  --radar-c2: var(--cat-living-environment-to);
}
.category-living-environment .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-living-environment-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-living-environment .empty-state-container .category-highlight {
  color: var(--cat-living-environment-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-living-environment-from) 30%, transparent);
}
.category-living-environment .empty-state-container .alert-text {
  color: var(--cat-living-environment-from);
}
.category-living-environment .empty-state-container .suggestion-pill:hover {
  background: var(--cat-living-environment-gradient);
  border-color: var(--cat-living-environment-from);
}
.category-living-environment .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-living-environment-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-living-environment-from) 30%, transparent);
}
.category-living-environment .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-living-environment-from);
}
.category-living-environment .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-living-environment-gradient);
}
.category-living-environment .empty-state-container .radar-ping {
  background: var(--cat-living-environment-from);
}

.category-personal-care-health {
  --radar-c1: var(--cat-personal-care-health-from);
  --radar-c2: var(--cat-personal-care-health-to);
}
.category-personal-care-health .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-personal-care-health-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-personal-care-health .empty-state-container .category-highlight {
  color: var(--cat-personal-care-health-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-personal-care-health-from) 30%, transparent);
}
.category-personal-care-health .empty-state-container .alert-text {
  color: var(--cat-personal-care-health-from);
}
.category-personal-care-health .empty-state-container .suggestion-pill:hover {
  background: var(--cat-personal-care-health-gradient);
  border-color: var(--cat-personal-care-health-from);
}
.category-personal-care-health .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-personal-care-health-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-personal-care-health-from) 30%, transparent);
}
.category-personal-care-health .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-personal-care-health-from);
}
.category-personal-care-health .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-personal-care-health-gradient);
}
.category-personal-care-health .empty-state-container .radar-ping {
  background: var(--cat-personal-care-health-from);
}

.category-food-leisure-experiences {
  --radar-c1: var(--cat-food-leisure-experiences-from);
  --radar-c2: var(--cat-food-leisure-experiences-to);
}
.category-food-leisure-experiences .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-food-leisure-experiences-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-food-leisure-experiences .empty-state-container .category-highlight {
  color: var(--cat-food-leisure-experiences-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-food-leisure-experiences-from) 30%, transparent);
}
.category-food-leisure-experiences .empty-state-container .alert-text {
  color: var(--cat-food-leisure-experiences-from);
}
.category-food-leisure-experiences .empty-state-container .suggestion-pill:hover {
  background: var(--cat-food-leisure-experiences-gradient);
  border-color: var(--cat-food-leisure-experiences-from);
}
.category-food-leisure-experiences .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-food-leisure-experiences-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-food-leisure-experiences-from) 30%, transparent);
}
.category-food-leisure-experiences .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-food-leisure-experiences-from);
}
.category-food-leisure-experiences .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-food-leisure-experiences-gradient);
}
.category-food-leisure-experiences .empty-state-container .radar-ping {
  background: var(--cat-food-leisure-experiences-from);
}

.category-learning-development {
  --radar-c1: var(--cat-learning-development-from);
  --radar-c2: var(--cat-learning-development-to);
}
.category-learning-development .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-learning-development-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-learning-development .empty-state-container .category-highlight {
  color: var(--cat-learning-development-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-learning-development-from) 30%, transparent);
}
.category-learning-development .empty-state-container .alert-text {
  color: var(--cat-learning-development-from);
}
.category-learning-development .empty-state-container .suggestion-pill:hover {
  background: var(--cat-learning-development-gradient);
  border-color: var(--cat-learning-development-from);
}
.category-learning-development .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-learning-development-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-learning-development-from) 30%, transparent);
}
.category-learning-development .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-learning-development-from);
}
.category-learning-development .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-learning-development-gradient);
}
.category-learning-development .empty-state-container .radar-ping {
  background: var(--cat-learning-development-from);
}

.category-work-business-economy {
  --radar-c1: var(--cat-work-business-economy-from);
  --radar-c2: var(--cat-work-business-economy-to);
}
.category-work-business-economy .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-work-business-economy-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-work-business-economy .empty-state-container .category-highlight {
  color: var(--cat-work-business-economy-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-work-business-economy-from) 30%, transparent);
}
.category-work-business-economy .empty-state-container .alert-text {
  color: var(--cat-work-business-economy-from);
}
.category-work-business-economy .empty-state-container .suggestion-pill:hover {
  background: var(--cat-work-business-economy-gradient);
  border-color: var(--cat-work-business-economy-from);
}
.category-work-business-economy .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-work-business-economy-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-work-business-economy-from) 30%, transparent);
}
.category-work-business-economy .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-work-business-economy-from);
}
.category-work-business-economy .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-work-business-economy-gradient);
}
.category-work-business-economy .empty-state-container .radar-ping {
  background: var(--cat-work-business-economy-from);
}

.category-creation-expression {
  --radar-c1: var(--cat-creation-expression-from);
  --radar-c2: var(--cat-creation-expression-to);
}
.category-creation-expression .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-creation-expression-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-creation-expression .empty-state-container .category-highlight {
  color: var(--cat-creation-expression-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-creation-expression-from) 30%, transparent);
}
.category-creation-expression .empty-state-container .alert-text {
  color: var(--cat-creation-expression-from);
}
.category-creation-expression .empty-state-container .suggestion-pill:hover {
  background: var(--cat-creation-expression-gradient);
  border-color: var(--cat-creation-expression-from);
}
.category-creation-expression .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-creation-expression-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-creation-expression-from) 30%, transparent);
}
.category-creation-expression .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-creation-expression-from);
}
.category-creation-expression .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-creation-expression-gradient);
}
.category-creation-expression .empty-state-container .radar-ping {
  background: var(--cat-creation-expression-from);
}

.category-mobility-logistics {
  --radar-c1: var(--cat-mobility-logistics-from);
  --radar-c2: var(--cat-mobility-logistics-to);
}
.category-mobility-logistics .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-mobility-logistics-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-mobility-logistics .empty-state-container .category-highlight {
  color: var(--cat-mobility-logistics-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-mobility-logistics-from) 30%, transparent);
}
.category-mobility-logistics .empty-state-container .alert-text {
  color: var(--cat-mobility-logistics-from);
}
.category-mobility-logistics .empty-state-container .suggestion-pill:hover {
  background: var(--cat-mobility-logistics-gradient);
  border-color: var(--cat-mobility-logistics-from);
}
.category-mobility-logistics .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-mobility-logistics-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-mobility-logistics-from) 30%, transparent);
}
.category-mobility-logistics .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-mobility-logistics-from);
}
.category-mobility-logistics .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-mobility-logistics-gradient);
}
.category-mobility-logistics .empty-state-container .radar-ping {
  background: var(--cat-mobility-logistics-from);
}

.category-community-social-life {
  --radar-c1: var(--cat-community-social-life-from);
  --radar-c2: var(--cat-community-social-life-to);
}
.category-community-social-life .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-community-social-life-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-community-social-life .empty-state-container .category-highlight {
  color: var(--cat-community-social-life-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-community-social-life-from) 30%, transparent);
}
.category-community-social-life .empty-state-container .alert-text {
  color: var(--cat-community-social-life-from);
}
.category-community-social-life .empty-state-container .suggestion-pill:hover {
  background: var(--cat-community-social-life-gradient);
  border-color: var(--cat-community-social-life-from);
}
.category-community-social-life .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-community-social-life-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-community-social-life-from) 30%, transparent);
}
.category-community-social-life .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-community-social-life-from);
}
.category-community-social-life .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-community-social-life-gradient);
}
.category-community-social-life .empty-state-container .radar-ping {
  background: var(--cat-community-social-life-from);
}

.category-administration-legal {
  --radar-c1: var(--cat-administration-legal-from);
  --radar-c2: var(--cat-administration-legal-to);
}
.category-administration-legal .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-administration-legal-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-administration-legal .empty-state-container .category-highlight {
  color: var(--cat-administration-legal-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-administration-legal-from) 30%, transparent);
}
.category-administration-legal .empty-state-container .alert-text {
  color: var(--cat-administration-legal-from);
}
.category-administration-legal .empty-state-container .suggestion-pill:hover {
  background: var(--cat-administration-legal-gradient);
  border-color: var(--cat-administration-legal-from);
}
.category-administration-legal .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-administration-legal-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-administration-legal-from) 30%, transparent);
}
.category-administration-legal .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-administration-legal-from);
}
.category-administration-legal .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-administration-legal-gradient);
}
.category-administration-legal .empty-state-container .radar-ping {
  background: var(--cat-administration-legal-from);
}

.category-digital-life-technology {
  --radar-c1: var(--cat-digital-life-technology-from);
  --radar-c2: var(--cat-digital-life-technology-to);
}
.category-digital-life-technology .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-digital-life-technology-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-digital-life-technology .empty-state-container .category-highlight {
  color: var(--cat-digital-life-technology-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-digital-life-technology-from) 30%, transparent);
}
.category-digital-life-technology .empty-state-container .alert-text {
  color: var(--cat-digital-life-technology-from);
}
.category-digital-life-technology .empty-state-container .suggestion-pill:hover {
  background: var(--cat-digital-life-technology-gradient);
  border-color: var(--cat-digital-life-technology-from);
}
.category-digital-life-technology .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-digital-life-technology-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-digital-life-technology-from) 30%, transparent);
}
.category-digital-life-technology .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-digital-life-technology-from);
}
.category-digital-life-technology .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-digital-life-technology-gradient);
}
.category-digital-life-technology .empty-state-container .radar-ping {
  background: var(--cat-digital-life-technology-from);
}

.category-life-transitions-support {
  --radar-c1: var(--cat-life-transitions-support-from);
  --radar-c2: var(--cat-life-transitions-support-to);
}
.category-life-transitions-support .empty-state-container {
  border-color: color-mix(in srgb, var(--cat-life-transitions-support-from) 20%, rgba(255, 255, 255, 0.1));
}
.category-life-transitions-support .empty-state-container .category-highlight {
  color: var(--cat-life-transitions-support-from);
  text-shadow: 0 0 10px color-mix(in srgb, var(--cat-life-transitions-support-from) 30%, transparent);
}
.category-life-transitions-support .empty-state-container .alert-text {
  color: var(--cat-life-transitions-support-from);
}
.category-life-transitions-support .empty-state-container .suggestion-pill:hover {
  background: var(--cat-life-transitions-support-gradient);
  border-color: var(--cat-life-transitions-support-from);
}
.category-life-transitions-support .empty-state-container .modern-reset-btn:hover {
  border-color: var(--cat-life-transitions-support-from);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--cat-life-transitions-support-from) 30%, transparent);
}
.category-life-transitions-support .empty-state-container .modern-reset-btn:hover .btn-text {
  color: var(--cat-life-transitions-support-from);
}
.category-life-transitions-support .empty-state-container .modern-reset-btn .btn-glow {
  background: var(--cat-life-transitions-support-gradient);
}
.category-life-transitions-support .empty-state-container .radar-ping {
  background: var(--cat-life-transitions-support-from);
}

.search-engine-empty .empty-info-grid {
  margin: 40px auto;
  width: 100%;
  max-width: 800px;
}
.search-engine-empty .suggestion-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.search-engine-empty .suggestion-list li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}
.search-engine-empty .suggestion-list li .sug-icon {
  font-size: 2rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.3));
}
.search-engine-empty .suggestion-list li:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--radar-c1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .search-engine-empty .suggestion-list {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}
@keyframes antenna-sway {
  0%, 100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(12deg);
  }
}
@keyframes radar-ping {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2 0.5);
    opacity: 0;
  }
}
:root {
  --pw-card-bg: rgba(255, 255, 255, 0.03);
  --pw-card-border: rgba(255, 255, 255, 0.08);
  --pw-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --pw-card-shadow-hover: 0 22px 44px rgba(0, 0, 0, 0.30);
  --pw-card-border-hover: rgba(255, 255, 255, 0.20);
  --pw-card-radius: 24px;
  --pw-text-primary: rgba(255, 255, 255, 0.92);
  --pw-text-secondary: rgba(255, 255, 255, 0.60);
  --pw-text-muted: rgba(255, 255, 255, 0.35);
  --pw-item-bg: rgba(255, 255, 255, 0.03);
  --pw-item-bg-hover: rgba(255, 255, 255, 0.09);
  --pw-item-border: rgba(255, 255, 255, 0.07);
  --pw-item-border-hover: rgba(255, 255, 255, 0.22);
  --pw-footer-border: rgba(255, 255, 255, 0.07);
  --pw-accent-seeker: #3b82f6;
  --pw-accent-provider: #ffed4e;
  --pw-badge-seeker-bg: rgba(59, 130, 246, 0.10);
  --pw-badge-seeker-bd: rgba(59, 130, 246, 0.28);
  --pw-badge-provider-bg: rgba(255, 237, 78, 0.10);
  --pw-badge-provider-bd: rgba(255, 237, 78, 0.28);
  --pw-ribbon-bg: linear-gradient(45deg, #f59e0b, #fbbf24);
  --pw-ribbon-color: #000;
  --pw-glass-bg: rgba(10, 10, 15, 0.50);
  --pw-glass-border: rgba(255, 255, 255, 0.10);
}

body.light-mode {
  --pw-card-bg: rgba(255, 255, 255, 0.82);
  --pw-card-border: rgba(0, 0, 0, 0.09);
  --pw-card-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  --pw-card-shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.14);
  --pw-card-border-hover: rgba(0, 0, 0, 0.18);
  --pw-text-primary: rgba(0, 0, 0, 0.88);
  --pw-text-secondary: rgba(0, 0, 0, 0.58);
  --pw-text-muted: rgba(0, 0, 0, 0.30);
  --pw-item-bg: rgba(0, 0, 0, 0.03);
  --pw-item-bg-hover: rgba(0, 0, 0, 0.07);
  --pw-item-border: rgba(0, 0, 0, 0.08);
  --pw-item-border-hover: rgba(0, 0, 0, 0.20);
  --pw-footer-border: rgba(0, 0, 0, 0.08);
  --pw-badge-seeker-bg: rgba(59, 130, 246, 0.10);
  --pw-badge-seeker-bd: rgba(59, 130, 246, 0.30);
  --pw-badge-provider-bg: rgba(16, 185, 129, 0.10);
  --pw-badge-provider-bd: rgba(16, 185, 129, 0.30);
  --pw-ribbon-bg: linear-gradient(45deg, #d97706, #f59e0b);
  --pw-ribbon-color: #fff;
  --pw-glass-bg: rgba(255, 255, 255, 0.88);
  --pw-glass-border: rgba(11, 18, 32, 0.12);
}

.pathway-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  max-width: 1300px;
  margin: 40px auto;
}
@media (max-width: 992px) {
  .pathway-grid {
    flex-direction: column;
  }
}

.pathway-card {
  position: relative;
  min-height: 450px;
  background: var(--pw-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--pw-glass-border);
  border-radius: var(--pw-card-radius);
  padding: 10px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), border-color 0.3s;
}
.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.pathway-card .spotlight {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.pathway-card:hover {
  transform: translateY(-5px);
}
.pathway-card:hover .spotlight {
  opacity: 1;
}

.card-gradient-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s;
}

.seeker-card:hover {
  border-color: var(--pw-accent-seeker);
}

.provider-card:hover {
  border-color: var(--pw-accent-provider);
}

.seeker-card .card-gradient-bg {
  background: radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.12) 0%, transparent 65%);
}

.provider-card .card-gradient-bg {
  background: radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
}

.pathway-card:hover .card-gradient-bg {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pill-badge.seeker-badge {
  color: var(--pw-accent-seeker);
  background: var(--pw-badge-seeker-bg);
  border: 1px solid var(--pw-badge-seeker-bd);
}
.pill-badge.provider-badge {
  color: var(--pw-accent-provider);
  background: var(--pw-badge-provider-bg);
  border: 1px solid var(--pw-badge-provider-bd);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.pathway-card h3 {
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pathway-card h3 .static-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pw-text-muted);
  text-transform: uppercase;
}
.pathway-card h3 .dynamic-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.pathway-rotator-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pathway-rotator-list li {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--pw-item-border);
  background: var(--pw-item-bg);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pathway-rotator-list li:has(.item-link):hover {
  border-color: var(--pw-item-border-hover);
  background: var(--pw-item-bg-hover);
}
.pathway-rotator-list li:not(:has(.item-link)) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

.item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  width: 100%;
  text-decoration: none;
  color: var(--pw-text-primary);
  transition: padding-left 0.2s ease;
}
.item-link:hover {
  padding-left: 16px;
}
.item-link:hover .item-text {
  color: var(--pw-text-primary);
}
.item-link:hover .item-arrow {
  color: var(--pw-accent-seeker);
  transform: translateX(3px);
}

.item-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}
body.light-mode .item-icon {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.08));
}

.item-text {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--pw-text-secondary);
  transition: color 0.2s;
}

.item-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--pw-text-muted);
  transition: color 0.2s, transform 0.2s;
}

#seeker-desc,
#provider-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--pw-text-secondary);
  margin: 10px 0 20px;
  flex-grow: 1;
  padding: 10px 0px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--pw-footer-border);
}

.action-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pw-text-primary);
}

.arrow-icon {
  color: var(--pw-text-secondary);
  transition: transform 0.25s ease, color 0.25s ease;
}

.pathway-card:hover .arrow-icon {
  transform: translateX(4px);
  color: var(--pw-text-primary);
}

.card-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}
body.light-mode .card-progress-container {
  background: rgba(0, 0, 0, 0.06);
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

.seeker-card .progress-fill {
  background: var(--pw-accent-seeker);
}

.provider-card .progress-fill {
  background: var(--pw-accent-provider);
}

#seeker-items, .pathway-rotator-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  text-decoration: none;
}
#seeker-items .item, .pathway-rotator-list .item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--pw-item-bg);
  border: 1px solid var(--pw-item-border);
  transition: background 0.2s, border-color 0.2s;
}
#seeker-items .item:hover, .pathway-rotator-list .item:hover {
  background: var(--pw-item-bg-hover);
  border-color: var(--pw-item-border-hover);
}
#seeker-items .item .item-icon, .pathway-rotator-list .item .item-icon {
  font-size: 1.1rem;
  color: var(--pw-text-primary);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}
body.light-mode #seeker-items .item .item-icon, body.light-mode .pathway-rotator-list .item .item-icon {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.08));
}
#seeker-items .item .item-text, .pathway-rotator-list .item .item-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pw-text-secondary);
  text-decoration: none;
}

.premium-ribbon {
  position: absolute;
  top: 22px;
  right: -34px;
  background: var(--pw-ribbon-bg);
  color: var(--pw-ribbon-color);
  padding: 5px 42px;
  transform: rotate(45deg);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@keyframes pw-slide-up {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- SUBSCRIPTION CARDS --- */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.sub-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.sub-card.premium {
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0) 60%), rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.badge-corner {
  position: absolute;
  top: 35px;
  right: -53px;
  background: #ffd700;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.plan-name {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.sub-card.premium .plan-name {
  color: #ffd700;
}

.price-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-sub {
  font-size: 1rem;
  color: #888;
}

.price-fiat {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1; /* Gura dugme na dno */
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #aaa;
  font-size: 0.95rem;
}

.features-list li i {
  color: #34d399; /* Green check */
}

.sub-card.premium .features-list li i {
  color: #ffd700; /* Gold check */
}

.btn-select {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn-basic {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-basic:hover {
  background: #fff;
  color: #000;
}

.btn-premium {
  background: #ffd700;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-premium:hover {
  background: #ffea70;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* --- MODAL MODERNIZATION --- */
.modern-modal-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modern-modal {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 500px;
  padding: 0; /* Padding handled inside */
  overflow: hidden;
}

.modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.modern-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  appearance: none; /* Uklanja default strelicu */
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.modern-select:focus {
  border-color: #3b82f6;
  background-color: rgba(255, 255, 255, 0.08);
}

.summary-box {
  background: rgba(59, 130, 246, 0.05);
  border: 1px dashed rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-top: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.final-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.discount-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 10px;
}

.strikethrough {
  text-decoration: line-through;
  color: #666;
  font-size: 0.9rem;
  margin-right: 5px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  margin-top: 25px;
}

.geo-pricing-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}
.geo-pricing-bar__copy {
  flex: 1;
}
.geo-pricing-bar__controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.geo-pricing-bar__title {
  color: green;
  font-size: 0.98rem;
  font-weight: 800;
}
.geo-pricing-bar__text {
  color: #8b8b8b;
  font-size: 0.82rem;
  margin-top: 4px;
  line-height: 1.5;
}
.geo-pricing-bar__control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #b5b5b5;
  font-size: 0.76rem;
  font-weight: 700;
}
.geo-pricing-bar__control select {
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0f0f;
  color: #fff;
}
@media (max-width: 768px) {
  .geo-pricing-bar {
    align-items: flex-start;
  }
  .geo-pricing-bar__control {
    width: 100%;
  }
  .geo-pricing-bar__control select {
    width: 100%;
    min-width: 0;
  }
  .geo-pricing-bar__controls {
    width: 100%;
  }
}

.geo-price-note {
  margin-top: 6px;
  color: #7f8794;
  font-size: 0.74rem;
  line-height: 1.45;
}

.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.payment-modal {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid #333;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: popIn 0.5s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.pm-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pm-sub {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.pm-amount {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  font-size: 1.8rem;
  font-weight: 800;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.pm-btn {
  text-decoration: none;
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.fat-footer {
  background: var(--footer);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fat-footer {
    padding: 60px 0 30px;
  }
}

.trust-bar {
  display: flex;
  justify-content: space-around;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .trust-bar {
    padding-bottom: 30px;
    margin-bottom: 30px;
    justify-content: center;
  }
}

.trust-item {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .trust-item {
    font-size: 0.85rem;
    gap: 8px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 760px) {
  .footer-col {
    text-align: center;
  }
  .footer-col ul {
    padding: 0;
  }
  .footer-social {
    justify-content: center;
  }
}
.footer-col h4 {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  .footer-col h4 {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}
@media (max-width: 576px) {
  .footer-col a {
    font-size: 0.9rem;
  }
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .footer-bottom {
    padding-top: 30px;
  }
}
@media (max-width: 576px) {
  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 20px;
  }
}

.logo {
  font-weight: 800;
  letter-spacing: -0.4px;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer-social .footer-social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social .footer-social-btn i {
  z-index: 2;
  transition: transform 0.3s ease;
}
.footer-social .footer-social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--brand-color);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.footer-social .footer-social-btn:hover {
  color: #fff;
  border-color: var(--brand-color);
  background: rgba(var(--brand-rgb), 0.15);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
}
.footer-social .footer-social-linkedin {
  --brand-color: #0a66c2;
}
.footer-social .footer-social-instagram {
  --brand-color: #e1306c;
}
.footer-social .footer-social-facebook {
  --brand-color: #1877f2;
}
.footer-social .footer-social-x {
  --brand-color: #ffffff;
}
.footer-social .footer-social-youtube {
  --brand-color: #ff0000;
}
.footer-social .footer-social-tiktok {
  --brand-color: #00f2ea;
}

input[type=text],
input[type=email],
input[type=password],
textarea,
select,
.auth-input,
.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder,
select::placeholder,
.auth-input::placeholder,
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
select:focus,
.auth-input:focus,
.form-input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
textarea:hover,
select:hover,
.auth-input:hover,
.form-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select option {
  background: #0a0a0f;
  color: #fff;
}

.contact-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
}

.contact-header {
  position: relative;
  text-align: center;
  margin: 100px 0;
  max-width: 1200px;
  margin-inline: auto;
  padding: 36px 34px 30px;
  background: rgba(10, 10, 15, 0.44);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.contact-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  border-radius: 999px;
  margin: 15px auto;
  background: linear-gradient(90deg, #86bc42, #4b8ba2);
}
.contact-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-header p {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  max-width: 64ch;
  margin: 0 auto;
  line-height: 1.74;
  text-wrap: balance;
}
.contact-header .contact-header-secondary {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.94rem, 1.2vw, 1rem);
  white-space: pre-line;
  text-align: left;
  max-width: 64ch;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-header .contact-reasons-wrap {
  margin-top: 20px;
}
.contact-header .contact-header-secondary-title {
  margin: 20px auto;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.contact-header .contact-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}
.contact-header .contact-reason-card {
  position: relative;
  overflow: hidden;
  padding: 24px 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-header .contact-reason-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 241, 227, 0.5);
  box-shadow: 0 20px 60px rgba(99, 241, 224, 0.2);
}
.contact-header .contact-reason-card:hover .contact-reason-icon {
  right: -24px;
  bottom: -28px;
  opacity: 0.07;
  transform: rotate(-15deg) scale(1.04);
}
.contact-header .contact-reason-card .contact-reason-icon {
  position: absolute;
  right: -18px;
  bottom: 29px;
  font-size: 6.5rem;
  opacity: 0.04;
  transform: rotate(-15deg);
  transition: opacity 0.5s ease, transform 0.5s ease, right 0.5s ease, bottom 0.5s ease;
  pointer-events: none;
  line-height: 1;
}
.contact-header .contact-reason-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}
.contact-header .contact-reason-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .contact-header {
    margin-bottom: 40px;
    padding: 26px 18px 22px;
    border-radius: 18px;
  }
  .contact-header h2 {
    font-size: 2rem;
  }
  .contact-header p {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.66;
  }
  .contact-header .contact-header-secondary {
    margin-top: 10px;
    font-size: 0.92rem;
    padding-top: 12px;
  }
  .contact-header .contact-header-secondary-title {
    margin: 10px 0 14px;
    font-size: 1rem;
  }
  .contact-header .contact-reasons-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-header .contact-reason-card {
    padding: 16px 14px;
  }
  .contact-header .contact-reason-card .contact-reason-icon {
    font-size: 5.2rem;
    right: -16px;
    bottom: -18px;
  }
  .contact-header .contact-reason-card h3 {
    font-size: 0.95rem;
  }
  .contact-header .contact-reason-card p {
    font-size: 0.88rem;
  }
}
@media (max-width: 1100px) and (min-width: 769px) {
  .contact-header .contact-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-section .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.info-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 1rem;
  text-decoration: none;
}
.info-card .info-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.info-card .info-icon i {
  font-size: 2.5rem;
  color: #25D366;
}
.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.info-card:hover {
  transform: translateY(-4px);
  background: rgba(10, 10, 15, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .info-card {
    padding: 24px 16px;
  }
}

.contact-form-container {
  position: relative;
  padding: 48px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-form-container {
    padding: 32px 24px;
    border-radius: 34px;
  }
}

.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form-container .form-input,
.contact-form-container input[type=text],
.contact-form-container input[type=email],
.contact-form-container textarea {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group {
  margin-bottom: 24px;
}
.form-group .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group .form-label .label-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.btn-submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3b82f6, #6ef65c);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6ef65c, #3b82f6);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-submit span {
  position: relative;
  z-index: 1;
}
.btn-submit .submit-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}
.btn-submit:hover::before {
  opacity: 1;
}
.btn-submit:hover .submit-arrow {
  transform: translateX(4px);
}
.btn-submit:active {
  transform: translateY(0);
}

.form-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-style: solid;
  border-color: rgba(59, 130, 246, 0.2);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.form-decoration.top-left {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 28px;
}
.form-decoration.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 28px;
}

.contact-form-container:hover .form-decoration {
  opacity: 1;
}
.contact-form-container:hover .form-decoration.top-left {
  width: 140px;
  height: 140px;
}
.contact-form-container:hover .form-decoration.bottom-right {
  width: 140px;
  height: 140px;
}

.auth-box {
  max-width: 480px;
  margin: 80px auto;
  padding: 48px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .auth-box {
    padding: 36px 28px;
    border-radius: 20px;
  }
}

details summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary:hover {
  color: #3b82f6;
}
details summary .icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
details[open] summary .icon {
  transform: rotate(45deg);
  color: #3b82f6;
}

.display-content {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transform: translateY(-40%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.display-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.display-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  padding-bottom: 10px;
  display: inline-block;
}
.display-content p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-section {
  padding: 60px 0;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-section .section-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-section .section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-section {
    margin-bottom: 60px;
    padding: 40px 0;
  }
  .faq-section .section-header {
    margin-bottom: 40px;
  }
  .faq-section .section-header h2 {
    font-size: 2rem;
  }
  .faq-section .section-header p {
    font-size: 0.95rem;
  }
}

.faq-hybrid-layout {
  position: relative;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  min-height: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .faq-hybrid-layout {
    padding: 20px;
    min-height: auto;
    border-radius: 20px;
  }
}

.faq-hybrid-item {
  margin-bottom: 12px;
}
.faq-hybrid-item .fh-trigger {
  padding: 20px 28px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.faq-hybrid-item .fh-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.faq-hybrid-item .fh-trigger .f-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}
.faq-hybrid-item .fh-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.faq-hybrid-item .fh-trigger:hover::before {
  opacity: 1;
}
.faq-hybrid-item .fh-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-hybrid-item.active .fh-trigger {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
  color: #fff;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.faq-hybrid-item.active .fh-trigger::after {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 1.2rem;
  color: rgba(59, 130, 246, 0.8);
  animation: pulse-arrow 1.5s ease-in-out infinite;
}
.faq-hybrid-item.active .fh-content {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 769px) {
  .faq-hybrid-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .faq-hybrid-item {
    width: 42%;
  }
  .faq-hybrid-item .fh-content {
    position: absolute;
    top: 40px;
    right: 40px;
    bottom: 40px;
    width: 52%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(5, 5, 10, 0.95));
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    transform: translateY(20px) scale(0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  .faq-hybrid-item.active .fh-content {
    transform: translateY(0) scale(1);
    z-index: 5;
  }
  .faq-hybrid-item .fh-inner {
    padding: 48px;
  }
  .faq-hybrid-item .fh-inner h3 {
    margin: 0 0 20px 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .faq-hybrid-item .fh-inner p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 768px) {
  .faq-hybrid-item {
    width: 100%;
    margin-bottom: 16px;
  }
  .faq-hybrid-item .fh-trigger {
    width: 100%;
    padding: 18px 24px;
  }
  .faq-hybrid-item .fh-trigger::after {
    content: "+";
    position: absolute;
    right: 24px;
    font-size: 1.5rem;
    transform: rotate(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: rgba(255, 255, 255, 0.5);
  }
  .faq-hybrid-item.active .fh-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .faq-hybrid-item.active .fh-trigger::after {
    transform: rotate(135deg);
    color: rgba(59, 130, 246, 0.8);
  }
  .faq-hybrid-item .fh-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .faq-hybrid-item.active .fh-content {
    max-height: 500px;
  }
  .faq-hybrid-item .fh-inner {
    padding: 24px;
  }
  .faq-hybrid-item .fh-inner h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
  }
  .faq-hybrid-item .fh-inner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }
}
@keyframes pulse-arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}
.fh-content::-webkit-scrollbar {
  width: 6px;
}
.fh-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.fh-content::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.3);
  border-radius: 10px;
}
.fh-content::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.5);
}

.faq-golden-rail-wrapper {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-golden-rail-track {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-rail-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 20px)) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-rail-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}
.faq-rail-card {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(10, 10, 15, 0.9));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}
.faq-rail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-rail-card:hover {
  transform: translate(-50%, calc(-50% - 4px)) scale(1.01);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.25);
}
.faq-rail-card:hover::before {
  opacity: 1;
}
.faq-rail-card.faq-rail-card-elite {
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.2);
}
.faq-rail-card.faq-rail-card-elite::before {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(255, 215, 0, 0.1) 70%);
}
.faq-rail-card.faq-rail-card-elite:hover {
  border-color: rgba(147, 51, 234, 0.8);
  box-shadow: 0 12px 32px rgba(147, 51, 234, 0.3);
}

.faq-rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.faq-rc-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.faq-rc-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}
.faq-rc-badge.faq-rc-badge-elite {
  background: linear-gradient(135deg, #9333ea, #a855f7);
  color: #fff;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.4);
}

.faq-rc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}
.faq-rc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.faq-rc-cat-icon {
  font-size: 0.9rem;
}

.faq-rc-cat-text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.faq-rc-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-golden-rail-wrapper {
    margin-top: 20px;
    padding-top: 15px;
    min-height: 240px;
  }
  .faq-golden-rail-track {
    height: 220px;
  }
  .faq-rail-card {
    width: 200px;
    padding: 14px;
  }
  .faq-rc-name {
    font-size: 0.9rem;
  }
}
.faq-seo-intro {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
  padding: 32px 36px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, var(--seo-glow-weak, rgba(59, 130, 246, 0.12)) 0%, rgba(10, 12, 20, 0.6) 55%, rgba(10, 12, 20, 0.4) 100%), linear-gradient(135deg, rgba(10, 12, 20, 0.95) 0%, rgba(10, 12, 20, 0.9) 100%);
  border: 1px solid var(--seo-glow, rgba(59, 130, 246, 0.35));
  box-shadow: 0 0 0 1px var(--seo-glow-weak, rgba(59, 130, 246, 0.12)), 0 12px 48px var(--seo-glow, rgba(59, 130, 246, 0.35)), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.faq-seo-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--seo-c1, #00c6ff) 0%, var(--seo-c2, #0072ff) 60%, transparent 100%);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.faq-seo-intro__bg-icon {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  color: var(--seo-c1, #00c6ff);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.faq-seo-intro__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--seo-c1, #00c6ff), var(--seo-c2, #0072ff));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 28px var(--seo-glow, rgba(59, 130, 246, 0.45)), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
  z-index: 1;
  outline: 2px solid var(--seo-glow, rgba(59, 130, 246, 0.35));
  outline-offset: 4px;
}

.faq-seo-intro__body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.faq-seo-intro__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--seo-c1, #00c6ff);
  margin-bottom: 6px;
  opacity: 0.9;
}

.faq-seo-intro__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.4px;
  background: linear-gradient(130deg, #fff 30%, var(--seo-c1, #00c6ff) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-seo-intro__sep {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  padding: 0 2px;
}

.faq-seo-intro__city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--seo-c1, #00c6ff);
  background: var(--seo-glow-weak, rgba(59, 130, 246, 0.12));
  border: 1px solid var(--seo-glow, rgba(59, 130, 246, 0.35));
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.faq-seo-intro__city i {
  font-size: 0.7rem;
}

.faq-seo-intro__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.faq-seo-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.faq-seo-intro__bullet {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--seo-glow-weak, rgba(59, 130, 246, 0.12));
  border: 1px solid var(--seo-glow, rgba(59, 130, 246, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--seo-c1, #00c6ff);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .faq-seo-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
  }
  .faq-seo-intro__title {
    font-size: 1.2rem;
  }
  .faq-seo-intro__icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .faq-seo-intro__bg-icon {
    font-size: 6rem;
    opacity: 0.04;
  }
}
.faq-vision-section {
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.85);
}
.faq-vision-section::before {
  content: "ФAQ";
  position: absolute;
  font-size: clamp(140px, 22vw, 260px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.faq-vision-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.6), transparent);
}

.faq-vision-header {
  margin-bottom: 72px;
}
.faq-vision-header .fvh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 18px;
}
.faq-vision-header .fvh-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}
.faq-vision-header .fvh-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f1f5f9;
  max-width: 680px;
}
.faq-vision-header .fvh-title em {
  font-style: normal;
  background: linear-gradient(90deg, #6366f1 0%, #a78bfa 50%, #d6b70a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-vision-list {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.fvl-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.fvl-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.fvl-item.is-open > .fvl-trigger .fvl-num {
  color: #ffcf55;
}
.fvl-item.is-open > .fvl-trigger .fvl-question {
  color: #f1f5f9;
}
.fvl-item.is-open > .fvl-trigger .fvl-icon {
  transform: rotate(45deg);
  color: #ecb810;
}
.fvl-item.is-open::before {
  transform: scaleY(1);
  opacity: 1;
}
.fvl-item {
  position: relative;
}
.fvl-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #e09412, #d6d30a);
  transform: scaleY(0);
  opacity: 0;
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  border-radius: 0 2px 2px 0;
}

.fvl-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0 26px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  color: #f1f5f9;
  outline: none;
}
.fvl-trigger:focus-visible {
  outline: 2px solid rgba(235, 170, 7, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}
.fvl-trigger:hover .fvl-question {
  color: rgba(241, 245, 249, 0.95);
}
.fvl-trigger:hover .fvl-icon {
  color: rgba(255, 255, 255, 0.6);
}
.fvl-trigger .fvl-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.22);
  min-width: 24px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.fvl-trigger .fvl-question {
  flex: 1;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: rgba(241, 245, 249, 0.65);
  line-height: 1.45;
  transition: color 0.3s;
}
.fvl-trigger .fvl-icon {
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
  flex-shrink: 0;
  margin-right: 4px;
}

.fvl-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.fvl-body .fvl-inner {
  padding: 0 40px 28px 62px;
}
.fvl-body .fvl-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(241, 245, 249, 0.48);
  margin: 0;
}

@media (max-width: 768px) {
  .faq-vision-section {
    padding: 72px 0 80px;
  }
  .faq-vision-section::before {
    display: none;
  }
  .faq-vision-header {
    margin-bottom: 48px;
  }
  .fvl-trigger {
    padding: 22px 0 22px 16px;
    gap: 14px;
  }
  .fvl-body .fvl-inner {
    padding: 0 16px 22px 54px;
  }
}
.vision-page {
  min-height: var(--viewport-height-static);
}

.vision-hero {
  padding: 140px 0 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .vision-hero {
    padding: 120px 0 60px;
  }
}

.vision-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.vision-hero-content .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, #86bc42, #4b8ba2) 1;
  border-radius: 369px;
  background: transparent;
}
.vision-hero-content .pill-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.vision-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -1.5px;
}
.vision-hero-content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .vision-hero-content .lead {
    font-size: 1.05rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #86bc42, #4b8ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-statement {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .vision-statement {
    padding: 40px 0;
  }
}

.statement-card {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(var(--surface-blur-strong));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.statement-card .statement-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  animation: float-icon 3s ease-in-out infinite;
}
.statement-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .statement-card h2 {
    font-size: 1.6rem;
  }
}
.statement-card .statement-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.statement-card .statement-text strong {
  color: #5cc3f6;
  font-weight: 700;
}
@media (max-width: 768px) {
  .statement-card .statement-text {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .statement-card {
    padding: 40px 28px;
    border-radius: 20px;
  }
}

.vision-goals {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .vision-goals {
    padding: 60px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.goal-card {
  position: relative;
  padding: 48px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-card .goal-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}
.goal-card .goal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.goal-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.goal-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.goal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .goal-card {
    padding: 36px 28px;
    border-radius: 20px;
  }
}

.vision-values {
  padding: 80px 0;
  background: rgba(5, 5, 10, 0.3);
}
@media (max-width: 768px) {
  .vision-values {
    padding: 60px 0;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.value-item .value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.value-item h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.value-item:hover {
  transform: translateY(-6px);
  background: rgba(10, 10, 15, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.vision-roadmap {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .vision-roadmap {
    padding: 60px 0;
  }
}

.roadmap-timeline {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
}
@media (max-width: 768px) {
  .roadmap-timeline::before {
    left: 30px;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item .timeline-year {
  text-align: right;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.timeline-item .timeline-year::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  border: 4px solid #050505;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
@media (max-width: 768px) {
  .timeline-item .timeline-year {
    font-size: 2rem;
  }
  .timeline-item .timeline-year::after {
    right: -10px;
    width: 16px;
    height: 16px;
  }
}
.timeline-item .timeline-content {
  padding: 32px;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.timeline-item .timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.timeline-item .timeline-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.timeline-item .timeline-content:hover {
  background: rgba(10, 10, 15, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .timeline-item .timeline-content {
    padding: 24px;
  }
  .timeline-item .timeline-content h4 {
    font-size: 1.2rem;
  }
  .timeline-item .timeline-content p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.vision-cta {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .vision-cta {
    padding: 60px 0;
  }
}

.cta-card {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .cta-card h2 {
    font-size: 2rem;
  }
}
.cta-card p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cta-card p {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .cta-card {
    padding: 40px 28px;
    border-radius: 20px;
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cta-buttons {
    gap: 16px;
  }
}

.vision-cta .cta-buttons .btn-primary,
.vision-cta .cta-buttons .btn-secondary {
  width: auto;
  flex: 0 0 auto;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 333px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #3b92f6, #9af65c);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
}
.btn-primary svg {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(10, 10, 15, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.vision-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #3b82f6, transparent 70%);
  top: -180px;
  left: -100px;
}

.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: -80px;
  right: -80px;
}

.hero-glow--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  bottom: -100px;
  left: 40%;
  opacity: 0.1;
}

.vision-hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.vision-tag {
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.vision-tag-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
}

.vision-noise {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .vision-noise {
    padding: 60px 0;
  }
}

.noise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .noise-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .noise-text {
    text-align: center;
  }
}
.noise-text .noise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  margin-bottom: 20px;
}

.noise-h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.noise-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.noise-quote {
  border-left: 3px solid #3b82f6;
  padding-left: 20px;
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.noise-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noise-stat {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.noise-stat:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(6px);
}
.noise-stat.noise-stat--accent {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.06);
}
.noise-stat.noise-stat--accent .noise-stat-num {
  color: #a78bfa;
}
.noise-stat.noise-stat--green {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.06);
}
.noise-stat.noise-stat--green .noise-stat-num {
  color: #34d399;
}

.noise-stat-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.noise-stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #3b82f6;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.noise-stat-num.noise-stat-num--zero {
  font-size: 3rem;
  color: #34d399;
}

.noise-stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: #3b82f6;
}

.noise-stat-label {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.vision-pillars {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .vision-pillars {
    padding: 60px 0;
  }
}

.pillars-header {
  text-align: center;
  margin-bottom: 48px;
}
.pillars-header .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
}
.pillars-header .pill-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec4899;
  animation: pulse-dot 2s ease-in-out infinite;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  height: 320px;
  perspective: 1200px;
  cursor: pointer;
}
.pillar-card:hover .pillar-inner, .pillar-card.flipped .pillar-inner {
  transform: rotateY(180deg);
}
@media (max-width: 768px) {
  .pillar-card {
    height: 280px;
  }
}

.pillar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.pillar-front,
.pillar-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pillar-front {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}
.pillar-front.pillar-front--1 {
  border-color: rgba(59, 130, 246, 0.2);
}
.pillar-front.pillar-front--2 {
  border-color: rgba(139, 92, 246, 0.2);
}
.pillar-front.pillar-front--3 {
  border-color: rgba(236, 72, 153, 0.2);
}

.pillar-front-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.pillar-front-label {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.pillar-front-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
}

.pillar-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.pillar-back {
  transform: rotateY(180deg);
}
.pillar-back h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.pillar-back p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.pillar-back.pillar-back--1 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.pillar-back.pillar-back--2 {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.pillar-back.pillar-back--3 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(236, 72, 153, 0.06));
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.vision-human {
  padding: 80px 0;
  background: rgba(5, 5, 10, 0.3);
}
@media (max-width: 768px) {
  .vision-human {
    padding: 60px 0;
  }
}

.human-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .human-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.human-quote-wrap {
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .human-quote-wrap {
    position: static;
    align-self: auto;
  }
}
@media (max-width: 760px) {
  .human-quote-wrap {
    text-align: center;
  }
}

.human-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(92, 136, 246, 0.055);
  color: #acfa8b;
  border: 1px solid rgba(143, 246, 92, 0.151);
  margin-bottom: 20px;
}

.human-h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (max-width: 760px) {
  .human-h2 {
    text-align: center;
  }
}

.human-manifesto {
  border-left: 3px solid #5cc3f6;
  padding-left: 20px;
  margin: 0 0 28px;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.human-50m {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(169, 246, 92, 0.036);
  border: 1px solid rgba(151, 246, 92, 0.2);
  border-radius: 16px;
}

.human-50m-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #8bcffa;
  line-height: 1;
}

.human-50m-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  max-width: 180px;
}

.human-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.human-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.human-item:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateX(6px);
}

.human-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 14px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.human-item-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.human-item-body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.how-it-works-section {
  margin-top: 80px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.how-it-works-section .hiw-header {
  text-align: center;
  margin-bottom: 50px;
}
.how-it-works-section .hiw-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #84f163, #5590f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works-section .hiw-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.how-it-works-section .hiw-subtitle-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(132, 241, 99, 0.86);
  letter-spacing: 0.02em;
}
.how-it-works-section .hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.how-it-works-section .hiw-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.how-it-works-section .hiw-tab i {
  font-size: 1.2rem;
}
.how-it-works-section .hiw-tab:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.how-it-works-section .hiw-tab.active {
  background: linear-gradient(135deg, rgba(54, 54, 54, 0.2), rgba(168, 85, 247, 0.2));
  border-color: #95f163;
  color: #fff;
}
.how-it-works-section .hiw-flow {
  display: none;
}
.how-it-works-section .hiw-flow.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.how-it-works-section .hiw-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.how-it-works-section .hiw-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  appearance: none;
  width: 100%;
  cursor: pointer;
}
.how-it-works-section .hiw-step:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}
.how-it-works-section .hiw-step.active {
  transform: translateY(-10px);
  border-color: rgba(132, 241, 99, 0.7);
  box-shadow: 0 24px 70px rgba(99, 102, 241, 0.24);
}
.how-it-works-section .hiw-step:focus-visible {
  outline: 2px solid rgba(132, 241, 99, 0.85);
  outline-offset: 4px;
}
.how-it-works-section .step-number {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #84f163, #5590f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  z-index: 2;
}
.how-it-works-section .step-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.4);
  animation: pulse 2s ease-in-out infinite;
}
.how-it-works-section .step-icon {
  position: absolute;
  left: 30px;
  top: 20px;
  opacity: 0.03;
  transform: rotate(-15deg);
  transition: all 0.5s ease;
  pointer-events: none;
}
.how-it-works-section .step-icon i {
  font-size: 2rem;
}
.how-it-works-section .step-icon.provider-icon {
  background: rgba(61, 61, 61, 0.08);
  border-color: rgba(67, 67, 67, 0.052);
  color: #55b4f7;
}
.how-it-works-section .step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 30px 0 10px 0;
}
.how-it-works-section .step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}
.how-it-works-section .step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.6;
}
.how-it-works-section .hiw-guide-shell {
  margin: 10px auto 0;
  max-width: 1200px;
  width: 100%;
  animation: fadeIn 0.35s ease;
}
.how-it-works-section .hiw-guide-shell[hidden],
.how-it-works-section .hiw-guide-panel[hidden],
.how-it-works-section .hiw-guide-video[hidden] {
  display: none !important;
}
.how-it-works-section .hiw-guide-panel {
  padding: 30px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(132, 241, 99, 0.11), transparent 38%), radial-gradient(circle at top right, rgba(85, 144, 247, 0.12), transparent 35%), rgba(9, 12, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.28);
}
.how-it-works-section .hiw-guide-panel-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.how-it-works-section .hiw-guide-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(132, 241, 99, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.how-it-works-section .hiw-guide-summary h4 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}
.how-it-works-section .hiw-guide-summary p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.how-it-works-section .hiw-guide-step-meta {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(132, 241, 99, 0.84);
}
.how-it-works-section .hiw-guide-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.how-it-works-section .hiw-guide-methods,
.how-it-works-section .hiw-guide-stage {
  min-width: 0;
}
.how-it-works-section .hiw-guide-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-it-works-section .hiw-guide-side-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.how-it-works-section .hiw-guide-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}
.how-it-works-section .hiw-guide-method:hover, .how-it-works-section .hiw-guide-method.active {
  border-color: rgba(132, 241, 99, 0.4);
  background: linear-gradient(135deg, rgba(85, 144, 247, 0.16), rgba(132, 241, 99, 0.12));
  transform: translateX(4px);
}
.how-it-works-section .hiw-guide-method:focus-visible {
  outline: 2px solid rgba(132, 241, 99, 0.85);
  outline-offset: 2px;
}
.how-it-works-section .hiw-guide-method-order {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(132, 241, 99, 0.96);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.how-it-works-section .hiw-guide-method-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.how-it-works-section .hiw-guide-method-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.how-it-works-section .hiw-guide-method-copy {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.how-it-works-section .hiw-guide-stage {
  display: flex;
}
.how-it-works-section .hiw-guide-video {
  display: block;
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(19, 26, 36, 0.98), rgba(8, 10, 14, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: guideReveal 0.28s ease;
}
.how-it-works-section .hiw-guide-video-embed {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(85, 144, 247, 0.12), rgba(132, 241, 99, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.how-it-works-section .hiw-guide-video-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.how-it-works-section .hiw-guide-video-media.is-playing .hiw-guide-video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.how-it-works-section .hiw-guide-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #030507;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.how-it-works-section .hiw-guide-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border: 0;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(180deg, rgba(3, 5, 7, 0.18), rgba(3, 5, 7, 0.72)), radial-gradient(circle at center, rgba(132, 241, 99, 0.18), transparent 42%);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}
.how-it-works-section .hiw-guide-video-overlay:hover {
  transform: scale(1.01);
}
.how-it-works-section .hiw-guide-video-overlay:focus-visible {
  outline: 2px solid rgba(132, 241, 99, 0.85);
  outline-offset: -4px;
}
.how-it-works-section .hiw-guide-video-overlay-icon {
  position: relative;
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85, 144, 247, 0.95), rgba(132, 241, 99, 0.92));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}
.how-it-works-section .hiw-guide-video-overlay-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #081015;
}
.how-it-works-section .hiw-guide-video-overlay-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 18rem;
  color: #fff;
}
.how-it-works-section .hiw-guide-video-overlay-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}
.how-it-works-section .hiw-guide-video-overlay-text span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.how-it-works-section .hiw-guide-video-chrome {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}
.how-it-works-section .hiw-guide-video-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.how-it-works-section .hiw-guide-video-chrome span:nth-child(1) {
  background: rgba(255, 107, 107, 0.88);
}
.how-it-works-section .hiw-guide-video-chrome span:nth-child(2) {
  background: rgba(255, 214, 102, 0.88);
}
.how-it-works-section .hiw-guide-video-chrome span:nth-child(3) {
  background: rgba(132, 241, 99, 0.88);
}
.how-it-works-section .hiw-guide-video-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.how-it-works-section .hiw-guide-video-body h5 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}
.how-it-works-section .hiw-guide-video-body p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}
.how-it-works-section .hiw-guide-video-placeholder {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(85, 144, 247, 0.12), rgba(132, 241, 99, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.how-it-works-section .hiw-guide-video-screen {
  min-height: 220px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.64), rgba(7, 11, 16, 0.92)), radial-gradient(circle at top, rgba(132, 241, 99, 0.18), transparent 55%);
  border: 1px dashed rgba(132, 241, 99, 0.35);
}
.how-it-works-section .hiw-guide-video-screen strong {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.4;
}
.how-it-works-section .hiw-guide-video-screen-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(132, 241, 99, 0.86);
  font-weight: 700;
}
.how-it-works-section .hiw-guide-video-screen-note {
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}
.how-it-works-section .hiw-guide-video-file-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85, 144, 247, 0.92);
}
.how-it-works-section .hiw-guide-video-file-path {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  word-break: break-all;
}
.how-it-works-section .hiw-guide-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.how-it-works-section .hiw-guide-video-label,
.how-it-works-section .hiw-guide-video-counter {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.how-it-works-section .hiw-guide-video-label {
  color: rgba(85, 144, 247, 0.9);
  font-weight: 700;
}
.how-it-works-section .hiw-guide-video-counter {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.how-it-works-section .hiw-guide-sequence {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.how-it-works-section .hiw-guide-sequence-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(132, 241, 99, 0.82);
}
.how-it-works-section .hiw-guide-sequence ol {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.how-it-works-section .hiw-guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.how-it-works-section .hiw-guide-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}
.how-it-works-section .hiw-cta {
  text-align: center;
  margin-top: 40px;
}
.how-it-works-section .hiw-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #637df1, #8af65c);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}
.how-it-works-section .hiw-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}
.how-it-works-section .hiw-button {
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.how-it-works-section .hiw-button.provider-btn {
  background: linear-gradient(135deg, #427918, #1b4c8b);
  box-shadow: 0 10px 30px rgba(189, 252, 225, 0.3);
}
.how-it-works-section .hiw-button.seeker-btn {
  background: linear-gradient(135deg, #1b4c8b, #427918);
  box-shadow: 0 10px 30px rgba(189, 252, 225, 0.3);
}
.how-it-works-section .hiw-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.how-it-works-section .hiw-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}
.how-it-works-section .hiw-button:hover::before {
  width: 300px;
  height: 300px;
}
.how-it-works-section .hiw-button span,
.how-it-works-section .hiw-button i {
  position: relative;
  z-index: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes guideReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .how-it-works-section .step-arrow {
    display: none;
  }
  .how-it-works-section .hiw-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 32px;
  }
  .how-it-works-section .hiw-step {
    max-width: 100%;
  }
  .how-it-works-section .hiw-steps > .hiw-guide-shell {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 4px 0 0;
  }
  .how-it-works-section .hiw-guide-shell {
    max-width: none;
  }
  .how-it-works-section .hiw-guide-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 40px 20px;
    margin-top: 50px;
  }
  .how-it-works-section .hiw-title {
    font-size: 2rem;
  }
  .how-it-works-section .hiw-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .how-it-works-section .hiw-tab {
    width: 100%;
    justify-content: center;
  }
  .how-it-works-section .hiw-step {
    min-width: 100%;
  }
  .how-it-works-section .hiw-guide-panel {
    padding: 22px 18px;
  }
  .how-it-works-section .hiw-guide-video-body {
    padding: 20px 18px;
  }
  .how-it-works-section .hiw-guide-video-screen {
    min-height: 180px;
    padding: 20px 16px;
  }
  .how-it-works-section .hiw-guide-video-overlay {
    gap: 12px;
    padding: 18px;
  }
  .how-it-works-section .hiw-guide-video-overlay-icon {
    width: 60px;
    height: 60px;
  }
  .how-it-works-section .hiw-guide-video-overlay-icon::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }
  .how-it-works-section .hiw-guide-video-overlay-text {
    max-width: 12rem;
  }
  .how-it-works-section .hiw-guide-video-overlay-text strong {
    font-size: 0.95rem;
  }
  .how-it-works-section .hiw-guide-video-overlay-text span {
    font-size: 0.84rem;
  }
  .how-it-works-section .hiw-guide-video-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .how-it-works-section .hiw-guide-method {
    padding: 14px 16px;
  }
}

@keyframes fcb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fcb-slide {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fcb-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fcb-wrap {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, var(--safe-area-top)) max(16px, var(--safe-area-right)) max(16px, var(--safe-area-bottom)) max(16px, var(--safe-area-left));
}
.fcb-wrap[hidden] {
  display: none !important;
}

.fcb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fcb-fade 0.3s ease both;
}

.fcb-box {
  position: relative;
  background: linear-gradient(145deg, rgba(22, 22, 32, 0.98), rgba(18, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 36px 40px;
  width: 90%;
  max-width: 560px;
  max-height: calc(var(--viewport-height) - var(--safe-area-top) - var(--safe-area-bottom) - 32px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: fcb-slide 0.38s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.fcb-box::-webkit-scrollbar {
  width: 6px;
}
.fcb-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.fcb-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
}

.fcb-header {
  text-align: center;
  margin-bottom: 20px;
}

.fcb-icon {
  display: block;
  font-size: 2.6rem;
  animation: fcb-bounce 1.2s ease infinite;
  margin-bottom: 12px;
}

.fcb-title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fcb-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.fcb-desc a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.fcb-desc a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.fcb-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.fcb-actions--settings {
  margin-top: 22px;
}

.fcb-btn {
  flex: 1;
  padding: 13px 22px;
  border: none;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.fcb-btn--primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.38);
}
.fcb-btn--primary:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.48);
}
.fcb-btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.fcb-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.fcb-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcb-toggle-row {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
}

.fcb-toggle-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.fcb-toggle-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.fcb-toggle-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.fcb-badge {
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.fcb-badge--required {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
}
.fcb-badge--optional {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.fcb-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.fcb-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.fcb-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: 0.3s;
}
.fcb-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.fcb-switch input:checked + .fcb-slider {
  background: #3b82f6;
}
.fcb-switch input:checked + .fcb-slider::before {
  transform: translateX(18px);
}

@media (max-width: 540px) {
  .fcb-box {
    padding: 26px 22px;
  }
  .fcb-title {
    font-size: 1.35rem;
  }
  .fcb-actions {
    flex-direction: column;
  }
}
.settings-main-wrapper {
  flex: 1;
  padding: 30px;
  background: #000;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .settings-main-wrapper {
    padding: 15px !important;
    padding-bottom: 100px !important;
  }
}

.settings-shell {
  display: flex;
  min-height: var(--viewport-height-static);
}

.email-verify-banner--compact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #fbbf24;
}
.email-verify-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.45rem;
  flex-shrink: 0;
}
.email-verify-banner__copy {
  flex: 1;
  min-width: 220px;
}
.email-verify-banner__copy strong {
  display: block;
  color: #fff3bf;
  font-size: 1rem;
  margin-bottom: 4px;
}
.email-verify-banner__meta {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
}
.email-verify-banner__button,
.email-verify-banner .email-status-button {
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}
.email-verify-banner__button.is-loading,
.email-verify-banner .email-status-button.is-loading {
  opacity: 0.72;
}
.email-verify-banner__button.is-success,
.email-verify-banner .email-status-button.is-success {
  color: #052e16;
  background: linear-gradient(135deg, #86efac, #34d399);
  border-color: rgba(52, 211, 153, 0.45);
}
.email-verify-banner__button.is-error,
.email-verify-banner .email-status-button.is-error {
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: rgba(239, 68, 68, 0.45);
}

#resultsContainer {
  /* Kada skočimo na kontejner, ostavljamo prostor za dock koji je sticky */
  scroll-margin-top: 100px;
}

.settings-page .settings-header {
  margin-bottom: 40px;
}
.settings-page .settings-header h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .settings-page .settings-header h1 {
    font-size: 1.5rem;
  }
}
.settings-page .settings-header p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}
.settings-page .alert-box {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid currentColor;
  font-weight: 600;
  font-size: 0.9rem;
}
.settings-page .alert-box.success {
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}
.settings-page .alert-box.error {
  background: rgba(255, 85, 85, 0.1);
  color: #ff5555;
}
.settings-page .email-verify-banner {
  margin-bottom: 30px;
}
.settings-page .email-verify-banner--settings {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, 0.24);
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 32%), linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(30, 41, 59, 0.96));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}
.settings-page .email-verify-banner--settings::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 68%);
  pointer-events: none;
}
.settings-page .email-verify-banner--settings .email-status-copy,
.settings-page .email-verify-banner--settings .email-status-actions {
  position: relative;
  z-index: 1;
}
.settings-page .email-verify-banner--settings .email-status-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: rgba(15, 23, 42, 0.45);
  color: #fcd34d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.settings-page .email-verify-banner--settings h3 {
  margin: 0 0 0.55rem;
  color: #f8fafc;
  font-size: 1.25rem;
  border-bottom: 0;
  padding-bottom: 0;
}
.settings-page .email-verify-banner--settings p {
  margin: 0;
  max-width: 60ch;
  color: #cbd5e1;
  line-height: 1.65;
}
.settings-page .email-verify-banner--settings .email-status-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  min-width: 220px;
}
.settings-page .email-verify-banner--settings .email-status-button {
  border: 0;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111827;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.24);
}
.settings-page .email-verify-banner--settings .email-status-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(245, 158, 11, 0.28);
}
.settings-page .email-verify-banner--settings .email-status-note {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}
@media (max-width: 900px) {
  .settings-page .email-verify-banner--settings {
    grid-template-columns: 1fr;
  }
  .settings-page .email-verify-banner--settings .email-status-actions {
    min-width: 0;
  }
}
.settings-page .settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
@media (max-width: 900px) {
  .settings-page .settings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.settings-page .settings-panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 480px) {
  .settings-page .settings-panel {
    padding: 20px;
  }
}
.settings-page .settings-panel h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}
.settings-page .settings-panel .form-group {
  margin-bottom: 20px;
}
.settings-page .settings-panel .form-group label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.settings-page .settings-panel .form-group input[type=text],
.settings-page .settings-panel .form-group input[type=password],
.settings-page .settings-panel .form-group input[type=email] {
  width: 100%;
  padding: 12px 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 1rem;
}
.settings-page .settings-panel .form-group input[type=text]:focus,
.settings-page .settings-panel .form-group input[type=password]:focus,
.settings-page .settings-panel .form-group input[type=email]:focus {
  border-color: #34d399;
  outline: none;
}
.settings-page .settings-panel .form-group input[type=text][readonly],
.settings-page .settings-panel .form-group input[type=password][readonly],
.settings-page .settings-panel .form-group input[type=email][readonly] {
  background: #1a1a1a;
  color: #555;
  cursor: not-allowed;
  border-color: #222;
}
.settings-page .settings-panel .avatar-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .settings-page .settings-panel .avatar-group {
    flex-direction: column;
    text-align: center;
  }
}
.settings-page .settings-panel .avatar-group img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
  flex-shrink: 0;
}
.settings-page .settings-panel .avatar-group input[type=file] {
  color: #666;
  font-size: 0.85rem;
  width: 100%;
}
.settings-page .settings-panel .avatar-group input[type=file]::file-selector-button {
  background: #222;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.2s;
}
.settings-page .settings-panel .avatar-group input[type=file]::file-selector-button:hover {
  background: #333;
}
.settings-page .settings-panel .avatar-group .file-input-wrapper {
  width: 100%;
}
.settings-page .settings-panel .avatar-group .file-input-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}
.settings-page .settings-panel .avatar-group .file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.88), rgba(17, 24, 39, 0.92));
  color: #e5e7eb;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.settings-page .settings-panel .avatar-group .file-button.has-selection {
  border-color: rgba(52, 211, 153, 0.45);
  background: linear-gradient(145deg, rgba(6, 78, 59, 0.86), rgba(5, 46, 22, 0.9));
  color: #d1fae5;
}
.settings-page .settings-panel button {
  width: 100%;
}
@media (min-width: 768px) {
  .settings-page .settings-panel button {
    width: auto;
  }
}
.settings-page .settings-panel.language-settings .section-description {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.settings-page .settings-panel.language-settings .language-switcher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 600px) {
  .settings-page .settings-panel.language-settings .language-switcher-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.settings-page .settings-panel.language-settings .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #111;
  border: 2px solid #333;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.settings-page .settings-panel.language-settings .language-option:hover {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}
.settings-page .settings-panel.language-settings .language-option:hover .language-flag {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.08);
}
.settings-page .settings-panel.language-settings .language-option.active {
  border-color: rgba(255, 215, 0, 0.7);
  background: rgba(255, 215, 0, 0.1);
}
.settings-page .settings-panel.language-settings .language-option.active .language-flag {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.settings-page .settings-panel.language-settings .language-option .language-flag {
  font-size: 1.8rem;
  line-height: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.settings-page .settings-panel.language-settings .language-option .language-flag.flag-serbia i {
  color: #C6363C;
  filter: drop-shadow(0 0 4px rgba(198, 54, 60, 0.6));
}
.settings-page .settings-panel.language-settings .language-option .language-flag.flag-uk i {
  color: #012169;
  filter: drop-shadow(0 0 4px rgba(1, 33, 105, 0.6));
}
.settings-page .settings-panel.language-settings .language-option .language-info {
  flex: 1;
}
.settings-page .settings-panel.language-settings .language-option .language-info h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 3px 0;
  font-weight: 600;
}
.settings-page .settings-panel.language-settings .language-option .language-info p {
  color: #888;
  font-size: 0.8rem;
  margin: 0;
}
.settings-page .settings-panel.language-settings .language-option .active-indicator {
  color: #ffd700;
  font-size: 1.3rem;
}
.settings-page .settings-panel.language-settings .language-option .active-indicator i {
  animation: checkPulse 1s ease infinite;
}

@keyframes checkPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@media (max-width: 900px) {
  .settings-header {
    padding-top: 4rem;
  }
}
/* Globalni Loader Stil */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px); /* Uklapa se u tvoj glassmorphism stil */
  display: none; /* Inicijalno sakriven */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  flex-direction: column;
  color: #fff;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--accent, #ffd700); /* Koristi tvoju zlatnu boju */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-text {
  font-family: sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.compact-card.skeleton-active {
  pointer-events: none;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(28, 28, 35, 0.95), rgb(20, 20, 25));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.compact-card.skeleton-active .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.compact-card.skeleton-active .initial-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.compact-card.skeleton-active .premium-badge {
  width: 85px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.compact-card.skeleton-active .skeleton-title {
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
  border-radius: 6px;
  width: 85%;
}
.compact-card.skeleton-active .skeleton-text {
  height: 16px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
}
.compact-card.skeleton-active .card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.compact-card.skeleton-active .skeleton-footer-item {
  height: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

/* Shimmer animacija za premium cyber izgled */
.pulse {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.pulse::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
body.light-mode .geo-pricing-bar {
  background: linear-gradient(135deg, #eef1fb 0%, #e8ecf8 100%);
  border: 1px solid #d0d8ef;
  box-shadow: 0 2px 12px rgba(99, 122, 210, 0.08);
}
body.light-mode .geo-pricing-bar__title {
  color: #2a5934;
}
body.light-mode .geo-pricing-bar__text {
  color: #5a6480;
}
body.light-mode .geo-pricing-bar__control {
  color: #4a5368;
}
body.light-mode .geo-pricing-bar__control select {
  background: #fff;
  color: #1e2440;
  border: 1px solid #c0cadf;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
body.light-mode .geo-price-note {
  color: #6b7694;
}

/* LIGHT MODE (Premium Sky + Gold + Violet) */
body.light-mode {
  /* LIGHT MODE (Upgraded) */
  --bg: #f7f8fc;
  --card: #ffffff;
  --section: #eef2ff;
  --footer: #ffffff;
  --panel: #ffffff;
  /* Brand palette (Light) */
  --accent: #2563eb; /* royal blue */
  --accent-alt: #c9a227; /* polished gold */
  --utility: #16a34a;
  --text: #0b1220;
  --muted: #425268;
  --border: rgba(11, 18, 32, 0.12);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-text: #0b1220;
  --blur: blur(14px);
  --hover-overlay: linear-gradient(
    145deg,
    rgba(37, 99, 235, 0.10),
    rgba(201, 162, 39, 0.12)
  );
  --soft-hover: rgba(11, 18, 32, 0.04);
  --input-bg: #ffffff;
  --input-border: rgba(11, 18, 32, 0.20);
  --focus-ring: rgba(37, 99, 235, 0.20);
  /* ── F44: Semantic Color Tokens (Light Mode) ───────────────── */
  --error: #dc2626;
  --error-bg: rgba(220, 38, 38, 0.08);
  --success: #16a34a;
  --success-bg: rgba(22, 163, 74, 0.08);
  --warning: #d97706;
  --warning-bg: rgba(217, 119, 6, 0.08);
  --info: #2563eb;
  --info-bg: rgba(37, 99, 235, 0.08);
}

/* --- LIGHT MODE OVERRIDES --- */
body.light-mode .sys-menu {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dugme za otvaranje menija (SYSTEM) u light modu */
body.light-mode .btn-cta {
  background: #f3f4f6 !important;
  border-color: #d1d5db !important;
  color: #111827 !important;
}

/* Tekstovi u meniju */
body.light-mode .sys-menu span,
body.light-mode .sys-menu a {
  color: #374151 !important; /* Tamno siva za tekst */
}

body.light-mode .sys-menu a:hover {
  background: #f3f4f6; /* Hover efekt na linkovima */
}

/* Pločice u Light Modu - moraju biti tamnije ili imati jači kontrast */
/* 1. Dashboard (Plava - jača pozadina) */
body.light-mode .tile-dash {
  background: rgba(59, 130, 246, 0.15); /* Malo tamnija pozadina */
  color: #2563eb; /* Tamnija plava za tekst */
  border-color: rgba(59, 130, 246, 0.4);
}

/* 2. Logout (Crvena) */
body.light-mode .tile-logout {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626; /* Tamnija crvena */
  border-color: rgba(239, 68, 68, 0.3);
}

/* 3. Login (Siva/Bela - mora se razlikovati od bele pozadine menija) */
body.light-mode .tile-login {
  background: #f3f4f6; /* Svetlo siva */
  color: #111827; /* Skoro crna */
  border-color: #d1d5db;
}

body.light-mode .tile-login:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

/* 4. Register (Zelena) */
body.light-mode .tile-register {
  background: rgba(16, 185, 129, 0.15);
  color: #059669; /* Tamnija zelena */
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
}

/* 5. Engine (Teal/Blue) */
body.light-mode .tile-engine {
  background: rgba(14, 165, 233, 0.18);
  color: #0284c7;
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.12);
}

/* 6. Listing (Violet/Indigo) */
body.light-mode .tile-listing {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.1);
}

/* 7. Login (Amber/Gold) */
body.light-mode .tile-login {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.12);
}

body.light-mode .tile-login:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.55);
}

/* 8. Compare (Rose/Pink) */
body.light-mode .tile-compare {
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.1);
}

body.light-mode .tile-compare:hover {
  background: rgba(244, 63, 94, 0.18);
  border-color: rgba(244, 63, 94, 0.5);
}

/* 9. Blog (Teal/Cyan) */
body.light-mode .tile-blog {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.38);
  box-shadow: 0 4px 10px rgba(20, 184, 166, 0.1);
}

body.light-mode .tile-blog:hover {
  background: rgba(20, 184, 166, 0.22);
  border-color: rgba(20, 184, 166, 0.52);
}

body.light-mode::before {
  background: radial-gradient(900px 520px at 50% 8%, rgba(124, 92, 255, 0.1), transparent 60%), radial-gradient(760px 440px at 18% 26%, rgba(201, 162, 39, 0.08), transparent 60%), radial-gradient(1300px 900px at 50% 90%, rgba(246, 251, 255, 0), rgb(246, 251, 255));
}

body.light-mode .btn-cta {
  color: #1a1405 !important;
}

body.light-mode .btn-cta:hover {
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.18);
}

body.light-mode .sys-menu {
  box-shadow: 0 18px 55px rgba(11, 18, 32, 0.12);
}

body.light-mode .pill-label {
  background: rgba(201, 162, 39, 0.12);
}

/* important: in light mode white button disappears, so make it branded */
body.light-mode .btn-glow {
  background: var(--accent);
  color: #1a1405;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.18);
}

body.light-mode .btn-glow:hover {
  color: #0b1220;
}

body.light-mode .btn-outline:hover {
  border-color: rgba(201, 162, 39, 0.55);
}

body.light-mode .path-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.12);
}

body.light-mode .roadmap-visual:hover {
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.1);
}

body.light-mode .benefit-card:hover {
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.1);
}

body.light-mode .bento-item:hover {
  box-shadow: 0 18px 55px rgba(11, 18, 32, 0.1);
}

body.light-mode .auth-box {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(11, 18, 32, 0.1);
}

body.light-mode .bento-item .icon {
  background: rgba(11, 18, 32, 0.03);
}

body.light-mode.page-404 {
  --bg-0: #f0f4ff;
  --bg-1: #e8eeff;
  --bg-2: #f5f0ff;
  --ink-0: #0b1220;
  --ink-1: rgba(11, 18, 32, 0.65);
  --panel: rgba(255, 255, 255, 0.92);
  --panel-border: rgba(11, 18, 32, 0.1);
  background: radial-gradient(900px 420px at 15% -10%, rgba(79, 124, 255, 0.12), transparent 70%), radial-gradient(650px 500px at 85% 0%, rgba(255, 77, 166, 0.12), transparent 68%), linear-gradient(160deg, var(--bg-0), var(--bg-1) 55%, var(--bg-2));
}

body.light-mode.page-404 .error-card {
  background: var(--panel);
  border-color: var(--panel-border);
  box-shadow: 0 20px 50px rgba(11, 18, 32, 0.1);
}

body.light-mode.page-404 .error-code {
  color: #1e3a8a;
}

body.light-mode.page-404 .error-code::before,
body.light-mode.page-404 .error-code::after {
  background: var(--panel);
}

body.light-mode.page-404 .error-title {
  color: #0b1220;
}

body.light-mode.page-404 .error-body {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode.page-404 .empty-visual::after {
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode.page-404 .empty-visual .planet {
  background: linear-gradient(140deg, #dbeafe 0%, #e0e7ff 45%, #ede9fe 100%);
  border-color: rgba(11, 18, 32, 0.1);
  box-shadow: 0 0 45px rgba(79, 124, 255, 0.2), inset 0 0 35px rgba(255, 255, 255, 0.5);
}

body.light-mode.page-404 .lost-astronaut {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode.page-404 .empty-visual .lost-astronaut {
  color: rgba(11, 18, 32, 0.5);
}

body:not(.light-mode) input:checked + .slider {
  background-color: rgba(59, 130, 246, 0.35);
}

body.light-mode .logo-glow .logo-gradient {
  background: linear-gradient(135deg, #0d7585 0%, #609113 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (min-width: 769px) {
  body.light-mode .sys-dropdown-button {
    background: rgba(37, 99, 235, 0.1);
    color: #1e3a5f;
    border: 1.5px solid rgba(37, 99, 235, 0.35);
  }
  body.light-mode .sys-dropdown-button:hover {
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.6);
  }
}
@media (max-width: 768px) {
  body.light-mode .nav-links {
    background: linear-gradient(135deg, rgba(247, 248, 252, 0.98), rgba(239, 242, 255, 0.98));
    backdrop-filter: blur(var(--overlay-blur-strong)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--overlay-blur-strong)) saturate(140%);
  }
  body.light-mode .nav-links::-webkit-scrollbar-track {
    background: rgba(11, 18, 32, 0.06);
  }
  body.light-mode .nav-links::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.35);
  }
  body.light-mode .nav-links > a {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(11, 18, 32, 0.08);
    color: #0b1220;
  }
  body.light-mode .nav-links > a::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  }
  body.light-mode .nav-links > a:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.18);
  }
}
body.light-mode #engineInput {
  background: transparent;
  color: #0b1220;
}

body.light-mode .sticky-search-dock,
body.light-mode .category-sticky-search-dock {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.12);
}

body.light-mode.search-active .sticky-search-dock,
body.light-mode.search-active .category-sticky-search-dock {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.12);
}

body.light-mode .search-input-wrapper input,
body.light-mode .search-input-wrapper #engineInput {
  background: #ffffff;
  color: #0b1220;
}

body.light-mode .search-input-wrapper input:focus,
body.light-mode .search-input-wrapper #engineInput:focus {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

body.light-mode .search-input-wrapper input::placeholder,
body.light-mode .search-input-wrapper #engineInput::placeholder {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .search-input-wrapper .search-icon,
body.light-mode .search-input-wrapper .search-icon svg {
  color: rgba(11, 18, 32, 0.55);
}

body.light-mode .sector-label {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .sector-pill {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.18);
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.08);
}

body.light-mode .custom-select-trigger {
  background: rgba(11, 18, 32, 0.04);
  border: 1px solid rgba(11, 18, 32, 0.16);
}

body.light-mode .custom-select-trigger:hover,
body.light-mode .custom-select-trigger.open {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.08);
}

body.light-mode .current-cat {
  color: #0b1220;
}

body.light-mode .chevron {
  color: rgba(11, 18, 32, 0.55);
}

body.light-mode .clear-btn {
  background: rgba(11, 18, 32, 0.06);
  color: rgba(11, 18, 32, 0.8);
}

body.light-mode .clear-btn:hover {
  background: rgba(11, 18, 32, 0.12);
}

body.light-mode .nav-back-btn,
body.light-mode .engine-back-link {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .nav-back-btn:hover {
  color: #0b1220;
  background: rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode #searchStatus {
  color: rgba(11, 18, 32, 0.5);
}
body.light-mode #searchStatus em {
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode #searchStatus strong {
  color: #0b1220;
}

body.light-mode .search-engine-page .sticky-search-dock {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 252, 0.98) 100%);
  border-bottom-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.12);
}
body.light-mode .search-engine-page .sticky-search-dock #engineInput {
  background: rgba(11, 18, 32, 0.04);
  border: 1px solid rgba(11, 18, 32, 0.16);
  color: #0b1220;
}
body.light-mode .search-engine-page .sticky-search-dock #engineInput::placeholder {
  color: rgba(11, 18, 32, 0.45);
}
body.light-mode .search-engine-page .sticky-search-dock #engineInput:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
body.light-mode .search-engine-page .sticky-search-dock .search-icon svg {
  color: rgba(11, 18, 32, 0.42);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.12);
  color: rgba(11, 18, 32, 0.55);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn:hover {
  background: rgba(11, 18, 32, 0.09);
  border-color: rgba(11, 18, 32, 0.2);
  color: #0b1220;
}
body.light-mode .search-engine-page .sticky-search-dock .dock-icon-btn.dock-filter-btn.active {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.35);
  color: #2563eb;
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-pill.dock-icon-btn.open {
  background: rgba(11, 18, 32, 0.09);
  border-color: rgba(11, 18, 32, 0.22);
  color: #0b1220;
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-dropdown {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.14), 0 0 0 1px rgba(11, 18, 32, 0.05);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-header {
  color: rgba(11, 18, 32, 0.35);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-grid::-webkit-scrollbar-thumb {
  background: rgba(11, 18, 32, 0.12);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-item {
  color: rgba(11, 18, 32, 0.7);
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-item:hover {
  background: rgba(11, 18, 32, 0.05);
  color: #0b1220;
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-item.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
}
body.light-mode .search-engine-page .sticky-search-dock .dock-mini-item.active .dock-mini-item-icon {
  opacity: 1;
}
body.light-mode .search-engine-page .sticky-search-dock .input-actions {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 250, 0.98) 100%);
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.12);
}
body.light-mode .search-engine-page .sticky-search-dock .search-status-bar,
body.light-mode .search-engine-page .sticky-search-dock .search-status-action {
  color: rgba(11, 18, 32, 0.54);
  -webkit-text-stroke-width: 0.35px;
  -webkit-text-stroke-color: rgba(11, 18, 32, 0.3);
  text-shadow: 0 1px 0 rgba(11, 18, 32, 0.12), 0 0 8px rgba(11, 18, 32, 0.1);
}
@media (max-width: 630px) {
  body.light-mode .search-engine-page .sticky-search-dock {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.98) 100%);
    border-bottom-color: rgba(11, 18, 32, 0.08);
    box-shadow: 0 16px 30px rgba(11, 18, 32, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.light-mode .search-engine-page .sticky-search-dock .input-actions {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 245, 250, 0.98) 100%);
    border-color: rgba(11, 18, 32, 0.08);
    box-shadow: 0 14px 32px rgba(11, 18, 32, 0.14);
  }
  body.light-mode .search-engine-page .sticky-search-dock .search-status-action {
    color: rgba(11, 18, 32, 0.5);
  }
}

body.light-mode.search-active .search-engine-page .sticky-search-dock {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(244, 247, 251, 0.99) 100%);
  border-bottom-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 18px 38px rgba(11, 18, 32, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body.light-mode.search-active .search-engine-page .sticky-search-dock .input-actions {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(239, 244, 249, 0.99) 100%);
  border-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.14);
}
body.light-mode.search-active .search-engine-page .sticky-search-dock .search-status-bar,
body.light-mode.search-active .search-engine-page .sticky-search-dock .search-status-action {
  color: rgba(11, 18, 32, 0.58);
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: rgba(11, 18, 32, 0.32);
  text-shadow: 0 1px 0 rgba(11, 18, 32, 0.14), 0 0 8px rgba(11, 18, 32, 0.1);
}
@media (max-width: 630px) {
  body.light-mode.search-active .search-engine-page .sticky-search-dock {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 247, 251, 0.99) 100%);
    box-shadow: 0 18px 34px rgba(11, 18, 32, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.light-mode.search-active .search-engine-page .sticky-search-dock .input-actions {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(238, 243, 248, 0.99) 100%);
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.14);
  }
}

body.light-mode .about-page {
  background: #f7f8fc;
}

body.light-mode .about-hero {
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 60%, #ffffff 100%);
}

body.light-mode .about-hero-content .pill-badge {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .about-hero-content h1 {
  color: #0b1220;
}

body.light-mode .about-hero-content .lead {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .about-mission .mission-card,
body.light-mode .about-timeline .timeline-content,
body.light-mode .about-principles .principle-card,
body.light-mode .about-why .visual-card,
body.light-mode .about-cta .cta-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 16px 36px rgba(11, 18, 32, 0.12);
}

body.light-mode .about-mission .mission-card h2,
body.light-mode .about-timeline .section-header h2,
body.light-mode .about-principles .section-header h2,
body.light-mode .about-why .why-text h2,
body.light-mode .about-cta .cta-card h2,
body.light-mode .about-timeline .timeline-content h3,
body.light-mode .about-principles .principle-card h3 {
  color: #0b1220;
}

body.light-mode .about-mission .mission-statement,
body.light-mode .about-mission .mission-tagline,
body.light-mode .about-timeline .section-header p,
body.light-mode .about-timeline .timeline-content p,
body.light-mode .about-principles .section-header p,
body.light-mode .about-principles .principle-card p,
body.light-mode .about-why .why-lead,
body.light-mode .about-why .feature-item p,
body.light-mode .about-cta .cta-card p {
  color: rgba(11, 18, 32, 0.7);
}

.mission-card .mission-tagline strong, .feature-item strong {
  color: #4b8ba2;
}

body.light-mode .about-timeline {
  background: rgba(239, 242, 255, 0.6);
}

body.light-mode .about-principles {
  background: #f7f8fc;
}

body.light-mode .about-why {
  background: rgba(239, 242, 255, 0.6);
}

body.light-mode .about-timeline .timeline-badge {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

body.light-mode .about-principles .principle-card::before {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

body.light-mode .about-why .feature-check {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

body.light-mode .hero-stats .stat-number {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .hero-stats .stat-label {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .cta-buttons .btn-primary {
  border: none;
}
body.light-mode .cta-buttons .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  background-color: #fff;
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .cta-buttons .btn-secondary {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.25);
}
body.light-mode .cta-buttons .btn-secondary:hover {
  box-shadow: none;
  background-color: #fff;
}

body.light-mode .cta-card::before {
  background: linear-gradient(90deg, transparent 0%, rgba(238, 202, 255, 0.295) 50%, transparent 100%);
}

body.light-mode .about-trust {
  background: rgba(255, 251, 235, 0.6);
}

body.light-mode .trust-bg-mesh {
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
}

body.light-mode .about-trust-head h2 {
  color: #0b1220;
}

body.light-mode .about-trust-body {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .trust-pill {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #92400e;
}
body.light-mode .trust-pill:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.55);
}

body.light-mode .trust-quote-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
}
body.light-mode .trust-quote-card .trust-quote-icon {
  color: rgba(245, 158, 11, 0.5);
}
body.light-mode .trust-quote-card p {
  color: rgba(11, 18, 32, 0.8);
}

body.light-mode .pill-badge--amber {
  background: rgba(245, 158, 11, 0.1) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #92400e !important;
}

body.light-mode .about-golden-heart {
  background: rgba(255, 248, 230, 0.5);
}

body.light-mode .gh-glow {
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
}

body.light-mode .about-gh-inner h2 {
  color: #0b1220;
}

body.light-mode .about-gh-body {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .gh-pill {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #92400e;
}
body.light-mode .gh-pill:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.55);
}

body.light-mode .gh-quote-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .gh-quote-card .gh-quote-icon {
  color: rgba(245, 158, 11, 0.5);
}

body.light-mode .pill-badge--gold {
  background: rgba(245, 158, 11, 0.1) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #92400e !important;
}

body.light-mode .about-dna-inner .pill-badge {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  color: #92400e;
}
body.light-mode .about-dna-inner .pill-badge:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.55);
}
body.light-mode .about-dna-inner .about-dna-quote {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .about-dna-inner .about-dna-quote .about-dna-quote-icon {
  color: rgba(245, 158, 11, 0.5);
}
body.light-mode .about-dna-inner h2 {
  color: #0b1220;
}
body.light-mode .about-dna-inner .dna-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .about-dna-inner .dna-card h3 {
  color: #0b1220;
}

body.light-mode .about-cockpit-inner .pill-badge {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563eb;
}
body.light-mode .about-cockpit-inner .pill-badge:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.45);
}
body.light-mode .about-cockpit-inner .about-cockpit-quote {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .about-cockpit-inner .about-cockpit-quote .about-cockpit-quote-icon {
  color: rgba(37, 99, 235, 0.5);
}
body.light-mode .about-cockpit-inner h2 {
  color: #0b1220;
}
body.light-mode .about-cockpit-inner h4 {
  color: #0b1220;
}
body.light-mode .about-cockpit-inner .cockpit-features .cockpit-feat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .about-cockpit-inner .cockpit-mock {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

body.light-mode .trust-pill--gh {
  background: rgba(248, 113, 113, 0.08) !important;
  border-color: rgba(248, 113, 113, 0.25) !important;
  color: #b91c1c !important;
}
body.light-mode .trust-pill--gh i {
  color: #ef4444;
}
body.light-mode .trust-pill--gh:hover {
  background: rgba(248, 113, 113, 0.16) !important;
  border-color: rgba(248, 113, 113, 0.45) !important;
}

body.light-mode .timeline-phase-label {
  border-bottom-color: rgba(37, 99, 235, 0.15);
}
body.light-mode .timeline-phase-label .phase-name {
  color: #0b1220;
}
body.light-mode .timeline-phase-label .phase-period {
  color: rgba(37, 99, 235, 0.7);
}

body.light-mode .timeline-period-tag {
  color: rgba(37, 99, 235, 0.8);
}
body.light-mode .timeline-period-tag--gold {
  color: #d97706;
}

body.light-mode .timeline-item--milestone .timeline-content {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(217, 119, 6, 0.25);
}
body.light-mode .timeline-item--milestone .timeline-badge {
  border-color: rgba(217, 119, 6, 0.4) !important;
  background: rgba(251, 191, 36, 0.08) !important;
}

body.light-mode .timeline-ultimate-card {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.1), 0 20px 60px rgba(217, 119, 6, 0.1);
}
body.light-mode .timeline-ultimate-card::before {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}
body.light-mode .timeline-ultimate-card p {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .ultimate-date-slot {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(217, 119, 6, 0.35);
}
body.light-mode .ultimate-date-slot .ultimate-date-prefix {
  color: #d97706;
}
body.light-mode .ultimate-date-slot .ultimate-date-value {
  color: rgba(11, 18, 32, 0.3);
}

body.light-mode .timeline-ultimate-connector .ultimate-diamond {
  color: #d97706;
}
body.light-mode .timeline-ultimate-connector .ultimate-line {
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.5));
}
body.light-mode .timeline-ultimate-connector .ultimate-line:last-child {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.5), transparent);
}

body.light-mode .pill-badge--blue {
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  color: #1d4ed8 !important;
}

body.light-mode .contact-header h2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #1e3a8a;
}

body.light-mode .contact-header p {
  color: rgba(11, 18, 32, 0.74);
}

body.light-mode .contact-header .contact-header-secondary {
  color: rgba(11, 18, 32, 0.66);
  border-top-color: rgba(11, 18, 32, 0.14);
}

body.light-mode .contact-header .contact-header-secondary-title {
  color: rgba(11, 18, 32, 0.62);
}

body.light-mode .contact-header .contact-reason-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
}

body.light-mode .contact-header .contact-reason-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.2);
}

body.light-mode .contact-header .contact-reason-card .contact-reason-icon {
  color: #2563eb;
  opacity: 0.09;
}

body.light-mode .contact-header .contact-reason-card h3 {
  color: #0b1220;
}

body.light-mode .contact-header .contact-reason-card p {
  color: rgba(11, 18, 32, 0.68);
}

body.light-mode .contact-section {
  background: linear-gradient(180deg, rgba(239, 242, 255, 0.7), rgba(255, 255, 255, 0.95));
}

body.light-mode .contact-header {
  text-shadow: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 16px 38px rgba(11, 18, 32, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.light-mode .info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.08);
}

body.light-mode .info-card h4 {
  color: #0b1220;
}

body.light-mode .info-card p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

body.light-mode .form-label {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .form-input,
body.light-mode input[type=text],
body.light-mode input[type=email],
body.light-mode input[type=password],
body.light-mode textarea,
body.light-mode select {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.18);
  color: #0b1220;
}

body.light-mode .search-main-row input {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.light-mode .form-input::placeholder,
body.light-mode input[type=text]::placeholder,
body.light-mode input[type=email]::placeholder,
body.light-mode textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

body.light-mode .form-decoration {
  border-color: rgba(37, 99, 235, 0.2);
}

body.light-mode .featured-main {
  background: #f7f8fc;
}

body.light-mode .featured-hero {
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 60%, #ffffff 100%);
}
body.light-mode .featured-hero::before {
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.12), transparent 60%);
}

body.light-mode .featured-hero-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), rgba(37, 99, 235, 0.12) 40%, transparent 70%);
}

body.light-mode .featured-hero-content .pill-badge {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.4);
  color: #d97706;
}
body.light-mode .featured-hero-content .pill-badge .dot {
  background: #f59e0b;
}

body.light-mode .featured-hero-content h1 {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .featured-hero-desc {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .stat-box {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(251, 191, 36, 0.25);
}
body.light-mode .stat-box:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

body.light-mode .stat-value {
  color: #d97706;
}
body.light-mode .stat-value i {
  color: #059669;
}

body.light-mode .stat-label {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .featured-cards-grid .featured-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(11, 18, 32, 0.12);
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.08);
}
body.light-mode .featured-cards-grid .featured-card::before {
  background: linear-gradient(90deg, #d97706, #ea580c);
}
body.light-mode .featured-cards-grid .featured-card:hover {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.15), 0 0 30px rgba(251, 191, 36, 0.2);
}
body.light-mode .featured-cards-grid .featured-card[data-tier=premium] {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.04);
}
body.light-mode .featured-cards-grid .featured-card[data-tier=basic] {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.04);
}

body.light-mode .featured-badge {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.5);
  color: #d97706;
}

body.light-mode .tier-indicator.tier-premium {
  background: rgba(251, 191, 36, 0.25);
  border-color: rgba(251, 191, 36, 0.5);
  color: #d97706;
}
body.light-mode .tier-indicator.tier-basic {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.5);
  color: #2563eb;
}
body.light-mode .tier-indicator.tier-free {
  background: rgba(100, 116, 139, 0.25);
  border-color: rgba(100, 116, 139, 0.5);
  color: #64748b;
}

body.light-mode .featured-logo {
  background: rgba(11, 18, 32, 0.03);
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .featured-name a {
  color: #0b1220;
}
body.light-mode .featured-name a:hover {
  color: #d97706;
}

body.light-mode .featured-tagline {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .meta-item {
  color: rgba(11, 18, 32, 0.7);
}
body.light-mode .meta-item i {
  color: #d97706;
}

body.light-mode .featured-projects {
  border-top: 1px solid rgba(11, 18, 32, 0.1);
}

body.light-mode .projects-count {
  color: #059669;
}

body.light-mode .featured-cta {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.35);
  color: #d97706;
}
body.light-mode .featured-cta:hover {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

body.light-mode .empty-state i {
  color: #f59e0b;
}
body.light-mode .empty-state h3 {
  color: #0b1220;
}
body.light-mode .empty-state p {
  color: rgba(11, 18, 32, 0.7);
}
body.light-mode .empty-state .cta-btn {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
}
body.light-mode .empty-state .cta-btn:hover {
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
}

body.light-mode .featured-cta-section {
  background: #f7f8fc;
}

body.light-mode .featured-cta-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(37, 99, 235, 0.08));
  border-color: rgba(251, 191, 36, 0.25);
}
body.light-mode .featured-cta-box::before {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 50%);
}
body.light-mode .featured-cta-box h2 {
  background: linear-gradient(135deg, #d97706, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.light-mode .featured-cta-box p {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .cta-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
}
body.light-mode .cta-primary:hover {
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

body.light-mode .cta-secondary {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.35);
  color: #d97706;
}
body.light-mode .cta-secondary:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.5);
}

body.light-mode .b2b-page {
  background: #f7f8fc;
}

body.light-mode .b2b-page,
body.light-mode .b2b-ind-page {
  --b2b-primary-start: #3f7cb2;
  --b2b-primary-mid: #4f90b7;
  --b2b-primary-end: #67a66f;
  --b2b-primary-shadow: rgba(52, 117, 170, 0.24);
  --b2b-primary-border: rgba(59, 130, 246, 0.16);
  --b2b-secondary-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 255, 0.98) 100%);
  --b2b-secondary-border: rgba(59, 130, 246, 0.22);
  --b2b-secondary-text: #224f77;
  --b2b-secondary-shadow: rgba(37, 99, 235, 0.14);
}

body.light-mode .b2b-hero {
  background: linear-gradient(180deg, #f0f4ff 0%, #eef2ff 60%, #f7f8fc 100%);
}
body.light-mode .b2b-hero .hero-glow-bg {
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
}

body.light-mode .b2b-hero .pill-badge {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
}

body.light-mode .b2b-hero .hero-title {
  color: #0b1220;
}

body.light-mode .b2b-hero .hero-subtitle {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .b2bv-card {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 12px rgba(11, 18, 32, 0.06);
}
body.light-mode .b2bv-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
}

body.light-mode .b2bv-metric {
  color: #2563eb;
}

body.light-mode .b2bv-name {
  color: #0b1220;
}

body.light-mode .b2bv-desc {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .b2bv-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
}

body.light-mode .b2bv-eyebrow {
  color: #2563eb;
}

body.light-mode .b2bv-title,
body.light-mode .section-title {
  color: #0b1220;
}

body.light-mode .b2bv-subtitle,
body.light-mode .section-subtitle {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .b2b-categories {
  background: #eef2ff;
}

body.light-mode .category-tag-item {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  color: #0b1220;
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
}
body.light-mode .category-tag-item i {
  color: var(--oc, #2563eb);
}
body.light-mode .category-tag-item:hover {
  background: #f0f4ff;
  border-color: rgba(11, 18, 32, 0.18);
}

body.light-mode .category-tag-all {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
}
body.light-mode .category-tag-all i {
  color: #2563eb;
}
body.light-mode .category-tag-all:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

body.light-mode .how-step {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.05);
}
body.light-mode .how-step:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}
body.light-mode .how-step h3 {
  color: #0b1220;
}
body.light-mode .how-step p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .how-step .step-number {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.14);
}

body.light-mode .step-icon {
  color: #2563eb;
}

body.light-mode .how-step-icon {
  opacity: 0.08;
}
body.light-mode .how-step-icon i {
  color: #2563eb;
}

body.light-mode .b2b-page .hero-cta-group .btn-primary,
body.light-mode .b2b-page .cta-actions .btn-primary,
body.light-mode .b2b-ind-page .b2bind-cta-row .btn-primary {
  color: #ffffff;
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow: 0 18px 36px -24px rgba(59, 130, 246, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
body.light-mode .b2b-page .hero-cta-group .btn-primary:hover,
body.light-mode .b2b-page .cta-actions .btn-primary:hover,
body.light-mode .b2b-ind-page .b2bind-cta-row .btn-primary:hover {
  box-shadow: 0 20px 42px -24px rgba(59, 130, 246, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

body.light-mode .b2b-page .hero-cta-group .btn-outline,
body.light-mode .b2b-page .cta-actions .btn-ghost,
body.light-mode .b2b-ind-page .b2bind-cta-row .btn-ghost {
  color: #1f4f78;
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 14px 28px -24px rgba(59, 130, 246, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
body.light-mode .b2b-page .hero-cta-group .btn-outline:hover,
body.light-mode .b2b-page .cta-actions .btn-ghost:hover,
body.light-mode .b2b-ind-page .b2bind-cta-row .btn-ghost:hover {
  color: #163b5c;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98) 0%, rgb(238, 246, 255) 100%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 18px 30px -22px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.light-mode .cta-box {
  background: linear-gradient(160deg, #eff6ff 0%, #eef2ff 100%);
  border-color: rgba(37, 99, 235, 0.2);
}
body.light-mode .cta-box h2 {
  color: #0b1220;
}
body.light-mode .cta-box p {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .faq-item {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
}
body.light-mode .faq-item.open {
  border-color: rgba(37, 99, 235, 0.22);
  background: #fafbff;
}

body.light-mode .faq-question {
  color: #0b1220;
}

body.light-mode .faq-answer {
  color: rgba(11, 18, 32, 0.65);
  border-top-color: rgba(11, 18, 32, 0.08);
}

body.light-mode .b2b-ind-page {
  background: #f7f8fc;
}

body.light-mode .b2bind-hero {
  background: linear-gradient(180deg, #f0f4ff 0%, #eef2ff 60%, #f7f8fc 100%);
}
body.light-mode .b2bind-hero .b2bind-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--c1-rgb, 6, 182, 212), 0.12) 0%, transparent 65%);
}

body.light-mode .b2bind-breadcrumb a {
  color: rgba(11, 18, 32, 0.753);
}
body.light-mode .b2bind-breadcrumb span {
  color: rgba(11, 18, 32, 0.733);
}

body.light-mode .b2bind-title {
  color: #0b1220;
}

body.light-mode .b2bind-subtitle {
  color: rgba(11, 18, 32, 0.62);
}

body.light-mode .b2bind-stat-num {
  color: var(--c1);
}

body.light-mode .b2bind-stat-lbl {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .b2bind-stat-sep {
  background: rgba(11, 18, 32, 0.12);
}

body.light-mode .b2bind-desc {
  background: #f7f8fc;
}

body.light-mode .b2bind-desc-text h2 {
  color: #0b1220;
}
body.light-mode .b2bind-desc-text p {
  color: rgba(11, 18, 32, 0.62);
}

body.light-mode .b2bind-cities h3 {
  color: rgba(11, 18, 32, 0.8);
}

body.light-mode .b2bind-city-btn {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
  color: #0b1220;
  box-shadow: 0 1px 6px rgba(11, 18, 32, 0.05);
}
body.light-mode .b2bind-city-btn i {
  opacity: 0.45;
}
body.light-mode .b2bind-city-btn:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .b2bind-city-remote {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.25);
  color: #059669;
  box-shadow: 0 1px 6px rgba(5, 150, 105, 0.08);
}
body.light-mode .b2bind-city-remote:hover {
  background: rgba(5, 150, 105, 0.1);
  border-color: rgba(5, 150, 105, 0.4);
}

body.light-mode .b2bind-section-title {
  color: #0b1220;
}

body.light-mode .b2bind-providers {
  background: #eef2ff;
}

body.light-mode .b2bind-prov-card {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 12px rgba(11, 18, 32, 0.05);
}
body.light-mode .b2bind-prov-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.09);
}

body.light-mode .b2bind-prov-plan.basic {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  border-color: rgba(99, 102, 241, 0.2);
}
body.light-mode .b2bind-prov-plan.free {
  background: rgba(11, 18, 32, 0.05);
  color: rgba(11, 18, 32, 0.4);
}

body.light-mode .b2bind-prov-body h3 {
  color: #0b1220;
}

body.light-mode .b2bind-prov-svc {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .b2bind-prov-city {
  color: rgba(11, 18, 32, 0.45);
}

body.light-mode .b2bind-prov-tag {
  color: rgba(11, 18, 32, 0.55);
}

body.light-mode .b2bind-prov-cta {
  color: #2563eb;
}
body.light-mode .b2bind-prov-cta:hover {
  color: #1d4ed8;
}

body.light-mode .star-off {
  color: rgba(11, 18, 32, 0.18);
}

body.light-mode .b2bind-other {
  background: #f7f8fc;
}

body.light-mode .b2bind-other-card {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  color: #0b1220;
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
}
body.light-mode .b2bind-other-card:hover {
  background: #f0f4ff;
  border-color: rgba(11, 18, 32, 0.18);
}

body.light-mode .gh-page {
  background: #f7f8fc;
}

body.light-mode .gh-hero {
  background: linear-gradient(180deg, #fefce8 0%, #fef9e7 60%, #f7f8fc 100%);
}

body.light-mode .gh-hero-glow {
  background: radial-gradient(ellipse at 50% -10%, rgba(245, 158, 11, 0.16) 0%, transparent 65%), radial-gradient(ellipse at 80% 80%, rgba(239, 68, 68, 0.07) 0%, transparent 50%);
}

body.light-mode .gh-hero-badge {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #d97706;
}

body.light-mode .gh-title {
  color: #0b1220;
}

body.light-mode .gh-subtitle {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .gh-stat-label {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .gh-stat-divider {
  background: rgba(11, 18, 32, 0.12);
}

body.light-mode .gh-mission {
  background: #f7f8fc;
}

body.light-mode .gh-mission-text h2 {
  color: #0b1220;
}
body.light-mode .gh-mission-text p {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .gh-mission-callout {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.92));
  border-color: rgba(245, 158, 11, 0.24);
  box-shadow: 0 18px 34px rgba(148, 163, 184, 0.16);
}
body.light-mode .gh-mission-callout p {
  color: rgba(11, 18, 32, 0.74);
}

body.light-mode .gh-mission-callout-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

body.light-mode .gh-section-tag {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

body.light-mode .gh-section-header h2 {
  color: #0b1220;
}
body.light-mode .gh-section-header p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .gh-mission-list li {
  color: rgba(11, 18, 32, 0.75);
}
body.light-mode .gh-mission-list li i {
  color: #d97706;
}

body.light-mode .gh-mission-proof {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 12px 24px rgba(148, 163, 184, 0.12);
}

body.light-mode .gh-mission-proof-copy {
  color: rgba(11, 18, 32, 0.78);
}

body.light-mode .gh-mission-proof-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

body.light-mode .gh-heart-ring {
  border-color: rgba(204, 28, 28, 0.2);
}

body.light-mode .gh-heart-model-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 252, 0.8));
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 64px rgba(148, 163, 184, 0.22), 0 0 28px rgba(245, 158, 11, 0.12);
}

body.light-mode .gh-heart-poster-frame {
  background: radial-gradient(circle at 50% 18%, rgba(245, 158, 11, 0.18), transparent 40%), linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 252, 0.88));
  border-color: rgba(148, 163, 184, 0.14);
}

body.light-mode .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host {
  background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0) 44%), linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 248, 252, 0.92));
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -18px 36px rgba(148, 163, 184, 0.08);
}
body.light-mode .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::before {
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 28%), linear-gradient(180deg, rgba(245, 158, 11, 0.28), rgba(217, 119, 6, 0.42));
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.09), inset 0 10px 18px rgba(255, 255, 255, 0.22);
}
body.light-mode .gh-heart-model-shell.is-desktop-3d-pending .gh-heart-model-host::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 250, 240, 0.32), rgba(255, 255, 255, 0));
}

body.light-mode .gh-heart-model-shell.is-hovered {
  box-shadow: 0 32px 78px rgba(148, 163, 184, 0.26), 0 0 40px rgba(245, 158, 11, 0.18);
}

body.light-mode .gh-tiers {
  background: #eef2ff;
}

body.light-mode .gh-tier {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 14px rgba(11, 18, 32, 0.06);
}
body.light-mode .gh-tier:hover {
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.1);
  border-color: rgba(11, 18, 32, 0.15);
}
body.light-mode .gh-tier.gh-tier-featured {
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.07) 0%, #ffffff 100%);
  box-shadow: 0 0 36px rgba(245, 158, 11, 0.12);
}
body.light-mode .gh-tier.gh-tier-gold .gh-tier-amount {
  color: #d97706;
}
body.light-mode .gh-tier.gh-tier-gold .gh-tier-perks i {
  color: #d97706;
}

body.light-mode .gh-tier-name {
  color: #0b1220;
}

body.light-mode .gh-tier-desc {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .gh-tier-perks li {
  color: rgba(11, 18, 32, 0.75);
}
body.light-mode .gh-tier-perks li i {
  color: #ef4444;
}

body.light-mode .btn-tier {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.14);
  color: #0b1220;
}
body.light-mode .btn-tier:hover {
  background: rgba(11, 18, 32, 0.1);
}
body.light-mode .btn-tier.btn-tier-silver {
  background: rgba(100, 116, 139, 0.1);
  border-color: rgba(100, 116, 139, 0.25);
  color: #475569;
}

body.light-mode .gh-how {
  background: #f7f8fc;
}

body.light-mode .gh-step {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.05);
}
body.light-mode .gh-step:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
body.light-mode .gh-step h4 {
  color: #0b1220;
}
body.light-mode .gh-step p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .gh-step-num {
  color: #d97706;
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.15);
}

body.light-mode .gh-step-icon {
  opacity: 0.06;
}
body.light-mode .gh-step-icon i {
  color: #d97706;
}

body.light-mode .gh-step-arrow {
  color: rgba(11, 18, 32, 0.25);
}

body.light-mode .gh-impact {
  background: #f7f8fc;
}

body.light-mode .gh-impact-card {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.05);
}
body.light-mode .gh-impact-card:hover {
  border-color: rgba(245, 158, 11, 0.28);
}
body.light-mode .gh-impact-card h3 {
  color: #0b1220;
}
body.light-mode .gh-impact-card p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .gh-cta-inner {
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 70%), #ffffff;
  border-color: rgba(245, 158, 11, 0.25);
}
body.light-mode .gh-cta-inner h2 {
  color: #0b1220;
}
body.light-mode .gh-cta-inner p {
  color: rgba(11, 18, 32, 0.65);
}
body.light-mode .gh-cta-inner .btn-ghost {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  color: #d97706;
}
body.light-mode .gh-cta-inner .btn-ghost:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}
body.light-mode .gh-cta-inner .btn-gold {
  background: linear-gradient(135deg, #834b01, #eb8602);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fff;
  font-weight: 700;
}
body.light-mode .gh-cta-inner .btn-gold:hover {
  background: linear-gradient(135deg, #834b01, #eb8602);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

body.light-mode .local-page {
  background: #f7f8fc;
}

body.light-mode .local-hero {
  background: linear-gradient(180deg, #f0f4ff 0%, #eef2ff 60%, #f7f8fc 100%);
}
body.light-mode .local-hero .hero-glow-bg {
  opacity: 0.5;
}

body.light-mode .local-breadcrumb a {
  color: rgba(11, 18, 32, 0.55);
}
body.light-mode .local-breadcrumb span {
  color: rgba(11, 18, 32, 0.35);
}

body.light-mode .local-title {
  color: #0b1220;
}

body.light-mode .local-subtitle {
  color: rgba(11, 18, 32, 0.65);
}
body.light-mode .local-subtitle strong {
  color: #0b1220;
}

body.light-mode .local-results {
  background: #f7f8fc;
}

body.light-mode .local-other-cities {
  background: #eef2ff;
}
body.light-mode .local-other-cities h2 {
  color: #0b1220;
}

body.light-mode .city-pill {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
  color: #0b1220;
  box-shadow: 0 1px 6px rgba(11, 18, 32, 0.05);
}
body.light-mode .city-pill:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.28);
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

body.light-mode .impresum-trigger {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
  color: #2563eb;
}
body.light-mode .impresum-trigger:hover {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.4);
  color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

body.light-mode .impresum-modal {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
}

body.light-mode .impresum-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 25px 70px rgba(11, 18, 32, 0.25), 0 0 50px rgba(37, 99, 235, 0.12);
}

body.light-mode .impresum-close {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.12);
  color: rgba(11, 18, 32, 0.6);
}
body.light-mode .impresum-close:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

body.light-mode .impresum-header {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.05));
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}
body.light-mode .impresum-header i {
  color: #2563eb;
}
body.light-mode .impresum-header h2 {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .impresum-body {
  /* Custom Scrollbar */
}
body.light-mode .impresum-body::-webkit-scrollbar-track {
  background: rgba(11, 18, 32, 0.05);
}
body.light-mode .impresum-body::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.3);
}
body.light-mode .impresum-body::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 99, 235, 0.5);
}

body.light-mode .impresum-section h3 {
  color: #1e293b;
}
body.light-mode .impresum-section h3::before {
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
}

body.light-mode .info-item {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.12);
}
body.light-mode .info-item:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .info-label {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .info-value {
  color: #0b1220;
}
body.light-mode .info-value a {
  color: #2563eb;
}
body.light-mode .info-value a:hover {
  color: #1d4ed8;
}

body.light-mode .impresum-footer {
  border-top: 1px solid rgba(37, 99, 235, 0.12);
}
body.light-mode .impresum-footer p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .footer-social .footer-social-btn {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
  color: #64748b;
}
body.light-mode .footer-social .footer-social-btn:hover {
  color: var(--brand-color);
  background: rgba(15, 23, 42, 0.02);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}
body.light-mode .footer-social .footer-social-btn:hover::before {
  opacity: 0.1;
}
body.light-mode .footer-social .footer-social-btn.footer-social-x {
  --brand-color: #0f172a;
}
body.light-mode .footer-bg-text {
  color: rgba(0, 0, 0, 0.0352941176); /* Veoma suptilno siva */
  filter: blur(1px); /* Manji blur za light mode */
}

/* Glavni kontejner footera mora biti relative */
.fat-footer {
  position: relative;
  overflow: hidden; /* Sprečava da ogroman tekst napravi scroll */
}

/* Stil za veliki pozadinski tekst */
.footer-bg-text {
  position: absolute;
  bottom: -10px; /* Malo ga spuštamo da "viri" sa dna */
  left: 0;
  right: 0;
  text-align: center;
  z-index: 0; /* Ide iza sadržaja */
  font-weight: 900;
  font-size: 18vw; /* Skalira se prema širini ekrana */
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  /* Boja i Transparentnost za Light Mode */
  color: rgba(255, 255, 255, 0.013); /* Veoma suptilno siva */
  /* Opciono: dodaj blagi blur ako želiš još moderniji izgled */
  filter: blur(2px);
}

/* Osiguraj da je sadržaj footera iznad teksta */
.fat-footer .container {
  position: relative;
  z-index: 1;
}

/* Trust bar i ostali elementi treba da budu čitljivi */
.trust-bar {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

/* Social Buttons Hover efekt da oživi footer */
.footer-social-btn {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
}

body.light-mode .faq-section .section-header h2 {
  background: linear-gradient(135deg, #0b1220, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .faq-section .section-header p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .faq-hybrid-layout {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
}

body.light-mode .faq-hybrid-item .fh-trigger {
  color: rgba(11, 18, 32, 0.7);
  background: rgba(11, 18, 32, 0.03);
}

body.light-mode .faq-hybrid-item .fh-trigger:hover {
  color: #0b1220;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

body.light-mode .faq-hybrid-item.active .fh-trigger {
  color: #0b1220;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(139, 92, 246, 0.08));
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .faq-hybrid-item .fh-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.98));
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
}

body.light-mode .faq-hybrid-item .fh-inner h3 {
  color: #2563eb;
  background: none;
  -webkit-text-fill-color: initial;
}

body.light-mode .faq-hybrid-item .fh-inner p {
  color: rgba(11, 18, 32, 0.7);
}

@media (max-width: 768px) {
  body.light-mode .faq-hybrid-item .fh-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 18, 32, 0.12);
  }
  body.light-mode .faq-hybrid-item.active .fh-trigger::after {
    color: rgba(37, 99, 235, 0.8);
  }
}
body.light-mode .faq-golden-rail-wrapper {
  border-top-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .faq-rail-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 255, 0.9));
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}
body.light-mode .faq-rail-card::before {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), transparent 70%);
}
body.light-mode .faq-rail-card:hover {
  border-color: rgba(255, 193, 7, 0.7);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.3);
}
body.light-mode .faq-rail-card.faq-rail-card-elite {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25);
}
body.light-mode .faq-rail-card.faq-rail-card-elite::before {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(255, 193, 7, 0.08) 70%);
}
body.light-mode .faq-rail-card.faq-rail-card-elite:hover {
  border-color: rgba(147, 51, 234, 0.7);
  box-shadow: 0 12px 32px rgba(147, 51, 234, 0.35);
}

body.light-mode .faq-rc-name {
  color: #0b1220;
}

body.light-mode .faq-rc-meta {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .faq-rc-cat-text {
  color: rgba(11, 18, 32, 0.75);
}

body.light-mode .faq-rc-tagline {
  color: rgba(11, 18, 32, 0.5);
}

/* === FAQ SEO INTRO - Light Mode === */
body.light-mode .faq-seo-intro {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.1);
}

body.light-mode .faq-seo-intro__title {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #0b1220;
}

body.light-mode .faq-seo-intro__list li {
  color: rgba(11, 18, 32, 0.75);
}

body.light-mode .faq-seo-intro__sep {
  -webkit-text-fill-color: rgba(11, 18, 32, 0.3);
}

/* === FAQ CAT ACCORDION - Light Mode === */
body.light-mode .faq-cat-accordion {
  background: rgba(248, 250, 255, 0.95);
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

body.light-mode .faq-vision-section {
  background: rgba(247, 248, 252, 0.92);
}
body.light-mode .faq-vision-section::before {
  color: rgba(11, 18, 32, 0.03);
}
body.light-mode .faq-vision-section::after {
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.35), transparent);
}
body.light-mode .faq-vision-header .fvh-title {
  color: #0b1220;
}
body.light-mode .fvl-item {
  border-top-color: rgba(11, 18, 32, 0.1);
}
body.light-mode .fvl-item:last-child {
  border-bottom-color: rgba(11, 18, 32, 0.1);
}
body.light-mode .fvl-item.is-open > .fvl-trigger .fvl-question {
  color: #0b1220;
}
body.light-mode .fvl-trigger .fvl-num {
  color: rgba(11, 18, 32, 0.28);
}
body.light-mode .fvl-trigger .fvl-question {
  color: rgba(11, 18, 32, 0.65);
}
body.light-mode .fvl-trigger .fvl-icon {
  color: rgba(11, 18, 32, 0.35);
}
body.light-mode .fvl-trigger:hover .fvl-question {
  color: rgba(11, 18, 32, 0.9);
}
body.light-mode .fvl-trigger:hover .fvl-icon {
  color: rgba(11, 18, 32, 0.55);
}
body.light-mode .fvl-body .fvl-inner p {
  color: rgba(11, 18, 32, 0.58);
}
body.light-mode .faq-vision-header .fvh-title em {
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

body.light-mode .vision-page {
  background: #f7f8fc;
}

body.light-mode .vision-hero {
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 60%, #ffffff 100%);
}

body.light-mode .vision-hero-content h1 {
  color: #0b1220;
}

body.light-mode .vision-hero-content .lead {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .vision-hero-content .pill-badge {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.25);
}

body.light-mode .vision-statement .statement-card,
body.light-mode .vision-goals .goal-card,
body.light-mode .vision-values .value-item,
body.light-mode .vision-roadmap .timeline-content,
body.light-mode .vision-cta .cta-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 16px 36px rgba(11, 18, 32, 0.12);
}

body.light-mode .vision-statement .statement-card h2,
body.light-mode .vision-goals .goal-card h3,
body.light-mode .vision-values .value-item h4,
body.light-mode .vision-roadmap .timeline-content h4,
body.light-mode .vision-cta .cta-card h2,
body.light-mode .vision-goals .section-title,
body.light-mode .vision-values .section-title,
body.light-mode .vision-roadmap .section-title {
  color: #0b1220;
}

body.light-mode .vision-statement .statement-text,
body.light-mode .vision-goals .goal-card p,
body.light-mode .vision-values .value-item p,
body.light-mode .vision-roadmap .timeline-content p,
body.light-mode .vision-cta .cta-card p {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .vision-values {
  background: rgba(239, 242, 255, 0.6);
}

body.light-mode .vision-roadmap .roadmap-timeline::before {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.12));
}

body.light-mode .vision-roadmap .timeline-year {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
}

body.light-mode .vision-roadmap .timeline-year::after {
  border-color: #f7f8fc;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.25);
}

body.light-mode .vision-cta .cta-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.06));
}

body.light-mode .vision-hero-tags .vision-tag {
  background: rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 18, 32, 0.12);
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .vision-noise {
  background: transparent;
}

body.light-mode .noise-h2 {
  color: #0b1220;
}

body.light-mode .noise-body {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .noise-quote {
  color: rgba(11, 18, 32, 0.55);
  border-left-color: #2563eb;
}

body.light-mode .noise-stat {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(11, 18, 32, 0.1);
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.06);
}
body.light-mode .noise-stat .noise-stat-num {
  color: #2563eb;
}
body.light-mode .noise-stat .noise-stat-label {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .noise-stat.noise-stat--accent {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.2);
}
body.light-mode .noise-stat.noise-stat--accent .noise-stat-num {
  color: #7c3aed;
}

body.light-mode .noise-stat.noise-stat--green {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.2);
}
body.light-mode .noise-stat.noise-stat--green .noise-stat-num {
  color: #059669;
}

body.light-mode .noise-stat-plus {
  color: #2563eb;
}

body.light-mode .pillar-front {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 18, 32, 0.1);
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.08);
}

body.light-mode .pillar-front-label {
  color: #0b1220;
}

body.light-mode .pillar-front-sub {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .pillar-hint {
  color: rgba(11, 18, 32, 0.3);
  border-color: rgba(11, 18, 32, 0.1);
}

body.light-mode .pillar-back.pillar-back--1 {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04));
}
body.light-mode .pillar-back.pillar-back--2 {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.04));
}
body.light-mode .pillar-back.pillar-back--3 {
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.1), rgba(219, 39, 119, 0.04));
}
body.light-mode .pillar-back h3 {
  color: #0b1220;
}
body.light-mode .pillar-back p {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .vision-human {
  background: rgba(239, 242, 255, 0.5);
}

body.light-mode .human-h2 {
  color: #0b1220;
}

body.light-mode .human-manifesto {
  color: rgba(11, 18, 32, 0.6);
  border-left-color: #7c3aed;
}

body.light-mode .human-50m {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.18);
}
body.light-mode .human-50m .human-50m-num {
  color: #7c3aed;
}
body.light-mode .human-50m .human-50m-label {
  color: rgba(11, 18, 32, 0.55);
}

body.light-mode .human-item {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(11, 18, 32, 0.09);
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.06);
}
body.light-mode .human-item .human-item-icon {
  background: rgba(124, 58, 237, 0.08);
}
body.light-mode .human-item .human-item-body h4 {
  color: #0b1220;
}
body.light-mode .human-item .human-item-body p {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .how-it-works-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

body.light-mode .how-it-works-section .hiw-title {
  background: linear-gradient(135deg, #0b1220, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .how-it-works-section .hiw-subtitle {
  color: rgba(11, 18, 32, 0.65);
}

body.light-mode .how-it-works-section .hiw-subtitle-note {
  color: rgba(30, 64, 175, 0.78);
}

body.light-mode .how-it-works-section .hiw-tab {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(11, 18, 32, 0.12);
  color: rgba(11, 18, 32, 0.6);
}
body.light-mode .how-it-works-section .hiw-tab:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: #0b1220;
}
body.light-mode .how-it-works-section .hiw-tab.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  border-color: #2563eb;
  color: #0b1220;
}

body.light-mode .how-it-works-section .hiw-step {
  background: rgba(255, 255, 255, 0.553);
  border: 2px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
  color: rgba(11, 18, 32, 0.8);
}
body.light-mode .how-it-works-section .hiw-step:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.2);
}
body.light-mode .how-it-works-section .hiw-step.active {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.22);
}
body.light-mode .how-it-works-section .hiw-step .step-number {
  background: linear-gradient(135deg, #84f163, #5590f7);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  color: transparent;
}

body.light-mode .how-it-works-section .step-number {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

body.light-mode .how-it-works-section .step-pulse {
  background: rgba(37, 169, 235, 0.25);
  color: #fff;
}

body.light-mode .how-it-works-section .step-icon {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #2563eb;
}

body.light-mode .how-it-works-section .step-icon.provider-icon {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.22);
  color: #7c3aed;
}

body.light-mode .how-it-works-section .step-title {
  color: #0b1220;
}

body.light-mode .how-it-works-section .step-desc {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .how-it-works-section .step-arrow {
  opacity: 0.5;
}
body.light-mode .how-it-works-section .step-arrow svg path {
  stroke: #2563eb;
}

body.light-mode .how-it-works-section .hiw-guide-panel {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 42%), radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 38%), rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 22px 55px rgba(15, 23, 42, 0.12);
}

body.light-mode .how-it-works-section .hiw-guide-kicker,
body.light-mode .how-it-works-section .hiw-guide-method,
body.light-mode .how-it-works-section .hiw-guide-video,
body.light-mode .how-it-works-section .hiw-guide-sequence,
body.light-mode .how-it-works-section .hiw-guide-tag {
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .how-it-works-section .hiw-guide-kicker,
body.light-mode .how-it-works-section .hiw-guide-method,
body.light-mode .how-it-works-section .hiw-guide-sequence,
body.light-mode .how-it-works-section .hiw-guide-tag {
  background: rgba(255, 255, 255, 0.78);
}

body.light-mode .how-it-works-section .hiw-guide-kicker {
  color: #0b1220;
}

body.light-mode .how-it-works-section .hiw-guide-summary h4,
body.light-mode .how-it-works-section .hiw-guide-method-title,
body.light-mode .how-it-works-section .hiw-guide-video-body h5 {
  color: #0b1220;
}

body.light-mode .how-it-works-section .hiw-guide-summary p,
body.light-mode .how-it-works-section .hiw-guide-method-copy,
body.light-mode .how-it-works-section .hiw-guide-video-body p,
body.light-mode .how-it-works-section .hiw-guide-sequence ol,
body.light-mode .how-it-works-section .hiw-guide-tag,
body.light-mode .how-it-works-section .hiw-guide-side-label,
body.light-mode .how-it-works-section .hiw-guide-video-counter {
  color: rgba(11, 18, 32, 0.68);
}

body.light-mode .how-it-works-section .hiw-guide-step-meta,
body.light-mode .how-it-works-section .hiw-guide-sequence-label,
body.light-mode .how-it-works-section .hiw-guide-video-label {
  color: #2563eb;
}

body.light-mode .how-it-works-section .hiw-guide-method-order {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

body.light-mode .how-it-works-section .hiw-guide-method:hover,
body.light-mode .how-it-works-section .hiw-guide-method.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
  border-color: rgba(37, 99, 235, 0.32);
}

body.light-mode .how-it-works-section .hiw-guide-video {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98));
}

body.light-mode .how-it-works-section .hiw-guide-video-embed {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .how-it-works-section .hiw-guide-video-player {
  border-color: rgba(11, 18, 32, 0.14);
  background: #dbe4ef;
}

body.light-mode .how-it-works-section .hiw-guide-video-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(15, 23, 42, 0.18)), radial-gradient(circle at center, rgba(37, 99, 235, 0.14), transparent 42%);
}

body.light-mode .how-it-works-section .hiw-guide-video-overlay-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(124, 58, 237, 0.9));
}

body.light-mode .how-it-works-section .hiw-guide-video-overlay-icon::before {
  border-left-color: #f8fafc;
}

body.light-mode .how-it-works-section .hiw-guide-video-overlay-text strong {
  color: #ffffff;
}

body.light-mode .how-it-works-section .hiw-guide-video-overlay-text span {
  color: rgba(255, 255, 255, 0.9);
}

body.light-mode .how-it-works-section .hiw-guide-video-placeholder {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .how-it-works-section .hiw-guide-video-screen {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(241, 245, 249, 0.98)), radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 55%);
  border-color: rgba(37, 99, 235, 0.28);
}

body.light-mode .how-it-works-section .hiw-guide-video-screen strong {
  color: #0b1220;
}

body.light-mode .how-it-works-section .hiw-guide-video-screen-label {
  color: #2563eb;
}

body.light-mode .how-it-works-section .hiw-guide-video-screen-note {
  color: rgba(11, 18, 32, 0.64);
}

body.light-mode .how-it-works-section .hiw-guide-video-file-label {
  color: #2563eb;
}

body.light-mode .how-it-works-section .hiw-guide-video-file-path {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(11, 18, 32, 0.12);
  color: rgba(11, 18, 32, 0.74);
}

body.light-mode .how-it-works-section .hiw-guide-video-chrome {
  background: rgba(11, 18, 32, 0.04);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

body.light-mode .how-it-works-section .hiw-button {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}
body.light-mode .how-it-works-section .hiw-button.provider-btn {
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
}
body.light-mode .how-it-works-section .hiw-button:hover {
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
}
body.light-mode .how-it-works-section .hiw-button.provider-btn:hover {
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

body.light-mode .reviews-section {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
  --review-accent-top-opacity: 0.1;
  --review-accent-bottom-opacity: 0.08;
  --review-accent-top-height: 240px;
  --review-accent-bottom-height: 220px;
}

body.light-mode .reviews-section.glass-panel {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}

body.light-mode .reviews-section h2 {
  color: #0b1220;
}

body.light-mode .reviews-section::before {
  background: radial-gradient(circle at top, rgba(11, 18, 32, 0.05), transparent 70%), linear-gradient(120deg, rgba(11, 18, 32, 0.05), transparent 60%), var(--review-accent-gradient);
}

body.light-mode .reviews-section::after {
  background: radial-gradient(circle, rgba(11, 18, 32, 0.06), transparent 70%), linear-gradient(120deg, rgba(11, 18, 32, 0.08), transparent 60%), var(--review-accent-shade-gradient);
}

body.light-mode .reviews-section.is-form-open {
  --review-accent-top-opacity: 0.14;
  --review-accent-bottom-opacity: 0.1;
  --review-accent-top-height: 320px;
  --review-accent-bottom-height: 300px;
}

body.light-mode .rating-score {
  color: var(--review-accent-from);
}

body.light-mode .rating-count,
body.light-mode .review-date,
body.light-mode .rating-text {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .rating-label {
  color: rgba(11, 18, 32, 0.75);
}

body.light-mode .rating-bar {
  background: rgba(11, 18, 32, 0.08);
}

body.light-mode .review-form-container {
  background: linear-gradient(160deg, color-mix(in srgb, var(--review-accent-from) 8%, #ffffff), color-mix(in srgb, var(--review-accent-to) 6%, #ffffff));
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 18%, rgba(11, 18, 32, 0.12));
  box-shadow: 0 14px 32px rgba(11, 18, 32, 0.08);
}

body.light-mode .review-form-container::before {
  opacity: 0.08;
  filter: blur(20px);
}

body.light-mode .review-form-container h3,
body.light-mode .reviews-list h3,
body.light-mode .reviewer-details h4,
body.light-mode .review-title {
  color: #0b1220;
}

body.light-mode .form-group label {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .form-group input[type=text],
body.light-mode .form-group input[type=email],
body.light-mode .form-group input[type=tel],
body.light-mode .form-group textarea {
  background: color-mix(in srgb, var(--review-accent-from) 6%, #f8fafc);
  border-color: color-mix(in srgb, var(--review-accent-from) 18%, rgba(11, 18, 32, 0.15));
  color: #0b1220;
}

body.light-mode .form-group input[type=text]::placeholder,
body.light-mode .form-group input[type=email]::placeholder,
body.light-mode .form-group input[type=tel]::placeholder,
body.light-mode .form-group textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

body.light-mode .rating-input .star-label {
  color: rgba(11, 18, 32, 0.35);
}

body.light-mode .char-count {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .btn-toggle-form {
  color: #ffffff;
}

body.light-mode .btn-toggle-form.active {
  background: rgba(11, 18, 32, 0.04);
  color: #0b1220;
  border: 1px solid rgba(11, 18, 32, 0.14);
}

body.light-mode .btn-submit-review {
  color: #0b1220;
}

body.light-mode .btn-submit-review:not(:disabled):hover {
  color: #ffffff;
}

body.light-mode .btn-secondary {
  background: rgba(11, 18, 32, 0.04);
  color: #0b1220;
  border-color: rgba(11, 18, 32, 0.16);
}

body.light-mode .btn-secondary:hover:not(:disabled) {
  background: rgba(11, 18, 32, 0.08);
  border-color: rgba(11, 18, 32, 0.26);
}

body.light-mode .review-card {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
}

body.light-mode .review-card:hover {
  background: #f8fafc;
  border-color: rgba(11, 18, 32, 0.18);
}

body.light-mode .reviewer-avatar {
  background: rgba(11, 18, 32, 0.06);
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .review-text,
body.light-mode .response-text {
  color: rgba(11, 18, 32, 0.75);
}

body.light-mode .review-response {
  background: rgba(11, 18, 32, 0.03);
}

body.light-mode .review-response .response-header,
body.light-mode .review-response .response-date {
  color: var(--review-accent-from);
}

body.light-mode .reviews-empty {
  color: rgba(11, 18, 32, 0.6);
}

/* === RATING SLIDER PANEL - Light Mode === */
body.light-mode .sliders-panel {
  background: linear-gradient(145deg, rgba(248, 250, 255, 0.95), rgba(240, 245, 255, 0.9));
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 22%, rgba(11, 18, 32, 0.1));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.08);
}

body.light-mode .composite-preview {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid color-mix(in srgb, var(--review-accent-from) 16%, rgba(11, 18, 32, 0.1));
}

body.light-mode .comp-number {
  color: color-mix(in srgb, var(--review-accent-from) 80%, #0b1220);
}

body.light-mode .comp-label {
  color: rgba(11, 18, 32, 0.5);
}

body.light-mode .star-dim {
  color: rgba(11, 18, 32, 0.18);
}

body.light-mode .slider-meta {
  color: rgba(11, 18, 32, 0.7);
}

body.light-mode .slider-meta i {
  color: color-mix(in srgb, var(--review-accent-from) 75%, #0b1220);
}

body.light-mode .rating-slider {
  background: linear-gradient(to right, var(--review-accent-from) 0%, var(--review-accent-from) var(--slider-pct, 50%), rgba(11, 18, 32, 0.12) var(--slider-pct, 50%), rgba(11, 18, 32, 0.12) 100%);
}

body.light-mode .rating-slider::-webkit-slider-thumb {
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.9);
}

body.light-mode .rating-slider::-moz-range-thumb {
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.2);
}

body.light-mode .rating-slider:hover::-webkit-slider-thumb,
body.light-mode .rating-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 3px 12px rgba(11, 18, 32, 0.25), 0 0 0 4px color-mix(in srgb, var(--review-accent-from) 25%, transparent);
}

body.light-mode .slider-value-badge {
  color: color-mix(in srgb, var(--review-accent-from) 80%, #0b1220);
  background: color-mix(in srgb, var(--review-accent-from) 14%, #ffffff);
  border-color: color-mix(in srgb, var(--review-accent-from) 30%, rgba(11, 18, 32, 0.1));
}

body.light-mode .suggestions-section {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
}

body.light-mode .suggestions-section .suggestions-header .suggestions-subtitle {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .suggestions-living-environment .suggestions-title {
  color: var(--cat-living-environment-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-living-environment .category-highlight {
  color: var(--cat-living-environment-to);
}

body.light-mode .suggestions-living-environment .cat-text {
  color: var(--cat-living-environment-to);
}

body.light-mode .suggestions-personal-care-health .suggestions-title {
  color: var(--cat-personal-care-health-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-personal-care-health .category-highlight {
  color: var(--cat-personal-care-health-to);
}

body.light-mode .suggestions-personal-care-health .cat-text {
  color: var(--cat-personal-care-health-to);
}

body.light-mode .suggestions-food-leisure-experiences .suggestions-title {
  color: var(--cat-food-leisure-experiences-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-food-leisure-experiences .category-highlight {
  color: var(--cat-food-leisure-experiences-to);
}

body.light-mode .suggestions-food-leisure-experiences .cat-text {
  color: var(--cat-food-leisure-experiences-to);
}

body.light-mode .suggestions-learning-development .suggestions-title {
  color: var(--cat-learning-development-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-learning-development .category-highlight {
  color: var(--cat-learning-development-to);
}

body.light-mode .suggestions-learning-development .cat-text {
  color: var(--cat-learning-development-to);
}

body.light-mode .suggestions-work-business-economy .suggestions-title {
  color: var(--cat-work-business-economy-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-work-business-economy .category-highlight {
  color: var(--cat-work-business-economy-to);
}

body.light-mode .suggestions-work-business-economy .cat-text {
  color: var(--cat-work-business-economy-to);
}

body.light-mode .suggestions-creation-expression .suggestions-title {
  color: var(--cat-creation-expression-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-creation-expression .category-highlight {
  color: var(--cat-creation-expression-to);
}

body.light-mode .suggestions-creation-expression .cat-text {
  color: var(--cat-creation-expression-to);
}

body.light-mode .suggestions-mobility-logistics .suggestions-title {
  color: var(--cat-mobility-logistics-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-mobility-logistics .category-highlight {
  color: var(--cat-mobility-logistics-to);
}

body.light-mode .suggestions-mobility-logistics .cat-text {
  color: var(--cat-mobility-logistics-to);
}

body.light-mode .suggestions-community-social-life .suggestions-title {
  color: var(--cat-community-social-life-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-community-social-life .category-highlight {
  color: var(--cat-community-social-life-to);
}

body.light-mode .suggestions-community-social-life .cat-text {
  color: var(--cat-community-social-life-to);
}

body.light-mode .suggestions-administration-legal .suggestions-title {
  color: var(--cat-administration-legal-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-administration-legal .category-highlight {
  color: var(--cat-administration-legal-to);
}

body.light-mode .suggestions-administration-legal .cat-text {
  color: var(--cat-administration-legal-to);
}

body.light-mode .suggestions-digital-life-technology .suggestions-title {
  color: var(--cat-digital-life-technology-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-digital-life-technology .category-highlight {
  color: var(--cat-digital-life-technology-to);
}

body.light-mode .suggestions-digital-life-technology .cat-text {
  color: var(--cat-digital-life-technology-to);
}

body.light-mode .suggestions-life-transitions-support .suggestions-title {
  color: var(--cat-life-transitions-support-from);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

body.light-mode .suggestions-life-transitions-support .category-highlight {
  color: var(--cat-life-transitions-support-to);
}

body.light-mode .suggestions-life-transitions-support .cat-text {
  color: var(--cat-life-transitions-support-to);
}

body.light-mode .suggest-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(11, 18, 32, 0.12);
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.08);
}

body.light-mode .suggest-card:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 44px rgba(11, 18, 32, 0.16);
}

body.light-mode .suggest-card.is-premium {
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 28px rgba(255, 215, 0, 0.12);
}

body.light-mode .suggest-card.is-premium:hover {
  border-color: rgba(255, 215, 0, 0.75);
  box-shadow: 0 18px 42px rgba(255, 215, 0, 0.25), 0 0 0 3px rgba(255, 215, 0, 0.12);
}

body.light-mode .sug-logo-wrapper {
  background: #f3f4f6;
  border-color: rgba(11, 18, 32, 0.12);
}

body.light-mode .sug-initials {
  color: #0b1220;
}

body.light-mode .sug-name {
  color: #0b1220;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.light-mode .sug-location {
  color: rgba(11, 18, 32, 0.6);
}

body.light-mode .sug-btn {
  background: rgba(37, 99, 235, 0.1);
  color: #1e3a8a;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

body.light-mode .suggest-card:hover .sug-btn {
  background: var(--prof-c1, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* =========================================
   FINAL style.css (Dark-first + Premium Light Mode)
   - Keeps your structure & hover language
   - Fixes: duplicate logo-text, missing --blur, hardcoded colors, light-mode overlays
   ========================================= */
/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
  /* DARK MODE (Default) */
  --bg: #050505;
  --card: #111111;
  --section: #080808;
  --footer: #030303;
  --panel: #0a0a0a;
  --accent: #316484; /* blue */
  --accent-alt: #4d8148; /* green */
  --utility: #22c55e;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.10);
  --glass: rgba(5,5,5,0.72);
  --glass-text: #ffffff;
  --blur: blur(18px);
  --surface-blur-soft: 6px;
  --surface-blur: 10px;
  --surface-blur-strong: 16px;
  --overlay-blur: 10px;
  --overlay-blur-strong: 18px;
  --radius: 24px;
  --transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-primary: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, "Courier New", monospace;
  /* Cinematic overlay system (theme-driven) */
  --hover-overlay: linear-gradient(145deg, rgb(17,17,17), rgb(21, 46, 31));
  --soft-hover: rgba(255,255,255,0.05);
  /* Inputs */
  --input-bg: #050505;
  --input-border: #333;
  --focus-ring: rgba(59, 159, 246, 0.3);
  /* ── Semantic Color Tokens (D23) ─────────────────────────────── */
  --error: #ff5555;
  --error-bg: rgba(255, 85, 85, 0.1);
  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.1);
  --warning: #ffd700;
  --warning-bg: rgba(255, 215, 0, 0.1);
  --info: #00f3ff;
  --info-bg: rgba(0, 243, 255, 0.1);
  /* ── Spacing Scale (D24) ─────────────────────────────────────── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  /* ── Typography Scale (D24) ──────────────────────────────────── */
  --text-xs: 0.7rem;
  --text-sm: 0.8rem;
  --text-base: 0.9rem;
  --text-md: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  /* ── z-index Scale (D21) ─────────────────────────────────────── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
  --z-overlay: 900;
  --z-max: 9999;
  /* Modern mobile viewport + safe area tokens */
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --viewport-height: 100vh;
  --viewport-height-static: 100vh;
  --viewport-height-dynamic: 100dvh;
  --window-segment-count: 1;
  --foldable-segment-width-primary: env(viewport-segment-width 0 0, 100vw);
  --foldable-segment-width-secondary: env(viewport-segment-width 1 0, 100vw);
  --foldable-segment-height-primary: env(viewport-segment-height 0 0, 100vh);
  --foldable-segment-height-secondary: env(viewport-segment-height 0 1, 100vh);
  --foldable-hinge-inline: max(0px, calc(env(viewport-segment-left 1 0, 100vw) - env(viewport-segment-right 0 0, 100vw)));
  --foldable-hinge-block: max(0px, calc(env(viewport-segment-top 0 1, 100vh) - env(viewport-segment-bottom 0 0, 100vh)));
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}
@media (max-width: 768px) {
  :root {
    --blur: blur(12px);
    --surface-blur-soft: 4px;
    --surface-blur: 8px;
    --surface-blur-strong: 12px;
    --overlay-blur: 6px;
    --overlay-blur-strong: 10px;
  }
}
html.runtime-constrained,
html.save-data,
html.prefers-reduced-motion {
  --blur: blur(10px);
  --surface-blur-soft: 0px;
  --surface-blur: 4px;
  --surface-blur-strong: 8px;
  --overlay-blur: 3px;
  --overlay-blur-strong: 6px;
}

/* =========================================
   1b. GLOBAL BASE
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── A11y: Global focus-visible ring ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ── Hero search input: no focus ring (handled by parent .search-main-row) ── */
#engineInput:focus,
#engineInput:focus-visible {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-gutter: stable;
  overflow-x: clip;
}
html.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.35s ease, color 0.35s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
  position: relative;
}
body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: auto !important;
}

body.has-pwa-install-prompt .whatsapp-float {
  bottom: max(88px, var(--safe-area-bottom, 0px) + 88px);
}

.pwa-install-prompt {
  position: fixed;
  right: max(16px, var(--safe-area-right) + 16px);
  bottom: max(16px, var(--safe-area-bottom) + 16px);
  z-index: var(--z-toast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 18, 30, 0.88), rgba(21, 34, 45, 0.92));
  backdrop-filter: blur(var(--overlay-blur-strong));
  -webkit-backdrop-filter: blur(var(--overlay-blur-strong));
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
.pwa-install-prompt:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}
.pwa-install-prompt__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.pwa-install-prompt__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pwa-install-prompt__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pwa-install-prompt[hidden] {
  display: none !important;
}

html.has-foldable-segments .container,
html.has-foldable-segments .search-dock-layout,
html.has-foldable-segments .profile-layout-wrapper {
  max-width: min(1200px, 100vw - var(--foldable-hinge-inline) - 40px);
}

html.fold-vertical .search-dock-layout,
html.fold-vertical .profile-layout-wrapper {
  column-gap: max(20px, var(--foldable-hinge-inline) + 20px);
}

@media (max-width: 768px) {
  .pwa-install-prompt {
    left: max(16px, var(--safe-area-left) + 16px);
    justify-content: center;
  }
}
/* Background stage glow (subtle, premium) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(900px 520px at 50% 8%, rgba(92, 119, 255, 0.18), transparent 60%), radial-gradient(760px 440px at 18% 26%, rgba(59, 246, 72, 0.14), transparent 60%), radial-gradient(1100px 700px at 82% 36%, rgba(201, 162, 39, 0.08), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

/* Profile page: category-tinted stage glow (dark mode) */
body.category-living-environment::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-living-environment-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-living-environment-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-living-environment-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-personal-care-health::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-personal-care-health-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-personal-care-health-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-personal-care-health-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-food-leisure-experiences::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-food-leisure-experiences-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-food-leisure-experiences-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-food-leisure-experiences-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-learning-development::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-learning-development-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-learning-development-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-learning-development-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-work-business-economy::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-work-business-economy-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-work-business-economy-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-work-business-economy-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-creation-expression::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-creation-expression-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-creation-expression-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-creation-expression-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-mobility-logistics::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-mobility-logistics-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-mobility-logistics-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-mobility-logistics-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-community-social-life::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-community-social-life-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-community-social-life-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-community-social-life-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-administration-legal::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-administration-legal-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-administration-legal-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-administration-legal-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-digital-life-technology::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-digital-life-technology-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-digital-life-technology-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-digital-life-technology-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

body.category-life-transitions-support::before {
  background: radial-gradient(900px 520px at 10% 8%, color-mix(in srgb, var(--cat-life-transitions-support-from) 13%, transparent), transparent 13%), radial-gradient(760px 440px at 18% 9%, color-mix(in srgb, var(--cat-life-transitions-support-to) 16%, transparent), transparent 30%), radial-gradient(1100px 700px at 14% 16%, color-mix(in srgb, var(--cat-life-transitions-support-from) 9%, transparent), transparent 22%), radial-gradient(1300px 900px at 18% 17%, rgba(0, 0, 0, 0.65), rgb(0, 0, 0));
}

/* Background stage glow — light mode default */
body.light-mode::before {
  background: radial-gradient(900px 520px at 50% 8%, rgba(37, 99, 235, 0.07), transparent 60%), radial-gradient(760px 440px at 18% 26%, rgba(22, 163, 74, 0.06), transparent 60%), radial-gradient(1100px 700px at 82% 36%, rgba(201, 162, 39, 0.05), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

/* Profile page: category-tinted stage glow (light mode) */
body.light-mode.category-living-environment::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-living-environment-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-living-environment-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-living-environment-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-personal-care-health::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-personal-care-health-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-personal-care-health-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-personal-care-health-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-food-leisure-experiences::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-food-leisure-experiences-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-food-leisure-experiences-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-food-leisure-experiences-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-learning-development::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-learning-development-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-learning-development-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-learning-development-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-work-business-economy::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-work-business-economy-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-work-business-economy-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-work-business-economy-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-creation-expression::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-creation-expression-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-creation-expression-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-creation-expression-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-mobility-logistics::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-mobility-logistics-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-mobility-logistics-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-mobility-logistics-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-community-social-life::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-community-social-life-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-community-social-life-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-community-social-life-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-administration-legal::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-administration-legal-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-administration-legal-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-administration-legal-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-digital-life-technology::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-digital-life-technology-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-digital-life-technology-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-digital-life-technology-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

body.light-mode.category-life-transitions-support::before {
  background: radial-gradient(900px 520px at 50% 8%, color-mix(in srgb, var(--cat-life-transitions-support-from) 10%, transparent), transparent 60%), radial-gradient(760px 440px at 18% 26%, color-mix(in srgb, var(--cat-life-transitions-support-to) 7%, transparent), transparent 60%), radial-gradient(1100px 700px at 82% 36%, color-mix(in srgb, var(--cat-life-transitions-support-from) 5%, transparent), transparent 62%), radial-gradient(1300px 900px at 50% 90%, rgba(247, 248, 252, 0), rgb(247, 248, 252));
}

main {
  flex: 1;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

p {
  line-height: 1.65;
}

a {
  color: inherit;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
@media (max-width: 1300px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .nav-flex {
    padding: 0 !important;
  }
}
/* =========================================
   9. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .hero-advanced h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-col {
    grid-column: span 1;
  }
  .trust-bar {
    flex-direction: column;
    align-items: center;
  }
}
/* UTILITY: Smooth Scroll Offset for Fixed Header */
html {
  scroll-padding-top: calc(100px + var(--safe-area-top));
}

/* GRID SISTEM (2 kolone) */
.user-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 5px;
}

.tile-icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.tile-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- SPECIFIČNE BOJE (DARK MODE DEFAULT) --- */
/* 1. Dashboard (Plava) */
.tile-dash {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent, #3babf6);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* 2. Logout (Crvena) */
.tile-logout {
  background: rgba(255, 85, 85, 0.1);
  color: #ff5555;
  border: 1px solid rgba(255, 85, 85, 0.2);
}

/* 3. Login (Siva/Neutralna/Glass) */
.tile-login {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text, #fff);
  border: 1px solid var(--border, #333);
}

.tile-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* 4. Register (Accent/CTA - Istaknuto) */
.tile-register {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.tile-register:hover {
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

/* 7. Login (Amber/Gold) */
.tile-login {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.1);
}

.tile-login:hover {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.2);
}

/* 8. Compare (Rose/Pink) */
.tile-compare {
  background: rgba(244, 63, 94, 0.1);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.26);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.1);
}

.tile-compare:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: rgba(244, 63, 94, 0.42);
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.18);
}

/* 9. Blog (Teal/Cyan) */
.tile-blog {
  background: rgba(20, 184, 166, 0.1);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.26);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.1);
}

.tile-blog:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.18);
}

.padding-fixed {
  padding: 40px 0;
}

.w-100 {
  width: 100%;
}

.breadcrumbs {
  padding: 12px 0;
  font-size: var(--text-sm, 0.875rem);
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--muted);
  font-weight: 400;
}

.breadcrumbs__link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs__link:hover {
  color: var(--accent);
}

.breadcrumbs__current {
  color: #fff;
  font-weight: 600;
}

body.light-mode .breadcrumbs__current {
  color: #1a1a2e;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--z-toast, 9000);
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 380px;
}

.toast--visible {
  opacity: 1;
  transform: translateX(0);
}

.toast--exit {
  opacity: 0;
  transform: translateX(100%);
}

.toast--success {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
}

.toast--error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
}

.toast--warning {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
}

.toast--info {
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93c5fd;
}

.toast__icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.toast__msg {
  flex: 1;
}

.toast__close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  padding: 0 2px;
  line-height: 1;
  transition: opacity 0.2s;
}
.toast__close:hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes rotate-words {
  0%, 9% {
    transform: translateY(0);
  }
  10%, 19% {
    transform: translateY(-1.5em);
  }
  20%, 29% {
    transform: translateY(-3em);
  }
  30%, 39% {
    transform: translateY(-4.5em);
  }
  40%, 49% {
    transform: translateY(-6em);
  }
  50%, 59% {
    transform: translateY(-7.5em);
  }
  60%, 69% {
    transform: translateY(-9em);
  }
  70%, 79% {
    transform: translateY(-10.5em);
  }
  80%, 89% {
    transform: translateY(-12em);
  }
  90%, 100% {
    transform: translateY(-13.5em);
  }
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
@keyframes pulse-blue {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}
@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-down {
  animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Nove Animacije --- */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* --- Utility klase za Scroll --- */
.reveal {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

html.js-reveal.reveal-ready .reveal {
  opacity: 0;
  visibility: hidden;
}

html.js-reveal.reveal-ready .reveal.active,
.reveal.active {
  opacity: 1;
  visibility: visible;
}

.reveal.active.fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal.active.fade-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal.active.fade-right {
  animation: fadeInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal.active.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
  }
  70% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.reveal.active.pop-in {
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

.delay-6 {
  animation-delay: 0.6s !important;
}

.delay-7 {
  animation-delay: 0.7s !important;
}

.delay-8 {
  animation-delay: 0.8s !important;
}

.delay-9 {
  animation-delay: 0.9s !important;
}

.delay-10 {
  animation-delay: 1s !important;
}

.delay-11 {
  animation-delay: 1.1s !important;
}

.delay-12 {
  animation-delay: 1.2s !important;
}

@keyframes radar-pulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
    filter: drop-shadow(0 0 0px transparent);
  }
  50% {
    transform: scale(1.1) rotate(-10deg);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(52, 211, 153, 0.4));
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
    filter: drop-shadow(0 0 0px transparent);
  }
}
/* === ANIMATIONS (STABILIZOVANE) === */
/* Samo vertikalno pomeranje (translateY), bez scale i opacity */
@keyframes floatFront {
  0%, 100% {
    transform: translateY(-50%) rotate(5deg);
  }
  50% {
    transform: translateY(-55%) rotate(5deg);
  } /* Pomak nagore u odnosu na centar */
}
@keyframes floatBack {
  0%, 100% {
    transform: translateY(-50%) rotate(-8deg);
  }
  50% {
    transform: translateY(-45%) rotate(-8deg);
  } /* Pomak nadole u odnosu na centar */
}
@keyframes glowDivider {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
@keyframes searchSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes railScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes shimmerLine {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
