/* Базовые сбросы и переменные */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0e1a;
    color: #f0f4fa;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}
@media (max-width:480px){

.container{
    padding-left:18px;
    padding-right:18px;
}

}
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

/* Градиентный фон */
.bg-glow {
    position: relative;
    overflow: hidden;
    padding: 0px 30px;
}
.bg-glow::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -10%;
    width: 700px;
    height: 500px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0) 70%);
    pointer-events: none;
    z-index: 0;
}
.bg-glow > * {
    position: relative;
    z-index: 1;
}

/* Хедер */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(11, 14, 26, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}
.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #f0f4fa, #c0c8d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

.nav {
    display: none;
    gap: 4px;
}
.nav a {
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: #b0baca;
    transition: 0.2s;
}
.nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-actions .btn-outline {
    display: none;
}
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .header-actions .btn-outline {
        display: inline-block;
    }
}
.btn-outline {
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #e0e6f0;
    font-weight: 600;
    font-size: 13px;
    transition: 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 107, 0.4);
}
.btn-primary {
    padding: 8px 18px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.25);
    transition: 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.35);
}
.btn-primary-sm {
    padding: 6px 14px;
    font-size: 12px;
}
.btn-block {
    width: 100%;
    justify-content: center;
    display: block;
    text-align: center;
}

/* Герой */
.hero {
    padding: 30px 0 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        padding: 70px 0 50px;
        gap: 40px;
    }
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.2);
    padding: 3px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #ff8a7a;
    width: fit-content;
}
@media (min-width: 480px) {
    .badge {
        font-size: 13px;
        padding: 4px 16px;
    }
}
.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
}
.hero h1 span {
    background: linear-gradient(to right, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 15px;
    color: #b0baca;
    max-width: 520px;
}
@media (min-width: 480px) {
    .hero p {
        font-size: 18px;
    }
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: #b0baca;
}
@media (min-width: 480px) {
    .hero-features {
        gap: 12px 24px;
        font-size: 14px;
    }
}
.hero-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.hero-features span::before {
    content: '✓';
    color: #ff6b6b;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline {
    font-size: 13px;
    padding: 10px 20px;
}
@media (min-width: 480px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        font-size: 14px;
        padding: 10px 24px;
    }
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image .globe-placeholder {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1/1;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.25), rgba(255, 107, 107, 0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    filter: drop-shadow(0 0 40px rgba(255, 107, 107, 0.2));
}
@media (min-width: 480px) {
    .hero-image .globe-placeholder {
        max-width: 350px;
        font-size: 100px;
    }
}
@media (min-width: 768px) {
    .hero-image .globe-placeholder {
        max-width: 400px;
        font-size: 120px;
    }
}

/* Секции */
.section {
    padding: 40px 0;
}
@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.section-sub {
    color: #b0baca;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 15px;
    text-align: center;
}
@media (min-width: 480px) {
    .section-sub {
        font-size: 17px;
        margin-bottom: 40px;
    }
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 480px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px 20px;
    transition: 0.25s;
}
@media (max-width: 480px) {
    .card {
        padding: 20px 16px;
    }
}
.card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 107, 0.15);
    transform: translateY(-4px);
}
.card-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
@media (min-width: 480px) {
    .card-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
}
.card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
@media (min-width: 480px) {
    .card h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
}
.card p {
    color: #b0baca;
    font-size: 14px;
}
@media (min-width: 480px) {
    .card p {
        font-size: 15px;
    }
}

/* Локации (бегущая строка) */
.locations-section {
    padding-top: 20px;
}
.location-strip {
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
@media (min-width: 480px) {
    .location-strip {
        padding: 20px 0;
    }
}
.location-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scroll 36s linear infinite;
}
@media (min-width: 480px) {
    .location-track {
        gap: 16px;
    }
}
.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .location-tag {
        padding: 8px 20px;
        font-size: 15px;
        gap: 8px;
    }
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Тарифы */
.tariff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 480px) {
    .tariff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .tariff-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.tariff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 24px 20px 20px;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}
