/* ============================================
   Ib Player Pro - Main Stylesheet
   Color Scheme: #B153D7 (Purple) with White Theme
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B153D7;
    --primary-dark: #9A3FC0;
    --primary-light: #C97AE8;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow: rgba(177, 83, 215, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.05) 0%, rgba(177, 83, 215, 0.02) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(177, 83, 215, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text h1 strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-ratings {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(177, 83, 215, 0.15);
    transition: var(--transition);
    border: 2px solid rgba(177, 83, 215, 0.1);
    min-width: 200px;
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

.rating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(177, 83, 215, 0.25);
    border-color: var(--primary-color);
}

.rating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.rating-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.rating-source {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(177, 83, 215, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 83, 215, 0.4);
    color: var(--bg-white);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-header h2 strong {
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(177, 83, 215, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(177, 83, 215, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.1), rgba(177, 83, 215, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card h3 strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.feature-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-large strong {
    font-weight: 700;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* ============================================
   CHANNELS SECTION
   ============================================ */

.channels-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(177, 83, 215, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.channels-section .section-header {
    margin-bottom: 3rem;
}

.channels-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.channels-slider {
    display: flex;
    gap: 2rem;
    animation: scroll-channels 40s linear infinite;
    width: fit-content;
}

.channels-slider:hover {
    animation-play-state: paused;
}

.channel-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(177, 83, 215, 0.1);
    border: 2px solid rgba(177, 83, 215, 0.1);
    transition: var(--transition);
}

.channel-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(177, 83, 215, 0.2);
    border-color: var(--primary-color);
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.channel-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll-channels {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate channels for seamless loop */
.channels-slider::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 2rem;
}

/* ============================================
   VODs SECTION (Movies & Series)
   ============================================ */

.vods-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
    position: relative;
}

.vods-section .section-header {
    margin-bottom: 3rem;
}

.vods-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.vods-slider {
    display: flex;
    gap: 1.5rem;
    animation: scroll-vods 50s linear infinite;
    width: fit-content;
}

.vods-slider:hover {
    animation-play-state: paused;
}

.vod-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    width: 200px;
}

.vod-item:hover {
    transform: translateY(-8px);
}

.vod-cover {
    position: relative;
    width: 100%;
    padding-top: 150%; /* 2:3 aspect ratio for movie posters */
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.1), rgba(177, 83, 215, 0.05));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(177, 83, 215, 0.15);
}

.vod-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vod-item:hover .vod-overlay {
    opacity: 1;
}

.vod-item:hover .vod-cover img {
    transform: scale(1.1);
}

.vod-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(177, 83, 215, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(177, 83, 215, 0.4);
}

.vod-item:hover .vod-play-icon {
    transform: scale(1);
    background: var(--primary-color);
}

.vod-play-icon svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* Center the play triangle */
}

.vod-info {
    padding: 1rem 0.5rem;
    text-align: center;
}

.vod-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.vod-item:hover .vod-info h4 {
    color: var(--primary-color);
}

@keyframes scroll-vods {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(177, 83, 215, 0.01) 100%);
    position: relative;
}

.pricing-section .section-header {
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 6px 25px rgba(177, 83, 215, 0.12);
    border: 2px solid rgba(177, 83, 215, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(177, 83, 215, 0.18);
    border-color: var(--primary-color);
}

.pricing-card-featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.08) 0%, var(--bg-white) 100%);
    box-shadow: 0 8px 30px rgba(177, 83, 215, 0.2);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.pricing-badge-featured {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 0.5rem 2.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(177, 83, 215, 0.4);
    z-index: 1;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.1) 0%, rgba(177, 83, 215, 0.03) 100%);
    border-bottom: 2px solid rgba(177, 83, 215, 0.15);
    position: relative;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.25rem;
    position: relative;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.4rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-savings {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.12), rgba(177, 83, 215, 0.06));
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
    display: inline-block;
    border: 1px solid rgba(177, 83, 215, 0.2);
}

