/* Общие стили */
:root {
    --primary: #E40045;
    --secondary: #f49f8a;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Arial', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 0, 69, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* Навигация */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.telegram-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 0, 69, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Плавающая кнопка заказа звонка */
.floating-call-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.call-widget-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(228, 0, 69, 0.3);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.call-widget-button:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 0, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(228, 0, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(228, 0, 69, 0);
    }
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.3s ease;
    padding: 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-contact {
    margin-bottom: 30px;
}

.mobile-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.mobile-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.mobile-social-btn.whatsapp-btn {
    background-color: #25D366;
}

.mobile-social-btn.telegram-btn {
    background-color: #0088cc;
}

.mobile-social-btn.phone-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.mobile-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Герой слайдер */
/* Герой секция */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://avatars.mds.yandex.net/get-altay/5097807/2a0000019034d3dfde1075c69492e2628c2c/XXXL');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 60px;
    left: -20px;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 40%;
}

/* Премиум секция калькулятора */
.calculator-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.calculator-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.calculator-premium-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.calculator-premium-text {
    flex: 1;
}

.calculator-premium-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.premium-badge i {
    color: #FFD700;
}

.calculator-premium-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.calculator-premium-text .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.calc-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.calc-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-text p {
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.calculator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.calculator-cta {
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #333;
}

.cta-note {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Визуальная часть калькулятора */
.calc-visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.calc-preview {
    position: relative;
    z-index: 3;
}

.preview-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.preview-screen:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.screen-header {
    background: #2d3748;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a5568;
}

.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28ca42; }

.screen-content {
    padding: 30px;
}

.preview-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    height: 12px;
    background: #f7fafc;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.form-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    animation: shimmer 2s infinite;
}

.form-field.animated::before {
    animation-delay: 0s;
}

.form-field.delay-1::before {
    animation-delay: 0.3s;
}

