/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B1120;
    color: #E2E8F0;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #00E5FF;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    color: #00FFD1;
}

/* ===== HEADER ===== */
.header {
    background: #0B1120;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
    transition: border-color 0.3s ease;
}

.header-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    color: #94A3B8;
    font-size: 13px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-link:hover {
    color: #00E5FF;
}

/* Крупные контакты */
.contact-link.contact-large {
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    color: #CBD5E1;
}

.contact-link.contact-large .contact-icon {
    font-size: 20px;
}

.contact-link.contact-large:hover {
    color: #00E5FF;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: #00E5FF;
    transform: rotate(30deg);
}

.btn-lk {
    background: #00E5FF;
    color: #0B1120;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.btn-lk:hover {
    color: #0B1120;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 15px;
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    color: #CBD5E1;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #CBD5E1;
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    padding: 40px 0 60px;
    background: #0B1120;
    transition: background 0.3s ease;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.6s ease;
}

.hero-slide.active {
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #00E5FF;
}

.hero-sub {
    font-size: 18px;
    color: #94A3B8;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 229, 255, 0.08));
    transition: transform 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-primary {
    background: #00E5FF;
    color: #0B1120;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    color: #0B1120;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
    padding: 14px 32px;
    border-radius: 40px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #CBD5E1;
    font-weight: 600;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #00E5FF;
    border-color: #00E5FF;
}

/* ===== SECTIONS ===== */
.advantages {
    padding: 60px 0;
}

.tariffs-preview,
.news-preview,
.cta {
    padding: 60px 0;
}

.tariffs-preview {
    background: #080E1A;
    transition: background 0.3s ease;
}

.cta {
    background: #0F212E;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    transition: background 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-title .highlight {
    color: #00E5FF;
}

/* ===== CARDS ===== */
.advantages-grid,
.tariffs-grid,
.news-grid {
    display: grid;
    gap: 30px;
}

.advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tariffs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.advantage-card,
.tariff-card,
.news-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.advantage-card:hover,
.tariff-card:hover,
.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.2);
}

.advantage-card {
    text-align: center;
}

.advantage-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: #94A3B8;
}

.tariff-card {
    text-align: center;
    position: relative;
}

.tariff-card.popular {
    border-color: #00E5FF;
}

.tariff-card.popular::before {
    content: '★ Популярный';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00E5FF;
    color: #0B1120;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 30px;
}

.tariff-name {
    font-size: 24px;
    font-weight: 700;
}

.tariff-price {
    font-size: 36px;
    font-weight: 800;
    color: #00E5FF;
    margin: 8px 0;
}

.tariff-price span {
    font-size: 16px;
    font-weight: 400;
    color: #94A3B8;
}

.tariff-speed {
    font-size: 16px;
    color: #CBD5E1;
    margin-bottom: 16px;
}

.tariff-features {
    list-style: none;
    text-align: left;
    font-size: 14px;
    color: #94A3B8;
}

.tariff-features li {
    padding: 4px 0;
}

.btn-tariff {
    display: block;
    padding: 12px;
    border-radius: 40px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #CBD5E1;
    font-weight: 600;
    margin-top: 16px;
    transition: 0.2s;
}

.btn-tariff:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
}

.btn-tariff.primary {
    background: #00E5FF;
    color: #0B1120;
    border-color: #00E5FF;
}

.news-date {
    color: #00E5FF;
    font-size: 13px;
    font-weight: 600;
}

.news-card h3 {
    font-size: 18px;
    margin: 8px 0;
}

.news-card p {
    font-size: 14px;
    color: #94A3B8;
}

.news-link {
    font-weight: 600;
    font-size: 14px;
}

