/* ЗЕВС33 - Стили */
:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --secondary: #1e293b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--secondary); background: var(--white); }
h1,h2,h3,h4,h5,h6 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-sm); font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-text { color: var(--primary); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 32px; letter-spacing: 3px; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all 0.3s; background: transparent; }
.header.scrolled { background: rgba(15,23,42,0.98); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.2); }
.header-container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-image { height: 50px; width: 50px; object-fit: cover; border-radius: 12px; }
.logo-placeholder { display: none; width: 50px; height: 50px; background: var(--gradient); border-radius: 12px; align-items: center; justify-content: center; }
.logo-z { color: var(--white); font-size: 20px; font-weight: 900; }
.logo-33 { color: var(--dark); font-size: 16px; background: var(--white); padding: 2px 6px; border-radius: 4px; }
.nav { display: flex; gap: 32px; }
.nav-link { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--white); font-size: 16px; }
.header-phone:hover { color: var(--primary); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.burger span { width: 25px; height: 3px; background: var(--white); border-radius: 2px; }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); }
.hero-container { position: relative; z-index: 1; max-width: 900px; text-align: center; margin: 0 auto; }
.hero-title { font-size: 48px; color: var(--white); margin-bottom: 24px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 18px; color: var(--gray-light); line-height: 1.8; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value { font-family: 'Manrope', sans-serif; font-size: 32px; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; padding: 8px 20px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 30px; color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.section-title { font-size: 42px; color: var(--secondary); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--secondary); }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.service-price { display: inline-block; padding: 8px 16px; background: rgba(245,158,11,0.1); border-radius: var(--radius-sm); color: var(--primary); font-weight: 700; font-size: 15px; }

.calculator { background: var(--dark); }
.calculator .section-title, .calculator .section-subtitle { color: var(--white); }
.calculator-wrapper { max-width: 900px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.calculator-form { display: flex; flex-direction: column; gap: 24px; }
.calc-row { display: flex; flex-direction: column; gap: 12px; }
.calc-row-2 { flex-direction: row; flex-wrap: wrap; }
.calc-group { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.calc-label { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 14px; color: var(--secondary); }
.calc-cards { display: flex; gap: 12px; }
.calc-card { flex: 1; padding: 20px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; text-align: center; }
.calc-card input { display: none; }
.calc-card:hover { border-color: var(--primary); }
.calc-card:has(input:checked) { border-color: var(--primary); background: rgba(245,158,11,0.05); }
.calc-card-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--secondary); }
.calc-card-desc { font-size: 12px; color: var(--gray); }
.calc-select { padding: 14px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; }
.calc-select:focus { outline: none; border-color: var(--primary); }
.calc-range { width: 100%; height: 6px; border-radius: 3px; background: var(--gray-light); appearance: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); cursor: pointer; }
.calc-radios { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-radio { padding: 12px 18px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s; flex: 1; text-align: center; }
.calc-radio input { display: none; }
.calc-radio:hover { border-color: var(--primary); }
.calc-radio:has(input:checked) { border-color: var(--primary); background: rgba(245,158,11,0.05); }
.calc-radio span { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 13px; }
.calc-options { display: flex; gap: 20px; flex-wrap: wrap; }
.calc-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 14px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); transition: all 0.3s; }
.calc-checkbox:hover { border-color: var(--primary); }
.calc-checkbox input { display: none; }
.calc-checkbox-mark { width: 20px; height: 20px; border: 2px solid var(--gray); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.calc-checkbox-mark::after { content: '✓'; color: var(--white); font-weight: 700; opacity: 0; }
.calc-checkbox input:checked + .calc-checkbox-mark { background: var(--primary); border-color: var(--primary); }
.calc-checkbox input:checked + .calc-checkbox-mark::after { opacity: 1; }
.calc-checkbox span { font-size: 14px; }
.calc-result { background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); border-radius: var(--radius-sm); padding: 24px; color: var(--white); }
.calc-result-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.calc-result-item:last-of-type { border-bottom: none; }
.calc-result-total { font-size: 22px; font-family: 'Manrope', sans-serif; font-weight: 700; padding-top: 14px; border-top: 2px solid var(--primary); margin-top: 8px; }
.calc-result-total .calc-result-value { color: var(--primary); }
.calc-result-value { font-weight: 600; }
.calc-form-row { display: flex; gap: 12px; }
.calc-input { flex: 1; padding: 14px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; }
.calc-input:focus { outline: none; border-color: var(--primary); }
.calc-note { text-align: center; font-size: 13px; color: var(--gray); font-style: italic; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.portfolio-item-image { height: 280px; background-size: cover; background-position: center; }
.portfolio-item-placeholder { height: 280px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); color: var(--gray); }

