/* --- Global Styles & Variables --- */
:root {
    --primary-color: #ff0000;
    --secondary-color: #e69918; /* Orange accent */
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --text-color: #333;
    --white-color: #ffffff;
    --success-color: #28a745;
    --font-family: 'Poppins', sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --section-padding: 5rem 0; /* Consistent padding for sections */
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.7; /* Slightly increased for readability */
    font-size: 16px; /* Base font size */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px; /* Base padding for containers */
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); } /* Responsive H1 */
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); } /* Responsive H2 */
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); } /* Responsive H3 */


p {
    margin-bottom: 1.25rem; /* Increased paragraph margin */
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
    cursor: pointer; /* Ensure cursor changes to pointer */
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-color), 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px; /* Increased max-width for better readability */
    margin: 0 auto;
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%; /* Ensure header spans full width */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-size: clamp(1.5rem, 4vw, 1.8rem); /* Responsive logo text */
    margin: 0; /* Remove default margin */
}

.logo .tv {
    color: var(--primary-color);
}
.logo .slide {
    color: var(--dark-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 12px; /* Slightly reduced margin for desktop */
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.5rem 0; /* Add some padding for better click area */
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active-link { /* Style for active link */
    color: var(--primary-color);
}

.nav-buttons-desktop {
    display: flex; /* Shown on desktop */
    align-items: center;
    margin-left: 20px;
}
.nav-buttons-desktop .btn {
    margin-left: 10px;
}


.nav-item-mobile {
    display: none; /* Hidden on desktop, shown in mobile dropdown */
    width: 100%;
    text-align: center;
}
.nav-item-mobile a {
    display: block;
    padding: 1rem;
    width: 100%;
}
.nav-item-mobile .btn-primary {
    margin: 0.5rem auto;
    width: calc(100% - 40px);
    border-radius: 2em;
    color: white;
}


.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem; /* Increased size for better tap */
    cursor: pointer;
    color: var(--dark-color);
}

/* --- Hero Section --- */
.hero-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
    min-height: 80vh; /* Ensure it takes up significant viewport height */
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced gap slightly */
    align-items: center;
}

.hero-text h2 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem; /* Slightly increased size */
    margin-bottom: 2.5rem; /* Increased margin */
    color: #555;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 0.5rem; /* Add bottom margin for stacking on mobile */
}

.hero-video video {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Features Section --- */
.features-section {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem; /* Increased padding */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column; /* Align items vertically */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card .feature-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}
.feature-card p {
    flex-grow: 1; /* Make paragraph take available space */
}


/* --- How It Works Section --- */
.how-it-works-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.how-it-works-image video {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem; /* Increased margin */
}
.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    font-size: 1.8rem; /* Adjusted size */
    color: var(--primary-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(var(--primary-color),0.15);
}

.step-text h3 {
    margin-bottom: 0.5rem;
}
.step-text p {
    font-size: 0.95rem;
    color: #555;
}

/* --- Get Paid Section --- */
.get-paid-section {
    padding: var(--section-padding);
}

.get-paid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.get-paid-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0; /* Increased margin */
}

.get-paid-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem; /* Slightly larger text */
}

.get-paid-text .fa-check-circle {
    color: var(--success-color); /* Use success color for checks */
    margin-right: 0.75rem; /* Increased margin */
    font-size: 1.2rem;
}

.get-paid-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Pricing Section --- */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Make cards same height */
}

.pricing-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For popular badge */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(var(--primary-color), 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 700;
}


.pricing-card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.pricing-card-header .price span {
    font-size: 1.5rem; /* For $ sign */
}
.pricing-card-header .price + p { /* Paragraph after price */
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}


.pricing-card-body {
    flex-grow: 1;
    text-align: left;
    margin-top: 1rem;
}
.pricing-card-body > p { /* Direct child p for main description */
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}


.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start; /* Align icon with first line of text */
    font-size: 0.95rem;
}