.tariffs-more,
.news-more {
    text-align: center;
    margin-top: 30px;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-content p {
    color: #94A3B8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #080E1A;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-title {
    color: #00E5FF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00E5FF;
}

.btn-footer {
    display: block;
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: 0.2s;
}

.btn-footer:hover {
    background: rgba(0, 229, 255, 0.2);
    color: #00E5FF;
}

.footer-copy {
    font-size: 14px;
    font-weight: 700;
}

.footer-text {
    font-size: 13px;
    color: #64748B;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 20px 0 10px;
    font-size: 14px;
    color: #64748B;
}

.breadcrumbs a {
    color: #94A3B8;
}

.breadcrumbs a:hover {
    color: #00E5FF;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 30px 0 50px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
}

.page-title .highlight {
    color: #00E5FF;
}

.page-sub {
    font-size: 18px;
    color: #94A3B8;
    margin-top: 10px;
}

/* ===== TARIFFS PAGE ===== */
.tariffs-page {
    padding-bottom: 60px;
}

.tariff-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-block {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #00E5FF;
}

.info-block p {
    font-size: 16px;
    color: #CBD5E1;
}

.info-block p strong {
    color: #FFD700;
}

.info-block ul {
    list-style: none;
    margin-top: 12px;
    font-size: 14px;
    color: #94A3B8;
}

.info-block ul li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.info-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00E5FF;
}

.services-block {
    margin-top: 40px;
}

.services-block .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #111827;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.2s;
}

.service-item:hover {
    border-color: rgba(0, 229, 255, 0.15);
}

.service-name {
    font-size: 14px;
    color: #CBD5E1;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #00E5FF;
}

/* ===== CONTACTS ===== */
.contacts-page {
    padding-bottom: 60px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #111827;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.contact-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.contact-card h4 {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-card a {
    font-size: 18px;
    font-weight: 600;
    color: #E2E8F0;
}

.contact-card a:hover {
    color: #00E5FF;
}

.contact-desc {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.contacts-form {
    background: #111827;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacts-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: #0B1120;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #E2E8F0;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: #00E5FF;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: #64748B;
}

/* ===== SOCIAL BLOCK ===== */
.social-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 20px;
}

.social-block-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid transparent;
    gap: 4px;
}

.social-block-item:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.social-block-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
}

.social-block-name {
    font-size: 18px;
    font-weight: 700;
}

.social-block-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* MAX */
.social-block-item.max {
    background: rgba(0, 136, 204, 0.12);
    border-color: rgba(0, 136, 204, 0.2);
    color: #E2E8F0;
}

.social-block-item.max:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.15);
}

.social-block-item.max .social-block-name {
    color: #00BFFF;
}

/* VK */
.social-block-item.vk {
    background: rgba(39, 135, 245, 0.12);
    border-color: rgba(39, 135, 245, 0.2);
    color: #E2E8F0;
}

.social-block-item.vk:hover {
    background: rgba(39, 135, 245, 0.2);
    border-color: #2787F5;
    box-shadow: 0 8px 25px rgba(39, 135, 245, 0.15);
}

.social-block-item.vk .social-block-name {
    color: #4A99F7;
}

/* ===== REQUISITES ===== */
.requisites {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.requisites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.requisites-header h3 {
    font-size: 20px;
    color: #00E5FF;
    margin: 0;
}

.requisites-bank {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px 8px 14px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bank-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(76%) sepia(27%) saturate(309%) hue-rotate(4deg) brightness(91%) contrast(86%);
}

.requisites-bank span {
    font-size: 14px;
    font-weight: 600;
    color: #CBD5E1;
}

.requisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 24px;
}

.requisite-item {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.requisite-item.full-width {
    grid-column: 1 / -1;
}

.requisite-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
    margin-bottom: 2px;
}

.requisite-value {
    font-size: 18px;
    font-weight: 700;
    color: #E2E8F0;
    font-family: 'Inter', 'Consolas', monospace;
    letter-spacing: 0.3px;
    word-break: break-all;
}

/* ===== LICENSES ===== */
.licenses {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.licenses h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #00E5FF;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.license-item:last-child {
    border-bottom: none;
}

.license-icon {
    font-size: 24px;
}

.license-item strong {
    font-size: 16px;
    color: #CBD5E1;
}

.license-item p {
    font-size: 14px;
    color: #94A3B8;
}

/* ===== NEWS PAGE ===== */
.news-page {
    padding-bottom: 60px;
}