.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 16px; }
.about-feature-icon { width: 40px; height: 40px; background: rgba(245,158,11,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-weight: 700; }
.about-feature h4 { font-size: 16px; color: var(--secondary); margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--gray); }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-badge { background: var(--gradient); padding: 30px 40px; border-radius: var(--radius); text-align: center; }
.about-badge-number { font-family: 'Manrope', sans-serif; font-size: 42px; font-weight: 900; color: var(--white); display: block; }
.about-badge-text { font-size: 14px; color: rgba(255,255,255,0.9); }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--light); border-radius: var(--radius); }
.contact-card-icon { font-size: 24px; flex-shrink: 0; }
.contact-card h4 { font-size: 16px; color: var(--secondary); margin-bottom: 6px; }
.contact-card a { color: var(--primary); font-weight: 500; }
.contact-card p, .contact-card span { font-size: 14px; color: var(--gray); }
.contacts-form-wrapper { background: var(--light); padding: 30px; border-radius: var(--radius); }
.contacts-form h3 { font-size: 22px; margin-bottom: 20px; color: var(--secondary); }
.contacts-form .form-group { margin-bottom: 16px; }
.contacts-form input, .contacts-form textarea { width: 100%; padding: 14px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; }
.contacts-form input:focus, .contacts-form textarea:focus { outline: none; border-color: var(--primary); }
.contacts-form textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; }

.footer { background: var(--dark); color: var(--gray-light); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer p { margin-top: 16px; font-size: 14px; }
.footer h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 14px; list-style: none; }
.footer ul li a:hover { color: var(--primary); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; }

.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: var(--radius); padding: 30px; max-width: 450px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 10px; right: 15px; background: none; border: none; cursor: pointer; color: var(--gray); font-size: 24px; }
.modal-content h3 { font-size: 22px; margin-bottom: 16px; color: var(--secondary); }
.modal-content p { color: var(--gray); line-height: 1.7; }

