/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #0F2747;
    --primary-rgb: 15, 39, 71;
    --primary-light: #1b457b;
    --accent: #f59e0b;
    --accent-rgb: 245, 158, 11;
    --background: #ffffff;
    --surface: #f8fafc;
    --surface-dark: #0b1a2e;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 30px -10px rgba(15, 39, 71, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(15, 39, 71, 0.15);
    --border-color: #e2e8f0;
    --border-radius: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

section {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 5%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Button & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 39, 71, 0.2);
}

.btn--secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn--accent:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn--rounded {
    border-radius: 50px;
}

/* Header & Mobile Menu */
header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__nav-item a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.header__nav-item a:hover,
.header__nav-item a.active {
    color: var(--primary);
}

.header__nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.header__nav-item a:hover::after,
.header__nav-item a.active::after {
    width: 100%;
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px 30px;
    transition: var(--transition);
}

.header__mobile-menu.open {
    right: 0;
}

.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 39, 71, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.header__mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.header__mobile-menu .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.header__mobile-menu .header__nav-item {
    width: 100%;
}

.header__mobile-menu .header__nav-item a {
    display: block;
    font-size: 1.15rem;
    padding: 10px 0;
}

.header__mobile-menu .header__cta {
    width: 100%;
}

.header__mobile-menu .header__cta .btn {
    width: 100%;
}

/* Limited-Time Offer Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 99;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.urgency-banner span {
    background-color: var(--accent);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: var(--background);
    padding: 80px 5% 60px 5%;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero__subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero__pricing-badge {
    color: var(--accent);
    background-color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
}

.hero__random-copy {
    border-left: 3px solid var(--accent);
    padding-left: 15px;
    margin-top: 25px;
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}

.hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HOT PLAYER UI PREVIEW */
.tv-content {
    background: linear-gradient(135deg, #071426 0%, #0F2747 100%);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tv-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    color: var(--white);
}

.tv-logo-icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.tv-version {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.status-active {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-weight: 700;
}

.status-expire {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.6);
}

.tv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.tv-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.tv-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.03);
}

.tv-card.active {
    border-color: var(--accent);
    background-color: rgba(245, 158, 11, 0.05);
}

.tv-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.tv-card-icon img,
.tv-card-icon svg {
    max-width: 100%;
    max-height: 100%;
    color: inherit;
}

.tv-card.active .tv-card-icon {
    color: var(--accent);
}

.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: 15px;
}

.tv-icon-group {
    display: flex;
    gap: 12px;
}

.tv-icon-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.tv-icon-btn:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* CSS Endless Slider Marquees */
.endless-marquee {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    box-sizing: border-box;
}

.endless-marquee__track {
    display: flex;
    width: max-content;
    gap: 12px; /* tight spacing so they appear closer together */
    animation: marquee-scroll 40s linear infinite;
}

.endless-marquee__track--fast {
    animation-duration: 25s;
}

.endless-marquee__track--reverse {
    animation-direction: reverse;
}

.endless-marquee:hover .endless-marquee__track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card base inside marquee */
.marquee-card {
    flex-shrink: 0;
    border-radius: 12px; /* soft rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 39, 71, 0.08); /* subtle shadow */
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background-color: var(--white);
}

.marquee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 39, 71, 0.15);
}