.news-grid-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.news-item:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateX(4px);
}

.news-item-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 12px 0;
    background: rgba(0, 229, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.08);
    height: fit-content;
}

.news-item-date .day {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #00E5FF;
    line-height: 1;
}

.news-item-date .month {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
}

.news-item-date .year {
    display: block;
    font-size: 12px;
    color: #64748B;
}

.news-item-content {
    flex: 1;
}

.news-item-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #E2E8F0;
}

.news-item-content h2:hover {
    color: #00E5FF;
}

.news-item-content p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 10px;
}

.news-item-content p:last-of-type {
    margin-bottom: 14px;
}

.news-item-content strong {
    color: #CBD5E1;
}

.news-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 30px;
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ABOUT PAGE ===== */
.about-page {
    padding-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text h2 .highlight {
    color: #00E5FF;
}

.about-text p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-text p strong {
    color: #CBD5E1;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: #111827;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00E5FF;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #94A3B8;
    margin-top: 4px;
}

.equipment {
    margin-bottom: 50px;
}

.equipment .section-title {
    text-align: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.equip-item {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.equip-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
}

.equip-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.equip-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.equip-item p {
    font-size: 14px;
    color: #94A3B8;
}

.services-about {
    margin-bottom: 50px;
}

.services-about .section-title {
    text-align: center;
}

.services-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-about-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #111827;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.service-about-item:hover {
    border-color: rgba(0, 229, 255, 0.15);
}

.service-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.service-about-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.service-about-item p {
    font-size: 14px;
    color: #94A3B8;
}

.mission {
    background: linear-gradient(135deg, #0F212E, #0B1120);
    border-radius: 20px;
    padding: 40px 50px;
    border: 1px solid rgba(0, 229, 255, 0.08);
    text-align: center;
}

.mission blockquote {
    font-size: 22px;
    font-style: italic;
    color: #CBD5E1;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.mission blockquote::before {
    content: '«';
    color: #00E5FF;
    font-size: 32px;
}

.mission blockquote::after {
    content: '»';
    color: #00E5FF;
    font-size: 32px;
}

/* ===== KLIENTAM ===== */
.klientam-page {
    padding-bottom: 60px;
}

.klientam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.klientam-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: block;
    color: #E2E8F0;
    position: relative;
}

.klientam-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.2);
    color: #E2E8F0;
}

.klientam-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.klientam-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.klientam-card p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 12px;
}

.klientam-arrow {
    font-size: 20px;
    color: #00E5FF;
    font-weight: 700;
}

/* ===== SERVICE PAGE ===== */
.service-page {
    padding-bottom: 60px;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-text p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 22px;
    margin: 30px 0 12px;
    color: #E2E8F0;
}

.service-info-block {
    background: #111827;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 20px 0;
    border-left: 4px solid #00E5FF;
}

.service-info-block h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-info-block ul {
    list-style: none;
    padding: 0;
}

.service-info-block ul li {
    padding: 4px 0;
    font-size: 15px;
    color: #94A3B8;
}

.service-info-block.warning {
    border-left-color: #FFD700;
}

.service-info-block.highlight {
    border-left-color: #FF6B35;
}

.service-info-block.highlight ul li {
    color: #CBD5E1;
}

.service-info-block.highlight ul li strong {
    color: #FF6B35;
}

/* ===== AKCII ===== */
.akcii-page {
    padding-bottom: 60px;
}

.akcii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.akcii-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.akcii-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.15);
}

.akcii-badge {
    display: inline-block;
    background: #00E5FF;
    color: #0B1120;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.akcii-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.akcii-card p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
}

.akcii-card p strong {
    color: #CBD5E1;
}

.akcii-date {
    display: block;
    font-size: 13px;
    color: #64748B;
    margin-top: 14px;
}

.akcii-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #111827;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.akcii-note p {
    color: #94A3B8;
    font-size: 16px;
}

/* ===== POLITIKA ===== */
.politika-page {
    padding-bottom: 60px;
}

.politika-content {
    max-width: 800px;
    margin: 0 auto;
}

