/* =============================================
   NEURO DESIGN SYSTEM — Regular Theme
   Boost-like.ru
   ============================================= */

:root {
  --accent: #6366f1;
  --accent-hover: #5558e6;
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --accent-shadow: 0 4px 14px rgba(99,102,241,0.3);
  --focus-ring: 0 0 0 3px rgba(99,102,241,0.12);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.06), 0 12px 36px rgba(0,0,0,0.1);
  --radius-card: 16px;
  --radius-input: 10px;
  --radius-btn: 12px;
  --input-bg: #f8fafc;
  --input-border: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --header-bg: #ffffff;
  --footer-bg: #1e293b;
  --white: #ffffff;
}

/* =============================================
   BASE
   ============================================= */

body {
  font-family: 'Raleway', 'Nunito Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */

.neuro-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s, background 0.3s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Breadcrumbs */
.neuro-breadcrumbs {
  padding: 14px 0 0;
}

.neuro-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
}

.neuro-breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.neuro-breadcrumb-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.6;
}

.neuro-breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.neuro-breadcrumb-item a:hover {
  color: var(--accent);
  text-decoration: none;
}

.neuro-breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Extend hero gradient to breadcrumbs on inner service pages (.np-page) */
/* Inner service pages with hero: breadcrumbs transparent, hero gradient extends behind them */
.neuro-breadcrumbs:has(+ #main-content > .np-page > .neuro-hero:first-child) {
  background: transparent;
  position: relative;
  z-index: 2;
  padding-bottom: 14px;
}

.neuro-breadcrumbs + #main-content > .np-page > .neuro-hero:first-child {
  margin-top: -48px;
  padding-top: 168px;
}

/* Inner service subpages without hero: breadcrumbs match bg-light */
.neuro-breadcrumbs:has(+ #main-content > .np-page > :first-child:not(.neuro-hero)) {
  background: var(--bg-light);
  padding-bottom: 14px;
}

.neuro-breadcrumbs + #main-content > .np-page {
  padding-top: 0;
}

.neuro-header ~ .page.p-t-70.pt_80,
.neuro-header ~ .nc-catalog ~ .page.p-t-70.pt_80,
#main-content > .page.p-t-70.pt_80 {
  padding-top: 16px !important;
}

/* Ensure neuro-inner-page has proper spacing after fixed header */
#main-content > .neuro-inner-page {
  padding-top: 20px;
}

#main-content > .co-page,
#main-content > .np-page {
  padding-top: 20px;
}

.neuro-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.neuro-header .logo {
  flex-shrink: 0;
}

.neuro-header .logo_img {
  height: 38px;
  width: auto;
}

.neuro-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.neuro-header .nav-links li a {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.neuro-header .nav-links li a:hover {
  color: var(--accent);
  background: rgba(99,102,241,0.06);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.neuro-header .nav-btn,
.mobile-menu-actions .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
  border-radius: var(--radius-btn);
  text-decoration: none;
  box-sizing: border-box;
  letter-spacing: 0;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Raleway', sans-serif;
}

.neuro-header .nav-btn-login,
.mobile-menu-actions .nav-btn-login {
  color: var(--text-primary);
  background: transparent;
}

.neuro-header .nav-btn-login:hover,
.mobile-menu-actions .nav-btn-login:hover {
  color: var(--accent);
  text-decoration: none;
}

.neuro-header .nav-btn-signup,
.mobile-menu-actions .nav-btn-signup {
  color: var(--white);
  background: var(--accent-gradient);
  box-shadow: var(--accent-shadow);
}

.neuro-header .nav-btn-signup:hover,
.mobile-menu-actions .nav-btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
  color: var(--white);
  text-decoration: none;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: var(--bg-light);
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu overlay & panel */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mobile-menu-panel.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--input-border);
}

.mobile-menu-header .logo img {
  height: 32px;
  width: auto;
}

.mobile-menu-close {
  font-size: 28px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.mobile-menu-close:hover {
  background: var(--bg-light);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mobile-menu-links li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-section);
}

.mobile-menu-links li a:hover {
  color: var(--accent);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-actions .nav-btn {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
}

.mobile-menu-actions .nav-btn-login {
  background: var(--bg-light);
  border-radius: var(--radius-btn);
}

/* =============================================
   NEURO CATALOG MENU (nc-)
   ============================================= */

.nc-catalog {
  padding-top: 68px;
  position: relative;
  z-index: 106;
}

/* ---- Mobile toggle ---- */
.nc-catalog-toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--input-border);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
}

.nc-catalog-toggle:focus {
  outline: none;
}

.nc-catalog-toggle svg:first-child {
  color: var(--accent);
}

.nc-toggle-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.nc-catalog-toggle.active .nc-toggle-arrow {
  transform: rotate(180deg);
}

/* ---- Desktop menu ---- */
.nc-catalog-menu {
  background: var(--bg-light);
  border-bottom: 1px solid var(--input-border);
}

.nc-catalog-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Each service item */
.nc-item {
  position: relative;
}

.nc-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  transition: all 0.2s;
  white-space: nowrap;
}

.nc-item-link:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(99,102,241,0.1);
  color: var(--accent);
  text-decoration: none;
}

.nc-item-link img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
}

