:root {
--primary: #6C63FF;
--secondary: #4A44C6;
--accent: #FF6584;
--dark: #1A1A2E;
--light: #F5F5F7;
--gray: #8A8A9D;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: var(--dark);
color: var(--light);
overflow-x: hidden;
}

#particles-js {
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 5%;
position: fixed;
width: 100%;
z-index: 100;
background: rgba(26, 26, 46, 0.8);
backdrop-filter: blur(10px);
}

.logo {
font-size: 1.8rem;
font-weight: 700;
color: var(--light);
text-decoration: none;
}

.logo span {
color: var(--primary);
}

.nav-links {
display: flex;
gap: 2rem;
}

.nav-links a {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--primary);
}

.cta-button {
background: var(--primary);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.cta-button:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 0 5%;
position: relative;
}

.hero-content {
max-width: 700px;
z-index: 10;
}

.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(90deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
line-height: 1.2;
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: var(--gray);
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 1rem;
}

.secondary-button {
background: transparent;
color: var(--light);
border: 2px solid var(--primary);
padding: 0.8rem 1.5rem;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.secondary-button:hover {
background: rgba(108, 99, 255, 0.1);
}

.stats {
display: flex;
justify-content: space-around;
padding: 4rem 5%;
background: rgba(255, 255, 255, 0.03);
border-radius: 20px;
margin: 0 5%;
margin-bottom: 5rem;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--gray);
font-size: 1rem;
}

.process {
padding: 5rem 5%;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--light);
}

.process-steps {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin-bottom: 4rem;
}

.step {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
width: 300px;
text-align: center;
transition: transform 0.3s;
}

.step:hover {
transform: translateY(-10px);
}

.step-icon {
font-size: 3rem;
color: var(--primary);
margin-bottom: 1rem;
}

.step-title {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--light);
}

.step-description {
color: var(--gray);
line-height: 1.6;
}

.pricing {
padding: 4rem 2rem;
text-align: center;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.pricing-card {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 2rem;
position: relative;
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
transform: translateY(-5px);
}

.pricing-card.popular {
background: linear-gradient(135deg, #6C63FF, #FF6584);
border: 1px solid #6C63FF;
}

.popular-badge {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: #FFD700;
color: #000;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
}

.pricing-header h3 {
color: #fff;
margin-bottom: 1rem;
font-size: 1.5rem;
}

.price {
font-size: 2rem;
font-weight: bold;
color: #6C63FF;
margin-bottom: 1.5rem;
}

.pricing-card.popular .price {
color: #fff;
}

.pricing-features {
list-style: none;
padding: 0;
margin: 0;
}

.pricing-features li {
color: #fff;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
border-bottom: none;
}

.pricing-note {
margin-top: 2rem;
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}

.contact {
padding: 5rem 5%;
background: rgba(255, 255, 255, 0.03);
border-radius: 20px;
margin: 0 5%;
margin-bottom: 5rem;
display: flex;
align-items: center;
gap: 3rem;
}

.contact-photo {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 5px solid var(--primary);
}

.contact-info {
flex: 1;
}

.contact-name {
font-size: 2rem;
margin-bottom: 0.5rem;
color: var(--light);
}

.contact-position {
font-size: 1.2rem;
color: var(--primary);
margin-bottom: 1rem;
}

.contact-quote {
font-style: italic;
color: var(--gray);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.review-rating {
color: #FFD700;
margin-top: 0.5rem;
font-size: 0.9rem;
}

.review-order-id {
font-size: 0.8rem;
color: var(--gray);
margin-top: 0.5rem;
}

.no-reviews {
text-align: center;
color: var(--gray);
font-style: italic;
padding: 2rem;
}

.review-submit-section {
margin-top: 3rem;
text-align: center;
}

.review-submit-section .section-title {
margin-bottom: 1rem;
}

.faq {
padding: 5rem 5%;
margin-bottom: 5rem;
}

.faq-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
margin-bottom: 1rem;
overflow: hidden;
transition: all 0.3s;
}

.faq-question {
padding: 1.5rem;
background: rgba(255, 255, 255, 0.1);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
color: var(--light);
transition: all 0.3s;
}

.faq-question:hover {
background: rgba(108, 99, 255, 0.2);
}

.faq-question::after {
content: '+';
font-size: 1.5rem;
transition: transform 0.3s;
}

.faq-question.active::after {
transform: rotate(45deg);
}

.faq-answer {
padding: 0;
max-height: 0;
overflow: hidden;
transition: all 0.3s;
color: var(--gray);
line-height: 1.6;
}

.faq-answer.active {
padding: 1.5rem;
max-height: 500px;
}

footer {
padding: 3rem 5%;
text-align: center;
background: rgba(0, 0, 0, 0.3);
}

.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
}

.footer-links a {
color: var(--gray);
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--primary);
}

.footer-legal {
margin: 1.5rem 0;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
text-align: center;
border-left: 3px solid var(--primary);
}