.politika-section {
    background: #111827;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.politika-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #00E5FF;
}

.politika-section p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 10px;
}

.politika-section p strong {
    color: #CBD5E1;
}

.politika-section ul {
    list-style: none;
    padding: 0;
}

.politika-section ul li {
    padding: 4px 0;
    font-size: 15px;
    color: #94A3B8;
}

/* ===== OFERTA ===== */
.oferta-page {
    padding-bottom: 60px;
}

.oferta-content {
    max-width: 800px;
    margin: 0 auto;
}

.oferta-section {
    background: #111827;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.oferta-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #00E5FF;
}

.oferta-section p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 10px;
}

.oferta-section p strong {
    color: #CBD5E1;
}

.oferta-section ul {
    list-style: none;
    padding: 0;
}

.oferta-section ul li {
    padding: 4px 0;
    font-size: 15px;
    color: #94A3B8;
}

/* ===== QUICK CONTACT ===== */
.quick-contact {
    padding: 30px 0 10px;
    background: transparent;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #111827;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.quick-contact-item:hover {
    transform: translateY(-4px);
    border-color: #00E5FF;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.06);
    text-decoration: none;
    color: inherit;
}

.quick-contact-item .quick-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.06);
    border-radius: 50%;
    transition: 0.3s;
}

.quick-contact-item:hover .quick-icon {
    background: rgba(0, 229, 255, 0.12);
}

.quick-contact-item .quick-label {
    font-size: 13px;
    color: #94A3B8;
    display: block;
    line-height: 1.3;
}

.quick-contact-item .quick-value {
    font-size: 20px;
    font-weight: 700;
    color: #E2E8F0;
    display: block;
    line-height: 1.3;
}

.quick-contact-item:hover .quick-value {
    color: #00E5FF;
}

.quick-contact-item.accent {
    background: rgba(0, 229, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.12);
}

.quick-contact-item.accent .quick-value {
    color: #00E5FF;
}

.quick-contact-item.accent:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: #00E5FF;
}

/* ============================================
   LIGHT THEME
   ============================================ */
body.light-theme {
    background: #E8EDF2;
    color: #1A2332;
}

body.light-theme .header {
    background: #F0F4F8;
    border-bottom: 1px solid #D0D7DE;
}

body.light-theme .header-top {
    border-bottom: 1px solid #DDE3EA;
}

body.light-theme .contact-link {
    color: #4A5A6E;
}

body.light-theme .contact-link:hover {
    color: #00B4D8;
}

body.light-theme .nav-link {
    color: #2D3F55;
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    background: rgba(0, 180, 216, 0.08);
    color: #00A3C7;
}

body.light-theme .advantage-card,
body.light-theme .tariff-card,
body.light-theme .news-card,
body.light-theme .info-block,
body.light-theme .contact-card,
body.light-theme .contacts-form,
body.light-theme .requisites,
body.light-theme .licenses,
body.light-theme .equip-item,
body.light-theme .service-about-item,
body.light-theme .klientam-card,
body.light-theme .akcii-card,
body.light-theme .politika-section,
body.light-theme .oferta-section,
body.light-theme .service-info-block,
body.light-theme .news-item,
body.light-theme .stat-item,
body.light-theme .quick-contact-item {
    background: #FFFFFF;
    border-color: #DCE3EC;
}

body.light-theme .tariffs-preview {
    background: #DDE4ED;
}

body.light-theme .footer {
    background: #1A2332;
}

body.light-theme .footer-text {
    color: #94A3B8;
}

body.light-theme .footer-copy {
    color: #E2E8F0;
}

body.light-theme .footer-links a {
    color: #94A3B8;
}

body.light-theme .footer-links a:hover {
    color: #00E5FF;
}

body.light-theme .footer-title {
    color: #00E5FF;
}

body.light-theme .btn-footer {
    background: rgba(0, 229, 255, 0.08);
    color: #00E5FF;
    border-color: rgba(0, 229, 255, 0.15);
}

body.light-theme .btn-footer:hover {
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
}