/* Dropdown toggle on desktop (chevron inside chip) */
.nc-item-toggle {
  display: none;
}

.nc-item-toggle:focus {
  outline: none;
}

.nc-has-sub .nc-item-link {
  padding-right: 8px;
}

.nc-has-sub .nc-item-link::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.2s;
}

/* Dropdown desktop */
.nc-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  min-width: 240px;
  padding: 6px;
  padding-top: 12px;
  z-index: 200;
}

/* Bridge gap between item and submenu */
.nc-submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nc-item:hover .nc-submenu {
  display: block;
}

.nc-sub-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-input);
  transition: background 0.15s, color 0.15s;
}

.nc-sub-link:hover {
  background: var(--bg-section);
  color: var(--accent);
  text-decoration: none;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nc-catalog {
    padding-top: 56px;
  }

  .nc-catalog-toggle {
    display: flex;
  }

  .nc-catalog-menu {
    display: none;
    background: var(--white);
    border-bottom: none;
  }

  .nc-catalog-menu.active {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nc-catalog-inner {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nc-item {
    border-bottom: 1px solid var(--input-border);
  }

  .nc-item-link {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
    gap: 14px;
  }

  .nc-item-link:hover {
    border-color: transparent;
    box-shadow: none;
    color: var(--text-primary);
  }

  .nc-item-link img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  /* Hide desktop chevron */
  .nc-has-sub .nc-item-link::after {
    display: none;
  }

  /* Show mobile toggle button */
  .nc-item-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-section);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
  }

  .nc-item-toggle.active {
    background: rgba(99,102,241,0.1);
    color: var(--accent);
  }

  .nc-item-toggle svg {
    transition: transform 0.3s;
  }

  .nc-item-toggle.active svg {
    transform: rotate(180deg);
  }

  .nc-has-sub .nc-item-link {
    padding-right: 60px;
  }

  /* Submenu mobile */
  .nc-submenu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0;
    background: var(--bg-light);
  }

  .nc-submenu.active {
    display: block;
  }

  .nc-item:hover .nc-submenu:not(.active) {
    display: none;
  }

  .nc-sub-link {
    padding: 14px 20px 14px 70px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    position: relative;
  }

  .nc-sub-link::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: var(--input-border);
    border-radius: 1px;
  }

  .nc-sub-link:hover,
  .nc-sub-link:active {
    background: rgba(99,102,241,0.05);
    color: var(--accent);
  }

  .nc-sub-link:active::before {
    background: var(--accent);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */

.neuro-hero {
  padding: 120px 0 60px;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #e0e7ff 100%);
  overflow: hidden;
}

.neuro-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.neuro-hero-text {
  flex: 1;
  min-width: 0;
}

.neuro-hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.neuro-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.neuro-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.neuro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border: none;
}

.neuro-btn-primary {
  color: var(--white);
  background: var(--accent-gradient);
  box-shadow: var(--accent-shadow);
}

.neuro-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}

.neuro-btn-outline {
  color: var(--accent);
  background: var(--white);
  border: 2px solid var(--accent);
}

.neuro-btn-outline:hover {
  background: rgba(99,102,241,0.06);
  transform: translateY(-2px);
}

.neuro-hero-image {
  flex: 0 0 auto;
  max-width: 45%;
}

.neuro-hero-image img {
  width: 100%;
  height: auto;
}

/* =============================================
   ORDER FORM SECTION — override orderform styles
   ============================================= */

.neuro-order-section {
  padding: 60px 0 80px;
  overflow: hidden;
}

/* Neutralize outer Bootstrap .row > .col-md-10 wrapper from orderform */
.neuro-order-section .order-form > .row {
  margin-left: 0;
  margin-right: 0;
}

.neuro-order-section .order-form > .row > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.neuro-order-section .order_card {
  border: none;
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.neuro-order-section .card-body {
  padding: 32px;
}

.neuro-order-section .cens_h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.neuro-order-section .form-control,
.neuro-order-section select.form-control {
  min-height: 44px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  color: var(--text-primary);
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.neuro-order-section select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.neuro-order-section .order_card_block {
  gap: 24px;
}

.neuro-order-section .order_card_block > .col-md-6 {
  flex: 1;
  max-width: none;
}

.neuro-order-section .form-control:focus,
.neuro-order-section select.form-control:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  outline: none;
}

.neuro-order-section label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.neuro-order-section #addToCartButton {
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--accent-shadow);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.neuro-order-section #addToCartButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}

.neuro-order-section .paid_btn {
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--accent-shadow);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
}

.neuro-order-section .paid_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}

.neuro-order-section .dep-btn {
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--accent-shadow);
  font-weight: 600;
}

.neuro-order-section .dep-btn:hover {
  transform: translateY(-1px);
}

.neuro-order-section .cart_info .btn-info {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: var(--radius-btn);
}

