/* =============================================
   Bitcom - Main Stylesheet
   Unified styles for all pages
   ============================================= */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #333;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === TICKER === */
.ticker {
    background: linear-gradient(90deg, #0b3c2f 0%, #0b3c2f 50%, #0b3c2f 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
}

.ticker-pair {
    font-weight: 500;
}

.ticker-rate {
    color: rgba(255, 255, 255, 0.7);
}

.ticker-change {
    font-size: 12px;
}

.ticker-change.up { color: #22c55e; }
.ticker-change.down { color: #ef4444; }

/* === HEADER === */
#site-header {
    position: relative;
    z-index: 9999;
    margin-bottom: 0;
}

#site-header + .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-header {
    background: #fff;
    padding: 15px 0;
    position: relative;
    z-index: 9999;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.logo svg {
    width: 28px;
    height: 28px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-wrapper-vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: #6C757D;
    letter-spacing: 0.3px;
}

.logo-icon {
    width: auto;
    height: 36px;
    max-width: 160px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 400;
    color: #64748B;
    margin-top: -2px;
    letter-spacing: 0.3px;
}

/* Header Nav (desktop) */
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 40px;
}

.header-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav-link:hover {
    color: #2563eb;
}

/* Главная: хедер как на макете (темно-серые ссылки, синяя кнопка) */
body:has(.landing-new) .site-header .header-nav-link { color: #475569; }
body:has(.landing-new) .site-header .btn-nav-primary {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
}
body:has(.landing-new) .site-header .btn-nav-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}

/* Header Right (lang + auth) */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.lang-btn:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.06);
}

.lang-btn.active {
    color: #000;
    background: rgba(0, 0, 0, 0.08);
}

.nav-auth {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow: visible;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: transparent;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: #ccc;
}

.btn-nav-primary {
    background: #2563EB;
    border-color: #2563EB;
    color: #fff;
    gap: 6px;
}

.btn-nav-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}

.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav-outline:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #475569;
}

.btn-nav-outline svg {
    width: 16px;
    height: 16px;
}


/* Auth Dropdown */
.auth-dropdown {
    position: relative;
    overflow: visible;
}

.auth-trigger {
    gap: 8px;
}

.auth-arrow {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.2s;
}

.auth-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 10000;
    overflow: hidden;
}

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

.auth-menu a {
    display: block;
    padding: 12px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.auth-menu a:hover {
    background: #f5f5f5;
    color: #000 !important;
}

.auth-menu a:first-child {
    border-bottom: 1px solid #eee;
}

/* === LANDING MOBILE (whitebird-style) === */
.header-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    flex-shrink: 0;
}
.header-menu-btn svg { flex-shrink: 0; }

