/* ==========================================================================
   brixiptv - Design System & Stylesheet
   ========================================================================== */

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

:root {
    --primary: #DC2626; /* Vibrant Red */
    --primary-hover: #B91C1C;
    --secondary: #2563EB; /* Royal Blue */
    --secondary-hover: #1D4ED8;
    --bg-dark: #0A0A0A; /* Jet Black */
    --bg-charcoal: #111111; /* Dark Charcoal content sections */
    --bg-card: #1A1A1A;
    --text-white: #F8FAFC; /* Soft White */
    --text-muted: #94A3B8;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-primary: rgba(220, 38, 38, 0.3);
    --transition: all 0.3s ease;
    
    /* Hot Player UI Variables */
    --hp-bg: linear-gradient(135deg, #070b19, #0f172a);
    --hp-card: #1e293b;
    --hp-accent: #f59e0b;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

section.dark {
    background-color: var(--bg-dark);
}

section.charcoal {
    background-color: var(--bg-charcoal);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
}

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

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebd52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Header & Minimal Navigation */
.header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 24px;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.header__logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

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

.header__nav {
    display: flex;
    align-items: center;
}

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

.header__nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-white);
}

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

.header__cta {
    margin-left: 20px;
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Side Menu & Overlay */
.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-charcoal);
    border-left: 1px solid var(--border-subtle);
    z-index: 999;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header__mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

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

.header__mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Urgency Limited Offer Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Section: HERO */
.hero {
    padding: 80px 24px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero__comparison-prompt {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 0.95rem;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero__preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* HOT PLAYER UI STYLE */
.tv-content {
    background: var(--hp-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.tv-logo-icon {
    width: 24px;
    height: 24px;
    color: var(--hp-accent);
}

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

.tv-logo-text strong {
    color: var(--hp-accent);
}

.tv-version {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tv-sub-status {
    font-size: 0.8rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 50px;
}

.status-active {
    color: var(--hp-accent);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

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

.status-expire {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.tv-card {
    background: var(--hp-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.tv-card:hover, .tv-card.active {
    background: var(--hp-card);
    border-color: var(--hp-accent);
    transform: scale(1.05);
}

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

.tv-card-icon svg, .tv-card-icon img {
    width: 100%;
    height: auto;
    color: white;
}

.tv-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

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

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

.tv-icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.tv-icon-btn:hover {
    background: var(--hp-accent);
    transform: scale(1.1);
}

/* MARQUEE CAROUSEL (Never Stop images Slide Gallery) */
.marquee-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    position: relative;
    background: var(--bg-dark);
}

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

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

.marquee-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.marquee-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Aspect ratio selectors from prompt */
.carousel--logos .marquee-card img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 120px;
}

.carousel--movies .marquee-card img {
    aspect-ratio: 1 / 1.482;
    object-fit: cover;
    width: 140px;
    border-radius: 8px;
}

.carousel--devices .marquee-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 120px;
    border-radius: 8px;
}

.carousel--sport .marquee-card img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    width: 140px;
    border-radius: 8px;
}

.carousel--wtsp .marquee-card img {
    aspect-ratio: 473 / 1024;
    object-fit: cover;
    width: 180px;
    border-radius: 8px;
}

/* Comparisons Table styling */
.comparisons {
    padding: 80px 24px;
}

.comp-table-wrapper {
    overflow-x: auto;
    width: 100%;
    margin-top: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

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

.comp-table th {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 700;
}

.comp-table td:nth-child(2) {
    color: var(--primary);
    font-weight: 700;
    background-color: rgba(220, 38, 38, 0.03);
}

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

/* PRICING PLANS */
.pricing {
    padding: 80px 24px;
}

.pricing__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.pricing-card__tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card__price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-card__period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.pricing-card__feature-icon {
    color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.pricing-card__cta {
    margin-top: auto;
    width: 100%;
}

/* Horizontal single month plan */
.pricing__horizontal {
    width: 100%;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing__horizontal-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing__horizontal-title {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.pricing__horizontal-price {
    font-size: 2.2rem;
    font-weight: 800;
}

.pricing__horizontal-period {
    color: var(--text-muted);
}

/* Multi screen plans */
.multiscreen__header {
    text-align: center;
    margin: 60px 0 30px 0;
}

.multiscreen__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.multiscreen-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.multiscreen-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.multiscreen-card__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.multiscreen-card__price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.multiscreen-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Payment icons styling */
.payment-methods {
    text-align: center;
    margin-top: 40px;
}

.payment-methods img {
    margin: 0 auto;
    width: 100%;
    max-width: 531px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    padding: 5px;
    background: rgba(255, 255, 255, 0.02);
}

/* Activation Steps (3-step) */
.steps {
    padding: 80px 24px;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.step-card__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-card__title {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.step-card__desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Customer Reviews Grid */
.reviews__summary {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-white);
}

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

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--border-subtle);
}

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

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

.review-card__stars {
    color: #FBBF24; /* Yellow Stars */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-card__text {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.review-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 8px;
}

/* WHATSAPP CTA SECTION */
.whatsapp-cta {
    background: linear-gradient(135deg, #111, #1e1e1e);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--border-primary);
    margin: 50px auto;
    max-width: 900px;
}

.whatsapp-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.whatsapp-cta p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Footer Section */
.footer {
    background-color: var(--bg-charcoal);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 24px 30px 24px;
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer__column ul a:hover {
    color: var(--primary);
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
    line-height: 1.6;
}

.footer__copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Legal Content Page Styling */
.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Contact Page Layout */
.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: white;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
}

/* Installation Guide Page styling */
.installation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.installation-item {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 30px;
}

.installation-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.installation-item ol {
    margin-left: 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .pricing__wrapper, .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .multiscreen__wrapper, .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 16px;
    }
    
    /* Header toggle visibility */
    .header__nav {
        display: none;
    }
    
    .header__toggle {
        display: block;
    }
    
    .header__cta {
        display: none;
    }
    
    /* Hero switch direction and collapse */
    .hero {
        padding: 60px 16px 40px 16px;
        overflow: hidden;
    }
    
    .hero__container {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .hero__title {
        font-size: 2.2rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__comparison-prompt {
        border-left: none;
        border-top: 4px solid var(--primary);
        border-radius: 0 0 8px 8px;
    }
    
    .hero__preview {
        max-width: 100%;
    }
    
    /* Pricing, steps, and reviews collapse to 1 column */
    .pricing__wrapper, .multiscreen__wrapper, .steps__grid, .reviews__grid, .installation-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing__horizontal {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .pricing__horizontal-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }
}