.neuro-order-section .total_charge {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.neuro-order-section .tot_ch_price {
  color: var(--accent);
}

.neuro-order-section .fast_info_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.neuro-order-section .fast_order_desc {
  border-radius: var(--radius-input);
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
}

.neuro-order-section .deposit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neuro-order-section .deposit-itemt label {
  border-radius: var(--radius-card);
  border: 1.5px solid var(--input-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.neuro-order-section .deposit-itemt input:checked + label {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.neuro-order-section .fast_paid_title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =============================================
   ADVANTAGES SECTION
   ============================================= */

.neuro-advantages {
  padding: 80px 0;
  background: var(--bg-section);
}

.neuro-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.neuro-advantage-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.neuro-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.neuro-advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 20px;
}

.neuro-advantage-icon img {
  max-height: 100%;
  width: auto;
}

.neuro-advantage-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.neuro-advantage-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* =============================================
   SMM SERVICE SECTION
   ============================================= */

.neuro-smm-section {
  padding: 80px 0;
  background: var(--white);
}

.neuro-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.neuro-section-title b {
  color: var(--accent);
}

.neuro-smm-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.neuro-smm-image {
  flex: 0 0 45%;
}

.neuro-smm-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
}

.neuro-smm-text {
  flex: 1;
}

.neuro-smm-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.neuro-smm-bold {
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */

.neuro-reviews-section {
  padding: 80px 0;
  background: var(--bg-section);
}

.neuro-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.neuro-review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.neuro-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.neuro-review-stars {
  margin-bottom: 16px;
}

.neuro-review-stars img {
  height: 18px;
  width: auto;
}

.neuro-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 20px;
}

.neuro-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-section);
}

.neuro-review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.neuro-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neuro-review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.neuro-review-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   FAQ SECTION
   ============================================= */

.neuro-faq-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.neuro-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.neuro-faq-item {
  border: 1px solid var(--input-border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.neuro-faq-item:hover {
  box-shadow: var(--card-shadow);
}

.neuro-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  gap: 16px;
  min-height: 56px;
}

.neuro-faq-question p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.neuro-faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.2s;
}

.neuro-faq-item.active .neuro-faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.neuro-faq-item.active .neuro-faq-question p {
  color: var(--accent);
}

.neuro-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.neuro-faq-item.active .neuro-faq-answer {
  max-height: 400px;
}

.neuro-faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */

.neuro-footer {
  background: var(--footer-bg);
  padding: 60px 0 40px;
  color: #cbd5e1;
}

.neuro-footer-inner {
  display: block;
}

.neuro-footer-top {
  display: flex;
  gap: 48px;
}

.neuro-footer-brand {
  flex-shrink: 0;
}

.neuro-footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.neuro-footer-nav {
  flex: 1;
  display: flex;
  gap: 48px;
}

.neuro-footer-links {
  display: flex;
  gap: 48px;
}

.neuro-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neuro-footer-links li {
  margin-bottom: 10px;
}

.neuro-footer-links a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.neuro-footer-links a:hover {
  color: var(--white);
}

.neuro-footer-contacts {
  margin-left: auto;
}

.neuro-footer-email,
.neuro-footer-hours {
  font-size: 14px;
  margin-bottom: 8px;
}

.neuro-footer-email span,
.neuro-footer-hours span:first-child {
  color: #94a3b8;
  margin-right: 6px;
}

.neuro-footer-email a {
  color: var(--white);
  text-decoration: none;
}

.neuro-footer-email a:hover {
  color: var(--accent);
}

.neuro-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.neuro-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
}

.neuro-footer-social a:hover {
  background: rgba(99,102,241,0.3);
  transform: translateY(-2px);
}

.neuro-footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.neuro-footer-disclaimer {
  font-size: 11px;
  color: #64748b;
  margin-top: 16px;
  line-height: 1.4;
}

/* Copyright */
.neuro-copyright {
  background: #172032;
  padding: 16px 0;
}

.neuro-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

.neuro-copyright a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.neuro-copyright a:hover {
  color: var(--white);
}

/* Scroll up button */
.scrollup {
  position: fixed !important;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--accent) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(99,102,241,0.3);
  display: none;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transform: none !important;
  transition: all 0.3s;
  z-index: 900;
  color: #fff;
  padding: 0 !important;
  line-height: 0;
}

.scrollup.visible {
  display: flex;
}

.scrollup:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
  transform: translateY(-2px) !important;
}

.scrollup svg {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
  display: block;
}

.scrollup img {
  display: none;
}

/* Bottom nav panel */
.bottom-nav-footer-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  padding: 0 8px;
}

.nav-item-footer-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-item-footer-panel.active,
.nav-item-footer-panel:hover {
  color: var(--accent);
}

.icon-footer-panel svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* =============================================
   AUTH PAGES
   ============================================= */

.auth-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #e0e7ff 100%);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  box-shadow: var(--card-shadow);
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.auth-logo img {
  height: 40px;
  width: auto;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 28px;
}

.auth-desc {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin: -12px 0 24px;
  line-height: 1.5;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--input-bg);
  border: 2px solid var(--input-border);
  border-radius: var(--radius-input);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.auth-input:hover {
  border-color: var(--text-muted);
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.auth-input::placeholder {
  color: var(--text-muted);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 16px;
}

.auth-row .auth-checkbox {
  margin-bottom: 0;
}

.auth-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-checkbox a {
  color: var(--accent);
  text-decoration: none;
}

.auth-checkbox a:hover {
  text-decoration: underline;
}

.auth-btn {
  display: block;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--accent-gradient);
  box-shadow: var(--accent-shadow);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 8px;
}