.pricing-card li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    margin-top: 0.2em; /* Align icon better with text */
}

.pricing-card-footer {
    margin-top: 1.5rem;
}
.pricing-card-footer .btn {
    width: 100%;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 3rem;
    color: #555;
    line-height: 1.6;
}
.pricing-footer-note strong {
    color: var(--dark-color);
}

/* --- AI Mode Section --- */
.ai-mode-section {
    padding: var(--section-padding);
}

.ai-mode-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Give more space to text */
    gap: 3rem;
    align-items: center;
}

.ai-mode-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ai-mode-text h3 {
    margin-bottom: 1rem;
}
.ai-mode-text p {
    margin-bottom: 1.5rem;
}

.ai-mode-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    gap: 1em;
    display: flex;
    flex-wrap: wrap;
}

.ai-mode-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

.ai-mode-text li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
    margin-top: 0.1em;
}
.ai-mode-text .btn {
    margin-top: 1rem;
}

/* --- Calculator Section --- */
.calculator-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.calculator-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem; /* Add padding to bottom */
}
.calculator-card:hover {
    transform: translateY(-5px);
}

.calculator-card img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
}

.calculator-card h3 {
    margin: 1.5rem 1rem 1rem; /* Adjust margin */
}

.calculator-card p {
    padding: 0 1.5rem; /* Adjust padding */
    flex-grow: 1;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.calculator-card .btn {
    margin: 0 auto; /* Center button */
    display: block;
    width: calc(100% - 4rem); /* Button width with padding */
}

/* --- FAQ Section --- */
.faq-section {
    padding: var(--section-padding);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden; /* Ensure rounded corners are applied */
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: var(--white-color);
    border: none;
    text-align: left;
    padding: 1.5rem; /* Increased padding */
    font-size: 1.1rem; /* Adjusted font size */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f8f8f8;
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: #777;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Added padding transition */
    background-color: #fdfdfd;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem; /* Initial padding for closed state */
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-header {
    background-color: #f8f8f8;
}
.accordion-item.active .accordion-content {
    /* max-height is set by JS */
    padding-top: 1.5rem; /* Add padding when open */
}


/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; /* Reduced gap */
    margin-bottom: 3rem;
}

.footer .logo .slide {
    color: var(--white-color);
}

.footer-about p {
    margin-top: 1rem;
    color: #aaa;
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--white-color);
    margin-bottom: 1.25rem; /* Increased margin */
    font-size: 1.1rem; /* Adjusted size */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem; /* Increased margin */
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 5px; /* Slight indent on hover */
}

.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.footer-contact a {
    color: #ccc;
}
.footer-contact a:hover {
    color: var(--white-color);
}

.footer-bottom {
    /* text-align: center; */
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    gap: .5em;
    justify-content: center;
}

/* --- Modal --- */
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); /* Darker overlay */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px; /* Add padding for smaller screens */
}

.modal-container img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain; /* Ensure whole image is visible */
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .container {
        padding: 0 15px; /* Adjust container padding for tablets */
    }
    .main-nav {
        width: 100%; /* Allow nav to take full width if needed for mobile toggle */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 1rem 0; /* Add padding to mobile menu */
        border-top: 1px solid #eee;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0; /* Remove horizontal margin */
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 1rem 20px; /* Consistent padding for mobile nav links */
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-buttons-desktop { display: none; } /* Hide desktop buttons */
    .nav-item-mobile { display: block; } /* Show mobile buttons in dropdown */
    .nav-item-mobile .btn-primary {
        margin: 1rem 20px;
        width: auto; /* Let button size naturally */
    }
     .nav-item-mobile .nav-login-mobile {
        font-weight: 600;
    }


    .mobile-nav-toggle { display: block; margin-left: auto; } /* Ensure toggle is to the right */

    .hero-content, .how-it-works-content, .get-paid-content, .ai-mode-content {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* Adjust gap for stacked layout */
    }
    .hero-video, .how-it-works-image, .get-paid-image, .ai-mode-image {
        order: -1; /* Move images/videos to top in mobile */
        margin-bottom: 2rem;
    }
    .hero-text { text-align: center; }
    .hero-buttons { display: flex; flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 80%; max-width: 300px; }


    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-about, .footer-links ul, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links ul { padding-left: 0;}

    .pricing-grid { grid-template-columns: 1fr; } /* Stack pricing cards */
}