.pricing-features {
    flex: 1;
    margin-bottom: 0;
    padding: 1.5rem 1.75rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(177, 83, 215, 0.1);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    background: rgba(177, 83, 215, 0.15);
    padding: 4px;
    border-radius: 50%;
    stroke-width: 2.5;
}

.pricing-features ul li.feature-highlight {
    padding: 0.5rem 0;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(177, 83, 215, 0.08);
}

.pricing-features ul li.feature-highlight strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-features ul li.feature-highlight svg {
    background: rgba(177, 83, 215, 0.1);
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
    padding: 1.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.06) 0%, rgba(177, 83, 215, 0.02) 100%);
    border-top: 2px solid rgba(177, 83, 215, 0.15);
}

.pricing-cta .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.pricing-card-featured .pricing-cta {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.06) 0%, transparent 100%);
}

/* ============================================
   HOW TO ORDER SECTION
   ============================================ */

.how-to-order-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.05) 0%, rgba(177, 83, 215, 0.02) 100%);
    position: relative;
}

.how-to-order-section .section-header {
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
    font-weight: 500;
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.order-step-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(177, 83, 215, 0.15);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(177, 83, 215, 0.12);
}

.order-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.order-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(177, 83, 215, 0.18);
    border-color: rgba(177, 83, 215, 0.4);
}

.order-step-card:hover::before {
    transform: scaleX(1);
}

.step-number-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    background: rgba(177, 83, 215, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
    transition: var(--transition);
    opacity: 0.9;
}

.order-step-card:hover .step-number-badge {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.1), rgba(177, 83, 215, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.order-step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    transform: scale(1.1) rotate(5deg);
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.order-step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.order-step-card h3 strong {
    color: var(--primary-color);
}

.order-step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.order-step-card:hover p {
    color: var(--text-dark);
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-section {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.02) 0%, rgba(248, 249, 250, 1) 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-hero-text h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.about-badge {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(177, 83, 215, 0.08);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.about-hero-media {
    position: relative;
}

.about-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    background: #000;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-image-tag span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00b67a;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.about-stat-item {
    min-width: 120px;
}

.about-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-hero-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-hero-text p {
        text-align: center;
    }

    .about-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-hero-text h2 {
        font-size: 1.7rem;
    }

    .about-image-tag {
        left: 1rem;
        right: 1rem;
        justify-content: center;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(248, 249, 250, 1) 100%);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(177, 83, 215, 0.12);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: -24px;
    right: -4px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(177, 83, 215, 0.06);
    pointer-events: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(177, 83, 215, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.6);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    opacity: 0;
}

.faq-answer-inner {
    padding-top: 0.25rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.is-open .faq-toggle-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

.faq-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-highlight {
    border-color: rgba(177, 83, 215, 0.4);
    box-shadow: 0 14px 36px rgba(177, 83, 215, 0.18);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-item {
        padding: 1.5rem 1.4rem 1.3rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.04) 0%, rgba(248, 249, 250, 1) 40%, rgba(177, 83, 215, 0.02) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-card,
.contact-info-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.25rem 2.25rem 2.5rem;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(177, 83, 215, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
    font-size: 0.98rem;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid rgba(177, 83, 215, 0.18);
    border-radius: 12px;
    font-size: 0.98rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(177, 83, 215, 0.14);
    background: rgba(177, 83, 215, 0.02);
}

.contact-form small {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-form .btn {
    width: 100%;
    max-width: 220px;
}

.contact-card::before,
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-alert-success {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #1e7e34;
}

.contact-alert-error {
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #a02020;
}

.contact-info-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.contact-info-card h2 strong {
    color: var(--primary-color);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.contact-info-list li {
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
}

.contact-info-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

/* Shared intl-tel-input container tweaks (used on checkout + contact) */
.iti {
    width: 100%;
}

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */

.legal-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 2.5rem auto 0;
    background: var(--bg-light);
    border-radius: 18px;
    padding: 2rem 2.25rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(177, 83, 215, 0.08);
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 1.25rem;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

@media (max-width: 576px) {
    .legal-section {
        padding: 3.5rem 0;
    }

    .legal-content {
        padding: 1.5rem 1.5rem 1.75rem;
    }
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.05), rgba(248, 249, 250, 1));
}

.error-wrapper {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2.75rem;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(177, 83, 215, 0.15);
}

.error-code {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.error-wrapper h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.error-text {
    font-size: 0.98rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* ============================================
   GUIDE / SETUP PAGE
   ============================================ */

.guide-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.guide-device-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.guide-device-tab {
    flex: 1 1 200px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(177, 83, 215, 0.25);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.guide-device-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(177, 83, 215, 0.35);
}

.guide-device-block {
    margin-top: 3rem;
}

.guide-device-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.guide-app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.guide-app-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 1.75rem 1.75rem 1.9rem;
    border: 1px solid rgba(177, 83, 215, 0.15);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.guide-app-card-recommended {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.06), var(--bg-white));
    border-color: rgba(177, 83, 215, 0.4);
}

.guide-app-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(177, 83, 215, 0.1);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.guide-app-badge-alt {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-dark);
}

.guide-app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.guide-app-card p {
    font-size: 0.96rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.guide-app-card ol {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.guide-app-card ol li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.45rem;
}

.guide-note {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: var(--text-light);
}

.guide-app-card code {
    font-size: 0.9rem;
    background: rgba(15, 23, 42, 0.06);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .guide-app-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .guide-section {
        padding: 3.5rem 0;
    }
}

/* ============================================
   ADMIN AREA
   ============================================ */

.admin-auth-body,
.admin-page-body {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.08), #f5f5f8);
    min-height: 100vh;
}

.admin-auth-wrapper {
    max-width: 420px;
    margin: 4rem auto;
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2.75rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(177, 83, 215, 0.18);
}

.admin-auth-wrapper h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-topbar {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 900;
}

.admin-topbar-left {
    font-weight: 700;
    color: var(--primary-dark);
}

.admin-topbar-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.admin-topbar-right a:hover {
    color: var(--primary-color);
}

.admin-layout {
    display: flex;
    min-height: calc(100vh - 58px);
}

.admin-sidebar {
    width: 220px;
    background: #fff;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.5rem 1.25rem;
}

.admin-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(177, 83, 215, 0.08);
    color: var(--primary-dark);
}

.admin-main {
    flex: 1;
    padding: 2rem;
}

.admin-main h1 {
    margin-bottom: 1.5rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.admin-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(177, 83, 215, 0.15);
}

.admin-stat-card h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.admin-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    text-align: left;
}