.auth-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-recaptcha {
  margin-bottom: 16px;
}

.auth-recaptcha-info {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

.auth-recaptcha-info a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.auth-field-password {
  position: relative;
}

.auth-field-password .auth-input {
  padding-right: 48px;
}

.auth-toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.auth-toggle-pass:hover {
  color: var(--text-secondary);
}

.auth-toggle-pass:focus {
  outline: none;
}

/* =============================================
   NEURO INNER PAGES (np-)
   ============================================= */

.np-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text-primary);
}

/* Buttons */
.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.np-btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--accent-shadow);
}

.np-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.np-btn-outline {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.np-btn-outline:hover {
  background: rgba(99,102,241,0.06);
  color: var(--accent);
  text-decoration: none;
}

.np-btn-accent {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--accent-shadow);
  width: 100%;
  height: 48px;
}

.np-btn-accent:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}

/* Sections */
.np-section {
  padding: 48px 0;
}

.np-section-alt {
  background: var(--bg-light);
}

.np-section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin: 0 0 32px;
}

/* Full-width button modifier */
.np-btn-full {
  width: 100%;
  height: 52px;
}

/* Services grid */
.np-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.np-service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.np-service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.np-service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.np-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.np-service-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.np-service-link {
  color: var(--text-primary);
  text-decoration: none;
}

.np-service-link:hover {
  color: var(--accent);
}

.np-service-desc {
  flex: 1;
  margin-bottom: 16px;
}

.np-service-desc p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.np-service-footer {
  margin-top: auto;
}

.np-service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.np-service-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Free form */
.np-free-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.np-free-form {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
  border: 1px solid rgba(99,102,241,0.08);
}

.np-free-form-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.6;
}

.np-free-form .result {
  text-align: center;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 8px;
  font-size: 15px;
}

.np-free-form .np-input {
  display: block;
  width: 100%;
  height: 52px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--input-bg);
  border: 2px solid var(--input-border);
  border-radius: var(--radius-input);
  outline: none;
  box-sizing: border-box;
  margin-bottom: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.np-free-form .np-input:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.np-free-form .np-btn,
.np-free-form .free-btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: var(--accent-shadow);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0;
}

.np-free-form .np-btn:hover,
.np-free-form .free-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
  background: var(--accent-gradient);
  color: #fff;
}

.np-free-form .free-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.np-free-info-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-input);
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
}

.np-content-block {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.np-free-info-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(99,102,241,0.1);
  text-align: center;
}

.np-free-info-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px;
}

.np-free-info-card .np-btn {
  max-width: 320px;
  margin: 0 auto;
}

/* Reviews */
.np-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.np-review-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.np-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.np-review-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.np-review-person img {
  border-radius: 50%;
}

.np-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.np-review-rating {
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
}

.np-review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.np-review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.np-reviews-more {
  text-align: center;
  margin-top: 24px;
}

