/* ========== EXTRACTED FROM contact.HTML ========== */
/* Total style blocks found: 2 */


    .lang-picker-wrapper { position: relative; display: inline-block; vertical-align: middle; }
    
    /* Hero section styling */
    #subheader {
      position: relative;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 60px 20px;
    }
    
    #subheader h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    #subheader .lead {
      font-size: 1.1rem;
      font-weight: 400;
      opacity: 0.95;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    /* Topbar styling */
    #topbar {
      background: rgba(0, 0, 0, 0.9) !important;
    }
    
    /* ========== LANGUAGE PICKER STYLES ========== */
    
    /* Основная кнопка - glassmorphism стиль */
    .lang-picker-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 4px 12px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
      font-weight: 500;
      font-size: 14px;
      min-width: 80px;
      height: 36px;
      line-height: 1.2;
      transition: all 0.3s ease;
      color: #ffffff;
      margin-left: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .lang-picker-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .lang-picker-btn:focus, 
    .lang-picker-btn[aria-expanded="true"] {
      outline: none;
      border-color: rgba(245, 158, 11, 0.6);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
    }
    
    /* Белый цвет для текста кнопки */
    .lang-picker-btn #langCode {
      color: #ffffff;
      font-weight: 600;
      margin: 0 2px 0 2px;
    }
    
    /* Стрелка dropdown */
    .lang-picker-btn svg path {
      stroke: rgba(255, 255, 255, 0.7);
      transition: stroke 0.3s ease;
    }
    
    .lang-picker-btn:hover svg path {
      stroke: rgba(255, 255, 255, 0.9);
    }
    
    /* Иконка глобуса */
    .lang-globe {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      margin-right: 3px;
    }
    
    .lang-globe svg circle,
    .lang-globe svg ellipse,
    .lang-globe svg path {
      stroke: rgba(255, 255, 255, 0.8);
      transition: stroke 0.3s ease;
    }
    
    .lang-picker-btn:hover .lang-globe svg circle,
    .lang-picker-btn:hover .lang-globe svg ellipse,
    .lang-picker-btn:hover .lang-globe svg path {
      stroke: rgba(245, 158, 11, 0.9);
    }
    
    /* Dropdown меню */
    .lang-picker-dropdown {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      z-index: 1000;
      background: rgba(3, 27, 78, 0.98);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      padding: 4px 0;
      margin: 0;
      min-width: 120px;
      list-style: none;
      animation: fadeInDown 0.2s ease;
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .lang-picker-dropdown.open { 
      display: block; 
    }
    
    /* Опции языков */
    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      cursor: pointer;
      font-size: 14px;
      background: none;
      border: none;
      transition: all 0.2s ease;
      height: 40px;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.9);
      width: 100%;
      text-align: left;
    }
    
    .lang-option:hover,
    .lang-option:focus {
      background: rgba(245, 158, 11, 0.15);
      color: #f59e0b;
      outline: none;
    }
    
    .lang-option.selected {
      background: rgba(245, 158, 11, 0.25);
      color: #f59e0b;
      font-weight: 600;
    }
    
    .lang-option .lang-code {
      font-weight: 600;
      margin: 0;
    }
    
    /* Флаги */
    .lang-flag {
      font-size: 18px;
      width: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    
    .lang-flag img {
      width: 20px;
      height: 15px;
      border-radius: 2px;
      object-fit: cover;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    /* ========== АДАПТАЦИЯ ПОД СОСТОЯНИЯ HEADER ========== */
    
    /* Десктоп - прозрачный header */
    @media (min-width: 992px) {
      header.transparent .lang-picker-btn {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
      }
      
      header.transparent .lang-picker-btn:hover {
        background: rgba(255, 255, 255, 0.15);
      }
    }
    
    /* Десктоп - скролл с тёмным фоном */
    @media (min-width: 992px) {
      header.scroll-light .lang-picker-btn {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.25);
      }
      
      header.scroll-light .lang-picker-btn:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.35);
      }
    }
    
    /* ========== МОБИЛЬНЫЕ УСТРОЙСТВА ========== */
    @media (max-width: 991px) {
      .lang-picker-btn {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        font-size: 13px;
        padding: 4px 10px;
        min-width: 70px;
        height: 34px;
      }
      
      .lang-picker-btn:hover {
        background: rgba(255, 255, 255, 0.12);
      }
      
      .lang-picker-dropdown {
        min-width: 110px;
      }
      
      .lang-option {
        font-size: 13px;
        padding: 9px 12px;
        height: 36px;
        gap: 8px;
      }
      
      .lang-flag img {
        width: 18px;
        height: 13px;
      }
    }
    
    /* Очень маленькие экраны */
    @media (max-width: 600px) {
      .lang-picker-btn { 
        font-size: 12px; 
        padding: 3px 8px; 
        min-width: 65px; 
        height: 32px;
        gap: 5px;
      }
      
      .lang-picker-dropdown { 
        min-width: 100px; 
      }
      
      .lang-option { 
        font-size: 12px; 
        padding: 8px 10px; 
        height: 34px;
        gap: 6px;
      }
      
      .lang-flag { 
        font-size: 15px; 
        width: 16px; 
      }
      
      .lang-flag img {
        width: 16px;
        height: 12px;
      }
      
      .lang-globe {
        width: 16px;
        height: 16px;
      }
      
      .lang-globe svg {
        width: 14px;
        height: 14px;
      }
    }
    
    /* ========== ACCESSIBILITY ========== */
    
    /* Focus visible для клавиатурной навигации */
    .lang-picker-btn:focus-visible {
      outline: 2px solid #f59e0b;
      outline-offset: 2px;
    }
    
    .lang-option:focus-visible {
      outline: 2px solid #f59e0b;
      outline-offset: -2px;
    }
    
    /* Disabled состояние */
    .lang-picker-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .lang-picker-btn:disabled:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: none;
    }
    
    /* Contact Options Section */
    .contact-options {
      padding: 60px 0;
      background: #f8f9fa;
    }
    
    .contact-card {
      background: white;
      border-radius: 12px;
      padding: 35px 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
      text-align: center;
      border: 2px solid transparent;
    }
    
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      border-color: #f59e0b;
    }
    
    .contact-card h3 {
      color: #f59e0b;
      font-size: 1.6rem;
      margin-bottom: 15px;
      font-weight: 600;
    }
    
    .contact-card p {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    .phone-icon {
      font-size: 3rem;
      color: #f59e0b;
      margin-bottom: 20px;
    }
    
    .phone-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      border-radius: 10px;
      margin: 15px 0;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    
    .phone-number:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
      text-decoration: none;
      color: white;
    }
    
    /* Callback Form */
    .callback-form {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 10px;
      margin-top: 10px;
    }
    
    .callback-form input[type="tel"] {
      width: 100%;
      padding: 14px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
    
    .callback-form input[type="tel"]:focus {
      border-color: #f59e0b;
      outline: none;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    }
    
    .btn-request-call {
      background: linear-gradient(135deg, #28a745, #20c997);
      color: white;
      border: none;
      padding: 14px 30px;
      border-radius: 8px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    
    .btn-request-call:hover {
      background: linear-gradient(135deg, #20c997, #28a745);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }
    
    /* Features Section */
    .features-section {
      padding: 60px 0;
      background: white;
    }
    
    .features-section h2 {
      margin-bottom: 40px;
      color: #333;
      font-weight: 600;
    }
    
    .feature-item {
      text-align: center;
      margin-bottom: 30px;
      padding: 20px;
    }
    
    .feature-icon {
      font-size: 2.5rem;
      color: #f59e0b;
      margin-bottom: 15px;
    }
    
    .feature-item h4 {
      color: #333;
      font-size: 1.3rem;
      margin-bottom: 12px;
      font-weight: 600;
    }
    
    .feature-item p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    /* Success Modal */
    .success-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
    }
    
    .success-modal-content {
      background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
      margin: 10% auto;
      padding: 50px 40px;
      border-radius: 20px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
      overflow: hidden;
    }
    
    .success-modal-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #28a745, #20c997, #f59e0b);
    }
    
    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    
    .success-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #28a745, #20c997);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: successPulse 0.6s ease;
      box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    }
    
    @keyframes successPulse {
      0% {
        transform: scale(0);
        opacity: 0;
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    .success-icon {
      font-size: 4rem;
      color: white;
      animation: checkmarkDraw 0.4s ease 0.2s both;
    }
    
    @keyframes checkmarkDraw {
      from {
        transform: scale(0) rotate(-45deg);
      }
      to {
        transform: scale(1) rotate(0deg);
      }
    }
    
    .success-title {
      color: #28a745;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
      animation: fadeInUp 0.5s ease 0.3s both;
    }
    
    .success-message {
      color: #555;
      font-size: 1.15rem;
      margin-bottom: 10px;
      line-height: 1.6;
      animation: fadeInUp 0.5s ease 0.4s both;
    }
    
    .success-details {
      background: #fff7ed;
      border-left: 4px solid #f59e0b;
      padding: 15px 20px;
      margin: 20px 0;
      border-radius: 8px;
      text-align: left;
      animation: fadeInUp 0.5s ease 0.5s both;
    }
    
    .success-details p {
      margin: 8px 0;
      color: #444;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .success-details i {
      color: #f59e0b;
      width: 20px;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .btn-close-modal {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
      border: none;
      padding: 14px 35px;
      border-radius: 10px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
      animation: fadeInUp 0.5s ease 0.6s both;
    }
    
    .btn-close-modal:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }
    
    .btn-close-modal:active {
      transform: translateY(0);
    }

    /* Content Section Styling */
    .content-section {
      padding: 60px 0;
      background: white;
    }

    .content-section h2 {
      color: #f59e0b;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .content-section h3 {
      color: #f59e0b;
      font-size: 1.5rem;
      font-weight: 600;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .content-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }

    .content-section ul,
    .content-section ol {
      line-height: 2.2;
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 25px;
    }

    .content-section ul li,
    .content-section ol li {
      margin-bottom: 10px;
    }

    .info-box {
      background: linear-gradient(135deg, #fff7ed, #ffedd5);
      border-left: 5px solid #f59e0b;
      padding: 25px;
      border-radius: 10px;
      margin-top: 40px;
    }

    .info-box h4 {
      color: #f59e0b;
      margin-bottom: 15px;
      font-size: 1.3rem;
      font-weight: 600;
    }

    .info-box h4 i {
      margin-right: 10px;
    }

    .info-box p {
      margin-bottom: 10px;
      color: #555;
      font-size: 1rem;
    }

    .info-box a {
      color: #f59e0b;
      font-weight: 600;
      text-decoration: none;
    }

    .info-box a:hover {
      text-decoration: underline;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      #subheader {
        min-height: 220px;
        padding: 40px 15px;
      }
      
      #subheader h1 {
        font-size: 1.8rem;
      }
      
      #subheader .lead {
        font-size: 0.95rem;
      }
      
      .contact-options {
        padding: 30px 0;
      }
      
      .contact-card {
        padding: 25px 20px;
        margin-bottom: 20px;
      }
      
      .phone-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }
      
      .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
      }
      
      .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
      }
      
      .phone-number {
        font-size: 1.4rem;
        padding: 12px 20px;
        margin: 12px 0;
      }
      
      .callback-form {
        padding: 20px;
      }
      
      .callback-form input[type="tel"] {
        padding: 12px;
        font-size: 0.95rem;
      }
      
      .btn-request-call {
        padding: 12px 25px;
        font-size: 0.95rem;
      }
      
      .features-section {
        padding: 40px 0;
      }
      
      .features-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
      }
      
      .feature-item {
        padding: 15px;
        margin-bottom: 25px;
      }
      
      .feature-icon {
        font-size: 2rem;
      }
      
      .feature-item h4 {
        font-size: 1.15rem;
      }
      
      .feature-item p {
        font-size: 0.9rem;
      }

      .content-section {
        padding: 40px 0;
      }

      .content-section h2 {
        font-size: 1.6rem;
      }

      .content-section h3 {
        font-size: 1.3rem;
      }

      .content-section p {
        font-size: 1rem;
      }

      .content-section ul,
      .content-section ol {
        font-size: 0.95rem;
      }

      .info-box {
        padding: 20px;
      }

      .info-box h4 {
        font-size: 1.15rem;
      }
      
      .success-modal-content {
        padding: 35px 25px;
        margin: 20% auto;
        max-width: 95%;
      }
      
      .success-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
      }
      
      .success-icon {
        font-size: 3rem;
      }
      
      .success-title {
        font-size: 1.6rem;
      }
      
      .success-message {
        font-size: 1rem;
      }
      
      .success-details {
        padding: 12px 15px;
        margin: 15px 0;
      }
      
      .success-details p {
        font-size: 0.85rem;
      }
      
      .btn-close-modal {
        padding: 12px 25px;
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 480px) {
      .phone-number {
        font-size: 1.2rem;
        padding: 10px 18px;
      }
      
      .success-modal-content {
        padding: 30px 20px;
      }
      
      .success-icon-wrapper {
        width: 70px;
        height: 70px;
      }
      
      .success-icon {
        font-size: 2.5rem;
      }

      .content-section h2 {
        font-size: 1.4rem;
      }

      .content-section h3 {
        font-size: 1.2rem;
      }
    }
  

