/* ========================================
   ПРОДАЮЩАЯ ГЛАВНАЯ СТРАНИЦА
   ======================================== */

/* ---------- HERO С ПРОДАЮЩИМИ ТРИГГЕРАМИ ---------- */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FFF5F0 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
}

.hero-text {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--gray-600);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding: 24px 0 0;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Плавающая карточка с предложением */
.floating-offer {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-offer-icon {
    width: 40px;
    height: 40px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.floating-offer-text strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}

.floating-offer-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.hero-guarantee {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.guarantee-item i {
    color: var(--success);
    font-size: 16px;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-guarantee {
        justify-content: center;
    }

    .floating-offer {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* ---------- ДОВЕРИЕ (БРЕНДЫ/ПАРТНЕРЫ) ---------- */
.trust {
    padding: 40px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    opacity: 0.6;
    transition: var(--transition);
}

.trust-item:hover {
    opacity: 1;
}

.trust-item img {
    height: 30px;
    width: auto;
}

/* ---------- КАЛЬКУЛЯТОР НА САЙТЕ (ПРОДАЮЩИЙ) ---------- */
.calculator-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%C3%82%3C/g%3E%3C/svg%3E");
}

.calculator-wrapper {
    position: relative;
    z-index: 1;
}

.calculator-title {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-title h2 {
    color: white;
}

.calculator-title p {
    color: var(--gray-400);
    font-size: 18px;
}

.calculator-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.calculator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.calculator-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.calculator-field select,
.calculator-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.calculator-field select:focus,
.calculator-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.calculator-result {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #FFF5F0, #FFE8E0);
    border-radius: var(--radius);
    text-align: center;
}

.calculator-result-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.calculator-result-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.calculator-result-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
}

.calculator-btn {
    margin-top: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .calculator-row {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        padding: 24px;
    }

    .calculator-result-price {
        font-size: 36px;
    }
}

/* ---------- УСЛУГИ С ЦЕНАМИ ---------- */
.services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.service-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0;
}

.service-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 14px;
}

.service-features li i {
    color: var(--success);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 48px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- ОТЗЫВЫ (СОЦИАЛЬНОЕ ДОКАЗАТЕЛЬСТВО) ---------- */
.reviews {
    padding: 80px 0;
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.review-stars {
    color: #FBBF24;
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.review-name {
    font-weight: 700;
    color: var(--gray-900);
}

.review-project {
    font-size: 12px;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 48px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FAQ (СНЯТИЕ ВОЗРАЖЕНИЙ) ---------- */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

@media (max-width: 768px) {
    .faq {
        padding: 48px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA КОНЕЧНАЯ ---------- */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-wrapper h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-wrapper p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn-primary {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.cta-timer {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(0,0,0,0.2);
    padding: 12px 24px;
    border-radius: 50px;
}

.timer-item {
    text-align: center;
}

.timer-number {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.timer-label {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}

.cta-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .cta-final {
        padding: 48px 0;
    }

    .cta-wrapper h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-timer {
        margin-top: 20px;
    }
}

/* ---------- FLOATING CTA (ВСЕГДА ВИДИМАЯ КНОПКА) ---------- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-cta-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================
   ГОРЯЧЕЕ ПРЕДЛОЖЕНИЕ - СТИЛИ
   ======================================== */

.hero-3d-scene {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Основная карточка */
.hot-offer-card {
    position: relative;
    width: 380px;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95), rgba(10, 10, 20, 0.98));
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 32px 28px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(255, 107, 0, 0.2);
    animation: cardGlow 2s ease-in-out infinite, cardFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hot-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(255, 107, 0, 0.3);
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(255, 107, 0, 0.2);
        border-color: rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 107, 0, 0.15);
        border-color: rgba(255, 107, 0, 0.6);
    }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Бейдж */
.hot-offer-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B00, #FF4500);
    padding: 8px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 0, 0.7);
        transform: translateX(-50%) scale(1.02);
    }
}

.badge-fire {
    font-size: 16px;
    animation: fire 0.5s ease-in-out infinite alternate;
}

@keyframes fire {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.2); opacity: 0.8; }
}

/* Иконка подарка */
.offer-gift-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.gift-box {
    font-size: 55px;
    display: inline-block;
    animation: giftShake 0.8s ease-in-out infinite;
}

@keyframes giftShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.offer-discount {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: linear-gradient(135deg, #FF6B00, #FF4500);
    font-size: 14px;
    font-weight: 800;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    animation: discountPulse 1s ease-in-out infinite;
}

@keyframes discountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Заголовок */
.offer-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Цены */
.offer-price-block {
    margin-bottom: 16px;
}

.old-price {
    font-size: 18px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-right: 12px;
}

.new-price {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-desc {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 24px;
}

/* Таймер */
.offer-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 20px;
}

.timer-block {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 8px 12px;
    border-radius: 16px;
    min-width: 65px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.timer-number {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B00;
    display: block;
    line-height: 1;
    font-family: monospace;
}

.timer-label {
    font-size: 10px;
    color: #9CA3AF;
    text-transform: uppercase;
}

.timer-sep {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B00;
}

/* Прогресс бар */
.offer-progress {
    margin-bottom: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.progress-count {
    color: #FF6B00;
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FF4500);
    border-radius: 10px;
    width: 0%;
    animation: progressFill 1.5s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 74%; }
}

/* Кнопка CTA */
.offer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B00, #FF4500);
    color: white;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.offer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.offer-cta:hover::before {
    left: 100%;
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    gap: 16px;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.offer-cta:hover .arrow {
    transform: translateX(5px);
}

.offer-note {
    font-size: 10px;
    color: #6B7280;
    margin: 0;
}

/* Сверкающие звездочки */
.offer-sparkle {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 10px;
    right: 15px;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    top: 40%;
    left: -10px;
    animation-delay: 1.4s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Плашки (обновленные) */
.floating-feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: floatFeature 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.floating-feature:hover {
    transform: scale(1.05) translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feat-icon {
    font-size: 24px;
}

.feat-text {
    display: flex;
    flex-direction: column;
}

.feat-text strong {
    font-size: 14px;
    color: var(--gray-900);
}

.feat-text span {
    font-size: 11px;
    color: var(--gray-500);
}

/* Позиции плашек */
.feat-1 {
    top: 5%;
    left: -40px;
    animation-delay: 0s;
    border-left: 3px solid #FF6B00;
}
.feat-2 {
    bottom: 15%;
    right: -50px;
    animation-delay: 1s;
    border-right: 3px solid #FF6B00;
}
.feat-3 {
    top: 35%;
    right: -60px;
    animation-delay: 2s;
    border-right: 3px solid #FF6B00;
}
.feat-4 {
    bottom: 5%;
    left: -30px;
    animation-delay: 1.5s;
    border-left: 3px solid #FF6B00;
}

@keyframes floatFeature {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Адаптивность */
@media (max-width: 1100px) {
    .feat-1 { left: -20px; }
    .feat-2 { right: -30px; }
    .feat-3 { right: -40px; }
    .feat-4 { left: -10px; }

    .floating-feature {
        padding: 8px 14px;
    }

    .feat-icon { font-size: 18px; }
    .feat-text strong { font-size: 12px; }
    .feat-text span { font-size: 10px; }
}

@media (max-width: 1024px) {
    .hero-3d-scene {
        height: 500px;
    }

    .hot-offer-card {
        width: 340px;
        padding: 28px 24px;
    }

    .new-price { font-size: 36px; }
    .timer-number { font-size: 24px; }
    .timer-block { min-width: 55px; }

    .floating-feature {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-3d-scene {
        height: auto;
        min-height: 480px;
    }

    .hot-offer-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .offer-gift-icon {
        margin-bottom: 16px;
    }

    .gift-box { font-size: 45px; }
    .offer-title { font-size: 20px; }
    .new-price { font-size: 32px; }
    .old-price { font-size: 16px; }

    .offer-timer { gap: 8px; }
    .timer-block { padding: 6px 8px; min-width: 50px; }
    .timer-number { font-size: 20px; }

    .offer-cta { padding: 12px 24px; font-size: 14px; }
}

/* ========================================
   БЛОК CTA ДЛЯ ФУЛФИЛМЕНТА - СОВРЕМЕННЫЙ
   ======================================== */

.fulfillment-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.cta-card {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    transition: all 0.3s ease;
}

.cta-card:hover {
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
}

.cta-content {
    flex: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.cta-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #f97316;
}

.cta-badge i {
    font-size: 14px;
    color: #f97316;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    max-width: 500px;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}

.cta-feature i {
    font-size: 16px;
    color: #10b981;
}

.cta-button {
    flex-shrink: 0;
}

.cta-button .btn-fulfillment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.cta-button .btn-fulfillment i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button .btn-fulfillment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.cta-button .btn-fulfillment:hover i {
    transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 900px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .fulfillment-cta {
        padding: 40px 0;
    }

    .cta-card {
        padding: 24px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-button .btn-fulfillment {
        padding: 12px 24px;
        font-size: 14px;
    }
}
