@charset "utf-8";
/* CSS Document */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #20978a;
        --secondary-color: #00859d;
        --accent-color: #d92c29;
        --highlight-color: #f2bf0c;
        --border-color: rgba(255, 255, 255, 0.1);
        --service-bg: rgba(32, 151, 138, 0.15);
        --animation-duration: 0.4s;
        --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        --discount-color: #27ae60;
        --text-color: #ffffff;
        --bg-dark: #0a0a14;
        --copying-color: #e67e22;
        --printing-color: #9b59b6;
        --ai-color: #f1c40f;
        --panel-bg: rgba(20, 30, 48, 0.9);
        --panel-border: rgba(0, 133, 157, 0.4);
        --panel-glow: rgba(0, 255, 255, 0.2);
    }

    body {
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        background: var(--bg-dark);
        color: var(--text-color);
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
    }

    /* Неоновый фон */
    .shapes-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        perspective: 1000px;
    }

    .shape {
        position: absolute;
        opacity: 0.85;
        animation: float 15s infinite ease-in-out;
        filter: blur(1px);
        transform-style: preserve-3d;
    }

    .shape-1 {
        top: 5%;
        left: 5%;
        width: 450px;
        height: 450px;
        background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 70%);
        clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5),
                   inset 0 0 30px rgba(0, 255, 255, 0.15);
        animation-delay: 0s;
        z-index: 4;
    }

    .shape-2 {
        top: 50%;
        right: 5%;
        width: 500px;
        height: 500px;
        background: linear-gradient(225deg, #16213e 0%, #0a0a14 70%);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
        box-shadow: 0 0 35px rgba(255, 0, 255, 0.5),
                   inset 0 0 30px rgba(255, 0, 255, 0.15);
        animation-delay: -5s;
        z-index: 3;
    }

    .shape-3 {
        bottom: 10%;
        left: 15%;
        width: 400px;
        height: 400px;
        background: linear-gradient(45deg, #1e1e2e 0%, #0a0a14 70%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
        box-shadow: 0 0 28px rgba(0, 200, 255, 0.5),
                   inset 0 0 25px rgba(0, 200, 255, 0.15);
        animation-delay: -10s;
        z-index: 2;
    }

    .shape-4 {
        top: 15%;
        right: 20%;
        width: 380px;
        height: 380px;
        background: linear-gradient(315deg, #1c1c28 0%, #0a0a14 70%);
        clip-path: polygon(0 30%, 30% 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 0 32px rgba(255, 50, 50, 0.5),
                   inset 0 0 28px rgba(255, 50, 50, 0.15);
        animation-delay: -7s;
        z-index: 5;
    }

    .shape-5 {
        top: 30%;
        left: 25%;
        width: 420px;
        height: 420px;
        background: linear-gradient(170deg, #1c1c3e 0%, #0a0a24 70%);
        clip-path: polygon(0 40%, 40% 0, 100% 20%, 80% 100%, 20% 100%);
        box-shadow: 0 0 35px rgba(50, 255, 50, 0.5),
                   inset 0 0 30px rgba(50, 255, 50, 0.15);
        animation-delay: -2s;
        z-index: 1;
    }

    /* Электрические эффекты */
    .electric-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        opacity: 0.4;
    }

    .electric-line {
        position: absolute;
        background: linear-gradient(90deg, 
            transparent,
            rgba(0, 255, 255, 0.9),
            rgba(0, 255, 255, 0.7),
            transparent
        );
        height: 2px;
        animation: electricFlow 3s infinite linear;
        filter: blur(0.5px);
    }

    /* Анимации фона */
    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg) scale(1);
        }
        25% {
            transform: translate(-25px, 15px) rotate(-1deg) scale(1.02);
        }
        50% {
            transform: translate(10px, -20px) rotate(1deg) scale(1.01);
        }
        75% {
            transform: translate(15px, 10px) rotate(-1deg) scale(1.02);
        }
    }

    @keyframes electricFlow {
        0% {
            left: -100%;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 100%;
            opacity: 0;
        }
    }

    /* Навигационное меню */
    .navbar {
        background: rgba(10, 10, 20, 0.85);
        box-shadow: var(--box-shadow);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--secondary-color);
    }

    .navbar-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand img {
        height: 50px;
        transition: var(--transition);
        filter: brightness(1.2);
    }

    .navbar-brand img:hover {
        transform: scale(1.05);
    }

    .navbar-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .navbar-item {
        position: relative;
        margin-left: 20px;
    }

    .navbar-link {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        padding: 10px 15px;
        border-radius: 4px;
        transition: var(--transition);
        display: flex;
        align-items: center;
    }

    .navbar-link:hover {
        background-color: rgba(0, 133, 157, 0.3);
        transform: translateY(-2px);
        color: var(--highlight-color);
    }

    .navbar-link i {
        margin-right: 8px;
        color: var(--secondary-color);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(10, 10, 20, 0.95);
        border-radius: 4px;
        box-shadow: var(--box-shadow);
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 1000;
        backdrop-filter: blur(10px);
        border: 1px solid var(--secondary-color);
    }

    .navbar-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-link {
        color: var(--secondary-color);
        text-decoration: none;
        display: block;
        transition: var(--transition);
    }

    .dropdown-link:hover {
        color: var(--highlight-color);
        padding-left: 5px;
    }

    .dropdown-divider {
        height: 1px;
        background-color: var(--border-color);
        margin: 5px 0;
    }

    .dropdown-header {
        padding: 10px 15px;
        font-weight: bold;
        color: var(--primary-color);
        background-color: var(--service-bg);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    h1 {
        text-align: center;
        color: var(--secondary-color);
        margin: 30px 0;
        font-size: 2.2em;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
    }

    h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
        border-radius: 2px;
    }

    .calculator {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        padding-bottom: 100px;
    }

    .clearfix::after {
        content: "";
        display: table;
        clear: both;
    }

    .sections-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .section {
        padding: 0;
        background-color: rgba(10, 10, 20, 0.8);
        border-radius: 12px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        opacity: 0;
        transform: translateY(20px);
        max-height: 0;
        overflow: hidden;
        border: none;
        backdrop-filter: blur(5px);
    }

    .section.visible {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
        padding: 25px;
        border: 1px solid var(--border-color);
        transition: all var(--animation-duration) ease, max-height 0.8s ease;
    }

    .section.active {
        border-left: 5px solid var(--primary-color);
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .section h3 {
        margin-top: 0;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-size: 1.3em;
        position: relative;
        padding-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--highlight-color);
        border-radius: 3px;
    }

    .category-badge {
        font-size: 0.7em;
        padding: 4px 10px;
        border-radius: 15px;
        background: var(--primary-color);
        color: white;
        margin-left: 10px;
        font-weight: 500;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--secondary-color);
    }

    select, input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        box-sizing: border-box;
        font-size: 15px;
        transition: var(--transition);
        background-color: rgba(0, 0, 0, 0.6);
        color: var(--text-color);
    }

    select:focus, input:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(32, 151, 138, 0.2);
    }

    select option {
        background-color: rgba(10, 10, 20, 0.95);
        color: var(--text-color);
        padding: 10px;
    }

    .service-option {
        background-color: rgba(32, 151, 138, 0.2) !important;
        color: var(--text-color) !important;
    }

    .quantity-group {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--animation-duration) ease-out;
    }

    .quantity-group.show {
        max-height: 120px;
    }

    .price-info {
        margin-top: 15px;
        padding: 15px;
        background-color: var(--service-bg);
        border-radius: 6px;
        font-size: 14px;
        color: var(--secondary-color);
        border-left: 4px solid var(--primary-color);
        transition: var(--transition);
        line-height: 1.5;
    }

    .price-info strong {
        color: var(--primary-color);
        display: block;
        margin-bottom: 5px;
    }

    .final-price {
        color: #f2bf0c !important;
        font-weight: bold;
    }

    .service-option {
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 500;
    }

    .result-container {
        width: 100%;
        background-color: rgba(10, 10, 20, 0.8);
        border-radius: 12px;
        padding: 25px;
        box-shadow: var(--box-shadow);
        margin-top: 30px;
        border: 1px solid var(--border-color);
        backdrop-filter: blur(5px);
    }

    .result {
        padding: 20px;
        background-color: rgba(32, 151, 138, 0.15);
        border-left: 6px solid var(--primary-color);
        border-radius: 6px;
        line-height: 1.8;
        font-size: 15px;
    }

    .result strong {
        color: var(--primary-color);
    }

    .category-photoprint {
        color: var(--secondary-color);
    }

    .category-copying {
        color: var(--copying-color);
    }

    .category-printing {
        color: var(--printing-color);
    }

    .category-ai {
        color: var(--ai-color);
    }

    .category-documents {
        color: var(--accent-color);
    }

    .time-info {
        margin-top: 15px;
        padding: 12px 15px;
        background-color: rgba(217, 44, 41, 0.15);
        border-left: 4px solid var(--accent-color);
        border-radius: 6px;
        color: #ff7b7b;
        font-size: 15px;
    }

    .discount-info {
        margin-top: 15px;
        padding: 12px 15px;
        background-color: rgba(39, 174, 96, 0.15);
        border-left: 4px solid var(--discount-color);
        border-radius: 6px;
        color: #6ee06e;
        font-size: 15px;
    }

    .total-section {
        font-weight: bold;
        font-size: 1.4em;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 2px solid var(--border-color);
        text-align: center;
        color: var(--primary-color);
    }

    .services-and-discounts {
        display: flex;
        gap: 20px;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    /* НОВЫЕ СТИЛИ ДЛЯ ПАНЕЛЕЙ */
    .additional-services-container,
    .discounts-container,
    .multifora-container {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
        padding: 25px;
        background: var(--panel-bg);
        border-radius: 12px;
        border: 1px solid var(--panel-border);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4), 
                   0 0 15px var(--panel-glow);
        transition: var(--transition);
        backdrop-filter: blur(8px);
    }

    .additional-services-container:hover,
    .discounts-container:hover,
    .multifora-container:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                   0 0 20px var(--panel-glow);
        transform: translateY(-2px);
    }

    .discounts-multifora-container {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .additional-services-title {
        color: var(--highlight-color);
        margin-bottom: 20px;
        font-size: 1.3em;
        text-align: center;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--panel-border);
        text-shadow: 0 0 10px rgba(242, 191, 12, 0.3);
    }

    .multifora-container {
        margin: 0;
        width: auto;
        max-width: none;
        float: none;
        text-align: center;
    }

    .multifora-container label {
        color: var(--highlight-color);
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

    .multifora-container select {
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid var(--highlight-color);
    }

    /* Кнопки */
    .buttons-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
        flex-wrap: wrap;
    }

    button {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 14px 25px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 6px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    button:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    button i {
        margin-right: 8px;
    }

    button.secondary {
        background: linear-gradient(135deg, #b3201e, #8a1917);
    }

    button.secondary:hover {
        background: linear-gradient(135deg, #8a1917, #b3201e);
    }

    /* НОВЫЙ СТИЛЬ ДЛЯ ФИКСИРОВАННОЙ ПАНЕЛИ */
    .fixed-total {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(32, 151, 138, 0.9), rgba(0, 133, 157, 0.9));
        color: white;
        padding: 15px 0;
        text-align: center;
        font-size: 2.8em; /* Увеличен на 1.3 раза */
        font-weight: 700;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transform: translateY(0);
        transition: all 0.3s ease;
        border-top: 3px solid rgba(242, 191, 12, 0.5);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(8px);
        /* Рамка */
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px 8px 0 0;
        margin: 0 10px;
        width: calc(100% - 20px);
    }

    /* Убираем изменение цвета при наведении */
    .fixed-total:hover {
        transform: translateY(0);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(32, 151, 138, 0.9), rgba(0, 133, 157, 0.9));
        cursor: default;
    }

    /* Неоновое свечение под панелью */
    .fixed-total::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 20px;
        background: radial-gradient(ellipse at center, 
            rgba(0, 255, 255, 0.3) 0%, 
            rgba(0, 255, 255, 0.2) 40%, 
            rgba(0, 255, 255, 0.1) 70%, 
            transparent 100%);
        filter: blur(5px);
        animation: neonPulse 2s infinite ease-in-out;
        z-index: -1;
    }

    @keyframes neonPulse {
        0%, 100% {
            opacity: 0.7;
            transform: scaleX(0.95);
        }
        50% {
            opacity: 1;
            transform: scaleX(1);
        }
    }

    .new-price-effect {
        display: inline-block;
        position: relative;
        animation: priceUpdate 0.8s ease;
    }

    @keyframes priceUpdate {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    #localPaymentSection {
        display: none;
    }

    #showPhoneBtn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1001;
        background: var(--highlight-color);
        color: #000;
        border: none;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        transition: all 0.3s ease;
        font-size: 1.3em;
    }

    #showPhoneBtn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    }

    #paymentInfo {
        display: none;
        position: fixed;
        top: 120px;
        right: 30px;
        z-index: 1000;
        background: rgba(10, 10, 20, 0.95);
        padding: 25px;
        border-radius: 15px;
        border-left: 6px solid var(--primary-color);
        max-width: 450px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        animation: fadeIn 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        border: 1px solid var(--secondary-color);
    }

    #paymentInfo h3 {
        color: var(--primary-color);
        margin: 0 0 15px 0;
        font-size: 1.8em;
        text-align: center;
        font-weight: bold;
    }

    #paymentInfo .total-duplicate {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2.2em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    #paymentInfo .phone-number {
        font-size: 2em;
        font-weight: bold;
        color: var(--secondary-color);
        margin: 15px 0;
        text-align: center;
        letter-spacing: 1px;
    }

    #paymentInfo .fio {
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(248, 249, 250, 0.1);
        border-radius: 10px;
        font-size: 1.4em;
        line-height: 1.4;
    }

    #paymentInfo .fio strong {
        font-size: 1.1em;
        color: var(--primary-color);
    }

    #paymentInfo .banks {
        margin-bottom: 20px;
        font-size: 1.3em;
    }

    #paymentInfo .banks strong {
        color: var(--primary-color);
        font-size: 1.2em;
    }

    #paymentInfo .banks ul {
        margin: 12px 0;
        padding-left: 25px;
        font-size: 1.1em;
        line-height: 1.6;
    }

    #paymentInfo .banks li {
        margin-bottom: 8px;
    }

    #paymentInfo .hint {
        text-align: center;
        margin-top: 15px;
        font-size: 1.1em;
        color: #aaa;
        font-style: italic;
        padding: 10px;
        background: rgba(32, 151, 138, 0.15);
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
    }

    /* Анимации */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Стиль для предупреждения о надбавке */
    .time-info {
        margin-top: 15px;
        padding: 12px 15px;
        background-color: rgba(217, 44, 41, 0.15);
        border-left: 4px solid var(--accent-color);
        border-radius: 6px;
        color: #ff7b7b;
        font-size: 15px;
        display: none; /* По умолчанию скрыто */
    }

    /* Стиль для информации о скидке */
    .discount-info {
        margin-top: 15px;
        padding: 12px 15px;
        background-color: rgba(39, 174, 96, 0.15);
        border-left: 4px solid var(--discount-color);
        border-radius: 6px;
        color: #6ee06e;
        font-size: 15px;
        display: none; /* По умолчанию скрыто */
    }

    /* Анимация для обновления цены */
    @keyframes priceUpdate {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .price-updated {
        animation: priceUpdate 0.5s ease;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .services-and-discounts {
            flex-direction: column;
        }
        
        .additional-services-container,
        .discounts-multifora-container,
        .discounts-container,
        .multifora-container {
            min-width: 100%;
            max-width: 100%;
        }
        
        .multifora-container {
            float: none;
            max-width: 100%;
            margin: 0;
        }
        
        .navbar-container {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .navbar-menu {
            display: none;
            width: 100%;
            flex-direction: column;
            margin-top: 15px;
        }
        
        .navbar-menu.active {
            display: flex;
            animation: fadeIn 0.4s ease;
        }
        
        .navbar-item {
            margin: 5px 0;
        }
        
        .mobile-menu-btn {
            display: block;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        
        .dropdown-menu {
            position: static;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            display: none;
            margin-left: 15px;
            border-left: 2px solid var(--primary-color);
        }
        
        .navbar-item:hover .dropdown-menu {
            display: block;
            animation: slideIn 0.3s ease;
        }
        
        h1 {
            font-size: 1.8em;
            margin: 20px 0;
        }
        
        .fixed-total {
            font-size: 2.2em;
            padding: 12px 0;
        }
        
        .calculator {
            padding-bottom: 80px;
        }
        
        #paymentInfo {
            top: 100px;
            right: 15px;
            left: 15px;
            max-width: none;
            padding: 20px;
        }
        
        #paymentInfo .total-duplicate {
            font-size: 1.8em;
            padding: 15px;
        }
        
        #paymentInfo .phone-number {
            font-size: 1.6em;
        }
        
        #paymentInfo h3 {
            font-size: 1.5em;
        }
        
        .shape {
            transform: scale(0.6);
        }
        
        .section h3 {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .category-badge {
            margin-left: 0;
            margin-top: 5px;
        }
    }

    @media (max-width: 480px) {
        .fixed-total {
            font-size: 1.8em;
            padding: 10px 0;
        }
        
        .calculator {
            padding-bottom: 70px;
        }
        
        .result-container {
            margin-bottom: 70px;
        }
        
        #showPhoneBtn {
            bottom: 20px;
            right: 20px;
            padding: 12px 20px;
            font-size: 1.1em;
        }
        
        .sections-container {
            grid-template-columns: 1fr;
        }
        
        .price-info {
            font-size: 13px;
            padding: 12px;
        }
        
        .section h3 {
            font-size: 1.1em;
        }
        
        .additional-services-container,
        .discounts-container,
        .multifora-container {
            padding: 20px;
        }
        
        .additional-services-title {
            font-size: 1.1em;
        }
    }