body.light-theme .page-sub,
body.light-theme .about-text p,
body.light-theme .service-text p,
body.light-theme .news-item-content p,
body.light-theme .klientam-card p,
body.light-theme .akcii-card p,
body.light-theme .politika-section p,
body.light-theme .oferta-section p,
body.light-theme .service-info-block ul li,
body.light-theme .advantage-card p,
body.light-theme .equip-item p,
body.light-theme .service-about-item p {
    color: #4A5A6E;
}

body.light-theme .news-item-content h2,
body.light-theme .klientam-card h3,
body.light-theme .akcii-card h3,
body.light-theme .service-text h3,
body.light-theme .politika-section h2,
body.light-theme .oferta-section h2,
body.light-theme .advantage-card h3,
body.light-theme .equip-item h3,
body.light-theme .info-block h3,
body.light-theme .contacts-form h3,
body.light-theme .requisites h3,
body.light-theme .licenses h3,
body.light-theme .quick-contact-item .quick-value {
    color: #1A2332;
}

body.light-theme .quick-contact-item .quick-label {
    color: #7A8A9E;
}

body.light-theme .quick-contact-item:hover .quick-value {
    color: #00B4D8;
}

body.light-theme .quick-contact-item .quick-icon {
    background: rgba(0, 0, 0, 0.03);
}

body.light-theme .quick-contact-item:hover {
    border-color: #00B4D8;
}

body.light-theme .quick-contact-item.accent {
    background: rgba(0, 180, 216, 0.04);
    border-color: rgba(0, 180, 216, 0.12);
}

body.light-theme .quick-contact-item.accent .quick-value {
    color: #00B4D8;
}

body.light-theme .quick-contact-item.accent:hover {
    background: rgba(0, 180, 216, 0.06);
}

body.light-theme .btn-secondary {
    border-color: #BCC8D6;
    color: #2D3F55;
}

body.light-theme .btn-secondary:hover {
    background: #E8EDF2;
    color: #1A2332;
}

body.light-theme .hero {
    background: linear-gradient(135deg, #DDE4ED, #E8EDF2);
    border-bottom: 1px solid #D0D7DE;
}

body.light-theme .cta {
    background: #DDE4ED;
    border-color: #D0D7DE;
}

body.light-theme .mission {
    background: #E8EDF2;
    border-color: #D0D7DE;
}

body.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.04);
    border-color: #BCC8D6;
    color: #2D3F55;
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: #00B4D8;
}

body.light-theme .contacts-form input,
body.light-theme .contacts-form textarea {
    background: #F0F4F8;
    border-color: #DCE3EC;
    color: #1A2332;
}

body.light-theme .contacts-form input:focus,
body.light-theme .contacts-form textarea:focus {
    border-color: #00B4D8;
}

body.light-theme .breadcrumbs {
    color: #4A5A6E;
}

body.light-theme .breadcrumbs a {
    color: #2D3F55;
}

body.light-theme .breadcrumbs a:hover {
    color: #00B4D8;
}

body.light-theme .page-title {
    color: #1A2332;
}

body.light-theme .page-title .highlight {
    color: #00B4D8;
}

body.light-theme .service-info-block {
    background: #F0F4F8;
    border-left-color: #00B4D8;
}

body.light-theme .service-info-block.warning {
    border-left-color: #D4A017;
}

body.light-theme .service-info-block.highlight {
    border-left-color: #E67E22;
}

body.light-theme .service-info-block h4 {
    color: #1A2332;
}

body.light-theme .service-info-block ul li {
    color: #4A5A6E;
}

body.light-theme .service-info-block.highlight ul li strong {
    color: #E67E22;
}

body.light-theme .news-tag {
    background: rgba(0, 180, 216, 0.08);
    color: #00A3C7;
}

body.light-theme .license-item strong {
    color: #1A2332;
}

body.light-theme .license-item p {
    color: #4A5A6E;
}

body.light-theme .requisites-grid div {
    color: #4A5A6E;
}

body.light-theme .requisites-grid span {
    color: #1A2332;
}

body.light-theme .akcii-badge {
    background: #00B4D8;
    color: #FFFFFF;
}