.notification { position: fixed; bottom: 30px; right: 30px; padding: 14px 24px; border-radius: var(--radius-sm); color: var(--white); font-weight: 500; transform: translateX(400px); transition: all 0.3s; z-index: 3000; }
.notification.show { transform: translateX(0); }
.notification.success { background: #10b981; }
.notification.error { background: #ef4444; }
.notification.info { background: #3b82f6; }

@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contacts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header & Nav */
    .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; padding: 80px 24px 24px; gap: 0; z-index: 999; }
    .nav.active { display: flex; }
    .nav-link { font-size: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; }
    .burger { display: flex; z-index: 1001; }
    .header-actions .header-phone { display: none; }
    .header-container { padding: 12px 0; }
    .logo-image, .logo-placeholder { width: 40px; height: 40px; }
    .logo-z { font-size: 16px; }
    .logo-33 { font-size: 14px; }
    
    /* Hero */
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 28px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; padding: 16px; font-size: 16px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-value { font-size: 24px; }
    .hero-stat-label { font-size: 12px; }
    
    /* Sections */
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 26px; margin-bottom: 12px; }
    .section-subtitle { font-size: 15px; }
    .section-tag { font-size: 12px; padding: 6px 16px; }
    
    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 24px; }
    .service-card h3 { font-size: 18px; }
    
    /* Calculator */
    .calculator-wrapper { padding: 24px; }
    .calc-row-2 { flex-direction: column; }
    .calc-group { min-width: 100%; }
    .calc-cards { flex-direction: column; }
    .calc-card { flex-direction: row; justify-content: space-between; padding: 16px; }
    .calc-select, .calc-input { padding: 16px; font-size: 16px; }
    .calc-form-row { flex-direction: column; }
    .calc-checkbox { padding: 16px; }
    .calc-checkbox span { font-size: 15px; }
    .calc-result { padding: 20px; }
    .calc-result-total { font-size: 18px; }
    
    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
    .portfolio-item-image, .portfolio-item-placeholder { height: 240px; }
    
    /* About */
    .about-grid { gap: 40px; }
    .about-features { gap: 16px; }
    .about-badge { padding: 24px 32px; }
    .about-badge-number { font-size: 32px; }
    
    /* Contacts */
    .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-card { padding: 16px; }
    .contacts-form-wrapper { padding: 24px; }
    
    /* Footer */
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    
    /* Clients counter */
    .clients-counter { grid-template-columns: 1fr; gap: 16px; }
    .counter-item { padding: 24px 16px; }
    .counter-number { font-size: 36px; }
    .counter-label { font-size: 14px; }
    
    /* Modal */
    .modal { padding: 20px; width: 95%; }
    .modal-content h3 { font-size: 20px; }
    
    /* Notification */
    .notification { right: 16px; bottom: 16px; left: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .section-title { font-size: 22px; }
    .hero-stats { gap: 16px; }
    .hero-stat { min-width: 40%; }
    .service-card { padding: 20px; }
    .calculator-wrapper { padding: 20px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    /* Навигация */
    .nav { 
        display: none; 
        position: fixed; 
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 999;
    }
    .nav.active { display: flex; }
    .nav-link { font-size: 20px; padding: 10px; }
    .burger { display: flex; z-index: 1000; }
    .header-actions .header-phone { display: none; }
    
    /* Hero */
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 28px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 12px; margin-bottom: 40px; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 24px; }
    
    /* Секции */
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 15px; }
    .section-tag { font-size: 12px; padding: 6px 16px; }
    
    /* Услуги */
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 24px; }
    .service-card h3 { font-size: 18px; }
    
    /* Калькулятор */
    .calculator-wrapper { padding: 24px; }
    .calc-cards { flex-direction: column; gap: 8px; }
    .calc-card { flex-direction: row; justify-content: space-between; padding: 16px; }
    .calc-select { padding: 12px; font-size: 16px; }
    .calc-radio { padding: 10px 12px; }
    .calc-radio span { font-size: 12px; }
    .calc-options { flex-direction: column; gap: 8px; }
    .calc-checkbox { padding: 12px; }
    .calc-form-row { flex-direction: column; }
    .calc-result { padding: 20px; }
    .calc-result-total { font-size: 20px; }
    
    /* Портфолио */
    .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
    .portfolio-item-image,
    .portfolio-item-placeholder { height: 220px; }
    
    /* О компании */
    .about-grid { gap: 40px; }
    .about-feature { gap: 12px; }
    .about-feature-icon { width: 36px; height: 36px; font-size: 16px; }
    .about-feature h4 { font-size: 15px; }
    .about-feature p { font-size: 13px; }
    .about-badge { padding: 24px 32px; }
    .about-badge-number { font-size: 32px; }
    .about-badge-text { font-size: 13px; }
    
    /* Контакты */
    .contacts-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-card { padding: 16px; }
    .contacts-form-wrapper { padding: 24px; }
    .contacts-form h3 { font-size: 20px; margin-bottom: 16px; }
    .contacts-form .form-group { margin-bottom: 12px; }
    .contacts-form input,
    .contacts-form textarea { padding: 12px; font-size: 16px; }
    
    /* Счётчик клиентов */
    .clients-counter { grid-template-columns: 1fr; gap: 16px; }
    .counter-item { padding: 24px 20px; }
    .counter-number { font-size: 36px; }
    .counter-label { font-size: 14px; }
    .satisfied-clients { padding: 50px 0; }
    
    /* Футер */
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer ul li { margin-bottom: 8px; }
    .footer-bottom { font-size: 12px; }
    
    /* Модальное окно */
    .modal { padding: 24px; max-width: 95%; }
    .modal-close { top: 8px; right: 12px; font-size: 20px; }
    
    /* Уведомления */
    .notification { bottom: 16px; right: 16px; left: 16px; padding: 12px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-stat-value { font-size: 20px; }
    .hero-stat-label { font-size: 12px; }
    .section-title { font-size: 24px; }
    .logo-image,
    .logo-placeholder { width: 40px; height: 40px; }
    .logo-z { font-size: 16px; }
    .logo-33 { font-size: 12px; }
}

/* Счётчик довольных клиентов - НОВЫЙ СТИЛЬ */
.satisfied-clients {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.satisfied-clients::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.satisfied-clients::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.satisfied-clients .section-header {
    position: relative;
    z-index: 1;
}

.satisfied-clients .section-title {
    color: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.client-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-card:hover::before {
    opacity: 1;
}

.client-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.client-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    line-height: 1;
}

.client-number {
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-suffix {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-left: 4px;
}

.client-label {
    font-size: 16px;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .clients-grid {
        gap: 20px;
    }
    
    .client-number {
        font-size: 52px;
    }
    
    .client-suffix {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .satisfied-clients {
        padding: 60px 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    
    .client-card {
        padding: 30px 20px;
    }
    
    .client-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .client-number {
        font-size: 48px;
    }
    
    .client-suffix {
        font-size: 30px;
    }
    
    .client-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .client-card {
        padding: 24px 16px;
    }
    
    .client-icon {
        font-size: 36px;
    }
    
    .client-number {
        font-size: 42px;
    }
    
    .client-suffix {
        font-size: 28px;
    }
}