.footer-legal p {
color: var(--gray);
font-size: 0.9rem;
line-height: 1.4;
margin: 0.3rem 0;
}

.footer-legal p:first-child {
color: var(--light);
font-weight: 500;
}

.copyright {
color: var(--gray);
font-size: 0.9rem;
}

.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
align-items: center;
justify-content: center;
}

.modal-content {
background: var(--dark);
padding: 2rem;
border-radius: 15px;
max-width: 500px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
position: relative;
border: 1px solid var(--primary);
color: var(--light);
}

.close-modal {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.5rem;
color: var(--gray);
cursor: pointer;
transition: color 0.3s;
}

.close-modal:hover {
color: var(--light);
}

.modal-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: var(--light);
}

.modal-list {
list-style-type: none;
}

.modal-list li {
margin-bottom: 1rem;
padding-left: 1.5rem;
position: relative;
color: var(--gray);
line-height: 1.5;
}

.modal-list li:before {
content: "•";
color: var(--primary);
position: absolute;
left: 0;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--light);
font-weight: 500;
}

.form-group select,
.form-group textarea,
#review-form input[type="text"],
#review-form input[type="number"],
.email-input {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--gray);
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
color: var(--light);
font-size: 1rem;
}

.form-group textarea,
#review-form textarea {
min-height: 120px;
resize: vertical;
}

#review-form .form-group {
margin-bottom: 1.2rem;
}

#review-form .form-group label {
display: block;
margin-bottom: 0.4rem;
color: var(--light);
font-weight: 500;
font-size: 0.95rem;
}

#review-form input[type="text"],
#review-form input[type="number"],
#review-form textarea {
padding: 0.7rem 1rem;
border: 1px solid rgba(108, 99, 255, 0.3);
background: rgba(26, 26, 46, 0.8);
color: var(--light);
font-size: 0.95rem;
transition: all 0.3s ease;
}

#review-form input[type="text"]:focus,
#review-form input[type="number"]:focus,
#review-form textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
transform: translateY(-1px);
}

.rating-stars {
display: flex;
gap: 0.2rem;
margin-top: 0.5rem;
}

.star {
font-size: 1.5rem;
color: var(--gray);
cursor: pointer;
transition: color 0.2s;
}

.star.selected {
color: #FFD700;
}

.star:hover {
color: #FFA500;
}

.progress-container {
margin: 2rem 0;
}

.progress-bar {
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
overflow: hidden;
margin: 10px 0;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary), var(--accent));
transition: width 0.3s;
border-radius: 3px;
}

.progress-text {
text-align: center;
color: var(--gray);
margin-top: 0.5rem;
font-size: 0.9rem;
}

.tariff-info {
background: rgba(108, 99, 255, 0.1);
padding: 1.5rem;
border-radius: 10px;
margin: 1.5rem 0;
border-left: 4px solid var(--primary);
}

.tariff-name {
font-size: 1.3rem;
color: var(--light);
margin-bottom: 0.5rem;
}

.tariff-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
}

.tariff-features {
list-style: none;
color: var(--gray);
}

.tariff-features li {
margin-bottom: 0.5rem;
padding-left: 1.5rem;
position: relative;
}

.tariff-features li:before {
content: "✓";
color: var(--primary);
position: absolute;
left: 0;
}

.loading {
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}

.success-message {
background: rgba(76, 175, 80, 0.2);
border: 1px solid #4CAF50;
color: #4CAF50;
padding: 1rem;
border-radius: 8px;
text-align: center;
margin: 1rem 0;
}

#tz-content {
min-height: 200px;
max-height: 400px;
overflow-y: auto;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 15px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
color: var(--light);
white-space: pre-wrap;
font-family: 'Courier New', monospace;
line-height: 1.4;
word-wrap: break-word;
font-size: 14px;
}

#tz-content h1,
#tz-content h2,
#tz-content h3,
#tz-content h4 {
color: var(--light);
margin-top: 20px;
margin-bottom: 10px;
}

#tz-content p {
color: var(--light);
margin-bottom: 10px;
}

#tz-content ul,
#tz-content ol {
color: var(--light);
margin-left: 20px;
margin-bottom: 15px;
}

#tz-content li {
margin-bottom: 5px;
color: var(--light);
}

#tz-content code {
background: rgba(0, 0, 0, 0.2);
padding: 2px 6px;
border-radius: 4px;
color: var(--accent);
font-family: 'Courier New', monospace;
}

#tz-content table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
color: var(--light);
}

#tz-content th,
#tz-content td {
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 8px 12px;
text-align: left;
color: var(--light);
}

#tz-content th {
background: rgba(255, 255, 255, 0.1);
font-weight: 600;
}

.streaming-indicator::after {
content: ' █';
animation: blink 1s infinite;
color: var(--primary);
}

@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}

#continue-btn {
background: linear-gradient(90deg, var(--primary), var(--accent));
color: white;
border: none;
padding: 12px 30px;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
display: none;
transition: all 0.3s;
}