@media (max-width: 576px) {
    body { font-size: 15px; } /* Slightly smaller base font for small mobiles */
    
    .section-header h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
    .hero-text h2 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    .hero-text p { font-size: 1rem; }

    .btn { padding: 10px 20px; font-size: 0.9rem; } /* Smaller buttons */

    .features-grid { grid-template-columns: 1fr; } /* Stack feature cards */
    .calculator-grid { grid-template-columns: 1fr; } /* Stack calculator cards */

    .header .container { padding: 0 10px; } /* Reduce padding for very small screens */
    .logo h1 { font-size: 1.3rem; }
    .mobile-nav-toggle { font-size: 1.6rem; }
    
    .pricing-card-header .price { font-size: 2rem; }
    .pricing-card-header .price span { font-size: 1.2rem; }

    .ai-mode-content, .how-it-works-content, .get-paid-content {
        gap: 2rem;
    }
     .step-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-right: 1rem;}
}

/* --- Add these new styles to your existing style.css file --- */

/* --- Features Section - Dynamic Display --- */
.dynamic-display-showcase {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
    text-align: center;
}
.dynamic-display-showcase h3 {
    margin-bottom: 3rem;
}
.display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.display-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.display-item .display-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 1em;
}
.display-promo-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
}
.display-promo-image {
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 1em;
}
.display-promo-text p {
    margin-bottom: 0;
}

/* --- Use Cases Section --- */
.use-cases-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.use-case-card {
    display: flex;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    flex-direction: column;
}
.use-case-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}
.use-case-card:nth-child(even) .use-case-image {
    order: 2;
}
.use-case-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 2em;
    padding: 1em;
}
.use-case-text {
    padding: 2rem;
}
.use-case-text h3 {
    margin-bottom: 1rem;
}

/* --- Devices & Apps Section --- */
.devices-apps-section {
    padding: var(--section-padding);
}

.device-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.device-card .device-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}
.device-card h3 {
    margin-bottom: 1rem;
}
.device-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.device-card .btn {
    margin-top: 0.5rem;
    width: 100%;
}
.device-card stripe-buy-button {
    margin-top: 1.5rem;
    width: 100%;
}


/* --- Contact Section --- */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: var(--white-color);
}
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 3rem;
    background-color: var(--white-color);
    color: var(--text-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.contact-image-wrapper {
    line-height: 0; /* remove bottom space from image */
}
.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-details {
    padding: 3rem;
}
.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.contact-options {
    margin-top: 2rem;
}
.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-option i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}
.contact-option h4 {
    margin-bottom: 0.25rem;
}
.contact-note {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}
.phone-reveal-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-bottom: 0.5rem;
}
.phone-reveal-btn:hover {
    background-color: #d60000;
}
.phone-number {
    font-weight: 600;
}
.email-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}


span {
    gap: 1em;
    display: flex;
    flex-wrap: wrap;
}

i.fa-solid.fa-circle-minus {
    color: grey;
}

.promo-item {
    width: 100%;
}

a.nav-login-mobile {
    background: #e7e7e7;
    margin: 1rem 20px;
    width: auto;
    border-radius: 2em;
    margin-top: 0;
}

.feature-option {
    padding-bottom: 2em;
}

.tvslide-btn {
    background: #ffffff;
    color: #000000;
    padding: .75em 1.5em;
    border-radius: 5em;
    border: .15em solid black;
}