/* FAQ section override */
.np-faq-section {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* =============================================
   RESPONSIVE — Mobile First
   ============================================= */

/* Tablet: switch to mobile menu */
@media (max-width: 1000px) {
  .neuro-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .bottom-nav-footer-panel {
    display: flex;
  }

  .header-inner {
    height: 56px;
  }

  .neuro-header .logo_img {
    height: 32px;
  }
}

/* Mobile: <=768px */
@media (max-width: 768px) {
  .auth-page {
    padding: 24px 12px;
  }

  .auth-card {
    max-width: 95%;
    padding: 32px 24px;
  }

  .auth-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .auth-btn {
    height: 48px;
    font-size: 15px;
  }

  .neuro-breadcrumbs {
    padding: 10px 0 0;
  }

  .neuro-breadcrumb-list {
    font-size: 12px;
  }

  .neuro-breadcrumb-item:not(:last-child)::after {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
    margin: 0 4px;
  }

  /* Hero */
  .neuro-hero {
    padding: 80px 0 40px;
  }

  .neuro-hero-inner {
    flex-direction: column;
    gap: 32px;
  }

  .neuro-hero-text {
    text-align: center;
  }

  .neuro-hero-title {
    font-size: 26px;
  }

  .neuro-hero-desc {
    font-size: 16px;
  }

  .neuro-hero-actions {
    justify-content: center;
  }

  .neuro-hero-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .neuro-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Order section */
  .neuro-order-section {
    padding: 40px 0 60px;
  }

  .neuro-order-section .card-body {
    padding: 20px 16px;
  }

  .neuro-order-section .form-control,
  .neuro-order-section select.form-control {
    min-height: 48px;
    font-size: 16px;
  }

  /* Advantages */
  .neuro-advantages {
    padding: 48px 0;
  }

  .neuro-advantages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .neuro-advantage-card {
    padding: 24px 16px;
  }

  .neuro-advantage-icon {
    height: 80px;
    margin-bottom: 12px;
  }

  .neuro-advantage-title {
    font-size: 16px;
  }

  .neuro-advantage-desc {
    font-size: 13px;
  }

  /* SMM */
  .neuro-smm-section {
    padding: 48px 0;
  }

  .neuro-section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .neuro-smm-content {
    flex-direction: column;
    gap: 24px;
  }

  .neuro-smm-image {
    flex: none;
    order: -1;
  }

  /* Reviews */
  .neuro-reviews-section {
    padding: 48px 0;
  }

  .neuro-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* FAQ */
  .neuro-faq-section {
    padding: 48px 0 80px;
  }

  .neuro-faq-question {
    padding: 16px 18px;
    min-height: 52px;
  }

  .neuro-faq-question p {
    font-size: 15px;
  }

  .neuro-faq-answer p {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  /* Footer */
  .neuro-footer {
    padding: 40px 0 30px;
  }

  .neuro-footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .neuro-footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .neuro-footer-links {
    gap: 32px;
  }

  .neuro-footer-contacts {
    margin-left: 0;
  }

  .neuro-copyright-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Bottom padding for bottom nav */
  .neuro-footer {
    padding-bottom: 80px;
  }

  .neuro-faq-section {
    padding-bottom: 100px;
  }

  .scrollup {
    bottom: 70px;
  }

  /* Cart modal mobile */
  #cartModal.modal {
    width: 95%;
    max-width: none;
    max-height: 90vh;
  }

  #cartModal .modal-cart-content {
    max-height: 90vh;
  }

  #cartModal .modal-cart-header {
    padding: 16px;
  }

  #cartModal .modal-cart-body {
    padding: 16px;
  }

  #cartModal .modal-cart-footer {
    padding: 12px 16px 16px;
  }

  #cartModal .cart-pricetwo {
    font-size: 18px;
  }

  #cartModal .cart-item {
    padding: 14px;
  }

  /* Inner pages (np-*) */
  .np-section {
    padding: 32px 0;
  }

  .np-section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .np-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .np-service-card {
    padding: 16px;
  }

  .np-service-header {
    gap: 10px;
  }

  .np-service-icon {
    width: 36px;
    height: 36px;
  }

  .np-service-name {
    font-size: 14px;
  }

  .np-service-desc p {
    font-size: 13px;
  }

  .np-service-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .np-service-price {
    font-size: 16px;
  }

  .np-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .np-free-form-wrap {
    padding: 0;
  }

  .np-free-form {
    padding: 24px 18px;
  }

  .np-free-form-desc {
    font-size: 14px;
  }

  .np-free-form .np-input {
    height: 48px;
    font-size: 16px;
    padding: 12px 14px;
  }

  .np-free-form .np-btn {
    height: 48px;
    font-size: 15px;
  }

  .np-free-info-text {
    font-size: 13px;
    padding: 14px 16px;
  }

  .np-free-info-card {
    padding: 24px 18px;
  }

  .np-free-info-card p {
    font-size: 14px;
  }

  .np-free-info-card .np-btn {
    max-width: 100%;
  }

  .np-reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .np-review-card {
    padding: 16px;
  }

  .np-content-block {
    font-size: 14px;
  }

  .np-faq-section {
    padding-bottom: 100px;
  }

  /* Payment form mobile */
  .neuro-order-section .deposit-itemt label {
    height: 100px;
    width: 120px;
    padding: 10px 8px;
  }

  .neuro-order-section .deposit-itemt label img {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }

  .neuro-order-section .deposit-itemt label span {
    font-size: 11px;
  }

  .neuro-order-section .deposit-list {
    gap: 8px;
  }
}

/* Small mobile: <=430px */
@media (max-width: 430px) {
  .neuro-hero-title {
    font-size: 22px;
  }

  .neuro-hero-image {
    display: none;
  }

  .neuro-advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .neuro-hero-title {
    font-size: 34px;
  }

  .neuro-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .neuro-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .neuro-reviews-grid .neuro-review-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Inner pages tablet */
  .np-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Desktop: 1025px+ */
@media (min-width: 1025px) {
  .neuro-hero-title {
    font-size: 46px;
  }
}

/* =============================================
   CART MODAL — neuro design
   ============================================= */

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

/* Modal */
#cartModal.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 1001;
  display: none;
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  padding: 0 !important;
  overflow: visible;
}

/* Modal content — flex column constrained to modal height */
#cartModal .modal-cart-content {
  background: var(--white);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}

/* Cart body — scrollable area between header and footer */
#cartModal .modal-cart-body {
  padding: 24px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

#cartModal .modal-cart-body::-webkit-scrollbar {
  width: 4px;
}

#cartModal .modal-cart-body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Cart items — card style */
#cartModal .cart-item {
  background: var(--bg-section);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

#cartModal .cart-item:last-child {
  margin-bottom: 0;
}

#cartModal .cart-item:hover {
  border-color: var(--accent);
}

#cartModal .cart-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

#cartModal .cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}

#cartModal .cart-del .remove-from-cart {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #ef4444;
}

#cartModal .cart-del .remove-from-cart:hover {
  background: #fee2e2;
  border-color: #f87171;
  transform: scale(1.05);
}

#cartModal .cart-item-link {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  word-break: break-all;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#cartModal .cart-item-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--input-border);
}

#cartModal .cart-item-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#cartModal .cart-item-detail-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

#cartModal .cart-item-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

#cartModal .cart-item-detail-price {
  color: var(--accent);
}

/* Legacy — hide old separators */
#cartModal .line-cart {
  display: none;
}

/* Cart modal header */
#cartModal .modal-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--input-border);
  flex-shrink: 0;
}

