:root {
    --navy: #1B2A47;
    --navy-light: #2B4570;
    --red: #D90429;
    --green: #198754;
    --bg-light: #FFFFFF;
    --text-main: #1A1D20;
    --text-muted: #6C757D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
a { text-decoration: none; color: inherit; }

.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(27, 42, 71, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.header-brand {
    display: flex; align-items: center; gap: 8px;
    color: white; font-weight: 800; font-size: 26px; letter-spacing: -1px;
}
.brand-asterisk { color: var(--red); }
.brand-desc {
    font-size: 10px; text-transform: uppercase; color: rgba(255,255,255,0.7);
    font-weight: 600; letter-spacing: 0.5px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 8px; margin-left: 2px; line-height: 1.2;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.header-nav a:hover { color: white; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-call-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--red);
    color: white; padding: 10px 20px; border-radius: 100px;
    font-weight: 600; font-size: 14px;
    transition: all 0.2s;
}
.header-call-btn:hover { background: #b0001f; transform: translateY(-2px); }

.hamburger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px; background: transparent; border: none; cursor: pointer;
}
.hamburger span {
    display: block; width: 100%; height: 2px; background: white; border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


.hero-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    background: #FFFFFF;
    padding: 110px 40px 90px;
}
.hero-left-content {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
}

.mobile-top-title { display: none; }

.brand-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
}
.brand-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.text-content { margin-bottom: 50px; }
.badge {
    display: inline-block;
    color: var(--red);
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.text-content h1 {
    font-size: 48px; line-height: 1.15; color: var(--navy);
    margin-bottom: 24px;
}
.text-content h1 .highlight { color: var(--red); }
.lead { font-size: 18px; color: var(--text-muted); line-height: 1.6; }

.hero-features {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.4;
}
.hero-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.hero-features li strong {
    color: var(--navy);
}

.messengers-block { margin-top: auto; }
.messengers-block > span { display: block; font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--navy); }
.messengers-grid { display: flex; gap: 16px; }
.ms-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 600;
    transition: all 0.2s;
}
.ms-btn.tg { background: #E3F2FD; color: #1976D2; }
.ms-btn.tg:hover { background: #BBDEFB; transform: translateY(-2px); }
.ms-btn.max { background: #F8F9FA; color: var(--text-main); border: 1px solid #E9ECEF; }
.ms-btn.max:hover { background: #F1F3F5; transform: translateY(-2px); }


.hero-right {
    flex: 1;
    position: relative;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 90px;
}
.bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 901px) {
    .hero-right::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 180px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 60%, #FFFFFF 100%);
        pointer-events: none;
        z-index: 1;
    }
}

.smartphone-mockup {
    position: relative;
    z-index: 2;
    width: 340px;
    height: 680px;
    background: #111;
    border-radius: 50px;
    padding: 14px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
    transform: translateX(-40px);
}

.smartphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1A1D20;
    position: relative;
}
.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #111;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
.status-icons { display: flex; gap: 6px; }

.dialer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}
.avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.caller-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.caller-number {
    font-size: 80px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 12px;
}
.caller-desc {
    font-size: 14px;
    color: #8D99A5;
}