.admin-table thead {
    background: rgba(177, 83, 215, 0.08);
}

.admin-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.admin-table .btn-small {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.row-new {
    border-left: 4px solid var(--primary-color);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-order-details {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(177, 83, 215, 0.12);
}

.admin-order-details p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.analytics-range-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.analytics-range-filters span {
    font-weight: 600;
    color: var(--text-light);
}

.analytics-range-filters a {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(177, 83, 215, 0.25);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.analytics-range-filters a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: transparent;
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .admin-main {
        padding: 1.5rem 1.25rem 2.25rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card,
    .contact-info-card {
        padding: 2rem 1.75rem 2.25rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3.5rem 0;
    }
}

/* ============================================
   CLIENT REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.reviews-section .section-header {
    margin-bottom: 3rem;
}

.reviews-slider-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.reviews-slider {
    display: flex;
    gap: 1.5rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(177, 83, 215, 0.35);
    background: rgba(177, 83, 215, 0.12);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.active {
    width: 26px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: rgba(177, 83, 215, 0.15);
    box-shadow: 0 6px 18px rgba(177, 83, 215, 0.25);
}

.reviews-dot:hover {
    background: rgba(177, 83, 215, 0.2);
}

.reviews-slider-wrapper::before,
.reviews-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.reviews-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.reviews-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.review-item {
    flex-shrink: 0;
    width: calc((100% - 4.5rem) / 4);
    max-width: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(177, 83, 215, 0.15);
    transition: var(--transition);
    background: var(--bg-white);
    cursor: pointer;
    scroll-snap-align: start;
}

.review-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(177, 83, 215, 0.25);
}

.review-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(177, 83, 215, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--transition);
    color: var(--bg-white);
}

.review-item:hover .review-overlay {
    opacity: 1;
}

.review-overlay svg {
    width: 48px;
    height: 48px;
    stroke: var(--bg-white);
}

.review-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-item:hover .review-image img {
    transform: scale(1.05);
}

.review-image.placeholder {
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.1), rgba(177, 83, 215, 0.05));
    border: 2px dashed rgba(177, 83, 215, 0.3);
}

.placeholder-content {
    text-align: center;
    color: var(--primary-color);
    opacity: 0.5;
}

.placeholder-content svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

.placeholder-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Review Modal/Lightbox */
.review-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.review-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.review-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.review-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.review-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--bg-white);
    z-index: 10001;
}

.review-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.review-modal-close svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   SUPPORTED APPS SECTION
   ============================================ */

.apps-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(177, 83, 215, 0.01) 100%);
}

