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

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #a0b8d0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #70b0ff;
    transition: 0.3s;
}
a:hover {
    color: #b080ff;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #70b0ff, #b080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #e0e8ff;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #a0b8d0;
    margin-bottom: 2.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(112, 176, 255, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
}

.logo-text span {
    color: #70b0ff;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__list > li > a {
    color: #a0b8d0;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav__list > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #70b0ff, #b080ff);
    transition: 0.3s;
}

.nav__list > li > a:hover::after {
    width: 100%;
}

/* Dropdown (десктоп) */
.nav__item--dropdown {
    position: relative;
}

.nav__item--dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 180px;
    border: 1px solid rgba(112, 176, 255, 0.15);
    list-style: none;
    flex-direction: column;
    gap: 0;
}

.nav__item--dropdown:hover .dropdown {
    display: flex;
}

.nav__item--dropdown .dropdown a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #a0b8d0;
    font-weight: 400;
}

.nav__item--dropdown .dropdown a:hover {
    background: rgba(112, 176, 255, 0.1);
    color: #70b0ff;
}

.header__contacts {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-contact-icon img {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: 0.3s;
}

.header-contact-icon img:hover {
    opacity: 1;
}

/* Бургер (по умолчанию скрыт) */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Мобильная кнопка-телефон с выпадающим меню (скрыта на десктопе) */
.mobile-contact-dropdown {
    display: none;
    position: relative;
}

.mobile-contact-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-contact-trigger img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: 0.3s;
}

.mobile-contact-trigger img:hover {
    opacity: 1;
}

.mobile-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(112, 176, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    list-style: none;
    z-index: 100;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    color: #a0b8d0;
    transition: 0.2s;
    font-size: 0.95rem;
}

.mobile-dropdown-menu li a:hover {
    background: rgba(112, 176, 255, 0.1);
    color: #70b0ff;
}

.mobile-dropdown-menu li a img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

/* ============================================================
   HERO (ГЛАВНАЯ)
   ============================================================ */
.hero {
    padding: 120px 0 60px;
    background: #000000 url('/images/bg-stars.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #a0b8d0;
    max-width: 700px;
}

/* Анимированные иконки на главной — десктопный размер 64px */
.animated-icons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.animated-icon {
    width: 64px;
    height: 64px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    transition: 0.3s;
}

.animated-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.animated-icon:nth-child(2) {
    animation-delay: 1s;
}
.animated-icon:nth-child(3) {
    animation-delay: 2s;
}
.animated-icon:nth-child(4) {
    animation-delay: 3s;
}

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

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    background: transparent;
    background: linear-gradient(135deg, #70b0ff, #b080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.btn:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(112, 176, 255, 0.3);
}

.btn-primary,
.btn-outline,
.hero-buttons .btn {
    background: linear-gradient(135deg, #70b0ff, #b080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
}

.btn-primary:hover,
.btn-outline:hover,
.hero-buttons .btn:hover {
    background: linear-gradient(135deg, #70b0ff, #b080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(112, 176, 255, 0.3);
}

.hero-buttons .btn {
    padding: 10px 20px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ============================================================
   БЛОК "ПОЧЕМУ CYBERDUCK?"
   ============================================================ */
.why-cyberduck {
    background: #000000;
    padding: 4rem 0;
    border-top: 1px solid rgba(112, 176, 255, 0.08);
    border-bottom: 1px solid rgba(112, 176, 255, 0.08);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    background: #000000;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(112, 176, 255, 0.08);
    text-align: center;
    transition: 0.4s;
}

.why-item:hover {
    border-color: #70b0ff;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(112, 176, 255, 0.05);
}

.why-item .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #a0b8d0;
    font-size: 0.95rem;
}

/* ============================================================
   АККОРДЕОН (УСЛУГИ)
   ============================================================ */
.accordion {
    max-width: 800px;
    margin: 2rem auto;
}

.accordion-item {
    background: #000000;
    border: 1px solid rgba(112, 176, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: rgba(112, 176, 255, 0.35);
}

.accordion-header {
    padding: 1.2rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #e0e8ff;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    background: rgba(112, 176, 255, 0.04);
}

.accordion-header .arrow {
    font-size: 1.5rem;
    transition: 0.3s;
    color: #70b0ff;
}

.accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 1.5rem 2rem;
}

.accordion-content p {
    margin-bottom: 0.8rem;
}

.accordion-content .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #70b0ff;
}

/* ============================================================
   КАРУСЕЛЬ ПОРТФОЛИО (ГАРМОШКА)
   ============================================================ */
.portfolio-carousel-accordion {
    overflow: hidden;
    padding: 2rem 0;
    margin: 2rem 0;
    position: relative;
}

.carousel-track-accordion {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollAccordion 40s linear infinite;
    will-change: transform;
}

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

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

.portfolio-card-accordion {
    flex: 0 0 600px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 0.8rem;
    border: 1px solid rgba(112, 176, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform-origin: center;
}

.portfolio-card-accordion:hover {
    flex: 0 0 900px;
    border-color: #70b0ff;
    box-shadow: 0 20px 60px rgba(112, 176, 255, 0.2);
    z-index: 10;
}

.portfolio-card-accordion img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
}

.portfolio-card-accordion:hover img {
    transform: scale(1.02);
}

.portfolio-card-accordion .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: 0.5s;
}

