 .profile-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-translate-container {
    display: inline-block;
    margin-left: 10px;
    min-width: 150px;
    z-index: 1000;
}

.goog-te-combo {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

/* Полное скрытие Google Translate элементов */
.goog-te-banner-frame {
    display: none !important;
}
.goog-te-gadget {
    display: inline-block !important;
}
.goog-te-menu-value {
    display: none !important;
}

/* Обновленные стили для кнопки меню */
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn .fa-bars,
.mobile-menu-btn .fa-times {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
}

.mobile-menu-btn .fa-times {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-menu-btn.active .fa-bars {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-menu-btn.active .fa-times {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Скрываем кнопку при открытом меню */
.mobile-menu-btn.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Мобильное меню - СПРАВА */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

/* Затемнение фона */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    z-index: 2;
    padding-right: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: #333;
    background: #f5f5f5;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}



.mobile-menu-item:hover {
    background: #f8f8f8;
    transform: translateX(2px);
}

.mobile-menu-item i {
    width: 24px;
    text-align: center;
    color: #555;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.user-status-block {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.user-status-icon.company {
    background: #4a6baf;
}

.user-status-icon.client {
    background: #5cb85c;
}

.user-status-icon.partner {
    background: #f0ad4e;
}

.user-status-text {
    font-size: 14px;
    font-weight: 600;
}

.user-status-label {
    color: #777;
    font-size: 12px;
}

.company-name-mobile {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.mobile-translate {
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Фикс для мобильных устройств */
@media (max-width: 768px) {
    .user-status {
        font-size: 12px;
        display: none;
    }

    .user-status.company {
        display: none;
    }

    .user-status.client {
        display: none;
    }

    .user-status.partner {
        display: none;
    }

    .logo {
        max-width: 250px;
        padding-top: 6px;
    }

    .google-translate-container {
        display: none;
    }

    .profile-actions {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .header-tools {
        gap: 10px;
    }
}

/* Дополнительные стили для фикса Google Translate */
.skiptranslate iframe {
    display: none !important;
}
.goog-te-combo {
    margin: 0 !important;
}

/* Обновленная цветовая схема для строительной темы */
.landing-root {
    --landing-primary-color: #133745;
    --landing-secondary-color: #2c5e7b;
    --landing-dark-color: #333333;
    --landing-light-color: #f8f9fa;
    --landing-accent-color: #284667;
    --landing-text-color: #333;
    --landing-text-light: #6c757d;
}

.landing-header {
    background: white;
    color: var(--landing-dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.landing-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-logo {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--landing-primary-color);
}

.landing-logo i {
    margin-right: 10px;
    color: var(--landing-accent-color);
    font-size: 1.5rem;
}

.landing-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav ul li {
    margin-left: 1.5rem;
}

.landing-nav ul li a {
    color: var(--landing-dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    font-size: 14px;
}

.landing-nav ul li a:hover {
    color: var(--landing-primary-color);
    border-bottom: 2px solid var(--landing-accent-color);
}

/* Hero Section */
.landing-hero {
    padding: 1rem 0;
    text-align: center;
    color: #000;
}

.landing-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.landing-hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.landing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.landing-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.landing-btn-primary {
    background-color: var(--landing-accent-color);
    color: white;
}

.landing-btn-primary:hover {
    background-color: #00a4ff;
    transform: translateY(-3px);
}

.landing-btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #000;
}

/* About Section */
.landing-section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.landing-section-title h2 {
    font-size: 24px;
    color: var(--landing-dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.landing-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--landing-accent-color);
    border-radius: 2px;
}

.landing-about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 0 20px;
}

.landing-about-text {
    flex: 1 1 400px;
}

.landing-about-text h3 {
    font-size: 20px;
    margin-bottom: 1.5rem;
    color: var(--landing-primary-color);
    line-height: 1.3;
}

.landing-about-text p {
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.8;
    color: var(--landing-text-light);
}

.landing-about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.landing-about-features li {
    margin-bottom: 1rem;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.landing-about-features i {
    margin-right: 10px;
    color: var(--landing-primary-color);
    font-size: 1.2rem;
}

.landing-about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.landing-about-image:hover {
    transform: translateY(-5px);
}

.landing-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.landing-about-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.landing-features {
    background-color: var(--landing-light-color);
    padding: 5rem 0;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.landing-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(58, 125, 68, 0.2);
}

.landing-feature-icon {
    font-size: 2.8rem;
    color: var(--landing-primary-color);
    margin-bottom: 1.8rem;
    transition: transform 0.3s ease;
}

.landing-feature-card:hover .landing-feature-icon {
    transform: scale(1.1);
}

.landing-feature-card h3 {
    font-size: 15px;
    margin-bottom: 1.2rem;
    color: var(--landing-dark-color);
}

.landing-feature-card p {
    color: var(--landing-text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Action Section */
.landing-action {
    background: linear-gradient(135deg, #7dccff, #16406d);
    border-radius: 30px;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.landing-action::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.landing-action::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.landing-action-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.landing-action h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.landing-action p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background-color: #273c51;
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    margin-top: 20px;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--landing-primary-color), var(--landing-accent-color));
}

.landing-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 0.8rem;
    color: white;
}

.landing-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--landing-accent-color);
    border-radius: 2px;
}

.landing-footer-column p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 13px;
}

.landing-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-column ul li {
    margin-bottom: 0;
}

.landing-footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
    font-size: 13px;
}

.landing-footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.landing-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.landing-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.landing-social-links a:hover {
    background-color: var(--landing-accent-color);
    transform: translateY(-3px) scale(1.1);
}

.landing-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.95rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-about-image {
        flex: 1 1 100%;
    }

    .landing-header-content {
        text-align: center;
        padding: 0 0;
    }
    .landing-header {
        display: none;
    }

    .landing-logo {
        margin-bottom: 1rem;
        justify-content: center;
    }

    .landing-nav ul {
        margin-top: 0rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-nav ul li {
        margin: 0.5rem 0.8rem;
    }

    .landing-hero {
        padding: 1rem 0;
    }

    .landing-hero h1 {
        font-size: 2.2rem;
    }

    .landing-hero p {
        font-size: 1.1rem;
    }

    .landing-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .landing-btn {
        width: 100%;
        max-width: 280px;
    }

    .landing-section {
        padding: 3rem 0;
    }

    .landing-section-title h2 {
        font-size: 2rem;
    }

    .landing-about-content {
        flex-direction: column;
    }

    .landing-about-text h3 {
        font-size: 20px;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .landing-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .landing-footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .landing-social-links {
        justify-content: center;
    }

    .landing-footer-column ul li a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .landing-hero h1 {
        font-size: 1.6rem;
    }

    .landing-section-title h2 {
        font-size: 1.5rem;
    }

    .landing-action h2 {
        font-size: 2rem;
    }
}

.vvv1 {
    border-radius: 15px;
    padding: 20px 20px 20px 20px;
    margin: 0px 0px 30px 0px;
    box-shadow: 0px 0px 7px -2px rgb(157 157 157);
}

/* Блок баланса пользователя */
.user-balance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 23px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  border:1px solid #4a536342;
}

.user-balance i {
    font-size: 14px;
    color: #a8cc17;
}

.user-balance span {
    white-space: nowrap;
}

.user-balance-mobile {
    font-size: 13px;
    color: #555;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Статус пользователя */
.user-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.user-status i {
    font-size: 13px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .user-balance {
        padding: 6px 12px;
        font-size: 13px;
        gap: 6px;
    }

    .user-status {
        padding: 5px 10px;
        font-size: 13px;
    }

    .header-tools > div {
        gap: 10px !important;
    }
}

/* Стили для иконки калькулятора */
.calculator-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #395665;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.calculator-link:hover {
    background-color: #273c51;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calculator-link i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .calculator-link {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}


/* ===== FIX: Мобильная адаптация таб-панели ===== */
@media (max-width: 768px) {
    .dt-tabs-wrapper {
        padding: 0 12px;
        width: 100%;
        margin-left: 0;
        left: 0;
        right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .dt-tabs-wrapper::-webkit-scrollbar {
        height: 3px;
    }

    .dt-tabs-wrapper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }

    .dt-tabs-wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .dt-tabs-inner {
        min-width: max-content;
        padding: 8px 0;
        width: auto;
        gap: 12px;
    }

    .dt-tabs-logo {
        font-size: 12px;
        flex-shrink: 0;
    }

    .dt-tabs-nav {
        padding: 4px;
        gap: 4px;
        flex-shrink: 0;
    }

    .dt-tab-btn {
        padding: 6px 14px;
        font-size: 11px;
        white-space: nowrap;
    }

    .dt-tabs-auth {
        flex-shrink: 0;
    }

    .dt-tabs-auth a {
        padding: 5px 10px;
        font-size: 10px;
        white-space: nowrap;
    }
}

/* Альтернативное решение — вертикальная упаковка на очень узких экранах */
@media (max-width: 500px) {
    .dt-tabs-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        min-width: auto;
    }

    .dt-tabs-logo {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .dt-tabs-nav {
        order: 1;
    }

    .dt-tabs-auth {
        order: 2;
    }
}

/* Для экранов от 500px до 768px — горизонтальный скролл */
@media (min-width: 500px) and (max-width: 768px) {
    .dt-tabs-inner {
        min-width: max-content;
        flex-wrap: nowrap;
    }
}