#cartModal .modal-cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#cartModal .modal-cart-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

#cartModal .modal-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

/* Cart footer */
#cartModal .modal-cart-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--input-border);
  background: var(--white);
  flex-shrink: 0;
}

#cartModal .modal-cart-footer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#cartModal .modal-cart-footer-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

#cartModal .cart-pricetwo {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

#cartModal .btn-cart {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--accent-shadow);
  transition: all 0.2s;
  font-family: 'Raleway', sans-serif;
  width: 100%;
  text-align: center;
}

#cartModal .btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Close button — in header */
#cartModal #closeCart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--input-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
  position: static;
  float: none;
  opacity: 1;
  text-shadow: none;
  font-size: 0;
  line-height: 0;
}

#cartModal #closeCart:hover {
  background: #fee2e2;
  border-color: #f87171;
  color: #ef4444;
}

#cartModal #closeCart::before {
  content: none;
  display: none;
}

/* Empty cart state */
#cartModal .cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 8px;
}

#cartModal .cart-empty-state p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 8px 0 0;
}

#cartModal .cart-empty-state span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cart notification messages */
.message_cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  z-index: 1050;
}

.message_cart .alert-success {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: var(--accent-shadow);
}

.message_cart .alert-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

/* =============================================
   PAYMENT FORM (fast_paid) — neuro design
   ============================================= */

.neuro-order-section .fast_paid {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.neuro-order-section .fast_paid_title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

/* Payment methods grid */
.neuro-order-section .deposit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 24px;
}

.neuro-order-section .deposit-itemt {
  margin: 0;
}

.neuro-order-section .deposit-itemt input[type=radio] {
  display: none;
}

.neuro-order-section .deposit-itemt label {
  cursor: pointer;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-card);
  height: 120px;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  filter: grayscale(60%);
  opacity: 0.7;
  transition: all 0.25s;
  position: relative;
  background: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

.neuro-order-section .deposit-itemt label:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: #c7d2fe;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.neuro-order-section .deposit-itemt input:checked + label {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  background: #f5f3ff;
}

.neuro-order-section .deposit-itemt label img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.neuro-order-section .deposit-itemt label span {
  display: block;
  text-align: center;
  min-height: auto;
  line-height: 1.3;
}

.neuro-order-section .deposit-itemt label .checkbox_svg {
  width: 18px;
  position: absolute;
  right: 8px;
  top: 8px;
}

.neuro-order-section .deposit-itemt label .checkbox_line {
  stroke: var(--accent);
}

.neuro-order-section .deposit-itemt input:checked + label .checkbox_line {
  stroke-dasharray: 140, 154;
  animation: checked 0.3s ease forwards;
}

/* Email input */
.neuro-order-section .paid_email_block {
  width: 100%;
  max-width: 400px;
  margin-bottom: 8px;
}

.neuro-order-section .paid_email_block label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.neuro-order-section #email_paid {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  padding: 0 16px;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.neuro-order-section #email_paid:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
  outline: none;
}

/* Payment total */
.neuro-order-section .fast_paid_sum {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.neuro-order-section .fast_paid_sum b {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* Agree checkbox */
.neuro-order-section .agree_check_block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 400px;
}

.neuro-order-section .agree_check_block .check_agree {
  margin-right: 8px;
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.neuro-order-section .agree_check_block span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.neuro-order-section .agree_check_block a {
  color: var(--accent);
  text-decoration: underline;
}

/* Pay button */
.neuro-order-section .dep-btn {
  width: 100%;
  max-width: 400px;
  height: 52px;
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  box-shadow: var(--accent-shadow);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  text-shadow: none;
}

.neuro-order-section .dep-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Back button */
.neuro-order-section .paid_back_btn {
  width: 100%;
  max-width: 400px;
  height: 48px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
  box-shadow: none;
}

.neuro-order-section .paid_back_btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* =============================================
   CART INFO (under form) — neuro design
   ============================================= */

.neuro-order-section .cart_info {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--accent);
}

.neuro-order-section .cart_info.show {
  display: block;
  opacity: 1;
}

/* Cart summary header */
.neuro-order-section .cart-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.neuro-order-section .cart-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.neuro-order-section .cart-summary-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-section);
  padding: 2px 10px;
  border-radius: 20px;
}

.neuro-order-section .cart_info .cart-price {
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  text-align: left;
  margin: 4px 0 12px;
}

.neuro-order-section .cart_info .cart-price b {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

/* Cart summary actions */
.neuro-order-section .cart-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.neuro-order-section .cart-summary-actions .btn-cart-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-btn);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.neuro-order-section .cart-summary-actions .btn-cart-view:hover {
  background: var(--accent);
  color: var(--white);
}

.neuro-order-section .cart-summary-actions .paid_btn {
  margin-top: 0;
}

/* Minimum amount warning */
.neuro-order-section .minimum_amount {
  display: none;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-btn);
  padding: 10px 16px;
  margin: 12px 0;
  font-size: 14px;
  font-weight: 600;
}

/* Registration link */
.neuro-order-section .fast_order_reg {
  text-align: center;
  font-size: 15px;
  margin-top: 24px;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: var(--text-secondary);
}

.neuro-order-section .fast_order_reg a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* =============================================
   ORDER FORM BUTTONS — alignment fixes
   ============================================= */