.portfolio-card-accordion.active .card-overlay {
    transform: translateY(0);
}

.portfolio-card-accordion .card-overlay h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.portfolio-card-accordion .card-overlay p {
    color: #a0b8d0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.portfolio-card-accordion .card-overlay a {
    color: #70b0ff;
    font-weight: 500;
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 1px solid #70b0ff;
    border-radius: 20px;
    font-size: 0.85rem;
}

.portfolio-card-accordion .card-overlay a:hover {
    background: #70b0ff;
    color: #000000;
}

/* ============================================================
   СЕКЦИИ (общие)
   ============================================================ */
.section-block {
    padding: 80px 0;
    background: #000000;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* ============================================================
   УСЛУГИ (сетка)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #000000;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(112, 176, 255, 0.08);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #70b0ff;
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-card .price {
    color: #70b0ff;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* ============================================================
   КОНТАКТЫ (форма)
   ============================================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #a0b8d0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(112, 176, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #70b0ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(112, 176, 255, 0.15);
}

textarea.form-control {
    min-height: 120px;
}

/* ============================================================
   СПЕЦПРЕДЛОЖЕНИЕ (неоновый розовый + фиолетовый)
   ============================================================ */
.special-offer {
    background: #0a0a0a;
    padding: 4rem 0;
}
.special-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.special-title {
    font-size: 3.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #ff6bcd, #b366ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.special-subtitle {
    font-size: 1.4rem;
    color: #c0c0c0;
    margin: 1rem 0 2rem;
}
.gigafon-link {
    color: #ff6bcd;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.gigafon-link:hover {
    color: #b366ff;
    text-shadow: 0 0 20px rgba(255, 107, 205, 0.5);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.special-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid transparent;
    overflow: hidden;
    transition: 0.4s;
}
.special-card .neon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 205, 0.1), transparent 70%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}
.special-card:hover .neon-glow {
    opacity: 1;
}
.neon-pink {
    border-color: rgba(255, 107, 205, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 205, 0.05);
}
.neon-pink:hover {
    border-color: #ff6bcd;
    box-shadow: 0 0 50px rgba(255, 107, 205, 0.2);
}
.neon-purple {
    border-color: rgba(179, 102, 255, 0.3);
    box-shadow: 0 0 30px rgba(179, 102, 255, 0.05);
}
.neon-purple:hover {
    border-color: #b366ff;
    box-shadow: 0 0 50px rgba(179, 102, 255, 0.2);
}

.card-content .card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.card-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.3rem;
}
.card-content p {
    color: #a0b8d0;
    margin: 0.5rem 0 1rem;
}
.price-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #ff6bcd, #b366ff);
    color: #000;
}

.special-offer-details {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 205, 0.15);
}
.special-offer-details h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 1.5rem;
}
.special-offer-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
.special-offer-details ul li {
    padding: 0.5rem 0;
    color: #a0b8d0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.special-offer-details ul li strong {
    color: #fff;
}

.btn-special {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, #ff6bcd, #b366ff);
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}
.btn-special:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 107, 205, 0.4);
}

.special-note {
    margin-top: 2rem;
    color: #6f8ba0;
    font-size: 0.9rem;
}
.special-note .gigafon-link {
    color: #ff6bcd;
}

