* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    padding: 30px 20px;
    color: #000000;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 48px;
    padding: 40px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    animation: containerAppear 0.8s ease-out;
}

@keyframes containerAppear {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes glow { 0% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); } 50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); } 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes borderFlow { 0% { background-position: 0% bottom; } 100% { background-position: 200% bottom; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 3px solid #22c55e;
    animation: slideIn 0.6s ease;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #15803d;
    line-height: 1.2;
    word-break: break-word;
}

.logo-megafon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.contacts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.contacts a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #22c55e;
    color: white;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.contacts a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    background: #15803d;
}

.offer-block {
    background: #22c55e;
    border-radius: 32px;
    padding: 35px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease, float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    color: white;
}

.offer-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(34, 197, 94, 0.4);
}

.offer-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 1.5s ease infinite;
}

.offer-block h1 { font-size: 32px; margin-bottom: 15px; color: white; }
.offer-block p { color: rgba(255, 255, 255, 0.9); }

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.offer-features span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.5s ease backwards;
}

.offer-features span:nth-child(1) { animation-delay: 0.1s; }
.offer-features span:nth-child(2) { animation-delay: 0.2s; }
.offer-features span:nth-child(3) { animation-delay: 0.3s; }
.offer-features span:nth-child(4) { animation-delay: 0.4s; }

.offer-features span:hover {
    transform: scale(1.05) translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
}

.offer-note {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 24px;
    font-weight: 500;
    color: white;
    animation: glow 2s infinite;
}

.section-title {
    font-size: 36px;
    margin: 50px 0 30px;
    padding-left: 20px;
    border-left: 5px solid #22c55e;
    color: #000000;
    animation: fadeInRight 0.6s ease;
}

.tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tariff-card {
    background: #f0fdf4;
    border-radius: 32px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #bbf7d0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tariff-card:nth-child(1) { animation-delay: 0.1s; }
.tariff-card:nth-child(2) { animation-delay: 0.2s; }
.tariff-card:nth-child(3) { animation-delay: 0.3s; }

.tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #22c55e;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tariff-card:hover::before { transform: scaleX(1); }

.tariff-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px -12px rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
}

.tariff-card.selected {
    border: 2px solid #22c55e;
    box-shadow: 0 20px 35px -10px rgba(34, 197, 94, 0.4);
    background: #dcfce7;
    animation: pulse 0.5s ease;
}

.tariff-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.tariff-card__badge { background: #22c55e; color: white; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 4px; letter-spacing: 0.5px; }
.tariff-card__name { font-size: 16px; font-weight: 700; color: #000000; }
.tariff-card__price { display: flex; align-items: baseline; gap: 6px; padding: 8px 0; }
.tariff-card__price-number { font-size: 42px; font-weight: 900; color: #15803d; line-height: 1; }
.tariff-card__price-currency { font-size: 14px; font-weight: 700; color: #15803d; }
.tariff-card__features { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 10px; }
.tariff-card__feature { display: flex; flex-direction: column; gap: 2px; }
.tariff-card__feature-value { font-size: 28px; font-weight: 800; color: #000000; line-height: 1; }
.tariff-card__feature-label { font-size: 12px; font-weight: 700; color: #333333; letter-spacing: 0.3px; }
.tariff-card__feature-desc { font-size: 11px; color: #666666; font-weight: 400; max-width: 90%; }
.tariff-card__feature--bonus { background: #e8f5e9; padding: 8px 12px; border-radius: 8px; margin: 2px 0; }
.tariff-card__feature-bonus-highlight { font-size: 12px; font-weight: 700; color: #15803d; }
.tariff-card__feature--unlimited { background: #22c55e; padding: 10px 14px; border-radius: 10px; color: white; display: flex; flex-direction: column; align-items: center; text-align: center; }
.tariff-card__feature-unlimited-icon { font-size: 24px; font-weight: 900; line-height: 1; }
.tariff-card__feature-unlimited-text { font-size: 15px; font-weight: 800; letter-spacing: 0.5px; }
.tariff-card__feature-unlimited-sub { font-size: 11px; font-weight: 500; opacity: 0.9; }

.select-tariff {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.select-tariff::after { content: '→'; position: absolute; right: 20px; opacity: 0; transition: all 0.3s ease; }
.select-tariff:hover::after { opacity: 1; right: 15px; }
.select-tariff:hover { transform: scale(1.02); box-shadow: 0 5px 20px rgba(34, 197, 94, 0.5); background: #15803d; letter-spacing: 1px; }

.important-note {
    background: #fef9c3;
    border-left: 5px solid #eab308;
    border-radius: 24px;
    padding: 20px;
    margin: 30px 0;
    font-weight: 500;
    color: #000000;
    animation: glow 2s infinite;
    transition: all 0.3s ease;
}

.conditions {
    background: #e0f2fe;
    border-radius: 28px;
    padding: 25px;
    margin: 30px 0;
    animation: fadeInLeft 0.6s ease;
    transition: all 0.3s ease;
}

.conditions:hover { transform: translateX(5px); box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.2); }
.conditions h3 { color: #0284c7; margin-bottom: 15px; }
.red { color: #dc2626; font-weight: bold; animation: pulse 1s infinite; }

.prices-info { display: flex; gap: 25px; flex-wrap: wrap; margin: 30px 0; }
.price-item { flex: 1; background: #22c55e; border-radius: 28px; padding: 25px; transition: all 0.3s ease; animation: fadeInUp 0.6s ease backwards; color: white; }
.price-item:nth-child(1) { animation-delay: 0.2s; }
.price-item:nth-child(2) { animation-delay: 0.4s; }
.price-item:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px -10px rgba(34, 197, 94, 0.4); background: #15803d; }
.price-item strong { color: white; }
.price-item .small { color: rgba(255, 255, 255, 0.8); font-size: 12px; margin-top: 8px; }

.connection-guide { background: #f0fdf4; border-radius: 32px; padding: 30px; margin: 30px 0; animation: fadeInUp 0.6s ease; }
.guide-tabs { display: flex; gap: 15px; margin-bottom: 30px; border-bottom: 2px solid #bbf7d0; padding-bottom: 5px; }
.tab-btn { background: none; border: none; padding: 12px 28px; font-size: 18px; font-weight: 600; cursor: pointer; border-radius: 40px; transition: all 0.3s ease; color: #666666; }
.tab-btn.active { background: #22c55e; color: white; box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3); }
.tab-btn:hover:not(.active) { background: #dcfce7; color: #15803d; }
.tab-content { display: none; animation: fadeInUp 0.4s ease; }
.tab-content.active { display: block; }
.guide-steps { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
.guide-step { display: flex; gap: 20px; align-items: flex-start; background: white; padding: 18px 22px; border-radius: 20px; transition: all 0.3s ease; border: 1px solid #bbf7d0; }
.guide-step:hover { transform: translateX(10px); border-color: #22c55e; box-shadow: 0 5px 15px rgba(34, 197, 94, 0.15); }
.step-number { width: 50px; height: 50px; background: #22c55e; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; flex-shrink: 0; animation: pulse 2s ease infinite; }
.step-content h4 { margin-bottom: 5px; color: #000000; font-size: 18px; }
.step-content p { color: #555555; line-height: 1.5; }
.guide-note { background: #22c55e; border-radius: 20px; padding: 18px 22px; color: white; text-align: center; animation: glow 2s infinite; }
.note-icon { font-size: 24px; margin-right: 10px; }

.faq { display: flex; flex-direction: column; gap: 16px; margin: 30px 0; }
.faq-item { background: white; border-radius: 24px; overflow: hidden; transition: all 0.3s ease; border: 1px solid #e2e8f0; animation: fadeInUp 0.5s ease backwards; }
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:hover { box-shadow: 0 10px 25px -10px rgba(34, 197, 94, 0.3); transform: translateX(5px); }
.question { background: #f8fafc; padding: 20px 25px; cursor: pointer; font-weight: 700; font-size: 18px; transition: all 0.3s ease; position: relative; color: #000000; }
.question::after { content: '▼'; position: absolute; right: 25px; color: #22c55e; transition: transform 0.3s ease; }
.faq-item.active .question::after { transform: rotate(180deg); }
.question:hover { background: #dcfce7; }
.answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: #333333; line-height: 1.6; }
.faq-item.active .answer { padding: 0 25px 25px 25px; max-height: 500px; }

.order-form { background: #f0fdf4; border-radius: 40px; padding: 40px; margin-top: 50px; animation: zoomIn 0.6s ease; transition: all 0.3s ease; }
.order-form:hover { box-shadow: 0 20px 40px -15px rgba(34, 197, 94, 0.2); }
.order-form h2 { font-size: 32px; margin-bottom: 25px; color: #000000; }
.order-summary { background: white; border-radius: 24px; padding: 20px; margin: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; font-weight: 600; animation: pulse 2s infinite; color: #000000; }
.order-summary span { color: #15803d; font-size: 20px; font-weight: 800; }
.order-note { background: rgba(255, 255, 255, 0.8); border-radius: 20px; padding: 18px; font-size: 13px; color: #333333; margin: 20px 0; line-height: 1.6; }
#order-form input, #order-form .g-recaptcha { width: 100%; margin: 10px 0; }
#order-form input { padding: 16px 20px; border: 2px solid #bbf7d0; border-radius: 60px; font-size: 16px; transition: all 0.3s ease; color: #000000; }
#order-form input:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); transform: scale(1.01); }

/* ========== ВАРИАНТ 3: Radio cards ========== */
.radio-group {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.radio-item {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.15);
}

.radio-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-item input[type="checkbox"]:checked ~ .radio-content .radio-checkmark {
    border-color: #22c55e;
    background: #22c55e;
}

.radio-item input[type="checkbox"]:checked ~ .radio-content .radio-checkmark:after {
    display: block;
}

.radio-item input[type="checkbox"]:checked ~ .radio-badge {
    background: #22c55e;
    color: white;
}

.radio-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.radio-checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.radio-checkmark:after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: none;
}

.radio-text { flex: 1; }
.radio-title { font-weight: 600; font-size: 16px; color: #000000; margin-bottom: 4px; }
.radio-desc { font-size: 13px; color: #6b7280; }
.radio-desc a { color: #22c55e; text-decoration: underline; }

.radio-badge {
    background: #f0fdf4;
    color: #15803d;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-radio {
    background: #fef9c3;
    border-color: #fde047;
}

.consent-radio .radio-checkmark {
    border-color: #eab308;
}

.consent-radio input[type="checkbox"]:checked ~ .radio-content .radio-checkmark {
    background: #eab308;
    border-color: #eab308;
}

.required-star { color: #ef4444; margin-left: 4px; }

.form-loader { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px; background: #dcfce7; border-radius: 60px; margin: 10px 0; }
.spinner { width: 24px; height: 24px; border: 3px solid #22c55e; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
#order-form button { width: 100%; padding: 16px; background: #22c55e; color: white; border: none; border-radius: 60px; font-size: 18px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; position: relative; overflow: hidden; }
#order-form button:disabled { opacity: 0.6; cursor: not-allowed; }
#order-form button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
#order-form button:hover:not(:disabled)::before { left: 100%; }
#order-form button:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 10px 30px -5px rgba(34, 197, 94, 0.6); background: #15803d; letter-spacing: 1px; }
.form-footnote { text-align: center; margin-top: 25px; padding: 15px; background: white; border-radius: 60px; font-weight: 500; color: #15803d; border: 1px solid #bbf7d0; }
#form-success { background: #dcfce7; border-radius: 24px; padding: 30px; text-align: center; font-weight: bold; color: #15803d; animation: zoomIn 0.5s ease; }

.footer { margin-top: 50px; padding-top: 30px; border-top: 1px solid #e2e8f0; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer__copyright { color: #666666; font-size: 14px; }
.footer__requisites { font-size: 12px; color: #94a3b8; margin-top: 8px; line-height: 1.5; }
.license-note { display: inline-block; margin-top: 5px; font-size: 11px; color: #22c55e; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: #22c55e; text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: #15803d; text-decoration: underline; }

.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); animation: fadeInUp 0.3s ease; }
.modal-content { background-color: #ffffff; margin: 5% auto; padding: 0; width: 90%; max-width: 700px; border-radius: 32px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); animation: zoomIn 0.3s ease; max-height: 85vh; overflow: hidden; display: flex; flex-direction: column; }
.modal-content h2 { padding: 25px 30px 15px; color: #000000; border-bottom: 2px solid #22c55e; background: #ffffff; position: sticky; top: 0; font-size: 24px; }
.modal-body { padding: 20px 30px 30px; overflow-y: auto; line-height: 1.6; color: #333333; }
.modal-body p { margin-bottom: 15px; }
.modal-body ul { margin: 10px 0 20px 25px; }
.modal-body li { margin-bottom: 8px; }
.modal-body strong { color: #15803d; }
.modal-body a { color: #22c55e; text-decoration: none; }
.modal-body a:hover { text-decoration: underline; }
.modal-close { position: absolute; right: 25px; top: 20px; font-size: 32px; font-weight: bold; color: #999999; cursor: pointer; transition: all 0.3s ease; z-index: 10; }
.modal-close:hover { color: #22c55e; transform: scale(1.1); }

.modal-tariff { max-width: 500px; }
.tariff-modal-header { display: flex; align-items: center; gap: 15px; padding: 25px 30px 15px; border-bottom: 2px solid #22c55e; }
.tariff-modal-icon { font-size: 40px; background: #22c55e; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 30px; animation: pulse 2s ease infinite; color: white; }
.tariff-modal-header h2 { margin: 0; padding: 0; border: none; font-size: 24px; color: #000000; }
.tariff-modal-price { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-radius: 20px; padding: 15px 20px; margin: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.price-label { font-size: 16px; color: #333333; font-weight: 500; }
.price-value { font-size: 28px; font-weight: 800; color: #22c55e; animation: glow 2s infinite; }
.tariff-modal-features { margin: 20px 0; }
.tariff-modal-features h3 { color: #000000; margin-bottom: 15px; font-size: 18px; }
.tariff-modal-features ul { list-style: none; padding: 0; }
.tariff-modal-features li { padding: 10px 0; border-bottom: 1px solid #e2e8f0; color: #333333; font-weight: 500; }
.tariff-modal-features li:last-child { border-bottom: none; }
.tariff-modal-info { background: #f8fafc; border-radius: 20px; padding: 15px 20px; margin: 20px 0; }
.info-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; font-size: 14px; color: #555555; line-height: 1.5; }
.info-icon { font-size: 18px; min-width: 30px; }
.tariff-modal-action { margin-top: 25px; text-align: center; }
.tariff-modal-action .btn { width: 100%; padding: 14px; font-size: 16px; background: #22c55e; color: white; border: none; border-radius: 40px; cursor: pointer; transition: all 0.3s ease; }
.tariff-modal-action .btn:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4); }

/* ========== ПЛАВАЮЩАЯ КНОПКА СВЯЗИ ========== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease backwards;
}
/* reCAPTCHA стили */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Логотип в модальном окне паспортных данных */
.passport-modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Улучшенная мобильная адаптация для паспортного модального окна */
@media (max-width: 768px) {
    .passport-modal-content {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
    }

    .passport-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .passport-modal-logo {
        width: 60px;
        height: 60px;
    }

    .passport-modal-header h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .passport-intro {
        padding: 12px 15px;
        font-size: 14px;
        margin: 15px 15px;
    }

    .passport-section-title {
        font-size: 16px;
        margin: 20px 15px 10px;
        padding: 0 15px;
    }

    .passport-form {
        padding: 0 15px;
        gap: 15px;
    }

    .passport-field {
        gap: 5px;
    }

    .passport-field label {
        font-size: 14px;
        line-height: 1.4;
    }

    .passport-field label .optional {
        font-size: 12px;
        display: block;
        margin-top: 3px;
    }

    .passport-field input,
    .passport-field textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .passport-submit-btn {
        margin: 15px;
        padding: 16px;
        font-size: 16px;
    }

    .passport-note {
        margin: 15px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .passport-info-block {
        margin: 15px;
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .passport-privacy-note {
        margin: 15px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .passport-footer-note {
        margin: 15px;
        padding-top: 15px;
        font-size: 12px;
    }

    .modal-close.passport-modal-close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

/* Ещё более мелкие экраны */
@media (max-width: 480px) {
    .passport-modal-logo {
        width: 50px;
        height: 50px;
    }

    .passport-modal-header h2 {
        font-size: 16px;
    }

    .passport-field label {
        font-size: 13px;
    }

    .passport-field input,
    .passport-field textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ========== СТИЛИ ДЛЯ ФОРМЫ ПАСПОРТНЫХ ДАННЫХ ========== */

.passport-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между полями */
    margin-top: 20px;
}

.passport-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.passport-field label {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.passport-field input,
.passport-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px; /* Небольшое скругление как на скрине */
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    box-sizing: border-box;
}

.passport-field textarea {
    min-height: 80px;
    resize: vertical;
}

.passport-field input:focus,
.passport-field textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* Кнопка "Отправить данные" */
.passport-submit-btn {
    background-color: #22c55e; /* Зеленый цвет как на скрине */
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    align-self: flex-start; /* Кнопка не на всю ширину */
}

.passport-submit-btn:hover {
    background-color: #16a34a;
}

.passport-submit-btn:active {
    transform: translateY(1px);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .passport-submit-btn {
        width: 100%; /* На телефоне кнопка на всю ширину */
        align-self: stretch;
    }

    .passport-field input,
    .passport-field textarea {
        font-size: 16px; /* Чтобы iOS не зумил инпуты */
    }
}

.g-recaptcha > div {
    transform: scale(1);
    transform-origin: 0 0;
}

@media (max-width: 768px) {
    .g-recaptcha > div {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

.floating-btn:nth-child(1) { animation-delay: 0.1s; }
.floating-btn:nth-child(2) { animation-delay: 0.2s; }
.floating-btn:nth-child(3) { animation-delay: 0.3s; }
.floating-btn:nth-child(4) { animation-delay: 0.4s; }

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.floating-btn.whatsapp { background: #25D366; }
.floating-btn.telegram { background: #0088cc; }
.floating-btn.phone { background: #22c55e; }
.floating-btn.max { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.floating-btn.max:hover { background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%); }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a2e; color: white; padding: 15px 20px; z-index: 1001; box-shadow: 0 -4px 15px rgba(0,0,0,0.2); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.cookie-content p { margin: 0; font-size: 14px; }
.cookie-content a { color: #22c55e; }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-btn { padding: 8px 20px; border-radius: 30px; cursor: pointer; font-weight: 500; transition: all 0.3s ease; }
.cookie-btn.accept { background: #22c55e; color: white; border: none; }
.cookie-btn.accept:hover { background: #15803d; }
.cookie-btn.decline { background: transparent; color: #ccc; border: 1px solid #ccc; }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 1024px) {
    .tariffs { grid-template-columns: repeat(2, 1fr); }
    .contacts { gap: 15px; }
    .contacts a { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 768px) {
    body { padding: 15px; }
    .container { padding: 25px 20px; border-radius: 32px; }
    .header { flex-direction: column; text-align: center; gap: 20px; }
    .logo { font-size: 20px; gap: 8px; justify-content: center; }
    .logo-text { font-size: 20px; }
    .logo-megafon-img { width: 35px; height: 35px; }
    .section-title { font-size: 28px; }
    .offer-block h1 { font-size: 24px; }
    .order-form { padding: 25px; }
    .tariff-card:hover { transform: translateY(-5px) scale(1.01); }
    .tariffs { grid-template-columns: 1fr; }
    .tariff-card__price-number { font-size: 36px; }
    .tariff-card__feature-value { font-size: 24px; }
    .tariff-card__feature--unlimited { padding: 8px 12px; }
    .contacts { gap: 10px; justify-content: center; }
    .contacts a { padding: 8px 14px; font-size: 12px; }
    .connection-guide { padding: 20px; }
    .guide-step { flex-direction: column; align-items: center; text-align: center; }
    .step-number { margin-bottom: 10px; }
    .tab-btn { padding: 8px 20px; font-size: 14px; }
    .guide-tabs { justify-content: center; }
    .modal-content { margin: 10% auto; width: 95%; border-radius: 24px; }
    .modal-content h2 { padding: 20px 20px 10px; font-size: 20px; }
    .modal-body { padding: 15px 20px 20px; }
    .modal-close { right: 20px; top: 18px; font-size: 28px; }
    .modal-tariff { margin: 15% auto; width: 95%; }
    .tariff-modal-header { padding: 20px 20px 10px; gap: 10px; }
    .tariff-modal-icon { width: 45px; height: 45px; font-size: 28px; }
    .tariff-modal-header h2 { font-size: 18px; }
    .price-value { font-size: 22px; }
    .tariff-modal-price { flex-direction: column; text-align: center; gap: 10px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .footer__inner { flex-direction: column; text-align: center; }
    .footer__links { justify-content: center; }
    .floating-contact { bottom: 20px; right: 20px; }
    .floating-btn { width: 50px; height: 50px; }
    .floating-btn svg { width: 24px; height: 24px; }
    .radio-item { flex-wrap: wrap; }
    .radio-badge { margin-left: auto; }
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #22c55e; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #15803d; }