:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --accent: #f59e0b;
    --radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-alt);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background-color: var(--text-main);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background-color: var(--primary);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 100% 0%, #e0e7ff 0%, transparent 45%),
                radial-gradient(circle at 0% 100%, #dbeafe 0%, transparent 45%);
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #fef3c7;
    color: #b45309;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #fde68a;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.5s ease-out;
}

.headline {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: #0f172a;
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.description strong {
    color: var(--text-main);
}

.highlights {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #334155;
    font-weight: 500;
}

.highlights i {
    color: var(--primary);
    font-size: 1.35rem;
}

.cta-group {
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 99px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    width: 100%;
    max-width: 450px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4);
}

.urgency-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.urgency-text i {
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badges i {
    font-size: 1.25rem;
    color: #94a3b8;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary-light), #c7d2fe);
    z-index: -1;
    transform: rotate(4deg);
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .image-decoration {
    transform: rotate(6deg);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-sm);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    border: 1px solid var(--primary-light);
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .headline {
        font-size: 3.2rem;
    }
    .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .btn-nav {
        margin-top: 1rem;
    }

    .hero {
        padding-top: 7rem;
        text-align: left;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .trust-badges {
        justify-content: flex-start;
    }
    
    .floating-badge {
        display: none; /* Hide on mobile to prevent overflow */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-primary {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }
}
\n
/* Additional Sections CSS */
.section {
    padding: 5rem 2rem;
}
.bg-light {
    background-color: var(--bg-main);
}
.bg-white {
    background-color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: white;
}
.modern-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.modern-table th, .modern-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.modern-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modern-table tr:last-child td {
    border-bottom: none;
}
.modern-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.modern-table td strong {
    color: var(--text-main);
}

/* How it Works */
.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.step-num {
    background-color: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.use-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.use-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.use-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.use-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}
.review-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.review-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.stars {
    margin-left: auto;
    color: #fbbf24;
}
.review-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* Bundles */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.bundle-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.bundle-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}
.bundle-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.bundle-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f1f5f9;
}
.bundle-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bundle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.ideal-for {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.price {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}
.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}
.btn-full {
    width: 100%;
    max-width: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 5rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-grid h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}
.footer-grid i {
    color: var(--primary);
    font-size: 1.5rem;
}
.footer-grid p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .grid-2, .use-grid {
        grid-template-columns: 1fr;
    }
    .bundle-card.popular {
        transform: none;
    }
    .bundle-card.popular:hover {
        transform: translateY(-5px);
    }
}
\n
/* Additional Sections CSS */
.section {
    padding: 5rem 2rem;
}
.bg-light {
    background-color: var(--bg-main);
}
.bg-white {
    background-color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: white;
}
.modern-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.modern-table th, .modern-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.modern-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modern-table tr:last-child td {
    border-bottom: none;
}
.modern-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.modern-table td strong {
    color: var(--text-main);
}

/* How it Works */
.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.steps-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.step-num {
    background-color: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.use-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.use-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.use-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.use-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}
.review-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.review-header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.stars {
    margin-left: auto;
    color: #fbbf24;
}
.review-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* Bundles */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.bundle-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.bundle-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}
.bundle-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.bundle-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f1f5f9;
}
.bundle-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.bundle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.ideal-for {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.price {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}
.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}
.btn-full {
    width: 100%;
    max-width: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 5rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-grid h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}
.footer-grid i {
    color: var(--primary);
    font-size: 1.5rem;
}
.footer-grid p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .grid-2, .use-grid {
        grid-template-columns: 1fr;
    }
    .bundle-card.popular {
        transform: none;
    }
    .bundle-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* General Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.7;
}

.section-header.text-center p {
    margin: 0 auto;
}

.mt-3 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* Product Overview */
.overview-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.overview-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 12px;
}

.overview-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

/* Specifications Table */
.specs-section {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

.specs-table-wrapper {
    background: var(--bg-main);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th {
    background-color: var(--primary);
    color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.specs-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: var(--primary-light);
}

.specs-table td strong {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}
.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 5rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-grid h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}
.footer-grid i {
    color: var(--primary);
    font-size: 1.5rem;
}
.footer-grid p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .grid-2, .use-grid {
        grid-template-columns: 1fr;
    }
    .bundle-card.popular {
        transform: none;
    }
    .bundle-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* General Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.7;
}

.section-header.text-center p {
    margin: 0 auto;
}

.mt-3 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* Product Overview */
.overview-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.overview-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 12px;
}

.overview-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

/* Specifications Table */
.specs-section {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

.specs-table-wrapper {
    background: var(--bg-main);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th {
    background-color: var(--primary);
    color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.specs-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: var(--primary-light);
}

.specs-table td strong {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .overview-section, .specs-section {
        padding: 4rem 0;
    }
    
    .specs-table th, .specs-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Utility Backgrounds */
.bg-main {
    background-color: var(--bg-main);
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Key Features Section */
.key-features-section {
    padding: 6rem 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.75rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Build Quality Section */
.build-quality-section {
    padding: 6rem 0;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.build-item {
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}

.build-item strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .key-features-section, .build-quality-section {
        padding: 4rem 0;
    }
}

/* How It Works & How to Use Sections */
.how-it-works-section, .how-to-use-section, .reviews-section {
    padding: 6rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-step {
    background: #fffbeb;
    border-color: #fde68a;
}
.highlight-step .step-number {
    background: #f59e0b;
}

.step-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
}
.step-card strong {
    color: var(--text-main);
}

/* Use Grid */
.use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.use-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.use-item div {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.use-item strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.review-author strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
}

.review-author span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .how-it-works-section, .how-to-use-section, .reviews-section {
        padding: 4rem 0;
    }
}

/* Bundles Section */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bundle-card {
    background: var(--bg-main);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.bundle-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bundle-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.bundle-discount {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bundle-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.ideal-for {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.bundle-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.bundle-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bundle-features i {
    color: var(--primary);
}

.bundle-card .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.05rem;
}

/* Audience Grid */
.fit-section {
    padding: 4rem 0;
}

.who-should-buy {
    padding: 6rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform 0.2s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.audience-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Comparison Table Specifics */
.comparison-section {
    padding: 6rem 0;
}

.comparison-table .highlight-col {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
}
.comparison-table th.highlight-col {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .bundle-card.popular {
        transform: scale(1);
    }
    .bundle-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Policies Section */
.policies-section {
    padding: 5rem 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.policy-card {
    background: var(--bg-main);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.policy-icon i {
    font-size: 2.5rem;
}

.policy-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.policy-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Ebook-style Readable Pages (About, Terms, Privacy) */
.readable-page {
    background-color: #f8fafc;
    min-height: 100vh;
}

.ebook-container {
    width: 80%;
    max-width: 800px;
    margin: 6rem auto 4rem auto; /* extra top margin for navbar */
    padding: 3.5rem 4.5rem;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    line-height: 1.8;
    font-size: 1.1rem;
    color: #334155;
    border: 1px solid rgba(0,0,0,0.05);
}

.ebook-container h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.ebook-container h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.ebook-container h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ebook-container p {
    margin-bottom: 1.5rem;
}

.ebook-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.ebook-container li {
    margin-bottom: 0.5rem;
}

.ebook-container a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ebook-container a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .ebook-container {
        width: 95%;
        padding: 2.5rem 1.5rem;
        margin-top: 5rem;
    }
}