/* Баннер на главной */
.special-banner {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 107, 205, 0.2);
    border-bottom: 1px solid rgba(179, 102, 255, 0.2);
}
.special-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.special-banner-text h2 {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #ff6bcd, #b366ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 2.2rem;
}
.special-banner-text p {
    color: #a0b8d0;
    font-size: 1.05rem;
    margin: 0.5rem 0;
}
.special-banner-text .btn-special {
    margin-top: 0.5rem;
}
.special-banner-visual {
    position: relative;
    width: 150px;
    height: 150px;
}
.special-banner-visual .neon-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 205, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: pulse 3s ease-in-out infinite;
}
.special-banner-visual .neon-circle:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(179, 102, 255, 0.3);
    animation-delay: 1.5s;
}
.special-banner-visual .neon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #ff6bcd;
    text-shadow: 0 0 20px rgba(255, 107, 205, 0.5);
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #000000;
    border-top: 1px solid rgba(112, 176, 255, 0.08);
    padding: 3rem 0 1rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer__col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer__col a {
    display: block;
    color: #a0b8d0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer__col a:hover {
    color: #70b0ff;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0 0;
    margin-top: 2rem;
    text-align: center;
    color: #6f8ba0;
    font-size: 0.9rem;
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

/* Планшеты и маленькие ноутбуки */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }
    .portfolio-card-accordion {
        flex: 0 0 400px;
    }
    .portfolio-card-accordion:hover {
        flex: 0 0 600px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Телефоны (до 768px) */
@media (max-width: 768px) {
    /* Скрываем десктопные иконки соцсетей */
    .desktop-only {
        display: none !important;
    }

    /* Показываем мобильный контакт */
    .mobile-contact-dropdown {
        display: block;
    }

    /* Бургер слева */
    .burger {
        display: flex;
        order: -1;
        margin-right: 10px;
    }

    /* Логотип по центру */
    .logo {
        flex: 1;
        justify-content: center;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-img {
        height: 36px;
    }

    /* Навигация скрыта, пока бургер не откроет */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(112, 176, 255, 0.15);
        padding: 1rem 0;
    }
    .nav.open {
        display: block;
    }
    .nav__list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        padding: 0 20px;
    }
    .nav__list > li > a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(112, 176, 255, 0.05);
    }
    .nav__item--dropdown .dropdown {
        position: static;
        background: transparent;
        border: none;
        padding-left: 1rem;
        box-shadow: none;
    }

    .header__contacts {
        gap: 10px;
        align-items: center;
    }

    /* УМЕНЬШАЕМ ПАРЯЩИЕ ИКОНКИ НА МОБИЛКЕ */
    .animated-icon {
        width: 48px;
        height: 48px;
    }
    .animated-icons {
        gap: 1rem;
    }

    /* УМЕНЬШАЕМ ИКОНКИ В БЛОКЕ "ПОЧЕМУ" */
    .why-item .icon {
        width: 48px;
        height: 48px;
    }

    /* Кнопки в герое */
    .hero-buttons {
        gap: 0.8rem;
    }
    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Заголовки */
    .hero__title {
        font-size: 2rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    h1 {
        font-size: 2.2rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }

    /* Аккордеон */
    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }
    .accordion-content {
        padding: 0 1.2rem;
    }
    .accordion-item.active .accordion-content {
        padding: 1rem 1.2rem;
    }

    /* Карусель */
    .portfolio-card-accordion {
        flex: 0 0 300px;
    }
    .portfolio-card-accordion:hover {
        flex: 0 0 450px;
    }
    .portfolio-card-accordion img {
        height: 200px;
    }

    /* Блок "Почему" */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* ====== СПЕЦПРЕДЛОЖЕНИЕ (мобильные правки) ====== */
    .special-title {
        font-size: 2.2rem;
    }
    .special-subtitle {
        font-size: 1.1rem;
    }
    .special-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .special-card {
        padding: 1.5rem 1rem;
    }
    .card-content .card-icon {
        font-size: 2.2rem;
    }
    .card-content h3 {
        font-size: 1.1rem;
    }
    .special-offer-details {
        padding: 1.5rem;
    }
    .special-offer-details ul li {
        font-size: 0.9rem;
    }
    .btn-special {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    /* Баннер спецпредложения на главной */
    .special-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .special-banner-text h2 {
        font-size: 1.8rem;
    }
    .special-banner-text p {
        font-size: 0.95rem;
    }
    .special-banner-visual {
        width: 100px;
        height: 100px;
    }
    .special-banner-visual .neon-text {
        font-size: 0.9rem;
    }
}

/* Очень маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .animated-icon {
        width: 40px;
        height: 40px;
    }
    .why-item .icon {
        width: 40px;
        height: 40px;
    }
    .hero-buttons .btn {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-img {
        height: 30px;
    }
    .hero__title {
        font-size: 1.8rem;
    }

    /* Спецпредложение ещё мельче */
    .special-title {
        font-size: 1.8rem;
    }
    .special-subtitle {
        font-size: 1rem;
    }
    .card-content .card-icon {
        font-size: 1.8rem;
    }
    .special-banner-text h2 {
        font-size: 1.5rem;
    }
}