/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 1.5rem;
    color: #4B5563;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Utilities */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #F59E0B;
    /* Accent Underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.highlight {
    color: #7C3AED;
    /* Purple Highlight */
}

/* Top Bar */
.top-bar {
    background: #1F2937;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #F3F4F6, transparent 40%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    /* Limit width for readability */
    margin: 0 auto;
}

@media (max-width: 768px) {
    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

.benefits-chips {
    justify-content: center;
    /* Always center now */
}

.headline {
    font-size: 3rem;
    font-weight: 800;
}

.highlight-main {
    background: linear-gradient(120deg, #FDE68A 0%, #F59E0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subheadline {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    max-width: 90%;
}

.benefits-chips {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .benefits-chips {
        justify-content: center;
    }

    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

.chip {
    background: #F3F4F6;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4B5563;
    border: 1px solid #E5E7EB;
}

/* Video */
.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    background: white;
    border: 8px solid white;
}

.watching-now {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6B7280;
}

.blinking-dot {
    color: #EF4444;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Showcase Grid */
.showcase-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.showcase-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    justify-content: space-between;
}

.showcase-item {
    min-width: 150px;
    text-align: center;
}

.showcase-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-item:hover .showcase-img {
    transform: translateY(-5px);
}

.showcase-item span {
    font-weight: 600;
    color: #374151;
}

/* Testimonials */
.testimonials-section {
    background: #F9FAFB;
    padding: 80px 0;
}

/* Modern Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testi-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E5E7EB;
}

.testi-info {
    display: flex;
    flex-direction: column;
}

.testi-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.testi-info span {
    font-size: 0.85rem;
    color: #6B7280;
}

.testi-stars {
    color: #F59E0B;
    /* Amber/Gold */
    font-size: 1rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 10px;
}

.testi-quote::before {
    content: "“";
    font-size: 4rem;
    color: #F3F4F6;
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 0;
    font-family: serif;
    opacity: 0.6;
}

.testi-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Categories Cloud */
.categories-section {
    padding: 80px 0;
    text-align: center;
}

.categories-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.cat-pill {
    padding: 10px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-weight: 600;
    color: #4B5563;
    transition: all 0.2s;
    cursor: default;
}

.cat-pill:hover {
    border-color: #F59E0B;
    color: #F59E0B;
    transform: scale(1.05);
}

.more-text {
    margin-top: 30px;
    font-weight: 700;
    color: #10B981;
}


/* Why Choose - Modern Boxes */
.why-choose-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .features-row {
        grid-template-columns: 1fr;
    }
}

.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    margin: 0;
}


/* Pricing - Clean Cards */
.pricing-section {
    padding: 100px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    /* Center vertically */
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
    }
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #E5E7EB;
}

.plan-card.basic {
    max-width: 350px;
}

.plan-card.premium {
    border: 2px solid #7C3AED;
    /* Purple Border */
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.2);
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 10;
}

@media (max-width: 768px) {
    .plan-card.premium {
        transform: scale(1);
    }
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #7C3AED;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-head {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 20px;
}

.plan-head h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #6B7280;
    margin-bottom: 10px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #111827;
    margin-bottom: 10px;
}

.curr {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.val {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.desc {
    font-size: 0.9rem;
    margin: 0;
}

.plan-body {
    text-align: center;
}

.clean-list {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.clean-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    text-indent: -15px;
    /* Hanging indent */
    color: #374151;
    font-size: 0.95rem;
}

.btn-solid {
    display: block;
    width: 100%;
    padding: 16px;
    background: #7C3AED;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-solid:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px solid #E5E7EB;
    color: #374151;
    font-weight: 700;
    border-radius: 12px;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: #374151;
    background: #F9FAFB;
}


/* Included Section - Simple List */
.included-section {
    background: #F9FAFB;
    padding: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.include-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    color: #4B5563;
    border: 1px solid #F3F4F6;
}

/* Guarantee */
.guarantee-section {
    padding: 80px 20px;
    background: #111827;
    /* Dark BG */
    color: white;
    text-align: center;
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.g-icon {
    font-size: 3rem;
}

.g-content h3 {
    color: white;
    margin: 0;
}

.g-content p {
    color: #9CA3AF;
    margin: 0;
}

.btn-white {
    background: white;
    color: #111827;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
}

.btn-white:hover {
    background: #F3F4F6;
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
    border-top: 1px solid #E5E7EB;
}

/* MOdal Styles (Copied essentially but updated z-index and colors if needed) */
/* Recopying modal styles from original to ensure it works */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-toast {
    width: 100%;
    max-width: 250px;
    /* Smaller notification */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInLeft 0.5s ease-out forwards;
    border-left: 3px solid #10B981;
}

.notif-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.notif-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: #1F2937;
}

.notif-text {
    font-size: 0.75rem;
    color: #6B7280;
}

.notif-time {
    font-size: 0.7rem;
    color: #9CA3AF;
}

.notif-icon-wrapper {
    width: 30px;
    height: 30px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
}

.notif-close {
    display: none;
}

/* Hide close on clean version */

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* White overlay instead of black */
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    /* Soft drop shadow */
    border: 1px solid #E5E7EB;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-badge {
    background: #FEF3C7;
    color: #D97706;
    /* Amber text */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.modal-headline {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 10px;
}

.modal-text {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 20px;
}

.modal-price-box {
    background: #F9FAFB;
    border: 1px dashed #D1D5DB;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.modal-price-box .old {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.modal-price-box .new {
    color: #111827;
    font-weight: 800;
    font-size: 2rem;
    display: block;
}

.modal-price-box .new small {
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-upgrade {
    background: #10B981;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
    transition: all 0.2s;
}

.btn-upgrade:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-keep-basic {
    background: transparent;
    border: none;
    color: #9CA3AF;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-keep-basic:hover {
    color: #6B7280;
}