@media (max-width: 480px) {
    .tariff-card {
        padding: 20px 16px 18px;
    }
}
.tariff-card:hover {
    background: rgba(255, 255, 255, 0.06);
}
.tariff-card.popular {
    border-color: rgba(255, 107, 107, 0.4);
    background: rgba(255, 107, 107, 0.06);
    position: relative;
}
.tariff-card.popular::before {
    content: 'Частый выбор';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 2px 14px;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .tariff-card.popular::before {
        font-size: 11px;
        padding: 2px 16px;
    }
}
.tariff-name {
    font-size: 16px;
    font-weight: 600;
}
@media (min-width: 480px) {
    .tariff-name {
        font-size: 18px;
    }
}
.tariff-price {
    font-size: 28px;
    font-weight: 800;
    margin: 8px 0 4px;
}
@media (min-width: 480px) {
    .tariff-price {
        font-size: 32px;
        margin: 12px 0 4px;
    }
}
.tariff-price small {
    font-size: 14px;
    font-weight: 400;
    color: #b0baca;
    margin-left: 4px;
}
.tariff-old {
    font-size: 13px;
    color: #6a7a8a;
    text-decoration: line-through;
    margin-bottom: 6px;
}
.tariff-perks {
    list-style: none;
    margin: 12px 0 16px;
    flex: 1;
}
@media (min-width: 480px) {
    .tariff-perks {
        margin: 16px 0 20px;
    }
}
.tariff-perks li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #c8d0dc;
    padding: 3px 0;
}
@media (min-width: 480px) {
    .tariff-perks li {
        font-size: 14px;
        padding: 4px 0;
        gap: 8px;
    }
}
.tariff-perks li::before {
    content: '•';
    color: #ff6b6b;
    font-weight: 700;
}
.tariff-card .btn-outline,
.tariff-card .btn-primary {
    text-align: center;
    display: block;
    padding: 10px;
    font-size: 13px;
}
@media (min-width: 480px) {
    .tariff-card .btn-outline,
    .tariff-card .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
}

/* CTA блок */
.cta-section {
    padding-top: 0;
}
.cta-block {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.02));
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 28px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
}
@media (max-width: 480px) {
    .cta-block {
        padding: 24px 20px;
        border-radius: 24px;
    }
}
@media (min-width: 768px) {
    .cta-block {
        flex-direction: row;
        text-align: left;
        padding: 40px 36px;
        gap: 24px;
        border-radius: 40px;
    }
}
.cta-block h3 {
    font-size: 20px;
    font-weight: 700;
}
@media (min-width: 480px) {
    .cta-block h3 {
        font-size: 24px;
    }
}
.cta-block p {
    color: #b0baca;
    max-width: 400px;
    font-size: 14px;
}
@media (min-width: 480px) {
    .cta-block p {
        font-size: 15px;
    }
}
.cta-block .btn-primary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
}
@media (min-width: 480px) {
    .cta-block .btn-primary {
        padding: 12px 32px;
        font-size: 16px;
    }
}

/* FAQ */
.faq-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
}
@media (max-width: 480px) {
    .faq-item {
        padding: 14px 0;
    }
}
.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 4px 0;
    user-select: none;
    gap: 12px;
}
@media (min-width: 480px) {
    .faq-question {
        font-size: 17px;
    }
}
.faq-question:hover {
    color: #fff;
}
.faq-sign {
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}
@media (min-width: 480px) {
    .faq-sign {
        font-size: 22px;
    }
}
.faq-answer {
    color: #b0baca;
    padding-top: 8px;
    font-size: 14px;
    display: none;
    line-height: 1.6;
}
@media (min-width: 480px) {
    .faq-answer {
        font-size: 15px;
        padding-top: 10px;
    }
}
.faq-answer.open {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Футер */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px 20px;
    text-align: center;
    color: #6a7a8a;
    font-size: 13px;
}
@media (max-width: 480px) {
    .footer {
        padding: 24px 16px 16px;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-brand {
    font-weight: 700;
    font-size: 20px;
    color: #e0e6f0;
}
@media (max-width: 480px) {
    .footer-brand {
        font-size: 17px;
    }
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    margin: 12px 0;
}
@media (min-width: 480px) {
    .footer-links {
        gap: 8px 24px;
        margin: 16px 0;
    }
}
.footer-links a {
    color: #b0baca;
    transition: 0.2s;
}
.footer-links a:hover {
    color: #fff;
}

/* Мобильная кнопка */
.btn-block-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: linear-gradient(to top, rgba(11, 14, 26, 0.95), transparent);
    padding: 16px 24px 14px;
}
@media (max-width: 480px) {
    .btn-block-mobile {
        padding: 12px 20px 10px;
    }
}
@media (min-width: 768px) {
    .btn-block-mobile {
        display: none;
    }
}
.btn-block-mobile .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
}
@media (max-width: 480px) {
    .btn-block-mobile .btn-primary {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Дополнительный класс для лейблов секций */
.section-label {
    color: #ff8a7a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    display: inline-block;
}
@media (max-width: 480px) {
    .section-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* утилиты */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }