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

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1a1a1a;
}

/* Шапка */
.header {
    background: white;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5ea;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    gap: 15px;
}

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

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}
.logo_style{
    text-decoration:none;
}
.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #3c71dd;
}

.header-phone {
    font-weight: 700;
    color: #2c3e50;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s;
  background: #343335;
  color: #fff;
  text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
    z-index: 1001;
}

/* Главный блок */
.hero {
    /*background: linear-gradient(135deg, #f5f7fa 0%, #eef2f6 100%);*/
    background-image: url(/img/bg.jpg) !important;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero h1 span {
    color: #3c71dd;
}

.hero-desc {
    font-size: 1.3rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-cards {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3c71dd;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 5px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #3c71dd, #2c5acf);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(60,113,221,0.3);
}

/* Секции */
.section {
    padding: 70px 24px;
}

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

.section-title {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #afb7c4;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: #343335;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #3c71dd;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color:#fff;
}

.feature-card p {
    color: #afb7c4;
}

/* Шаги */
.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    /*Новое*/
    background: #343335;
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3c71dd, #2c5acf);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Квиз форма */
.quiz-section {
    background: white;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 0 24px 70px;
}

.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

.quiz-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3c71dd, #5b8cff);
    width: 0%;
    transition: width 0.3s ease;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.question-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.quiz-option {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.quiz-option:hover {
    border-color: #245A7A;
    background: #f8faff;
}

.quiz-option.selected {
    border-color: #3c71dd;
    background: #eef2ff;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-secondary {
    padding: 12px 30px;
    background: #f1f5f9;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.quiz-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: inherit;
}

.quiz-input:focus {
    outline: none;
    border-color: #245A7A;
}

.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Футер */
.footer {
    /*background: #0f172a;*/
        background-image: url(/img/bg.jpg) !important;
    color: white;
    padding: 50px 24px 30px;
    /*margin-top: 50px;*/
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-top: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.8;
}

/* Мобильное меню - новые стили */
@media (max-width: 768px) {
    .nav-menu, .header-phone, .social-icons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 46px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quiz-section {
        padding: 30px 20px;
        margin: 0 16px 50px;
    }
    
    .stats-cards {
        flex-direction: column;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    /* Стили для открытого меню */
    .nav-menu {
        display: none;
    }
    
    .mobile-phone {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .mobile-phone i {
        color: #fdb12a !important;
    }
    
    .mobile-social {
        display: flex !important;
        gap: 15px;
        justify-content: center;
    }
    
    .mobile-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #0b0b0b;
        color: #fff;
        font-size: 24px;
        transition: all 0.2s;
    }
    
    .mobile-social a:hover {
        background: #3c71dd;
        color: white;
        transform: translateY(-2px);
    }
    
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f1f5f9;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-close-btn:hover {
        background: #e2e8f0;
        transform: rotate(90deg);
    }
    
    .mobile-close-btn i {
        font-size: 1.2rem;
        color: #2c3e50;
    }
    
    /* Анимация появления меню */
    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav-menu {
        animation: slideIn 0.3s ease-out;
    }
}

.menu-overlay {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.imglogo {
    max-width: 44px;
}
/* Дополнительные стили для корректного отображения на десктопе */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        flex-direction: row !important;
        gap: 30px !important;
    }
    
    .header-phone {
        display: flex !important;
    }
    
    .social-icons {
        display: flex !important;
                font-size: 24px;
    }
}
/* Стили для кликабельного номера телефона в мобильном меню */
.mobile-phone a {
    transition: color 0.2s;
}

.mobile-phone a:hover {
    color: #3c71dd !important;
}

/* Стили для кнопки бургера */
.mobile-menu-btn {
    transition: opacity 0.2s;
}

.mobile-menu-btn:hover {
    opacity: 0.7;
}

/* Стили для крестика */
.mobile-close-btn {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-close-btn:hover {
    transform: rotate(90deg) !important;
    background: #e2e8f0 !important;
}

/* Анимация для меню */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-menu {
    animation: slideIn 0.3s ease-out;
}

/* Hero секция в стиле оригинала */
.hero {
    /*background: linear-gradient(135deg, #f5f7fa 0%, #eef2f6 100%);*/
    background: linear-gradient(39deg, #9db5da 0%, #eef2f6 100%);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    min-height: 721px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Заголовок */
.hero-title {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-title span {
    color: #4f4f4f;
}

/* Описание */
.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 22px;
    line-height: 1.5;
    color: #afb7c4;
    margin: 8px 0;
}

.passport-text {
    font-weight: 600;
    color: #3c71dd !important;
    margin-top: 10px;
}

/* Статистика */
.stats-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 20px 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-width: 160px;
}

.stat-percent, .stat-time {
    font-size: 40px;
    font-weight: 800;
    color: #3c71dd;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-call {
    display: inline-block;
    background: linear-gradient(135deg, #3c71dd, #2c5acf);
    color: black;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(60,113,221,0.3);
}

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

.social-link {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link.telegram {
    background: #26A5E4;
    color: white;
}

.social-link.viber {
    background: #665CAC;
    color: white;
}

.social-link i {
    font-size: 28px;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Изображение кредитной карты */
.credit-card-image {
    position: relative;
    display: inline-block;
}

.card-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.card-img:hover {
    transform: translateY(-5px);
}

/* Десктопная карта - видна только на больших экранах */
.desktop-card {
    flex: 1;
    text-align: center;
    max-width: 500px;
}

/* Мобильная карта - скрыта по умолчанию */
.mobile-card {
    display: none;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-description p {
        font-size: 18px;
        text-align: center;
    }
    
    /* Скрываем десктопную карту */
    .desktop-card {
        display: none;
    }
    
    /* Показываем мобильную карту */
    .mobile-card {
        display: block;
        margin: 30px 0;
        text-align: center;
    }
    
    .mobile-card .credit-card-image {
        max-width: 280px;
        margin: 0 auto;
        display: inline-block;
    }
    
    /* Скрываем статистику на мобильных */
    .stats-wrapper {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-call {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    .social-link i {
        font-size: 24px;
    }
}

/* Для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-description p {
        font-size: 18px;
    }
    
    .desktop-card {
        max-width: 400px;
    }
}
  /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .flex {
            display: flex;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .items-center {
            align-items: center;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .font-bold {
            font-weight: bold;
        }
        
        .text-gray-500 {
            color: #6b7280;
        }
        
        .hover\:text-gray-700:hover {
            color: #374151;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .block {
            display: block;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .mb-2 {
            margin-bottom: 0.5rem;
        }
        
        .w-full {
            width: 100%;
        }
        
        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .border {
            border-width: 1px;
        }
        
        .border-gray-300 {
            border-color: #d1d5db;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .input-field {
            transition: border-color 0.3s;
        }
        
        .focus\:outline-none:focus {
            outline: none;
        }
        
        .focus\:border-indigo-500:focus {
            border-color: #6366f1;
        }
        
        .relative {
            position: relative;
        }
        
        .absolute {
            position: absolute;
        }
        
        .inset-y-0 {
            top: 0;
            bottom: 0;
        }
        
        .left-0 {
            left: 0;
        }
        
        .pl-3 {
            padding-left: 0.75rem;
        }
        
        .pointer-events-none {
            pointer-events: none;
        }
        
        .phone-input {
            padding-left: 3rem;
        }
        
        .gradient-bg {
                    background: linear-gradient(135deg, #3c71dd, #2c5acf);
                box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
        }
        
        .text-white {
            color: white;
        }
        
        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        
        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .hover\:opacity-90:hover {
            opacity: 0.9;
        }
        
        .transition {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .duration-300 {
            transition-duration: 300ms;
        }
        
        .text-xs {
            font-size: 0.75rem;
        }
        
        .mt-4 {
            margin-top: 1rem;
        }
        .margin {
            
        }
        .btn_call_back{
                text-align: center;
                  margin: 40px 0 0 0;
        }
        .faq-section {
       background: #343335 !important;
        }
        @media (max-width: 768px) {
  .faq-section {
     padding: 40px 10px !important;
   }
   }
   .rounded-full {
    border-radius: 9999px;
}
.accent{
   color: #fdb12a !important;
   text-decoration: none;
}
.bg_accent{
   background: #fdb12a !important;
   color:#000;
}
.faq-toggle i {
     color: #245A7A !important;
}
.footer-text a{
    color:#94a3b8;
    text-decoration: none;
}
.black{
    color:#000;
}
.white{
    color:#fff;
}
.bg_white{
background: #fff !important;
color:#fdb12a;
}
input#enable {
    border: none;
}
/*КАЛЬКУЛЯТОР*/
/* --- Стили калькулятора (в секции hero) --- */
.hero .calculator {
    background: #343335;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero .calculator h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 28px;
    text-align: left;
    color: white;
}

.hero .calculator .form-group {
    margin-bottom: 28px;
}

.hero .calculator label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.hero .calculator #amount-value {
    font-weight: 700;
    color: white;
}

/* Стили для кастомного слайдера */
.hero .calculator .range-container {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

.hero .calculator input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
}

.hero .calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
}

.hero .calculator input[type="range"]::-moz-range-thumb {
    width: 0;
    height: 0;
    opacity: 0;
}

.hero .calculator .custom-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid #fdb12a;
    color: #fdb12a;
    font-size: 1.2rem;
}

.hero .calculator .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.hero .calculator .range-labels .highlight {
    color: #3c71dd;
    font-weight: 600;
}

/* Стили для селекта */
.hero .calculator .term-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero .calculator .term-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero .calculator .term-select option {
    background: #1e1e2a;
    color: white;
}

/* Блок результата */
.hero .calculator .result-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0.5rem;
    margin-bottom: 24px;
}

.hero .calculator .result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hero .calculator .result-row.total {
    margin-bottom: 0;
}

.hero .calculator .result-row .text-gray-600 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.hero .calculator .result-amount {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

/* Кнопка калькулятора */
.hero .calculator .calculator-button {
    width: 100%;
    background: #fdb12a;
    color: black;
    border: none;
    padding: 16px 24px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(60, 113, 221, 0.3);
    text-align: center;
}

.hero .calculator .calculator-button:hover {
    background: #4f83ee;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(60, 113, 221, 0.4);
}

/* Адаптив для мобильных */
@media (max-width: 992px) {
    .hero .calculator {
        padding: 24px 20px;
    }
    .hero .calculator h3 {
        font-size: 1.5rem;
    }
}
/* По умолчанию скрываем мобильный блок кнопок, показываем десктопный */
.mobile-hero-buttons {
    display: none !important;
}

.desktop-hero-buttons {
    display: flex !important;
}

/* На мобильных устройствах показываем мобильный блок кнопок, скрываем десктопный */
@media (max-width: 992px) {
    .mobile-hero-buttons {
        display: flex !important;
        margin-bottom: 20px;
    }
    
    .desktop-hero-buttons {
        display: none !important;
    }
}

/* Стили для мобильного блока кнопок */
.mobile-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.mobile-hero-buttons .btn-call {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.mobile-hero-buttons .social-links {
    justify-content: center;
}
