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

body {
    font-family: "Aeroport-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f6f5f4;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ===== H1 и подзаголовок ===== */
.page-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 32px;
}

/* ===== HEADER ===== */
.header {
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.header-logo img {
    height: 28px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.15s;
    white-space: nowrap;
}

.header-nav a:hover {
    color: #06a8f2;
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Подарок */
.gift-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    animation: giftPulse 2.5s infinite;
    background: rgba(6, 168, 242, 0.06);
}

.gift-btn:hover {
    animation: none;
    transform: scale(1.1);
}

.gift-btn svg {
    width: 22px;
    height: 22px;
    color: #06a8f2;
    transition: color 0.15s;
}

.gift-btn:hover svg {
    color: #000;
}

@keyframes giftPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Гамбургер */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    background: none;
    border: none;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(6, 168, 242, 0.06);
}

.hamburger svg {
    width: 24px;
    height: 24px;
}

/* Затемнение */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
}

.mobile-overlay.open {
    display: block;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    background: #fff;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile-menu-title {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-title img {
    width: 24px;
    height: 24px;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    background: #f5f5f5;
    border: none;
    transition: background 0.15s;
}

.mobile-menu-close:hover {
    background: #e8e8e8;
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    border-radius: 12px;
    transition: background 0.15s, color 0.15s;
}

.mobile-menu a:after {
    content: '→';
    font-size: 18px;
    color: #ccc;
    transition: color 0.15s, transform 0.15s;
}

.mobile-menu a:hover {
    background: #f5f5f5;
    color: #06a8f2;
}

.mobile-menu a:hover:after {
    color: #06a8f2;
    transform: translateX(4px);
}

.mobile-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.mobile-menu-gift {
    background: #fef9f5 !important;
    border: 1px solid #fde8d0;
    border-radius: 12px !important;
    margin-top: 4px;
}

.mobile-menu-gift:hover {
    background: #fef5eb !important;
}

/* ===== CALCULATOR BLOCK ===== */
.calc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
}

.calc-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.calc-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    width: fit-content;
}

.calc-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.calc-field {
    flex: 1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 14px 18px;
}

.calc-field label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.calc-field .val {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.calc-field input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.calc-field input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
}

.calc-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #06a8f2;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.calc-field .limits {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
    margin-top: 6px;
}

.calc-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    border-radius: 14px;
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.calc-result-label {
    font-size: 12px;
    color: #888;
}

.calc-result-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.calc-result-price .old {
    font-size: 15px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
}

.calc-result-price .tag {
    background: #e60000;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #06a8f2;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.calc-btn:hover {
    background: #0490d4;
}

.calc-disclaimer {
    font-size: 11px;
    color: #aaa;
    margin-top: 16px;
    line-height: 1.4;
    max-width: 480px;
}

.calc-right {
    background: #06a8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.calc-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.calc-promo-big {
    font-size: 150px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    2% { transform: rotate(3deg); }
    4% { transform: rotate(-3deg); }
    6% { transform: rotate(2deg); }
    8% { transform: rotate(-2deg); }
    10% { transform: rotate(0deg); }
}