body.light-theme .tariff-card.popular {
    border-color: #00B4D8;
}

body.light-theme .tariff-card.popular::before {
    background: #00B4D8;
    color: #FFFFFF;
}

body.light-theme .tariff-price {
    color: #00B4D8;
}

body.light-theme .btn-tariff.primary {
    background: #00B4D8;
    color: #FFFFFF;
    border-color: #00B4D8;
}

body.light-theme .btn-tariff.primary:hover {
    background: #0099BB;
    color: #FFFFFF;
}

body.light-theme .btn-tariff {
    border-color: #BCC8D6;
    color: #2D3F55;
}

body.light-theme .btn-tariff:hover {
    background: rgba(0, 180, 216, 0.06);
    color: #00A3C7;
}

body.light-theme .stat-number {
    color: #00B4D8;
}

body.light-theme .stat-label {
    color: #4A5A6E;
}

body.light-theme .service-item {
    background: #FFFFFF;
    border-color: #DCE3EC;
}

body.light-theme .service-item:hover {
    border-color: #BCC8D6;
}

body.light-theme .service-name {
    color: #2D3F55;
}

body.light-theme .service-price {
    color: #00B4D8;
}

body.light-theme .news-item-date {
    background: rgba(0, 180, 216, 0.06);
    border-color: rgba(0, 180, 216, 0.1);
}

body.light-theme .news-item-date .day {
    color: #00B4D8;
}

body.light-theme .news-item-date .month {
    color: #4A5A6E;
}

body.light-theme .news-item-date .year {
    color: #7A8A9E;
}

body.light-theme .contact-card a {
    color: #1A2332;
}

body.light-theme .contact-card a:hover {
    color: #00B4D8;
}

body.light-theme .contact-desc {
    color: #4A5A6E;
}

body.light-theme .contact-card h4 {
    color: #4A5A6E;
}

body.light-theme .social-btn.vk {
    background: #2787F5;
    color: #FFFFFF;
}

body.light-theme .social-btn.vk:hover {
    background: #4A99F7;
    color: #FFFFFF;
}

body.light-theme .social-btn.tg {
    background: #0088cc;
    color: #FFFFFF;
}

body.light-theme .social-btn.tg:hover {
    background: #0099DD;
    color: #FFFFFF;
}

body.light-theme .klientam-card {
    color: #1A2332;
}

body.light-theme .klientam-card:hover {
    color: #1A2332;
}

body.light-theme .klientam-card p {
    color: #4A5A6E;
}

body.light-theme .klientam-arrow {
    color: #00B4D8;
}

body.light-theme .akcii-card p strong {
    color: #1A2332;
}

body.light-theme .akcii-date {
    color: #7A8A9E;
}

body.light-theme .akcii-note {
    background: #FFFFFF;
    border-color: #DCE3EC;
}

body.light-theme .akcii-note p {
    color: #4A5A6E;
}

/* ===== LIGHT THEME REQUISITES ===== */
body.light-theme .requisites {
    background: #FFFFFF;
    border-color: #DCE3EC;
}

body.light-theme .requisites-header {
    border-bottom-color: #E8EDF2;
}

body.light-theme .requisites-bank {
    background: #F0F4F8;
    border-color: #DCE3EC;
}

body.light-theme .requisites-bank span {
    color: #1A2332;
}

body.light-theme .requisite-item {
    border-bottom-color: #E8EDF2;
}

body.light-theme .requisite-label {
    color: #7A8A9E;
}

body.light-theme .requisite-value {
    color: #0F172A;
}

body.light-theme .bank-icon {
    filter: none;
}

/* ===== LIGHT THEME SOCIAL BLOCK ===== */
body.light-theme .social-block {
    background: rgba(0, 0, 0, 0.02);
    border-color: #DCE3EC;
}

body.light-theme .social-block-item.max {
    background: rgba(0, 136, 204, 0.06);
    border-color: rgba(0, 136, 204, 0.15);
    color: #1A2332;
}

body.light-theme .social-block-item.max:hover {
    background: rgba(0, 136, 204, 0.12);
}