#continue-btn:hover {
opacity: 0.9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.char-counter {
text-align: right;
font-size: 0.8rem;
color: var(--gray);
margin-top: 0.5rem;
}

.char-counter.warning {
color: #ff9800;
}

.char-counter.error {
color: #f44336;
font-weight: bold;
}

#description-textarea {
resize: vertical;
min-height: 120px;
max-height: 300px;
}

@media (max-width: 768px) {
.nav-links {
display: none;
}

.hero h1 {
font-size: 2.5rem;
}

.stats {
flex-direction: column;
gap: 2rem;
}

.contact {
flex-direction: column;
text-align: center;
}

.hero-buttons {
flex-direction: column;
}

.footer-links {
flex-direction: column;
gap: 1rem;
}

.footer-legal {
margin: 1rem 0;
padding: 0.8rem;
}

.footer-legal p {
font-size: 0.8rem;
}
}
.form-group select {
    background: rgba(26, 26, 46, 0.9) !important;
    color: var(--light) !important;
    border: 1px solid rgba(108, 99, 255, 0.3) !important;
    padding: 0.8rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    width: 100% !important;
}

.form-group select option {
    background: var(--dark) !important;
    color: var(--light) !important;
    padding: 10px !important;
}

.form-group select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2) !important;
}

.form-group textarea,
.email-input {
    background: rgba(26, 26, 46, 0.9) !important;
    color: var(--light) !important;
    border: 1px solid rgba(108, 99, 255, 0.3) !important;
}

.form-group textarea:focus,
.email-input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2) !important;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.carousel-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.carousel-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary);
}

.carousel-auto {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.auto-toggle {
    background: rgba(108, 99, 255, 0.2);
    border: 2px solid var(--primary);
    width: 40px;
    height: 20px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-toggle.active {
    background: var(--primary);
}

.auto-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auto-toggle.active::after {
    left: calc(100% - 18px);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 10px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label:hover .checkmark {
    border-color: var(--secondary);
    background: rgba(108, 99, 255, 0.1);
}

.agreement-text {
    flex: 1;
    color: var(--light);
}

.agreement-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.agreement-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.checkbox-group.highlight {
    background: rgba(108, 99, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

#tariff-info .progress-container {
    margin: 2rem 0;
}

#tariff-info .progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

#tariff-info .progress-fill {
    background: var(--primary-color);
}

.tariff-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tariff-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tariff-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tariff-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-features li:last-child {
    border-bottom: none;
}

.cta-button:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.cta-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1rem;
        margin: 0 1rem 3rem 1rem;
    }

    .contact {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
        margin: 0 1rem 3rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .step {
        width: 100%;
        max-width: 350px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-carousel {
        margin: 0 1rem;
    }

    .carousel-controls {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 0 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process {
        padding: 3rem 1rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .contact-photo {
        width: 150px;
        height: 150px;
    }

    .contact-name {
        font-size: 1.5rem;
    }

    .contact-position {
        font-size: 1.1rem;
    }

    .faq {
        padding: 3rem 1rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .testimonial-slide {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .footer-legal {
        margin: 1rem 0;
        padding: 0.8rem;
    }

    .footer-legal p {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .testimonial-slide {
        padding: 1.2rem;
        min-height: 160px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .review-rating {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .contact-photo {
        width: 120px;
        height: 120px;
    }

    .tariff-price {
        font-size: 1.5rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding-top: 4rem;
    }

    nav {
        padding: 0.8rem 5%;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        font-weight: 600;
    }

    .cta-button,
    .secondary-button {
        font-weight: 600;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark);
        color: var(--light);
    }
}

@media (hover: none) and (pointer: coarse) {
    .cta-button:hover,
    .secondary-button:hover,
    .carousel-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .step:hover {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .nav-links a,
    .footer-links a,
    .carousel-btn,
    .carousel-dot {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .star {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }
}

@media (orientation: portrait) {
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (min-height: 1000px) {
    .hero {
        min-height: 80vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .streaming-indicator::after {
        animation: none;
    }
}

#review-form .char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

#review-form .char-counter.warning {
    color: #ff9800;
}

#review-form .char-counter.error {
    color: #f44336;
    font-weight: bold;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    min-height: 200px;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 200px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--light);
    flex-grow: 1;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    text-align: left;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-rating {
    color: #FFD700;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.review-order-id {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        margin: 0 1rem;
    }

    .testimonial-slide {
        padding: 1.5rem;
        min-height: 180px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .carousel-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.testimonial-slide {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-auto {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    justify-content: center;
}

.auto-toggle {
    background: rgba(108, 99, 255, 0.2);
    border: 2px solid var(--primary);
    width: 40px;
    height: 20px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-toggle.active {
    background: var(--primary);
}

.auto-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auto-toggle.active::after {
    left: calc(100% - 18px);
}