.neuro-order-section .form-actions {
  margin-top: 8px;
}

.neuro-order-section #addToCartButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
}

.neuro-order-section .paid_btn {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: none;
}

/* Min/max quantity */
.neuro-order-section .min_max_quantity {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Order info panel (right side) */
.neuro-order-section .order_resume {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--input-border);
}

@media (min-width: 769px) {
  .neuro-order-section .order_resume {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

.neuro-order-section .content-header-title h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* Service info block (order_resume redesign) */
.service-info-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.service-info-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.service-info-stat {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-info-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-info-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.service-info-desc {
  background: var(--bg-light);
  border-radius: var(--radius-input);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-info-desc:empty {
  display: none;
}

/* Collapsible description (CSS-only toggle) */
.service-info-desc-toggle ~ .service-info-desc {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.service-info-desc-toggle ~ .service-info-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-light));
  pointer-events: none;
}

.service-info-desc-toggle:checked ~ .service-info-desc {
  max-height: none;
}

.service-info-desc-toggle:checked ~ .service-info-desc::after {
  display: none;
}

.service-info-desc-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: opacity 0.2s;
}

.service-info-desc-more::after {
  content: 'Показать полностью';
}

.service-info-desc-toggle:checked ~ .service-info-desc-more::after {
  content: 'Свернуть';
}

.service-info-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
}

.service-info-placeholder-icon {
  margin-bottom: 16px;
}

.service-info-placeholder-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.service-info-placeholder-hint {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 8px;
}

.service-info-placeholder-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.service-info-placeholder-list li {
  padding: 2px 0;
}

.service-info-placeholder-list li::before {
  content: '•';
  color: var(--accent);
  margin-right: 6px;
}

.service-info-placeholder .service-info-stats {
  width: 100%;
}

/* Skeleton chips */
.service-info-stat--skeleton {
  background: var(--bg-section);
  border: 1px dashed var(--input-border);
}

.service-info-stat--skeleton .service-info-value {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .service-info-stats {
    gap: 8px;
  }
  .service-info-stat {
    padding: 10px 12px;
  }
  .service-info-value {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .service-info-stats {
    flex-direction: column;
  }
}

/* =============================================
   INNER PAGES — Unified neuro design
   ============================================= */

.neuro-inner-page {
  padding-top: 20px;
  padding-bottom: 60px;
}

.neuro-page-header {
  margin-bottom: 40px;
}

.neuro-page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Raleway', sans-serif;
}

.neuro-page-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* =============================================
   CONTACTS PAGE
   ============================================= */

.neuro-contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.neuro-contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.neuro-contact-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.neuro-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(99,102,241,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.neuro-contact-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.neuro-contact-value {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.neuro-contact-value a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.neuro-contact-value a:hover {
  color: var(--accent-hover);
}

.neuro-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.neuro-contact-socials a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(99,102,241,0.06);
  text-decoration: none;
  transition: all 0.2s;
}

.neuro-contact-socials a:hover {
  background: var(--accent);
  color: var(--white);
}

/* =============================================
   BLOG PAGE
   ============================================= */

.neuro-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.neuro-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
}

.neuro-blog-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.neuro-blog-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.neuro-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.neuro-blog-card:hover .neuro-blog-image img {
  transform: scale(1.03);
}

.neuro-blog-content {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.neuro-blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.neuro-blog-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.neuro-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.neuro-blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.neuro-blog-category {
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(99,102,241,0.08);
  color: var(--accent);
  font-weight: 500;
  font-size: 12px;
}

/* =============================================
   BLOG SINGLE POST
   ============================================= */

.neuro-blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.neuro-blog-article {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.neuro-blog-article-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.neuro-blog-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neuro-blog-article-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  padding: 24px 28px 0;
  margin-bottom: 16px;
}

.neuro-blog-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 28px 16px;
  border-bottom: 1px solid var(--divider);
  font-size: 13px;
  color: var(--text-muted);
}

.neuro-blog-article-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.neuro-blog-article-body {
  padding: 24px 28px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.neuro-blog-article-body p {
  margin-bottom: 16px;
}

.neuro-blog-article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.neuro-blog-article-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 20px 0 10px;
}

.neuro-blog-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.neuro-blog-article-body a {
  color: var(--accent);
}

.neuro-blog-article-body ul,
.neuro-blog-article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.neuro-blog-article-body li {
  margin-bottom: 6px;
}

.neuro-blog-back {
  margin-top: 24px;
  text-align: center;
}

.neuro-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.neuro-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99,102,241,0.04);
  text-decoration: none;
}

/* Blog sidebar */
.neuro-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.neuro-blog-widget {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 20px;
}

.neuro-blog-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}

.neuro-blog-widget-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.neuro-blog-widget-item:hover {
  color: var(--accent);
  text-decoration: none;
}

.neuro-blog-widget-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.neuro-blog-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neuro-blog-widget-item-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.neuro-blog-widget-categories {
  display: flex;
  flex-direction: column;
}

.neuro-blog-widget-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.neuro-blog-widget-cat-link:last-child {
  border-bottom: none;
}