body.light-theme .social-block-item.vk {
    background: rgba(39, 135, 245, 0.06);
    border-color: rgba(39, 135, 245, 0.15);
    color: #1A2332;
}

body.light-theme .social-block-item.vk:hover {
    background: rgba(39, 135, 245, 0.12);
}

body.light-theme .social-block-item.max .social-block-name {
    color: #0088cc;
}

body.light-theme .social-block-item.vk .social-block-name {
    color: #2787F5;
}

/* ============================================
   ПЛАВНЫЙ ПЕРЕХОД ДЛЯ ТЕМЫ
   ============================================ */
body,
.header,
.header-top,
.contact-link,
.nav-link,
.advantage-card,
.tariff-card,
.news-card,
.info-block,
.contact-card,
.contacts-form,
.requisites,
.licenses,
.equip-item,
.service-about-item,
.klientam-card,
.akcii-card,
.politika-section,
.oferta-section,
.service-info-block,
.news-item,
.stat-item,
.tariffs-preview,
.footer,
.hero,
.cta,
.mission,
.theme-toggle,
.contacts-form input,
.contacts-form textarea,
.btn-secondary,
.btn-tariff,
.breadcrumbs,
.breadcrumbs a,
.page-title,
.service-item,
.news-item-date,
.contact-card a,
.klientam-card,
.akcii-note,
.quick-contact-item,
.social-block,
.social-block-item {
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-sub {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image img {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        width: 100%;
    }

    .header-top {
        flex-direction: column;
        align-items: stretch;
    }

    .header-contacts {
        flex-direction: column;
        gap: 8px;
    }

    .btn-lk {
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 30px 0 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-image img {
        max-height: 150px;
    }

    .section-title {
        font-size: 28px;
    }

    .advantages-grid,
    .tariffs-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .services-about-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .mission {
        padding: 30px 20px;
    }

    .mission blockquote {
        font-size: 18px;
    }

    .news-item {
        flex-direction: column;
        padding: 20px;
    }

    .news-item-date {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 10px 16px;
        justify-content: center;
    }

    .news-item-date .day {
        font-size: 24px;
    }

    .news-item-date .month {
        font-size: 12px;
    }

    .news-item-date .year {
        font-size: 11px;
    }

    .news-item-content h2 {
        font-size: 19px;
    }

    .page-title {
        font-size: 32px;
    }

    .tariffs-grid {
        grid-template-columns: 1fr;
    }

    .tariff-info {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .klientam-grid {
        grid-template-columns: 1fr;
    }

    .akcii-grid {
        grid-template-columns: 1fr;
    }

    .service-info-block {
        padding: 18px 20px;
    }

    .politika-section {
        padding: 18px 20px;
    }

    .oferta-section {
        padding: 18px 20px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quick-contact-item {
        padding: 16px 18px;
    }

    .quick-contact-item .quick-value {
        font-size: 18px;
    }

    .quick-contact-item .quick-icon {
        font-size: 26px;
        width: 48px;
        height: 48px;
    }

    /* REQUISITES RESPONSIVE */
    .requisites-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .requisites-bank {
        padding: 6px 14px 6px 10px;
    }

    .requisites-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }

    .requisite-item.full-width {
        grid-column: 1 / -1;
    }

    .requisite-value {
        font-size: 16px;
    }

    /* SOCIAL BLOCK RESPONSIVE */
    .social-block {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .social-block {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .social-block-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }

    .social-block-icon {
        font-size: 28px;
        margin-bottom: 0;
    }

    .social-block-item .social-block-desc {
        display: none;
    }

    .requisites {
        padding: 20px;
    }

    .requisites-grid {
        grid-template-columns: 1fr;
    }

    .requisite-item.full-width {
        grid-column: 1 / -1;
    }

    .requisite-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-contact-item .quick-value {
        font-size: 16px;
    }

    .social-block {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .social-block-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }

    .social-block-icon {
        font-size: 28px;
        margin-bottom: 0;
    }

    .social-block-item .social-block-desc {
        display: none;
    }
}