.header-mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.lang-dropdown-mobile {
    position: relative;
}
.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
}
.lang-dropdown-arrow { font-size: 10px; opacity: 0.7; color: #666; }
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s;
    z-index: 10001;
    overflow: hidden;
}
.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #333 !important;
    font-size: 14px;
    transition: background 0.2s;
}
.lang-dropdown-item:hover { background: #f5f5f5; color: #000 !important; }

.btn-header-in {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
}

.landing-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
body.landing-drawer-open .landing-drawer-overlay {
    opacity: 1;
    visibility: visible;
}
body.landing-drawer-open { overflow: hidden; }

.landing-drawer-panel {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
body.landing-drawer-open .landing-drawer-panel {
    transform: translateX(0);
}

.landing-drawer-auth {
    display: flex;
    gap: 12px;
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
}
.btn-drawer-outline {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #0b3c2f;
    border-radius: 8px;
    color: #000;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-drawer-outline:hover { background: #f0f4f8; }
.btn-drawer-primary {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    background: #0b3c2f;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}
.btn-drawer-primary:hover { background: #0b3c2f; }
.btn-drawer-full { flex: none; width: 100%; }

.landing-drawer-cabinet { padding: 24px 20px; border-bottom: 1px solid #eee; }

.landing-drawer-nav {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.landing-drawer-link {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
.landing-drawer-link:hover { background: #f5f5f5; color: #000; }

/* === BREADCRUMBS === */
.breadcrumbs-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 32px;
}

.breadcrumbs-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-home:hover {
    color: #000;
}

.breadcrumb-home svg {
    opacity: 0.7;
}

.breadcrumb-home:hover svg {
    opacity: 1;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #999;
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.breadcrumb-current {
    color: #000;
    font-weight: 500;
}

/* === FOOTER (темно-синий, на всю ширину экрана) === */
.site-footer {
    background: #0f172a;
    padding: 50px 20px 30px;
    color: #fff;
    margin-top: auto;
    overflow-x: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 0;
}
.footer-flag { margin-left: 6px; }

.footer-content-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-section.footer-contacts p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-section.footer-contacts p:last-child {
    margin-bottom: 0;
}

.footer-address,
.footer-phone,
.footer-email {
    padding-left: 24px;
    position: relative;
}

.footer-address::before { content: ''; position: absolute; left: 0; top: 2px; width: 14px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E") center/contain no-repeat; }
.footer-phone::before { content: ''; position: absolute; left: 0; top: 2px; width: 14px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.footer-email::before { content: ''; position: absolute; left: 0; top: 2px; width: 14px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E") center/contain no-repeat; }

.footer-section.footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section.footer-contacts a:hover {
    color: #00D4FF;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer-designed {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #00D4FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00D4FF;
}

/* === MAIN CONTENT === */
.main-content {
    flex: 1;
    padding: 40px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

.container-wide {
    max-width: 1200px;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 35px;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #444;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #444;
}

.last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* === HIGHLIGHT BOXES === */
.highlight {
    background: #f0f9ff;
    border-left: 4px solid #00D4FF;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight p {
    margin: 0;
}

.highlight-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.highlight-orange {
    background: #fff8f0;
    border-left-color: #4cfc9c;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-size: 16px;
}

/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #000;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #0b3c2f;
    border-radius: 25px;
    background: transparent;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0b3c2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.35);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 50%, #0b3c2f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* === CARDS === */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* === VERIFICATION LEVELS === */
.verification-levels {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.level-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    background: #fafafa;
}

.level-card h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.level-badge {
    background: #4cfc9c;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.level-badge.basic { background: #22c55e; }
.level-badge.advanced { background: #3b82f6; }
.level-badge.premium { background: #8b5cf6; }

/* === LICENSE/COMPLIANCE ITEMS === */
.license-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.license-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.license-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.license-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* === GRID LAYOUTS === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* === STATS === */
.stats {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00D4FF;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* === CONTACT CARDS === */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0b3c2f, #0b3c2f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #00D4FF;
}

/* === INFO LIST === */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.info-list li span {
    color: #22c55e;
    font-size: 18px;
}

/* === HOURS BLOCK === */
.hours-block {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.hours-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hours-item .day {
    font-weight: 500;
}

.hours-item .time {
    color: #00D4FF;
    font-weight: 600;
}

/* === VALUE CARDS === */
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0b3c2f, #0b3c2f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .header-container {
        padding: 0 15px;
        gap: 12px;
    }

    .header-nav {
        display: none;
    }

    .header-menu-btn {
        display: flex;
        order: -1;
    }

    .header-right {
        display: none !important;
    }

    .header-mobile-right {
        display: flex;
    }

    .logo {
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
    }
    .logo svg { color: #000; }

    .landing-drawer-overlay { display: block; }
    .landing-drawer-panel { display: flex; }

    .btn-nav {
        padding: 8px 12px;
        font-size: 12px;
    }

    .auth-arrow {
        display: none;
    }

    .auth-trigger {
        white-space: nowrap;
    }

    .breadcrumbs {
        padding: 10px 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-home span {
        display: none;
    }

    .main-content {
        padding: 20px 15px;
    }

    .container {
        padding: 25px 20px;
        border-radius: 12px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    table {
        font-size: 13px;
    }

    th, td {
        padding: 8px 10px;
    }

    .footer-content-full {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-section.footer-contacts {
        grid-column: 1 / -1;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }

    .grid-2, .grid-3, .license-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .btn-nav {
        padding: 6px 10px;
        font-size: 11px;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 32px;
    }

    .value-icon, .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-content-full {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section.footer-contacts {
        grid-column: 1;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        padding-left: 0;
        text-align: center;
    }

    .footer-address::before,
    .footer-phone::before,
    .footer-email::before {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* === FAQ SECTION === */
.faq-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #000;
}

.faq-question .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 15px;
    color: #555;
    margin-top: 15px;
    display: none;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

/* === ACTION CARDS === */
.action-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0b3c2f, #0b3c2f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.action-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* === CONTACT FORM === */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .hint {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.form-group .error-text {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.form-group .error-text.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0b3c2f, #0b3c2f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.submit-btn.btn-orange {
    background: #2563EB;
    color: #fff;
}

.submit-btn.btn-orange:hover {
    background: #1d4ed8;
    color: #fff;
}

/* === CONTACT INFO BLOCK === */
.contact-info {
    background: linear-gradient(135deg, #0b3c2f 0%, #0b3c2f 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.contact-info h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

.info-content a {
    color: #00D4FF;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.response-time {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.response-time h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #000;
}

.response-time p {
    font-size: 13px;
    color: #555;
}

/* === ALERTS === */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

.alert.show {
    display: block;
}

.success-message {
    display: none;
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #15803d;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* === AUTH CARD === */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 440px;
}

.auth-card h1 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    text-align: center;
}

.auth-card .subtitle {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 32px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* === MISSION BLOCK === */
.mission-block {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mission-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
}

.mission-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* === LICENSES BLOCK === */
.licenses {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.licenses h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0;
}

/* === SECTION === */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.section-text {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* === COMPANY DETAILS === */
.company-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.company-detail-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.company-detail-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === ADDITIONAL RESPONSIVE === */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-section, .contact-form, .contact-info {
        padding: 20px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .mission-block {
        padding: 25px;
    }

    .licenses {
        padding: 25px;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-card h1 {
        font-size: 24px;
    }
}
