        /* Root Variables */
        :root {
            --primary: #121212;
            --primary-dark: #080808;
            --primary-light: #1E1E1E;
            --primary-accent: #2A2A2A;
            --primary-hover: #333333;
            --secondary: #1283fc;
            --secondary-hover: #0e6ad3;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --text-muted: #777777;
            --border-color: #333333;
            --card-bg: #1A1A1A;
            --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-family);
        }

        body {
            background-color: var(--primary);
            color: var(--text-primary);
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-25px); }
        }

        @keyframes floatLeftRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-15px); }
        }

        @keyframes pulseWidth {
            0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
            50% { transform: scaleX(1); opacity: 1; }
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }

        /* Layout Elements */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-separator {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, rgba(18,131,252,0.3), transparent);
            margin: 0;
            padding: 0;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .btn:hover:after {
            animation: ripple 1s ease-out;
        }

        .btn-full-width {
            display: inline-block;
            width: 100%;
            padding: 16px 30px;
        }

        /* Phone Boxes Section */
        .phone-boxes {
            padding: 60px 0 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .phone-boxes:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(18, 131, 252, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(18, 131, 252, 0.05) 0%, transparent 50%);
            z-index: 0;
        }



        /* Phone Box Intro */
        .phone-box-intro {
            display: flex;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
            padding-top: 40px;
        }

        .intro-content {
            flex: 1;
        }

        .intro-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .intro-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .intro-list {
            list-style: none;
        }

        .intro-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
            color: var(--text-secondary);
        }

        .list-icon {
            margin-right: 12px;
            font-size: 20px;
        }

        .phone-box-img {
            flex: 1;
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            transition: transform 0.3s ease;
            animation: floatUpDown 4s infinite ease-in-out;
            object-fit: contain;
        }

        .phone-box-img:hover {
            transform: scale(1.05);
        }

        /* Product Showcase (Optional) */
        .product-showcase {
            text-align: center;
            margin: 60px 0;
            position: relative;
            z-index: 1;
        }

        .showcase-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        /* Pricing Table */
        .pricing-table-container {
            position: relative;
            z-index: 1;
        }

        .pricing-comparison {
            text-align: center;
            margin-bottom: 40px;
        }

        .competitor-note {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(76, 175, 80, 0.1);
            padding: 12px 24px;
            border-radius: 100px;
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: #4CAF50;
            font-weight: 500;
        }

        .note-icon {
            font-size: 20px;
        }

        /* Table Styles */
        .pricing-table-wrapper {
            overflow-x: auto;
            margin-bottom: 80px;
        }

        .phone-box-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
        }

        .phone-box-table thead {
            background: var(--primary-accent);
            border-bottom: 2px solid var(--border-color);
        }

        .phone-box-table th {
            padding: 16px;
            text-align: left;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .phone-box-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .phone-box-table tbody tr:hover {
            background: rgba(18, 131, 252, 0.05);
        }

        .phone-box-table td {
            padding: 16px;
            color: var(--text-primary);
            font-size: 15px;
        }

        .model-cell {
            font-weight: 600;
            position: relative;
        }

        .model-name {
            display: inline-block;
            margin-right: 8px;
        }

        .badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }

        .price-cell {
            position: relative;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--secondary);
        }

        .btn-table {
            display: inline-block;
            padding: 8px 20px;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-table:hover {
            background: var(--secondary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(18, 131, 252, 0.3);
        }

        .table-row.popular {
            background: rgba(18, 131, 252, 0.03);
        }

        .bulk-pricing-note {
            text-align: center;
            padding: 20px;
            background: rgba(18, 131, 252, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(18, 131, 252, 0.2);
            margin-bottom: 40px;
        }

        .bulk-pricing-note p {
            margin: 0;
            color: var(--text-primary);
            font-size: 16px;
        }

        /* Footer */
        footer {
            padding: 60px 0 40px;
            background-color: var(--primary-dark);
            border-top: 1px solid var(--border-color);
            position: relative;
        }

        .footer-content {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 0.3s;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-logo img {
            height: 64px;
        }

        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 14px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
            animation-delay: 0.6s;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .social-link:hover {
            color: var(--secondary);
            background-color: rgba(18, 131, 252, 0.1);
        }

        /* Dialog Styles */
        .dialog-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .dialog-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .dialog-content {
            background-color: var(--card-bg);
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .dialog-overlay.active .dialog-content {
            transform: translateY(0);
        }

        .dialog-header {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(45deg, #1283fc 0%, #0e6ad3 100%);
            color: white;
        }

        .dialog-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .dialog-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .dialog-close:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .dialog-body {
            padding: 20px;
        }

        .dialog-body p {
            margin-top: 0;
            margin-bottom: 20px;
            text-align: center;
        }

        .dialog-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-telegram {
            display: flex;
            align-items: center;
            text-align: left;
            padding: 12px 16px;
            background-color: #2AABEE;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-telegram:hover {
            background-color: #229ED9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-icon {
            font-size: 24px;
            margin-right: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-text {
            display: flex;
            flex-direction: column;
        }

        .btn-text strong {
            font-size: 16px;
            font-weight: 600;
        }

        .btn-text small {
            font-size: 12px;
            opacity: 0.9;
        }

        /* Simplified Order Dialog Styles */
        #phone-box-selection {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(18, 131, 252, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(18, 131, 252, 0.2);
        }

        .bundle-selector {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .bundle-option {
            padding: 20px;
            background: var(--primary-accent);
            color: var(--text-primary);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .bundle-option:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(18, 131, 252, 0.3);
        }

        .bundle-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
        }

        .bundle-option:hover .bundle-price {
            color: white;
        }

        .bundle-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .bundle-option:hover .bundle-description {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
        }

        @media (max-width: 992px) {
            .phone-box-intro {
                flex-direction: column;
                text-align: center;
            }
            
            .phone-box-img {
                max-width: 400px;
                margin-top: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            /* Hide header content on mobile */
            .header-container {
                display: none;
            }
            
            header {
                min-height: 60px;
            }
            
            .phone-box-img {
                max-width: 300px;
                margin-top: 20px;
            }

            /* Hide table header on mobile */
            .phone-box-table thead {
                display: none;
            }

            /* Convert table to cards on mobile */
            .phone-box-table,
            .phone-box-table tbody,
            .phone-box-table tr,
            .phone-box-table td {
                display: block;
                width: 100%;
            }

            .phone-box-table tr {
                margin-bottom: 20px;
                border: 1px solid var(--border-color);
                border-radius: 12px;
                padding: 16px;
                background: var(--card-bg);
            }

            .phone-box-table td {
                padding: 8px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border: none;
            }

            .phone-box-table td:before {
                content: attr(data-label);
                font-weight: 600;
                color: var(--text-secondary);
                font-size: 13px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .phone-box-table td:first-child {
                font-size: 18px;
                font-weight: 700;
                padding-bottom: 12px;
                border-bottom: 1px solid var(--border-color);
                margin-bottom: 12px;
                justify-content: center;
            }

            .phone-box-table td:first-child:before {
                display: none;
            }

            .phone-box-table td:nth-child(5),
            .phone-box-table td:nth-child(6) {
                background: rgba(18, 131, 252, 0.05);
                padding: 10px 8px;
                border-radius: 8px;
                margin: 4px 0;
            }

            .phone-box-table td:last-child {
                padding-top: 12px;
                justify-content: center;
            }

            .phone-box-table td:last-child:before {
                display: none;
            }

            .btn-table {
                width: 100%;
                padding: 12px;
            }

            .price {
                font-size: 18px;
            }

            .bundle-selector {
                grid-template-columns: 1fr;
            }
        }
