/* 
 * IPTV Empire (iptvempire.shop) Main Stylesheet
 * Brand Accent: Vibrant Yellow (#FACC15)
 * Secondary Accent: Royal Blue (#2563EB)
 * Theme Backgrounds: Jet Black (#0A0A0A) & Charcoal (#111111)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FACC15;
    --primary-hover: #e2b90d;
    --secondary: #2563EB;
    --bg-dark: #0A0A0A;
    --bg-section: #111111;
    --bg-card: #18181B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(250, 204, 21, 0.15);
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Global Overflow Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button, input, textarea {
    font-family: inherit;
}

section {
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-main);
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* Navigation & Header */
.header {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.header__logo-text span {
    color: var(--primary);
}

.header__nav {
    display: none; /* Desktop only */
}

@media(min-width: 992px) {
    .header__nav {
        display: block;
    }
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.header__nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--text-main);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
    width: 100%;
}

.header__cta {
    display: none;
}

@media(min-width: 992px) {
    .header__cta {
        display: flex;
        align-items: center;
    }
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px; /* Rounded button shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn--primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.btn--secondary {
    background-color: var(--secondary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn--secondary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn--outline:hover {
    border-color: var(--primary);
    background-color: rgba(250, 204, 21, 0.05);
    transform: translateY(-2px);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--secondary) 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 101;
    position: relative;
}

.urgency-banner span {
    background-color: var(--primary);
    color: #000;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

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

/* Mobile Side Menu Hamburger */
.header__toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 200;
}

@media(min-width: 992px) {
    .header__toggle {
        display: none;
    }
}

.header__toggle-bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header__toggle-bar:nth-child(1) { top: 0; }
.header__toggle-bar:nth-child(2) { top: 10px; }
.header__toggle-bar:nth-child(3) { top: 20px; }

/* Mobile Menu Active Hamburger State */
.header__toggle--active .header__toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.header__toggle--active .header__toggle-bar:nth-child(2) {
    opacity: 0;
}
.header__toggle--active .header__toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Side Drawer */
.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 160;
    padding: 100px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header__mobile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header__mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.header__mobile-link:hover,
.header__mobile-link--active {
    color: var(--primary);
}

.header__mobile-cta {
    margin-top: auto;
}