.dialer-actions {
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.round-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #34C759;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(52, 199, 89, 0.3);
    animation: dialer-pulse 2s infinite;
    transition: transform 0.2s, background 0.2s;
}
.round-call-btn:hover { background: #2EAF4E; transform: scale(1.05); }
.round-call-btn:active { transform: scale(0.95); }

.btn-label {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

@keyframes dialer-pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(52, 199, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.protocol-section {
    background: #FFFFFF;
    padding: 120px 0 100px;
}
.protocol-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-header h2 .highlight,
.cabinet-header h2 .highlight {
    color: var(--red);
}
.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.tab-btn .tab-icon {
    flex-shrink: 0;
    stroke: var(--navy-light);
    transition: transform 0.25s ease, stroke 0.25s ease;
}

.tab-btn:hover {
    background: #FFFFFF;
    border-color: rgba(27, 42, 71, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 42, 71, 0.06);
}

.tab-btn:hover .tab-icon {
    transform: scale(1.1);
    stroke: var(--navy);
}

.tab-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(27, 42, 71, 0.22);
    transform: translateY(-1px);
}

.tab-btn.active .tab-icon {
    stroke: #FFFFFF;
    transform: scale(1.05);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.step-card.highlight {
    border-color: rgba(217, 4, 41, 0.2);
    background: #FFF9F9;
}

.step-bg-num {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 160px;
    font-weight: 900;
    color: #F1F3F5;
    z-index: -1;
    line-height: 1;
    letter-spacing: -5px;
    user-select: none;
}
.step-card.highlight .step-bg-num {
    color: rgba(217, 4, 41, 0.05);
}

.step-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
}
.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.step-card p strong { color: var(--text-main); }
.step-card.highlight p strong { color: var(--red); }

.protocol-cta {
    margin-top: 60px;
    text-align: center;
    background: #F8F9FA;
    padding: 40px;
    border-radius: 24px;
}
.protocol-cta p {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}
.protocol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--green);
    color: white;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s;
    animation: btn-pulse 2s infinite;
}
.protocol-btn:hover { background: #146c43; transform: scale(1.02); }

.cabinet-section {
    background: #F8F9FA;
    padding: 100px 0;
}
.cabinet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.cabinet-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cabinet-subtitle {
    color: var(--blue, #0056b3);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.cabinet-header h2 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.cabinet-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.cabinet-grid {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.cabinet-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.col-left .feature-item {
    text-align: right;
    justify-content: flex-end;
}
.col-right .feature-item {
    text-align: left;
    justify-content: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--red);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.feature-text h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}
.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.col-center {
    display: flex;
    justify-content: center;
    position: relative;
}
.mockup-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(27, 42, 71, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.cabinet-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.bot-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration: none;
}
.bot-cta-btn.btn-tg {
    background: #0088cc;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}
.bot-cta-btn.btn-tg:hover { background: #0077b5; transform: translateY(-3px); }

.bot-cta-btn.btn-max {
    background: #FFFFFF;
    color: var(--navy);
    border: 2px solid #E9ECEF;
}
.bot-cta-btn.btn-max:hover { border-color: var(--navy); transform: translateY(-3px); }

.registry-section {
    background: #FFFFFF;
    padding: 100px 0;
}
.registry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.registry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.registry-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 20px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(27, 42, 71, 0.03);
    position: relative;
    scroll-margin-top: 100px;
}
.registry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(27, 42, 71, 0.08);
    border-color: rgba(27, 42, 71, 0.2);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}
.registry-card:hover .card-icon-badge {
    background: var(--navy);
    color: #FFFFFF;
    border-color: var(--navy);
}
.card-icon-badge.urgent {
    color: var(--red);
}
.registry-card:hover .card-icon-badge.urgent {
    background: var(--red);
    color: #FFFFFF;
    border-color: var(--red);
}

.card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 100px;
    background: #F1F4F9;
    color: var(--navy-light);
}
.card-tag.urgent {
    background: #FFF0F2;
    color: var(--red);
}
.card-tag.success {
    background: #E8F5E9;
    color: #2E7D32;
}
.card-tag.premium {
    background: #FFF8E1;
    color: #F57F17;
}

.registry-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.registry-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}
.card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.link-arrow {
    transition: transform 0.2s ease;
}
.registry-card:hover .card-link {
    color: var(--red);
}
.registry-card:hover .link-arrow {
    transform: translateX(5px);
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 32px; height: 32px;
    background: #F8F9FA;
    border: none; border-radius: 50%;
    font-size: 24px; color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: #E9ECEF; color: var(--text-main); }

.modal-title {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-right: 30px;
}
.modal-warning {
    background: #FFF0F2;
    border-left: 4px solid var(--red);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #A40019;
    margin-bottom: 24px;
    display: none;
}
.modal-list {
    list-style: none;
    margin-bottom: 30px;
}
.modal-list li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
}
.modal-list li::before {
    content: "🔹";
    position: absolute;
    left: 0; top: 0;
    font-size: 12px;
}