.form-field.delay-2::before {
    animation-delay: 0.6s;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.preview-result {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.result-label {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.result-price {
    color: #E40045;
    font-size: 1.5rem;
    font-weight: 700;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 2s;
}

.element-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Адаптивность */
@media (max-width: 992px) {
    .calculator-premium-content {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-premium-text h2 {
        font-size: 2.2rem;
    }
    
    .calculator-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calc-feature {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .calculator-premium-text h2 {
        font-size: 1.8rem;
    }
    
    .calculator-premium-text .lead {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .preview-screen {
        transform: none;
    }
}

@media (max-width: 480px) {
    .calculator-stats {
        padding: 20px 15px;
    }
    
    .btn-premium {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Секция услуг */
.services {
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 15px;
    color: var(--gray);
    flex-grow: 1;
}

/* Цвета иконок услуг */
.service-icon_amber svg {
    fill: #FFB300;
}

.service-icon_lime svg {
    fill: #CDDC39;
}

.service-icon_blue svg {
    fill: #2196F3;
}

.service-icon_red svg {
    fill: #F44336;
}

.service-icon_cyan svg {
    fill: #00BCD4;
}

.service-icon_pink svg {
    fill: #E91E63;
}

.service-icon_indigo svg {
    fill: #3F51B5;
}

.service-icon_yellow svg {
    fill: #FFEB3B;
}

.service-icon_orange svg {
    fill: #FF9800;
}

.service-icon_fuchsia svg {
    fill: #E040FB;
}

.service-icon_gray svg {
    fill: #9E9E9E;
}

/* Секция калькулятора */
.calculator {
    background-color: #f9f9f9;
}

.calculator-content {
    align-items: center;
    gap: 50px;
}

.calculator-text {
    flex: 1;
}

.calculator-image {
    flex: 1;
    background-image: url('https://1cpoly.ru/files/images/news/Armex_site.jpg');
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Секция о нас */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-image: url('https://avatars.mds.yandex.net/get-altay/13212679/2a00000192d6fb8e3a8c6745a3995200359c/XXXL');
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Секция контактов */
.contact {
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: white;
    border-radius: 4px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-link {
    color: #25D366;
}

.telegram-link-contact {
    color: #0088cc;
}

/* Яндекс карта */
.map-section {
    padding: 0;
    height: 400px;
}

#map {
    width: 100%;
    height: 100%;
}

/* Галерея - полностью переписанные стили */
.gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 180px;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Фолбэк для отсутствующих изображений */
.gallery-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Для мобильной галереи с горизонтальным скроллом */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 20px -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 auto;
        width: 280px;
        height: 200px;
        scroll-snap-align: start;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 250px;
        height: 180px;
    }
}

/* Футер */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    animation: modalFade 0.3s;
}

@keyframes modalFade {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(228, 0, 69, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.captcha-group small {
    display: block;
    margin-top: 5px;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Модальное окно галереи */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.gallery-modal-content {
    position: relative;
    margin: 0 auto;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-gallery-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
    z-index: 2001;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.gallery-modal-prev {
    left: 30px;
}

.gallery-modal-next {
    right: 30px;
}

.gallery-modal-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Куки-уведомление */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* График работы */
.schedule {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 колонок для рабочих дней */
    gap: 15px;
    margin-top: 20px;
}

.schedule-item {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

/* Контейнер для выходных дней */
.weekend-container {
    grid-column: 1 / -1; /* Занимает все колонки */
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.weekend-item {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    flex: 0 1 auto;
    min-width: 150px;
}

.schedule-day {
    font-weight: 600;
    margin-bottom: 5px;
}

.schedule-time {
    color: var(--primary);
    font-weight: 500;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .schedule {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на мобильных */
    }
    
    .weekend-container {
        flex-direction: column;
        align-items: center;
    }
    
    .weekend-item {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .schedule {
        grid-template-columns: 1fr; /* 1 колонка на очень маленьких экранах */
    }
}

/* Анимация для кнопок отправки */
.btn[type="submit"] {
    position: relative;
    overflow: hidden;
}

.btn[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn[type="submit"]:active::after {
    width: 100px;
    height: 100px;
}

/* SEO оптимизации */
.city-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Улучшение читаемости для SEO */
.content-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Скрытые семантические элементы для SEO */
.seo-text {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Оптимизация загрузки изображений */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Core Web Vitals оптимизации */
/* Убедитесь что контент выше сгиба загружается быстро */
.above-fold {
    will-change: transform;
}

/* Улучшение CLS (Cumulative Layout Shift) */
.gallery-item, .service-card, .hero-image {
    aspect-ratio: 1 / 1;
}

.hero-image {
    aspect-ratio: 16 / 9;
}

/* Мобильная оптимизация */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .calculator-content, .about-content, .contact-content {
        flex-direction: column;
    }
    
    .calculator-image, .about-image {
        width: 100%;
    }
    
    .header-social {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-contact {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .floating-call-widget {
        bottom: 20px;
        right: 20px;
    }
    
    /* Галерея - горизонтальный скролл */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 20px -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 auto;
        width: 280px;
        height: 200px;
        scroll-snap-align: start;
        margin: 0;
    }

    /* Услуги - 2 колонки */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        min-height: 200px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .service-content .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }


    .calculator-text h2 {
        color: white;
        font-size: 1.8rem;
    }

    .calculator-text p {
        color: rgba(255, 255, 255, 0.9);
    }

    .calculator-text ul {
        text-align: left;
        margin: 20px 0;
    }

    .calculator-text li {
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.9);
    }

    .telegram-link {
        background: white;
        color: #0088cc;
        padding: 15px 25px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .telegram-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Контакты - улучшенные кнопки */
    .contact-links {
        flex-direction: column;
        gap: 10px;
    }

    .contact-link {
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        color: #495057;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .contact-link:hover {
        background: white;
        border-color: #007bff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    }

    .whatsapp-link {
        color: #25D366;
    }

    .telegram-link-contact {
        color: #0088cc;
    }

    /* Социальные кнопки в хедере */
    .header-social .social-btn {
        background: #f8f9fa;
        color: #6c757d;
        border: 1px solid #dee2e6;
    }

    .header-social .whatsapp-btn:hover {
        background: #25D366;
        color: white;
    }

    .header-social .telegram-btn:hover {
        background: #0088cc;
        color: white;
    }

    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
    
    .close-gallery-modal {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
    
    /* Улучшенный внешний вид модальных окон на мобильных */
    .modal-content {
        margin: 20px auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-control {
        padding: 15px;
        font-size: 16px; /* Предотвращает зум в iOS */
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    /* Улучшения для очень маленьких экранов */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        width: 250px;
        height: 180px;
    }

    .calculator-text h2 {
        font-size: 1.5rem;
    }

    .telegram-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
    .calculator-page { padding: 100px 0 40px; background: #f8f9fa; min-height: 100vh; }
    .calculator-container { background: white; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; margin: 0 auto; max-width: 1200px; }
    .calculator-header { background: #f8f9fa; color: #333; padding: 20px 30px; border-bottom: 1px solid #eee; }
    .calculator-header h1 { margin: 0; font-size: 1.5rem; font-weight: 600; }
    .calculator-header p { margin: 5px 0 0; color: #666; font-size: 0.95rem; }
    .calculator-content { padding: 0; }
    .service-selection { padding: 20px 30px; border-bottom: 1px solid #eee; }
    .service-selection h3 { margin-bottom: 15px; color: #333; }
    .service-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
    .service-option { display: flex; flex-direction: column; align-items: center; padding: 15px 10px; background: #f8f9fa; border: 2px solid #e9ecef; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-align: center; }
    .service-option:hover { border-color: #E40045; }
    .service-option.active { background: #E40045; color: white; border-color: #E40045; }
    .service-option i { font-size: 1.5rem; margin-bottom: 8px; }
    .service-option span { font-weight: 500; font-size: 0.9rem; }
    .calculator-section { display: none; padding: 0; }
    .calculator-section.active { display: block; }
    .calculator-grid { display: grid; grid-template-columns: 1fr 400px; gap: 0; }
    .calculator-options { padding: 30px; }
    .option-section { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
    .option-section:last-child { border-bottom: none; margin-bottom: 0; }
    .option-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: #E40045; display: flex; align-items: center; gap: 10px; }
    .option-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
    .option-choice { position: relative; }
    .option-choice input { position: absolute; opacity: 0; }
    .option-choice label { display: block; padding: 12px 8px; background: #f8f9fa; border: 2px solid #e9ecef; border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.3s ease; font-weight: 500; font-size: 0.9rem; }
    .option-choice input:checked + label { background: #E40045; color: white; border-color: #E40045; }
    .quantity-section { display: flex; align-items: center; gap: 15px; margin-top: 10px; }
    .quantity-btn { width: 40px; height: 40px; border: 2px solid #E40045; background: white; color: #E40045; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: bold; transition: all 0.3s ease; }
    .quantity-btn:hover:not(:disabled) { background: #E40045; color: white; }
    .quantity-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .quantity-input { width: 80px; text-align: center; padding: 10px; border: 2px solid #e9ecef; border-radius: 6px; font-size: 1rem; font-weight: 600; }
    .quantity-label { font-weight: 500; color: #666; }
    .calculator-results { background: #f8f9fa; padding: 30px; border-left: 1px solid #eee; }
    .result-image { width: 100%; height: 150px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; }
    .result-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 20px; color: #333; }
    .result-details { background: white; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
    .result-item { display: flex; justify-content: space-between; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
    .result-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
    .result-item span:first-child { color: #666; }
    .result-item span:last-child { font-weight: 500; }
    .price-summary { background: white; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
    .price-item { display: flex; justify-content: space-between; margin-bottom: 10px; }
    .price-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 700; color: #E40045; padding-top: 15px; border-top: 2px solid #E40045; margin-top: 15px; }
    .action-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 25px; }
    .action-buttons .btn { text-align: center; padding: 12px; }
    .production-info { text-align: center; margin-top: 20px; font-size: 0.9rem; color: #666; }
    .specifications { background: white; border-radius: 10px; padding: 30px; margin: 40px auto; max-width: 1200px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    .specifications h3 { color: #E40045; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 1.3rem; }
    .specifications-content { line-height: 1.6; color: #555; }
    .specifications-content p { margin-bottom: 15px; }
    .coming-soon { text-align: center; padding: 60px 30px; color: #666; }
    .coming-soon i { font-size: 3rem; color: #E40045; margin-bottom: 20px; }
    .coming-soon h3 { margin-bottom: 15px; color: #333; }

    @media (max-width: 1024px) {
        .calculator-grid { grid-template-columns: 1fr; }
        .calculator-results { border-left: none; border-top: 1px solid #eee; }
    }

    @media (max-width: 768px) {
        .calculator-page { padding: 80px 0 20px; }
        .calculator-container { margin: 0 0px; border-radius: 8px; }
        .calculator-header { padding: 15px 20px; }
        .calculator-header h1 { font-size: 1.3rem; }
        .calculator-options, .calculator-results { padding: 20px 15px; }
        .option-choices { grid-template-columns: repeat(2, 1fr); }
        .service-options { grid-template-columns: repeat(2, 1fr); }
        .specifications { margin: 20px 10px; padding: 20px 15px; }
    }

    @media (max-width: 480px) {
        .option-choices { grid-template-columns: 1fr; }
        .service-options { grid-template-columns: 1fr; }
        .quantity-section { flex-wrap: wrap; justify-content: center; }
    }


/* Секция калькулятора в цветах сайта */
.calculator-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.calculator-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.calculator-premium-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.calculator-premium-text {
    flex: 1;
}

.calculator-premium-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.calculator-premium-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.calculator-premium-text .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.calc-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.calc-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: white;
}

.feature-text p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.calculator-cta {
    margin-top: 30px;
}

.btn-premium {
    background: white;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.cta-note {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Визуальная часть калькулятора */
.calc-visual-container {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.calc-preview {
    position: relative;
    z-index: 3;
}

.preview-screen {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.screen-header {
    background: #2d3748;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a5568;
}

.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #28ca42; }

.screen-content {
    padding: 25px;
}

.preview-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    height: 10px;
    background: #f7fafc;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.form-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    animation: shimmer 2s infinite;
}

.form-field.animated::before {
    animation-delay: 0s;
}

.form-field.delay-1::before {
    animation-delay: 0.3s;
}

.form-field.delay-2::before {
    animation-delay: 0.6s;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.preview-result {
    margin-top: 15px;
    padding: 15px;
    background: var(--primary);
    border-radius: 8px;
    text-align: center;
}

.result-label {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.result-price {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Адаптивность */
@media (max-width: 992px) {
    .calculator-premium-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .calculator-premium-text h2 {
        font-size: 2rem;
    }
    
    .calc-feature {
        text-align: left;
    }
    
    .calculator-premium-visual {
        order: -1;
    }
    
    .calc-visual-container {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .calculator-premium-text h2 {
        font-size: 1.8rem;
    }
    
    .calculator-premium-text .lead {
        font-size: 1.1rem;
    }
    
    .calculator-features {
        gap: 15px;
    }
    
    .calc-feature {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calculator-premium {
        padding: 60px 0;
    }
    
    .calculator-premium-text h2 {
        font-size: 1.6rem;
    }
    
    .btn-premium {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .calc-visual-container {
        max-width: 280px;
    }
}