.neuro-blog-widget-cat-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.neuro-blog-widget-cat-count {
  background: rgba(99,102,241,0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

/* =============================================
   REVIEWS PAGE
   ============================================= */

.neuro-reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.neuro-review-item {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.neuro-review-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.neuro-review-item-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.neuro-review-item-person img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
}

.neuro-review-item-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.neuro-review-item-rating {
  font-size: 16px;
}

.neuro-review-item-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.neuro-review-item-date {
  font-size: 13px;
  color: var(--text-muted);
}

/* Review Form */
.neuro-review-form-section {
  margin-bottom: 48px;
}

.neuro-review-form {
  max-width: 640px;
  margin-top: 24px;
}

.neuro-review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.neuro-review-form-group {
  margin-bottom: 16px;
}

.neuro-review-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.neuro-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-input);
  background: var(--input-bg);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.neuro-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.neuro-textarea {
  resize: vertical;
  min-height: 100px;
}

.neuro-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neuro-modal-content {
  background: var(--white);
  padding: 32px 48px;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* =============================================
   PAGINATION
   ============================================= */

.neuro-pagination {
  margin-top: 32px;
  margin-bottom: 32px;
}

.neuro-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.neuro-pagination .pagination > li > a,
.neuro-pagination .pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.neuro-pagination .pagination > li > a:hover {
  background: rgba(99,102,241,0.08);
  color: var(--accent);
}

.neuro-pagination .pagination > .active > a,
.neuro-pagination .pagination > .active > span {
  background: var(--accent);
  color: var(--white);
}

/* =============================================
   TERMS/COOKIE POLICY STYLES (moved from inline)
   ============================================= */

.ns-terms-card {
  margin-bottom: 24px;
}

.ns-terms-card .card-header .card-title i {
  margin-right: 8px;
  opacity: 0.7;
}

.ns-terms-body {
  padding: 28px 32px !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: var(--text-primary, #334155) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ns-terms-body h1,
.ns-terms-body h2,
.ns-terms-body h3,
.ns-terms-body h4,
.ns-terms-body h5,
.ns-terms-body h6 {
  margin-top: 28px !important;
  margin-bottom: 14px !important;
  font-weight: 600 !important;
  color: var(--text-primary, #1e293b) !important;
  line-height: 1.4 !important;
}

.ns-terms-body h1:first-child,
.ns-terms-body h2:first-child,
.ns-terms-body h3:first-child {
  margin-top: 0 !important;
}

.ns-terms-body h1 { font-size: 22px !important; }
.ns-terms-body h2 { font-size: 19px !important; }
.ns-terms-body h3 { font-size: 16px !important; }

.ns-terms-body p {
  margin-bottom: 14px !important;
  text-align: justify;
}

.ns-terms-body ul,
.ns-terms-body ol {
  padding-left: 28px !important;
  margin-bottom: 14px !important;
}

.ns-terms-body li {
  margin-bottom: 8px !important;
}

.ns-terms-body a {
  color: var(--accent, #6366f1) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  transition: border-color 0.2s;
}

.ns-terms-body a:hover {
  border-bottom-color: var(--accent, #6366f1) !important;
}

.ns-terms-body strong,
.ns-terms-body b {
  font-weight: 600 !important;
  color: var(--text-primary, #1e293b) !important;
}

.ns-terms-body span {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  background: none !important;
}

.ns-terms-body table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 16px !important;
}

.ns-terms-body table th,
.ns-terms-body table td {
  padding: 10px 14px !important;
  border: 1px solid var(--input-border, #e2e8f0) !important;
  font-size: 14px !important;
}

.ns-terms-body table th {
  background: var(--bg-light, #f1f5f9) !important;
  font-weight: 600 !important;
}

/* =============================================
   HERO COMPACT (for inner pages with hero)
   ============================================= */

.neuro-hero-compact {
  padding-top: 20px;
  padding-bottom: 20px;
}

.neuro-hero-compact .neuro-hero-inner {
  min-height: auto;
}

/* =============================================
   RESPONSIVE — Inner pages
   ============================================= */

@media (max-width: 767px) {
  .neuro-inner-page {
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .neuro-page-title {
    font-size: 24px;
  }

  .neuro-page-header {
    margin-bottom: 24px;
  }

  .neuro-contacts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .neuro-contact-card {
    padding: 24px;
  }

  .neuro-blog-grid {
    grid-template-columns: 1fr;
  }

  .neuro-blog-single-layout {
    grid-template-columns: 1fr;
  }

  .neuro-blog-article-title {
    font-size: 22px;
    padding: 20px 18px 0;
  }

  .neuro-blog-article-meta {
    padding: 0 18px 14px;
  }

  .neuro-blog-article-body {
    padding: 18px 18px 20px;
    font-size: 14px;
  }

  .neuro-blog-article-body h2 {
    font-size: 19px;
  }

  .neuro-reviews-list {
    grid-template-columns: 1fr;
  }

  .neuro-review-form-row {
    grid-template-columns: 1fr;
  }

  .ns-terms-body {
    padding: 18px 16px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .ns-terms-body p {
    text-align: left;
  }

  .ns-terms-body h1 { font-size: 18px !important; }
  .ns-terms-body h2 { font-size: 16px !important; }
  .ns-terms-body h3 { font-size: 15px !important; }
}

/* Large desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