.calc-promo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.calc-promo-text span:last-child {
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

/* ===== CATEGORIES ===== */
.categories {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.categories::-webkit-scrollbar {
    display: none;
}

.categories a {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    background: #fff;
    color: #555;
    transition: all 0.15s;
}

.categories a.active,
.categories a:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ===== OFFERS GRID ===== */
.offers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.offer {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: .2s;
}

.offer:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.offer.hidden-offer {
    display: none;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.offer-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.offer-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offer-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.offer-detail .dl {
    color: #888;
}

.offer-detail .dv {
    font-weight: 500;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-detail {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    background: #f5f5f5;
    color: #888;
    transition: .15s;
}

.btn-detail:hover {
    background: #eee;
    color: #555;
}

.btn-apply {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    background: #30a436;
    color: #fff;
    transition: .15s;
    display: block;
}

.btn-apply:hover {
    background: #288b2d;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #888;
    z-index: 10;
    transition: .15s;
}

.modal-close:hover {
    background: #eee;
    color: #333;
}

.modal-body {
    padding: 28px 24px 24px;
}

.modal-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-params {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-param {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.modal-param .lbl {
    color: #888;
}

.modal-param .val {
    font-weight: 600;
    text-align: right;
}

.modal-apply {
    display: block;
    width: 100%;
    padding: 14px;
    background: #30a436;
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: .15s;
}

.modal-apply:hover {
    background: #288b2d;
}

/* ===== INFO BLOCK ===== */
.info-block {
    background: #f9fafb;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-block .info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #06a8f2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.seo-block {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.seo-block h2, .seo-block h3 {
    margin: 0 0 8px;
    color: #1a1a1a;
}

.seo-block p {
    margin-bottom: 10px;
}

.seo-block ul, .seo-block ol {
    padding-left: 24px;
    margin-bottom: 10px;
}

.seo-block ul {
    list-style: none;
}

.seo-block ul li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 6px;
}

.seo-block ul li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06a8f2;
}

.seo-block ol {
    list-style: none;
    counter-reset: seo-counter;
}

.seo-block ol li {
    counter-increment: seo-counter;
    position: relative;
    padding-left: 8px;
    margin-bottom: 6px;
}

.seo-block ol li::before {
    content: counter(seo-counter);
    position: absolute;
    left: -24px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #06a8f2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== OTHER CATEGORIES ===== */
.other-categories {
    margin-top: 40px;
}

.other-categories-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.other-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 8px;
}

.other-categories-grid a {
    padding: 4px 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    transition: color 0.15s;
}

.other-categories-grid a:hover {
    background: transparent;
    color: #06a8f2;
}

/* ===== MAIN ===== */
.main {
    padding: 24px 0 60px;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: .2s;
}

.blog-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-card-body {
    padding: 16px;
}

.blog-card-body h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.blog-card-body p {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 48px;
}

.footer-top {
    border-top: 1px solid #e8e8e8;
    padding: 24px 0;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-logo img {
    height: 24px;
}

.footer-blog-link {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.15s;
}

.footer-blog-link:hover {
    color: #06a8f2;
}

.footer-divider {
    border-top: 1px solid #e8e8e8;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 0;
}

.footer-copy {
    font-size: 13px;
    color: #888;
    margin-top: 18px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 8px;
    max-width: 640px;
}

.footer-cookie {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
    max-width: 640px;
}

.footer-right {
    flex-shrink: 0;
}

.footer-age {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.breadcrumbs a {
    color: #888;
    transition: color 0.15s;
}

.breadcrumbs a:hover {
    color: #06a8f2;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eef6ff;
    color: #06a8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
}

.contact-info-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-info-content a {
    color: #06a8f2;
    font-weight: 500;
}

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

.contact-info-links {
    margin-top: 14px;
}

.contact-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 14px;
    color: #555;
    transition: background 0.15s, color 0.15s;
}

.contact-link:hover {
    background: #06a8f2;
    color: #fff;
    text-decoration: none;
}

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

.article-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow 0.2s;
    align-items: flex-start;
    cursor: pointer;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.article-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0f4ff;
    color: #06a8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-card-icon svg {
    width: 22px;
    height: 22px;
}

.article-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.article-card-content p {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

/* ===== POST ARTICLE ===== */
.post-article {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    margin-top: 20px;
}

.post-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.post-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f0f4ff;
    color: #06a8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.post-icon svg {
    width: 24px;
    height: 24px;
}

.post-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.3;
}

.post-date {
    font-size: 13px;
    color: #aaa;
}

.post-image {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 24px;
}

.post-content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.post-content h2,
.post-content h3 {
    color: #1a1a1a;
    margin: 20px 0 10px;
}

.post-content p {
    margin-bottom: 12px;
}

.post-content ul,
.post-content ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.post-content ul {
    list-style: none;
}

.post-content ul li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 6px;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06a8f2;
}

.post-back {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.modal-license {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 12px;
}

/* ===== TOP 10 TABLE ===== */
.top10-block {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-top: 28px;
    border: 1px solid #eee;
}

.top10-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.top10-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.top10-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.top10-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.top10-table th {
    text-align: left;
    padding: 12px 16px;
    background: #f8f8f8;
    font-weight: 600;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
}

.top10-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.top10-table tbody tr:hover {
    background: #fafbfc;
}

.top10-link {
    color: #06a8f2;
    font-weight: 600;
    transition: color 0.15s;
}

.top10-link:hover {
    color: #0490d4;
    text-decoration: underline;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1000px) {
    .offers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .gift-btn { display: none; }
    .hamburger { display: flex; }
    .page-title { font-size: 26px; }
    .page-subtitle { font-size: 14px; margin-bottom: 20px; }
    .offers { grid-template-columns: repeat(2, 1fr); }
	.footer-inner { flex-direction: column; gap: 20px; }
    .footer-right { align-self: flex-start; }
    .footer-age { width: 36px; height: 36px; font-size: 15px; }
    .calc-block { grid-template-columns: 1fr; border-radius: 16px; margin-bottom: 28px; }
    .calc-right { display: none; }
    .calc-left { padding: 20px; }
	.top10-block { padding: 20px; }
    .top10-title { font-size: 17px; }
    .top10-table { font-size: 12px; }
    .top10-table th, .top10-table td { padding: 8px 10px; }
    .calc-title { font-size: 20px; margin-bottom: 4px; }
    .calc-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 16px; }
    .calc-row { flex-direction: column; gap: 10px; margin-bottom: 14px; }
    .calc-field { padding: 10px 14px; border-radius: 10px; }
    .calc-field label { font-size: 11px; }
    .calc-field .val { font-size: 15px; margin-bottom: 6px; }
    .calc-field input[type=range] { height: 4px; }
    .calc-field input[type=range]::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -7px; }
    .calc-field .limits { font-size: 10px; }
    .calc-result { padding: 12px 14px; gap: 10px; border-radius: 10px; }
    .calc-result-label { font-size: 11px; }
    .calc-result-price { font-size: 20px; }
    .calc-result-price .tag { font-size: 9px; padding: 2px 6px; }
    .calc-btn { width: 100%; padding: 12px; font-size: 14px; border-radius: 8px; }
    .calc-disclaimer { font-size: 10px; margin-top: 10px; }
    .contact-info { flex-direction: column; padding: 24px; }
    .articles-grid { grid-template-columns: 1fr; }
    .article-card { padding: 20px; }
    .categories { gap: 6px; }
    .categories a { padding: 8px 14px; font-size: 13px; }
	.post-article { padding: 20px; }
    .post-header h1 { font-size: 20px; }
    .post-content { font-size: 14px; }
    .offer { padding: 14px; gap: 10px; }
    .offer-logo { width: 34px; height: 34px; }
    .offer-name { font-size: 13px; }
    .offer-detail { font-size: 12px; }
    .btn-detail { font-size: 12px; padding: 8px; }
    .btn-apply { font-size: 12px; padding: 8px; }

    .info-block { padding: 14px 16px; font-size: 12px; }
    .info-block .info-icon { width: 18px; height: 18px; font-size: 11px; }

    .seo-block { padding: 20px; font-size: 13px; }
    .modal { border-radius: 16px; }
    .modal-body { padding: 20px 16px 16px; }
    .modal-logo { width: 40px; height: 40px; margin-bottom: 12px; }
    .modal-title { font-size: 18px; margin-bottom: 16px; }
    .modal-params { padding: 12px; gap: 8px; }
    .modal-param { font-size: 13px; }
    .modal-apply { padding: 12px; font-size: 14px; }
	.other-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .other-categories-title { font-size: 18px; }
}

@media (max-width: 480px) {
    .offers { grid-template-columns: 1fr; }
    .calc-left { padding: 16px; }
    .calc-title { font-size: 18px; }
	.other-categories-grid { grid-template-columns: 1fr; }
}