.modal-cta { display: flex; flex-direction: column; gap: 12px; }
.modal-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; border-radius: 12px;
    font-size: 15px; font-weight: 700; text-align: center;
    transition: all 0.2s;
}
.modal-btn.green {
    background: var(--green); color: white;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}
.modal-btn.green:hover { background: #146c43; transform: translateY(-2px); }
.modal-btn.gray {
    background: #F8F9FA; color: var(--navy); border: 2px solid #E9ECEF;
}
.modal-btn.gray:hover { border-color: var(--navy); }

.partners-section {
    background: #F8F9FA;
    padding: 100px 0;
}
.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.partner-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(27, 42, 71, 0.03);
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(27, 42, 71, 0.08);
    border-color: rgba(27, 42, 71, 0.2);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.partner-logo img {
    max-width: 220px;
    max-height: 100%;
    object-fit: contain;
}

.partner-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-light);
    margin-bottom: 8px;
}
.partner-text h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.partner-card:hover h4 {
    color: var(--red);
}
.partner-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.gost-banner {
    background: #FFFFFF;
    border: 1px solid rgba(27, 42, 71, 0.12);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 12px 32px rgba(27, 42, 71, 0.05);
    background-image: linear-gradient(135deg, #FFFFFF 0%, #FAFBFD 100%);
    position: relative;
}
.gost-logo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gost-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}
.gost-content {
    flex: 1;
}
.gost-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: #FFF0F2;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.gost-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}
.gost-content h3 {
    font-size: 22px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}