/* Hero Section */
.hero {
    padding: 60px 20px 80px 20px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.05), transparent 40%);
    overflow: hidden;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media(min-width: 992px) {
    .hero__container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.hero__left {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

@media(min-width: 992px) {
    .hero__left {
        text-align: left;
    }
}

.hero__trust-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero__trust-badge-icon {
    color: #10B981; /* Green check */
}

.hero__title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -1px;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media(min-width: 576px) {
    .hero__title { font-size: 2.8rem; }
}

@media(min-width: 992px) {
    .hero__title { font-size: 3.6rem; }
}

.hero__title span {
    color: var(--primary);
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media(min-width: 576px) {
    .hero__subtitle { font-size: 1.15rem; }
}

.hero__price-tagline {
    background-color: rgba(250, 204, 21, 0.05);
    border-left: 4px solid var(--primary);
    padding: 12px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media(min-width: 480px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media(min-width: 992px) {
    .hero__ctas {
        justify-content: flex-start;
    }
}

.hero__pricing-badge {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

@media(min-width: 992px) {
    .hero__pricing-badge {
        justify-content: flex-start;
    }
}

.hero__right {
    flex: 1;
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HOT PLAYER UI PREVIEW */
.tv-content {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    width: 100%;
    padding: 24px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(15, 23, 42, 0.5);
    position: relative;
    max-width: 100%;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.tv-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tv-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.tv-logo-icon {
    width: 24px;
    height: 24px;
    color: #f59e0b; /* Hot Player Amber Accent */
}

.tv-logo-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.tv-logo-text strong {
    font-weight: 800;
    color: #f59e0b;
}

.tv-version {
    font-size: 0.75rem;
    color: #64748b;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2px 6px;
    border-radius: 4px;
}

.tv-sub-status {
    display: flex;
    align-items: center;
}

.status-pill {
    background-color: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #ffffff;
}

.status-active {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #f59e0b;
}

.status-divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.status-expire {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
}

.tv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media(min-width: 480px) {
    .tv-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tv-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-card:hover, .tv-card.active {
    background-color: rgba(30, 41, 59, 0.85);
    border-color: rgba(245, 158, 11, 0.4);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tv-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.tv-card-icon img, .tv-card-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tv-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.tv-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.tv-icon-group {
    display: flex;
    gap: 12px;
}

.tv-icon-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tv-icon-btn:hover {
    color: #ffffff;
    background-color: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

/* Logo Sliding Gallery - Infinite Marquee style */
.marquee-container {
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 30px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 100px;
    height: 56px; /* aspect-ratio 16:9 */
    background-color: rgba(255, 253, 240, 0.03); /* low opacity creamy white */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.08);
    border-color: var(--primary);
    background-color: rgba(255, 253, 240, 0.08);
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    aspect-ratio: 16 / 9;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Carousels & Grids */
.carousel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media(min-width: 576px) {
    .carousel-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(min-width: 992px) {
    .carousel-grid { grid-template-columns: repeat(5, 1fr); }
}

.carousel-card {
    background-color: rgba(255, 253, 240, 0.03); /* low opacity creamy white bg */
    border: 1px solid rgba(255, 255, 255, 0.05); /* light frame background low opacity border */
    border-radius: var(--radius-md);
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px var(--border-glow);
}

.carousel-card__img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background-color: #050505;
}

/* Aspect Ratio Rules */
.carousel--movies .carousel-card__img-wrapper img {
    aspect-ratio: 1 / 1.482;
    object-fit: cover;
    width: 100%;
}

.carousel--sport .carousel-card__img-wrapper img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    width: 100%;
}

.carousel--preview .carousel-card__img-wrapper img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.carousel--devices .carousel-card__img-wrapper img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.carousel--wtsp .carousel-card__img-wrapper img {
    aspect-ratio: 473 / 1024;
    object-fit: cover;
    width: 100%;
}

.carousel-card__info {
    margin-top: 10px;
    text-align: center;
}

.carousel-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Comparison Section */
.comparison {
    background-color: var(--bg-section);
}

.comparison-wrapper {
    overflow-x: auto;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    color: var(--text-main);
}

.comparison-table th:nth-child(2), .comparison-table td:nth-child(2) {
    color: var(--primary);
    background-color: rgba(250, 204, 21, 0.02);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media(min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: var(--bg-section);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card--popular {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.08);
}

.pricing-card--popular:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(250, 204, 21, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card__price-wrapper {
    margin-bottom: 25px;
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.pricing-card__price-equivalent {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-card__feature {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card__feature--disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-card__feature--disabled svg {
    color: var(--text-muted);
}

.pricing-card__cta {
    width: 100%;
}

/* Horizontal pricing card */
.pricing-horizontal {
    background-color: var(--bg-section);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-horizontal:hover {
    border-color: rgba(250, 204, 21, 0.2);
}

@media(min-width: 768px) {
    .pricing-horizontal {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.pricing-horizontal__info {
    flex: 1;
}

.pricing-horizontal__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-horizontal__price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-horizontal__equivalent {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-horizontal__cta {
    width: 100%;
    max-width: 250px;
}

/* Multi-Screen section styles */
.multi-screen {
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.multi-screen__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.multi-screen__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.multi-screen__desc {
    color: var(--text-muted);
}

.multi-screen__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .multi-screen__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.multi-screen__card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.multi-screen__card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.multi-screen__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.multi-screen__card-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.multi-screen__card-features {
    list-style: none;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Payment Icons Banner */
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

.payment-icons__img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 10px;
}

/* Activation Steps Section */
.steps {
    background-color: var(--bg-section);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary);
}

.step-card__number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(250, 204, 21, 0.1);
    margin-bottom: 15px;
    display: block;
}

.step-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Testimonial Section */
.reviews {
    background-color: var(--bg-dark);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-summary__text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(250, 204, 21, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(250, 204, 21, 0.15);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.review-card__avatar-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.review-card__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__author-info {
    flex: 1;
}

.review-card__name {
    font-size: 1rem;
    font-weight: 700;
}

.review-card__location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-card__verified {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 4px;
}

.review-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--primary);
}

.review-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* WhatsApp Banner Style */
.whatsapp-experiences {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.whatsapp-experiences__title {
    font-size: 2rem;
    font-weight: 800;
}

.whatsapp-experiences__desc {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

/* FAQs Section Accordion */
.faqs {
    background-color: var(--bg-section);
}

.faqs-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item__question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item--active .faq-item__question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0 28px;
}

.faq-item--active .faq-item__answer {
    max-height: 1000px;
    padding: 0 28px 24px 28px;
}

/* Contact Page Form styling */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media(min-width: 992px) {
    .contact-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-card {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-control {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    padding: 14px 18px;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px var(--border-glow);
}

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

.contact-detail {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail__icon {
    background-color: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-detail__text {
    color: var(--text-muted);
}

.contact-detail__text a:hover {
    color: var(--primary);
}

/* Page Layouts for subpages (min-height, banner) */
.page-header {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 20px 60px 20px;
    text-align: center;
}

.page-header__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header__title span {
    color: var(--primary);
}

.page-header__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 20px;
}

.page-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-content__wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 40px 0 20px 0;
    color: var(--text-main);
}

.page-content__wrapper p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.page-content__wrapper ul {
    margin-bottom: 30px;
    padding-left: 20px;
    color: var(--text-muted);
}

.page-content__wrapper li {
    margin-bottom: 12px;
}

/* Installation Guide Page Specifics */
.install-tabs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.install-item {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.install-item__header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.install-item__icon {
    font-size: 2.2rem;
}

.install-item__title {
    font-size: 1.6rem;
    font-weight: 800;
}

.install-item__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.install-steps {
    list-style: none;
    margin-bottom: 30px;
    counter-reset: install-counter;
}

.install-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1rem;
}

.install-step::before {
    counter-increment: install-counter;
    content: counter(install-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    background-color: rgba(250, 204, 21, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Section */
.footer {
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    padding: 80px 20px 40px 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media(min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__brand-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__col-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media(min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__bottom-link {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__bottom-link:hover {
    color: var(--primary);
}

/* Mobile specific styling overrides */
@media (max-width: 768px) {
    section {
        padding: 50px 16px;
    }
    
    .hero {
        padding: 40px 16px;
    }

    .footer__grid {
        grid-template-columns: 1fr; /* single column on mobile */
    }
}

/* Non-Stop Scrolling Carousels */
.carousel-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.carousel-marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-carousel 35s linear infinite;
}

.carousel-marquee-content:hover {
    animation-play-state: paused;
}

.carousel-marquee-content .carousel-card {
    width: 200px;
    flex-shrink: 0;
}

.carousel-marquee-content.carousel--preview .carousel-card {
    width: 300px;
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