.devices-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.device-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 20px;
    border: 2px solid rgba(177, 83, 215, 0.12);
    padding: 2rem 1.75rem;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(177, 83, 215, 0.10);
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0.7;
}

.device-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(177, 83, 215, 0.18);
    border-color: rgba(177, 83, 215, 0.35);
}

.device-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.12), rgba(177, 83, 215, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.device-card:hover .device-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    transform: rotate(4deg) scale(1.05);
}

.device-icon svg {
    width: 34px;
    height: 34px;
}

.device-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.device-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.app-card {
    background: var(--bg-white);
    border: 2px solid rgba(177, 83, 215, 0.14);
    border-radius: 18px;
    padding: 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(177, 83, 215, 0.10);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0.5;
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: rgba(177, 83, 215, 0.35);
    box-shadow: 0 14px 35px rgba(177, 83, 215, 0.18);
}

.app-logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 0.9rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.10), rgba(177, 83, 215, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}

.app-logo span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.9;
}

.app-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.app-card-placeholder .app-logo {
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.14), rgba(177, 83, 215, 0.06));
}

@media (max-width: 768px) {
    .apps-section {
        padding: 3rem 0;
    }
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .app-logo {
        width: 76px;
        height: 76px;
        border-radius: 18px;
    }
    .app-name {
        font-size: 0.95rem;
    }

    .devices-section {
        padding: 3rem 0;
    }

    .devices-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .device-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ============================================
   SEO CTA SECTION
   ============================================ */

.seo-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(177, 83, 215, 0.02), rgba(177, 83, 215, 0.08));
}

.seo-cta-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.seo-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.seo-cta-content h2 strong {
    color: var(--primary-color);
}

.seo-cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.seo-cta-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.seo-cta-text strong {
    color: var(--primary-color);
}

.seo-cta-bullets {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
}

.seo-cta-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.seo-cta-bullets li::before {
    content: '•';
    color: var(--primary-color);
    margin-top: 0.15rem;
}

.seo-cta-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(177, 83, 215, 0.35);
    background: radial-gradient(circle at top left, rgba(177, 83, 215, 0.4), transparent 60%);
}

.seo-cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.seo-cta-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--bg-white);
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.seo-cta-placeholder strong {
    font-weight: 700;
}