/* Icons cards: dark background! */
.marquee-card--icon {
    width: 130px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b1a2e; /* dark background for icons cards! */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.marquee-card--icon img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Movies cards */
.marquee-card--movie {
    width: 160px;
}
.marquee-card--movie img {
    aspect-ratio: 1 / 1.482;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Devices cards */
.marquee-card--device {
    width: 180px;
}
.marquee-card--device img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Sport cards */
.marquee-card--sport {
    width: 140px;
}
.marquee-card--sport img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Preview cards */
.marquee-card--preview {
    width: 180px;
}
.marquee-card--preview img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 100%;
    padding: 5px;
    background-color: #0b1a2e; /* dark background for preview cards if black, with a light frame */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp cards */
.marquee-card--wtsp {
    width: 180px;
}
.marquee-card--wtsp img {
    aspect-ratio: 473 / 1024;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Section specific color adjustments */
.section--dark .marquee-card {
    background-color: rgba(255, 255, 255, 0.05); /* creamy/light low opacity background frame */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section specific color adjustments */
.section--dark {
    background-color: var(--surface-dark);
    color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
    color: var(--white);
}

.section--dark p {
    color: rgba(255,255,255,0.7);
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-head p {
    font-size: 1.15rem;
}

/* Compare Table Section */
.compare-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background-color: var(--white);
}

.compare-table th, 
.compare-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table td:nth-child(2) {
    background-color: rgba(15, 39, 71, 0.02);
    font-weight: 600;
    color: var(--primary);
}

.compare-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Pricing Section */
.pricing {
    background-color: var(--surface);
}

.pricing__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-card__period {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--surface);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li.line-through {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-card__features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.pricing-card__features svg.check {
    color: #10b981;
}

.pricing-card__features svg.close {
    color: #ef4444;
}

.pricing-card__cta {
    width: 100%;
}

/* Horizontal pricing card */
.pricing__horizontal {
    max-width: 1100px;
    margin: 40px auto;
}

.pricing-card--horizontal {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.pricing-card--horizontal-info {
    display: flex;
    flex-direction: column;
}

.pricing-card--horizontal-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-card--horizontal-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Multi screen wrapper */
.multiscreen {
    margin-top: 60px;
}

.multiscreen__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

.multiscreen-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
}

.multiscreen-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.multiscreen-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Payment Icons centering */
.payment-icons-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.payment-icons {
    max-width: 320px;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    background-color: var(--white);
}

/* 3-Step Activation Section */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
}

.step-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 39, 71, 0.08);
    position: absolute;
    top: 15px;
    right: 25px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

/* Customer Reviews */
.reviews-summary {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-attachment {
    margin-top: 15px;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.review-attachment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.review-attachment:hover img {
    transform: scale(1.05);
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.review-author p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

.review-stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-style: italic;
}

/* FAQ Accordions */
.faq-grid {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-light);
    font-size: 1rem;
    border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
    border-top-color: var(--border-color);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

/* Contact Page Form styling */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1100px;
    margin: 40px auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(15, 39, 71, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--surface);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 39, 71, 0.1);
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5% 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.footer__brand img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer__brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer__title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Detailed content formatting (SEO text) */
.rich-text {
    max-width: 900px;
    margin: 0 auto;
}

.rich-text h2 {
    text-align: left;
    margin-top: 40px;
    font-size: 1.8rem;
}

.rich-text h3 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: var(--primary-light);
}

.rich-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.rich-text ul, .rich-text ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.rich-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Overrides (Mobile First Priority) */
@media (max-width: 1024px) {
    .pricing__wrapper,
    .multiscreen__wrapper {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing__horizontal {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 16px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Header toggle */
    .header__nav {
        display: none;
    }
    .header__toggle {
        display: block;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 16px 40px 16px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero__content {
        max-width: 100%;
    }
    .hero__headline {
        font-size: 2.2rem;
    }
    .hero__ctas {
        justify-content: center;
    }
    .hero__meta {
        justify-content: center;
    }
    .hero__random-copy {
        border-left: none;
        border-top: 2px solid var(--accent);
        padding-left: 0;
        padding-top: 15px;
    }
    .hero__visual {
        width: 100%;
    }
    
    /* Hot player app scale */
    .tv-content {
        max-width: 100%;
        height: auto;
    }
    
    /* Compares table */
    .compare-table {
        min-width: 100%;
    }
    
    /* Pricing & multiscreen */
    .pricing__wrapper,
    .multiscreen__wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-card--horizontal {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .pricing-card--horizontal-details {
        flex-direction: column;
    }
    
    /* Steps */
    .steps__grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 25px;
    }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 280px;
    }
}
