* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.badge {
    display: inline-block;
    background-color: #eef2ff;
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(29, 78, 216, 0.2);
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 20px;
}

h2 i {
    color: #2563eb;
    margin-right: 10px;
}

.section-subhead {
    font-size: 1.2rem;
    color: #475569;
    /* max-width: 800px; */
    margin-bottom: 48px;
    font-weight: 400;
}

.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #e9eef2;
    background: white;
    width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #0f2b4b;
    letter-spacing: -1px;
}

.logo span {
    color: #2563eb;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    font-weight: 500;
    color: #334155;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Стили для кнопок-ссылок (полностью скопированы с .btn-outline и .btn-primary, но применены к <a>) */
.btn-outline {
    border: 1.5px solid #1e293b;
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: #1e293b;
    transition: 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline i {
    margin-right: 8px;
}

.btn-primary {
    background-color: #1e293b;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid #1e293b;
    transition: 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover,
.btn-outline:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero {
    padding: 64px 0 56px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #475569;
    margin: 24px 0 32px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 5vw, 40px);
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    font-weight: 600;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #0f2b4b;
    display: block;
    font-weight: 700;
}

.hero-image {
    flex: 1 1 400px;
    background: #d9e2ef;
    border-radius: 28px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3a5e;
    font-weight: 500;
    background: linear-gradient(145deg, #e7edf5, #cfdbe9);
    box-shadow: 0 25px 40px -15px rgba(0, 20, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 05);
    padding: 20px;
    padding-bottom: 0px;
}

.hero-image i {
    font-size: clamp(3rem, 8vw, 5rem);
    color: #1e3a6b;
    margin-right: 10px;
}

.trust-bar {
    background: #f8fafc;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5f6c80;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.trust-logos span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-extra {
    padding: 80px 0;
    background: white;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.extra-card {
    background: #f9fcff;
    padding: 40px 28px;
    border-radius: 32px;
    border: 1px solid #e6edf5;
    transition: all 0.2s;
}

.extra-card:hover {
    border-color: #b9cef0;
    background: #f6faff;
}

.extra-icon {
    background: #1e3a6b;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: white;
    font-size: 1.8rem;
}

.extra-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.extra-card p {
    color: #334155;
    margin-bottom: 24px;
}

.reestr-badge {
    background: #dcfce7;
    color: #166534;
    border: none;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 8px;
}

.target-audience {
    padding: 80px 0;
    background: #f0f4fa;
}

.audience-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.aud-item {
    background: white;
    padding: 32px 28px;
    border-radius: 32px;
    flex: 1 1 250px;
    min-width: 250px;
    border: 1px solid #dde5ef;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.aud-item i {
    font-size: 2.4rem;
    color: #1d4ed8;
    margin-bottom: 20px;
}

.aud-item h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.aud-item p {
    color: #475569;
}

.specs {
    padding: 90px 0;
}

.two-col {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.two-col>div {
    flex: 1 1 400px;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.specs-list i.fa-check-circle {
    color: #2563eb;
    font-size: 1.6rem;
    width: 32px;
    flex-shrink: 0;
}

.spec-image {
    background: #dfe9f3;
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    color: #1f3a60;
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px dashed #8aa9d1;
    padding-bottom: 0px;
}

.spec-image>img {
    margin-bottom: -7px;
}

.pricing {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 30px;
    border: 1px solid #e6edf5;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid #2563eb;
    background: #f6faff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0f2b4b;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.pricing-period {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.pricing-features i.fa-check {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.pricing-features i.fa-times {
    color: #94a3b8;
    font-size: 1.2rem;
    width: 20px;
}

.pricing-features .disabled {
    color: #94a3b8;
}

/* Для больших экранов, чтобы 4 карточки были в ряд */
@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Для средних экранов */
@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing .btn-outline,
.pricing .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.cta {
    padding: 70px 0 90px;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #0b1f33, #132b44);
    border-radius: 48px;
    padding: 70px 40px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-box .section-subhead {
    color: #cbd5e1;
    margin-bottom: 40px;
}

.btn-white {
    background: white;
    color: #0b1f33;
    border: none;
    padding: 16px 50px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: 1px solid white;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-white i {
    margin-right: 8px;
}

.legal-note {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #9aaec5;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
}

.footer a {
    text-decoration: none; 
    color: inherit;
    display: flex; 
    align-items: center; 
    gap: 5px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

hr {
    border: none;
    border-top: 1px solid #e2e8f0;
}

.hero .btn-primary,
.hero .btn-outline {
    white-space: normal;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .btn-white {
        width: 100%;
        white-space: normal;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
    }
}

.bottom-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #1e293b;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Дополнительные стили для исправления футера и тарифов */

/* Стили для футера */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-contacts-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-copyright {
    white-space: nowrap;
}

.footer-contact-items {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-contact-link:hover {
    color: #2563eb;
}

.footer-docs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
    width: 100%;
}

.footer-docs-row a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
}

.footer-docs-row a:hover {
    color: #2563eb;
}

/* Стили для специального тарифа "По запросу" */
.pricing-card--special {
    border: 2px dashed #2563eb;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
}

.pricing-name--special {
    color: #2563eb !important;
}

.pricing-price--special {
    font-size: 2rem !important;
    color: #2563eb !important;
}

.btn-primary--special {
    background: #2563eb !important;
}

.btn-primary--special:hover {
    background: #1d4ed8 !important;
}

/* Стили для нижней плашки с реестром */
.registry-footer {
    padding: 12px 0;
    background: #fafcff;
    text-align: center;
    font-size: 0.85rem;
    color: #536e85;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-contacts-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .footer-copyright {
        white-space: normal;
        width: 100%;
    }
    
    .footer-contact-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    
    .footer-contact-link {
        white-space: normal;
        width: 100%;
    }
    
    .social-links {
        align-self: flex-start;
    }
    
    .footer-docs-row {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .footer-docs-row a {
        white-space: normal;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-docs-row {
        gap: 8px;
    }
    
    .registry-footer {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}