@media (max-width: 992px) {
    .seo-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-cta-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .seo-cta-content h2 {
        font-size: 1.7rem;
    }

    .seo-cta-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    min-height: calc(100vh - 400px);
    padding: 2rem 0;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-about p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-about p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-pill-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-pill-list li {
    background: rgba(177, 83, 215, 0.07);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    border: 1px solid rgba(177, 83, 215, 0.18);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.footer-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(177, 83, 215, 0.25);
    color: var(--primary-color);
    background: rgba(177, 83, 215, 0.06);
}

.footer-legal-links {
    margin-bottom: 1rem;
}

.footer-legal-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-legal-links ul li {
    margin: 0;
}

.footer-legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 5px 15px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 20px;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .logo img {
        height: 36px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-ratings {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .rating-item {
        padding: 1.25rem 1.5rem;
        min-width: 180px;
        max-width: 220px;
    }
    
    .rating-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .section-cta {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .channels-section {
        padding: 3rem 0;
    }
    
    .channels-section .section-header {
        margin-bottom: 2rem;
    }
    
    .channel-item {
        width: 120px;
        height: 80px;
        padding: 0.75rem;
    }
    
    .channels-slider {
        gap: 1.5rem;
    }
    
    .vods-section {
        padding: 3rem 0;
    }
    
    .vods-section .section-header {
        margin-bottom: 2rem;
    }
    
    .vods-slider {
        gap: 1.25rem;
    }
    
    .vod-item {
        width: 160px;
    }
    
    .vod-cover {
        padding-top: 140%;
    }
    
    .vod-play-icon {
        width: 60px;
        height: 60px;
    }
    
    .vod-play-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .pricing-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(177, 83, 215, 0.01) 100%);
    }
    
    .pricing-section .section-header {
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-price .amount {
        font-size: 2.2rem;
    }
    
    .pricing-price .currency {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal-links ul {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-ratings {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .rating-item {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        justify-content: center;
        padding: 1.25rem 1.5rem;
    }
    
    .rating-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .rating-score {
        font-size: 1.4rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .why-choose-section {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .channels-section {
        padding: 2.5rem 0;
    }
    
    .channels-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .channels-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .channel-item {
        width: 100px;
        height: 70px;
        padding: 0.5rem;
    }
    
    .channels-slider {
        gap: 1rem;
    }
    
    .vods-section {
        padding: 2.5rem 0;
    }
    
    .vods-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .vods-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .vods-slider {
        gap: 1rem;
    }
    
    .vod-item {
        width: 140px;
    }
    
    .vod-cover {
        padding-top: 130%;
    }
    
    .vod-play-icon {
        width: 50px;
        height: 50px;
    }
    
    .vod-play-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .vod-info h4 {
        font-size: 0.9rem;
    }
    
    .pricing-section {
        padding: 2.5rem 0;
        background: linear-gradient(135deg, rgba(177, 83, 215, 0.03) 0%, rgba(177, 83, 215, 0.01) 100%);
    }
    
    .pricing-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .pricing-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1.5rem 1.25rem;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
    
    .pricing-price .currency {
        font-size: 1rem;
        margin-top: 0.3rem;
    }
    
    .pricing-features {
        padding: 1.25rem 1.5rem;
    }
    
    .pricing-features ul li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .pricing-cta {
        padding: 1.25rem 1.5rem;
    }
    
    .how-to-order-section {
        padding: 3rem 0;
    }
    
    .how-to-order-section .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .order-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .order-step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 1rem;
        right: 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .order-step-card h3 {
        font-size: 1.25rem;
    }
    
    .order-step-card p {
        font-size: 0.95rem;
    }
    
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-section .section-header {
        margin-bottom: 2rem;
    }
    
    .review-item {
        width: calc((100% - 2rem) / 3);
        max-width: 280px;
    }
    
    .reviews-slider {
        gap: 1.5rem;
    }
    
    .review-modal-content {
        max-width: 95%;
    }
    
    .review-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
    
    @media (max-width: 1024px) {
        .order-steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .order-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    
    @media (max-width: 480px) {
        .order-steps-grid {
            grid-template-columns: 1fr;
        }
        
        .review-item {
            width: calc((100% - 1rem) / 2);
            max-width: 220px;
        }
        
        .reviews-slider {
            gap: 1rem;
        }
        
        .review-modal-content {
            max-width: 98%;
            padding: 1rem;
        }
        
        .review-modal-close {
            top: -35px;
            width: 36px;
            height: 36px;
        }
        
        .review-modal-close svg {
            width: 20px;
            height: 20px;
        }
        
        .reviews-section .section-header h2 {
            font-size: 1.5rem;
        }
        
        .reviews-section .section-subtitle {
            font-size: 0.95rem;
        }
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .main-header,
    .main-footer {
        display: none;
    }
}