/* ========== EXTRACTED STYLES ========== */


/* ========== HEADER STYLES - DESKTOP & MOBILE ========== */

/* Скрыть topbar на мобильных */
@media (max-width: 991px) {
    #topbar {
        display: none !important;
    }
}

/* ========== МОБИЛЬНЫЕ УСТРОЙСТВА ========== */
@media (max-width: 991px) {
    /* Тёмный фон header на мобильных */
    header {
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%) !important;
    }
    
    /* На мобильных показываем светлый логотип */
    .logo-1 {
        display: block !important;
    }
    .logo-2 {
        display: none !important;
    }
    
    /* ========== БЕЛЫЙ ТЕКСТ ВЕЗДЕ НА МОБИЛЬНЫХ ========== */
    
    /* Закрытое меню */
    header #mainmenu a,
    header #mainmenu li a,
    #mainmenu a,
    #mainmenu li a {
        color: #ffffff !important;
    }
    
    #mainmenu a:hover {
        color: #f59e0b !important;
    }
    
    /* ========== ОТКРЫТОЕ БУРГЕР-МЕНЮ - МАКСИМАЛЬНАЯ АГРЕССИЯ ========== */
    
    /* Тёмный фон */
    #de-sidebar,
    .de-menu-profile,
    body.de-menu-open #de-sidebar,
    body.de-menu-open .de-menu-profile {
        background: rgba(0, 0, 0, 0.98) !important;
    }
    
    /* БЕЛЫЙ ТЕКСТ - ВСЕ ВОЗМОЖНЫЕ ВАРИАНТЫ */
    #de-sidebar a,
    #de-sidebar li a,
    #de-sidebar #mainmenu a,
    #de-sidebar #mainmenu li a,
    #de-sidebar #mainmenu > li > a,
    #de-sidebar nav a,
    #de-sidebar nav li a,
    .de-menu-profile a,
    .de-menu-profile li a,
    .de-menu-profile #mainmenu a,
    .de-menu-profile #mainmenu li a,
    body.de-menu-open a,
    body.de-menu-open li a,
    body.de-menu-open #mainmenu a,
    body.de-menu-open #mainmenu li a,
    body.de-menu-open nav a,
    body.de-menu-open nav li a {
        color: #ffffff !important;
        text-shadow: none !important;
    }
    
    /* Hover состояние */
    #de-sidebar a:hover,
    #de-sidebar li a:hover,
    #de-sidebar #mainmenu a:hover,
    .de-menu-profile a:hover,
    .de-menu-profile #mainmenu a:hover,
    body.de-menu-open a:hover,
    body.de-menu-open #mainmenu a:hover {
        color: #f59e0b !important;
    }
    
    /* Submenu */
    #de-sidebar ul li a,
    #de-sidebar #mainmenu ul li a,
    .de-menu-profile ul li a,
    .de-menu-profile #mainmenu ul li a,
    body.de-menu-open ul li a,
    body.de-menu-open #mainmenu ul li a {
        color: #ffffff !important;
    }
    
    /* Span элементы внутри ссылок */
    #de-sidebar a span,
    #de-sidebar li span,
    #de-sidebar #mainmenu span,
    .de-menu-profile a span,
    .de-menu-profile li span,
    body.de-menu-open a span,
    body.de-menu-open li span,
    body.de-menu-open #mainmenu span {
        color: #ffffff !important;
    }
    
    /* Иконка закрытия */
    .de-click-menu-close,
    #de-sidebar .de-click-menu-close,
    .de-menu-profile .de-click-menu-close {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Иконка бургера */
    #menu-btn span {
        background: #ffffff !important;
    }
    
    /* Social icons */
    #de-sidebar .social-icons a,
    .de-menu-profile .social-icons a {
        color: #ffffff !important;
    }
    
    /* Границы */
    #de-sidebar li,
    #de-sidebar #mainmenu li,
    .de-menu-profile li,
    .de-menu-profile #mainmenu li,
    body.de-menu-open li,
    body.de-menu-open #mainmenu li {
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
}