.gost-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section {
    background: #0A0D14;
    background-image: radial-gradient(circle at top right, rgba(27, 42, 71, 0.4) 0%, #0A0D14 50%);
    border-top: 3px solid var(--red);
    color: #F8F9FA;
    padding: 80px 0 40px;
    font-family: var(--font-main);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2.5fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-badge {
    background: #FFFFFF;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.footer-logo-badge img {
    height: 60px;
    display: block;
}
.footer-mission {
    font-size: 15px;
    line-height: 1.6;
    color: #ADB5BD;
    margin-bottom: 24px;
}
.footer-disclaimer {
    font-size: 12px;
    color: #495057;
    line-height: 1.4;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-nav-list a {
    color: #ADB5BD;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-nav-list a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.f-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}
.f-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}
.f-contact-card.highlight {
    border-color: rgba(217, 4, 41, 0.3);
    background: rgba(217, 4, 41, 0.05);
}
.f-icon {
    color: var(--text-muted);
    display: flex;
}
.f-contact-card.highlight .f-icon {
    color: var(--red);
}
.f-contact-card div {
    display: flex;
    flex-direction: column;
}
.f-contact-card strong {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.2;
}
.f-contact-card.highlight strong {
    color: var(--red);
    font-size: 18px;
}
.f-contact-card span {
    font-size: 12px;
    color: #6C757D;
    margin-top: 2px;
}

.footer-messengers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.f-btn-messenger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.2s ease;
}
.f-btn-messenger.tg {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
}
.f-btn-messenger.tg:hover { background: #0088cc; }

.f-btn-messenger.max {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.f-btn-messenger.max:hover { background: rgba(255, 255, 255, 0.15); }

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6C757D;
}
.legal-links {
    display: flex;
    gap: 24px;
}
.legal-links a {
    color: #6C757D;
    transition: color 0.2s;
}
.legal-links a:hover {
    color: #FFFFFF;
}
.developer {
    color: #6C757D;
}
.developer a {
    color: #6C757D;
    font-weight: 400;
    letter-spacing: normal;
    transition: color 0.2s;
}
.developer a:hover {
    color: #FFFFFF;
}

.nav-grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}
.nav-grid-btn svg {
    display: block;
    flex-shrink: 0;
}
.nav-grid-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.mega-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mega-menu-content {
    background: #0E131F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    width: 100%;
    max-width: 1200px;
    padding: 40px 50px;
    color: #FFFFFF;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-menu-overlay.active .mega-menu-content {
    transform: scale(1) translateY(0);
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 36px;
}
.mega-menu-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.mega-menu-title .asterisk { color: var(--red); }
.mega-menu-title span { color: #8D99A5; font-size: 14px; font-weight: 600; margin-left: 8px; }
.mega-menu-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ADB5BD;
    font-size: 28px;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.mega-menu-close:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1.2fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}
.mega-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.mega-col-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}
.col-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
}
.col-badge.urgent { background: rgba(217, 4, 41, 0.2); color: var(--red); border: 1px solid rgba(217, 4, 41, 0.4); }
.col-badge.info { background: rgba(0, 136, 204, 0.2); color: #29b6f6; border: 1px solid rgba(0, 136, 204, 0.4); }

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mega-links a {
    color: #ADB5BD;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}
.mega-links a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}
.highlight-col .mega-links a:hover { color: var(--red); }

.mega-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mega-footer-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mega-phone-btn.primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.mega-phone-btn.primary:hover { background: #b0001f; transform: translateY(-2px); }
.mega-phone-link {
    color: #ADB5BD;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.mega-phone-link:hover { color: white; }

.mega-footer-bots {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #6C757D;
}
.mega-bot-tag {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.mega-bot-tag.tg { background: rgba(0, 136, 204, 0.2); color: #29b6f6; }
.mega-bot-tag.max { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }
.mega-bot-tag:hover { opacity: 0.8; }
.mobile-drawer,
.mobile-drawer-overlay {
    display: none;
}


@media (max-width: 1100px) {
    .smartphone-mockup { transform: translateX(0); }
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        padding-top: 90px;
    }

    .header-container { padding: 0 20px; }

    .hamburger { display: flex; }

    .header-call-btn span { display: none; }
    .header-call-btn { padding: 10px; border-radius: 50%; }

    .hero-left,
    .hero-left-content,
    .hero-right {
        display: contents;
    }

    .bg-image {
        position: relative;
        order: 1;
        width: calc(100% - 40px);
        height: 250px;
        object-fit: cover;
        border-radius: 24px;
        margin: 0 auto 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .mobile-top-title {
        display: block;
        order: 2;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.4;
        margin: 0 20px 24px;
    }

    .smartphone-mockup .caller-title {
        display: none;
    }

    .brand-logo {
        order: 3;
        margin: 0 auto 30px;
        width: 100%;
        justify-content: center;
    }
    .brand-logo img {
        height: 130px;
    }

    .text-content {
        order: 4;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .text-content h1 { font-size: 32px; }

    .smartphone-mockup {
        order: 5;
        width: 100%;
        max-width: 320px;
        height: 560px;
        margin: 0 auto 40px;
        transform: translateY(0);
    }

    .messengers-block {
        order: 6;
        padding: 0 20px 60px;
    }

    .protocol-section { padding: 60px 0; }
    .protocol-container { padding: 0 20px; }
    .section-header h2 { font-size: 32px; }

    .tabs-nav {
        flex-direction: column;
        gap: 10px;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .protocol-cta { padding: 30px 20px; }
    .protocol-btn { width: 100%; padding: 18px; font-size: 16px; }

    .cabinet-section { padding: 60px 0; }
    .cabinet-container { padding: 0 20px; }
    .cabinet-header h2 { font-size: 28px; }

    .cabinet-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .col-left { order: 1; gap: 12px; }
    .col-center {
        order: 2;
        margin: 30px 0;
        display: flex;
        justify-content: center;
    }
    .col-right { order: 3; gap: 12px; }

    .mockup-img {
        margin: 0 auto;
        display: block;
        max-width: 260px;
    }

    .col-left .feature-item,
    .col-right .feature-item {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        align-items: center;
        text-align: left;
        background: #FFFFFF;
        padding: 16px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        cursor: pointer;
    }

    .feature-item .feature-icon {
        order: 1 !important;
        width: 44px !important;
        height: 44px !important;
    }
    .feature-item .feature-text {
        order: 2 !important;
    }

    .feature-text h3 {
        font-size: 15px;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .feature-text h3::after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--text-muted);
        border-bottom: 2px solid var(--text-muted);
        transform: rotate(45deg);
        transition: transform 0.3s ease, border-color 0.3s ease;
        margin-left: 12px;
        flex-shrink: 0;
    }

    .feature-text p {
        display: none;
        font-size: 14px;
        margin-top: 8px;
    }

    .feature-item.active {
        align-items: flex-start;
    }
    .feature-item.active .feature-text h3::after {
        transform: rotate(-135deg);
        border-color: var(--navy);
    }
    .feature-item.active .feature-text p {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .cabinet-actions { flex-direction: column; gap: 12px; margin-top: 30px; }
    .bot-cta-btn { width: 100%; padding: 16px; }

    .registry-section { padding: 60px 0; }
    .registry-container { padding: 0 20px; }
    .registry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .registry-card {
        padding: 24px;
        scroll-margin-top: 80px;
    }
    .card-top {
        margin-bottom: 14px;
    }

    .modal-content { padding: 30px 20px; border-radius: 20px; }

    .partners-section { padding: 60px 0; }
    .partners-container { padding: 0 20px; }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .partner-card { padding: 22px 20px; }
    .partner-logo { margin-bottom: 16px; height: 100px; }
    .partner-logo img { max-width: 190px; }

    .gost-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .gost-logo { margin: 0 auto; width: 70px; height: 70px; }
    .gost-tag { justify-content: center; margin: 0 auto 12px; }
    .gost-content h3 { font-size: 19px; }

    .footer-section { padding: 50px 0 30px; }
    .footer-container { padding: 0 20px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col { text-align: center; }
    .footer-logo-badge { margin: 0 auto 20px; }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .legal-links {
        flex-direction: column;
        gap: 12px;
    }

    .nav-grid-btn { display: none; }
    .header-nav { display: none !important; }

    .mobile-drawer-overlay {
        display: block;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        z-index: 2050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-drawer {
        display: flex;
        position: fixed;
        top: 0; right: -100%;
        width: 88%;
        max-width: 360px;
        height: 100%;
        background: #0E131F;
        color: #FFFFFF;
        z-index: 2100;
        flex-direction: column;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .mobile-drawer.active {
        right: 0;
    }

    .mobile-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .drawer-logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--red);
    }
    .drawer-logo span { color: #FFFFFF; font-size: 15px; margin-left: 4px; }
    .drawer-close-btn {
        background: none; border: none;
        color: #8D99A5; font-size: 32px;
        cursor: pointer; line-height: 1;
    }

    .mobile-drawer-body {
        padding: 24px;
        overflow-y: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .drawer-urgent-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--red);
        color: white;
        padding: 16px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

    .drawer-nav-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 16px;
    }
    .drawer-link.main-link {
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
        padding: 10px 0;
        text-decoration: none;
    }

    .drawer-accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 14px;
    }
    .drawer-accordion-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none; border: none;
        color: #ADB5BD;
        font-size: 15px;
        font-weight: 600;
        padding: 8px 0;
        cursor: pointer;
    }
    .drawer-accordion-btn svg {
        transition: transform 0.3s;
    }
    .drawer-accordion.active .drawer-accordion-btn svg {
        transform: rotate(180deg);
        stroke: #FFFFFF;
    }
    .drawer-sublinks {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0 6px 12px;
    }
    .drawer-accordion.active .drawer-sublinks {
        display: flex;
    }
    .drawer-sublinks a {
        color: #6C757D;
        font-size: 14px;
        text-decoration: none;
    }

    .drawer-bots {
        margin-top: auto;
        padding-top: 10px;
    }
    .drawer-label {
        font-size: 12px;
        color: #6C757D;
        display: block;
        margin-bottom: 10px;
    }
    .drawer-bots-grid {
        display: flex;
        gap: 10px;
    }
    .drawer-bot-btn {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
    }
    .drawer-bot-btn.tg { background: rgba(0, 136, 204, 0.2); color: #29b6f6; }
    .drawer-bot-btn.max { background: rgba(255, 255, 255, 0.08); color: white; }
}

@media (max-width: 480px) {
    .smartphone-mockup {
        max-width: 300px;
        height: 520px;
    }
    .caller-number { font-size: 65px; }
    .round-call-btn { width: 70px; height: 70px; }

    .messengers-grid { flex-direction: column; }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    background: #FFFFFF;
    border: 1px solid var(--border-color, #E9ECEF);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 12px 36px rgba(27, 42, 71, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

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

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-banner-icon {
    flex-shrink: 0;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cookie-banner-text a:hover {
    color: var(--red);
}

.cookie-banner-actions {
    flex-shrink: 0;
}

.cookie-banner-btn {
    background: var(--navy);
    color: #FFFFFF;
    border: none;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.cookie-banner-btn:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.cookie-banner-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 16px;
        left: 14px;
        right: 14px;
        max-width: none;
        padding: 14px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-banner-content {
        align-items: flex-start;
    }

    .cookie-banner-icon {
        margin-top: 2px;
    }

    .cookie-banner-text {
        font-size: 12px;
    }

    .cookie-banner-btn {
        width: 100%;
        padding: 11px;
    }
}

.error-page-wrapper {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background-color: #F8F9FA;
}

.error-card {
    max-width: 640px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 24px;
    padding: 50px 44px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(27, 42, 71, 0.06);
}

.error-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red);
    background: #FFF0F2;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.error-lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-lead strong {
    color: var(--navy);
    display: inline-block;
    margin-top: 6px;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-btn.primary {
    background: var(--red);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.25);
}

.error-btn.primary:hover {
    background: #b0001f;
    transform: translateY(-2px);
}

.error-btn.secondary {
    background: #F8F9FA;
    color: var(--navy);
    border: 2px solid #E9ECEF;
}

.error-btn.secondary:hover {
    border-color: var(--navy);
    background: #FFFFFF;
    transform: translateY(-2px);
}

.error-extra-contacts {
    border-top: 1px solid #E9ECEF;
    padding-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.error-extra-contacts a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
}

.error-extra-contacts a:hover {
    color: var(--red);
}

@media (max-width: 600px) {
    .error-page-wrapper {
        padding: 100px 16px 50px;
    }

    .error-card {
        padding: 36px 20px;
        border-radius: 18px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-btn {
        width: 100%;
    }
}

.infocenter-wrapper {
    background-color: #F8F9FA;
    padding: 120px 0 80px;
    min-height: calc(100vh - 70px);
}

.infocenter-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.infocenter-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.infocenter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(27, 42, 71, 0.04);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: dialer-pulse 2s infinite;
}

.infocenter-header h1 {
    font-size: 38px;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 18px;
}

.infocenter-header .lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.infocenter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.info-preview-card {
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 24px rgba(27, 42, 71, 0.03);
    display: flex;
    flex-direction: column;
}

.info-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(27, 42, 71, 0.08);
    border-color: rgba(27, 42, 71, 0.15);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-light);
    background: #F1F4F9;
    padding: 4px 10px;
    border-radius: 100px;
}

.preview-status {
    font-size: 11px;
    font-weight: 600;
    color: #8D99A5;
}

.info-preview-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF0F2;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-preview-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.info-preview-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.infocenter-cta {
    background: linear-gradient(135deg, #1B2A47 0%, #0E1626 100%);
    border-radius: 24px;
    padding: 44px 48px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 16px 40px rgba(27, 42, 71, 0.15);
    margin-bottom: 40px;
}

.cta-text h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 15px;
    color: #ADB5BD;
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cta-btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.3);
}

.cta-btn.primary:hover {
    background: #b0001f;
    transform: translateY(-2px);
}

.cta-bots {
    display: flex;
    gap: 10px;
}

.cta-bot-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-bot-btn.tg {
    background: rgba(0, 136, 204, 0.18);
    color: #29b6f6;
    border: 1px solid rgba(0, 136, 204, 0.35);
}

.cta-bot-btn.tg:hover {
    background: #0088cc;
    color: #FFFFFF;
}

.cta-bot-btn.max {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-bot-btn.max:hover {
    background: rgba(255, 255, 255, 0.18);
}

.infocenter-back {
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.back-link:hover {
    color: var(--red);
    transform: translateX(-4px);
}

@media (max-width: 900px) {
    .infocenter-wrapper {
        padding: 100px 0 60px;
    }

    .infocenter-header h1 {
        font-size: 28px;
    }

    .infocenter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .infocenter-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }

    .cta-text p {
        max-width: none;
    }

    .cta-bots {
        flex-direction: column;
    }
}