/* ========== ДЕСКТОП ========== */
@media (min-width: 992px) {
    /* Прозрачный header */
    header.transparent {
        background: transparent;
    }
    
    /* Когда прозрачный - белый текст */
    header.transparent #mainmenu a {
        color: #ffffff !important;
    }
    
    header.transparent .logo-1 {
        display: block !important;
    }
    header.transparent .logo-2 {
        display: none !important;
    }
    
    /* Header с тёмным фоном при скролле */
    header.scroll-light {
        background: rgba(0, 0, 0, 0.92) !important;
        backdrop-filter: blur(8px);
        transition: background 0.3s ease;
    }
    
    /* Когда фон тёмный - белый текст */
    header.scroll-light #mainmenu a {
        color: #ffffff !important;
        transition: color 0.3s ease;
    }
    
    header.scroll-light #mainmenu a:hover {
        color: #f59e0b !important;
    }
    
    header.scroll-light .logo-1 {
        display: block !important;
    }
    header.scroll-light .logo-2 {
        display: none !important;
    }
}

/* ========== ОБЩИЕ СТИЛИ ========== */

/* Лёгкая тень для логотипа */
#logo img {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
    transition: filter 0.3s ease;
}

/* Улучшаем читаемость текста */
#mainmenu a {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ========== МАКСИМАЛЬНЫЙ ПРИОРИТЕТ - ТОЛЬКО МОБИЛЬНЫЕ ========== */
@media (max-width: 991px) {
    header a:not(#logo a):not(.lang-picker-wrapper a):not(.call-now-btn a),
    header li:not(#logo li):not(.lang-picker-wrapper li),
    #mainmenu a,
    #mainmenu li,
    #de-sidebar a,
    #de-sidebar li,
    .de-menu-profile a,
    .de-menu-profile li,
    nav a,
    nav li {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

}
/* ========== PREMIUM ȘOFER TREAZ SECTION ========== */

/* Hero Section */
.sofer-treaz-hero {
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.sofer-treaz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sofer-treaz-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #031B4E;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #031B4E 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sofer-treaz-hero .subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Benefits Grid - 3 Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 60px 0 80px;
    padding: 0 20px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(245, 158, 11, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(245, 158, 11, 0.25),
        0 0 0 1px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    transition: all 0.5s ease;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.3;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #031B4E;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #f59e0b;
}

.benefit-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Service Description */
.service-description {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 30px;
    padding: 70px 50px;
    margin: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-description::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.service-description h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #031B4E;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.service-description .description-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: #ffffff;
}

.why-choose-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #031B4E;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.why-choose-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 10px;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 20px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
    border-left-width: 8px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #031B4E;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #031B4E 0%, #1e3a8a 100%);
    padding: 80px 20px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.how-it-works h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.step-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 6px solid #f59e0b;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 20px;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #92400e;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #78350f;
    line-height: 1.7;
}

.info-item strong {
    color: #92400e;
    font-weight: 700;
    min-width: 120px;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sofer-treaz-hero h1 {
        font-size: 2.5rem;
    }
    
    .sofer-treaz-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 40px 25px;
    }
    
    .service-description {
        padding: 50px 30px;
        margin: 60px 15px 40px;
    }
    
    .service-description h2 {
        font-size: 2rem;
    }
    
    .why-choose-section h2,
    .how-it-works h2 {
        font-size: 2.2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-box {
        padding: 30px 25px;
        margin: 40px 15px;
    }
    
    .info-box h3 {
        font-size: 1.4rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
    
    .info-item strong {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .sofer-treaz-hero {
        padding: 60px 0 40px;
    }
    
    .sofer-treaz-hero h1 {
        font-size: 2rem;
    }
    
    .sofer-treaz-hero .subtitle {
        font-size: 1rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .service-description h2 {
        font-size: 1.7rem;
    }
    
    .service-description .description-text {
        font-size: 1rem;
    }
    
    .why-choose-section,
    .how-it-works {
        padding: 60px 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .step-card h4 {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.benefit-card,
.feature-item,
.step-card {
    animation: fadeInUp 0.6s ease backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }
.step-card:nth-child(4) { animation-delay: 0.8s; }
