 :root {
     --bg-dark: #090d16;
     --card-dark: #131a26;
     --primary: #6366f1;
     --primary-hover: #4f46e5;
     --text-main: #f8fafc;
     --text-muted: #94a3b8;
     --border: #1e293b;
     --accent: #10b981;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Inter', system-ui, sans-serif;
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--bg-dark);
     color: var(--text-main);
     line-height: 1.6;
     overflow-x: hidden;
 }
.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem; /* Adds some spacing between the list and the button */
}

.faqs-btn {
    display: inline-block;
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.faqs-btn:hover {
    opacity: 0.9;
}
 .btn {
     background: var(--primary);
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s;
     border: none;
     cursor: pointer;
     display: inline-block;
 }

 .btn:hover {
     background: var(--primary-hover);
     transform: translateY(-1px);
 }

 /* Sections General */
 section {
     padding: 7rem 8%;
     border-bottom: 1px solid var(--border);
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     font-weight: 800;
 }

 .section-header p {
     color: var(--text-muted);
     font-size: 1.1rem;
 }

 /* Hero Section */
 .hero {
     padding: 8rem 8% 4rem;
     text-align: center;
     max-width: 900px;
     margin: 0 auto;
     border-bottom: none;
 }

 .hero h1 {
     font-size: 4rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     background: linear-gradient(to right, #fff, #94a3b8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero p {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 2.5rem;
 }

 .hero-ctas {
     display: flex;
     gap: 1rem;
     justify-content: center;
 }

 /* Mockup Window */
 .preview-section {
     padding-top: 0;
     display: flex;
     justify-content: center;
 }

 .window-mockup {
     width: 100%;
     max-width: 1000px;
     background: var(--card-dark);
     border: 1px solid var(--border);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
 }

 .window-header {
     background: #1e293b;
     padding: 0.75rem 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     display: inline-block;
 }

 .dot-r {
     background: #ef4444;
 }

 .dot-y {
     background: #f59e0b;
 }

 .dot-g {
     background: #10b981;
 }

 .window-search {
     background: var(--bg-dark);
     color: var(--text-muted);
     padding: 0.25rem 2rem;
     border-radius: 6px;
     font-size: 0.85rem;
     margin-left: 2rem;
     width: 60%;
 }

 .window-body {
     padding: 3rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: center;
 }

 /* NEW SECTION: Trust Stats Bar */
 .stats-bar {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 2rem;
     padding: 3rem 8%;
     background: #0d1527;
     text-align: center;
 }

 .stat-item h3 {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--primary);
 }

 .stat-item p {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 /* How It Works */
 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
 }

 .step-card {
     position: relative;
     padding-top: 2rem;
 }

 .step-number {
     position: absolute;
     top: -10px;
     left: 0;
     font-size: 4rem;
     font-weight: 900;
     color: rgba(99, 102, 241, 0.15);
 }

 .step-card h3 {
     font-size: 1.5rem;
     margin-bottom: 0.75rem;
     position: relative;
     z-index: 2;
 }

 .step-card p {
     color: var(--text-muted);
 }

 /* NEW SECTION: Template Library Showcase */
 .template-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }

 .template-card {
     background: var(--card-dark);
     border-radius: 12px;
     border: 1px solid var(--border);
     overflow: hidden;
     transition: all 0.3s;
 }

 .template-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary);
 }

 .template-info {
     padding: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .template-tag {
     background: #1e293b;
     padding: 0.25rem 0.5rem;
     border-radius: 4px;
     font-size: 0.75rem;
     color: var(--accent);
 }

 /* Ensure the thumbnail container hides any scaling overflows */
 .template-thumb {
     height: 180px;
     background: linear-gradient(135deg, #1e1b4b, #311042);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.3);
     font-weight: bold;
     overflow: hidden;
     /* Added to keep image inside bounds */
     position: relative;
 }

 /* Force the preview image to scale nicely inside the box */
 .template-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Forces image to fill the 180px area without stretching distortion */
     display: block;
 }

 /* Fix text and tag layout under the image */
 .template-info {
     padding: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: var(--card-dark);
     /* Ensures contrast behind text */
 }

 /* NEW SECTION: Feature Split Grid (Deep Dive) */
 .split-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     margin-bottom: 5rem;
 }

 .split-row:nth-child(even) {
     direction: rtl;
 }

 .split-row:nth-child(even) .split-content {
     direction: ltr;
 }

 .split-content h3 {
     font-size: 2rem;
     margin-bottom: 1rem;
 }

 .split-content p {
     color: var(--text-muted);
     margin-bottom: 1.5rem;
 }

 .split-graphic {
     background: var(--card-dark);
     border: 1px solid var(--border);
     height: 300px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
 }

/* Features Section */
.features {
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 70%);
    padding: 5rem 2rem; /* Added padding for better section spacing */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px; /* Limits width on ultrawide screens */
    margin: 0 auto;
}

.feature-card {
    background: var(--card-dark);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle interactive glow on hover to match a modern builder feel */
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--text-light); /* Ensures crisp contrast */
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6; /* Improves readability for feature details */
}

 /* Testimonials */
 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .testimonial-card {
     background: var(--card-dark);
     border: 1px solid var(--border);
     padding: 2rem;
     border-radius: 12px;
 }

 .testimonial-text {
     color: var(--text-main);
     font-style: italic;
     margin-bottom: 1.5rem;
 }

 .user-info {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .avatar {
     width: 45px;
     height: 45px;
     background: #334155;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 /* Pricing */
 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     max-width: 800px;
     margin: 0 auto;
 }

 .price-card {
     background: var(--card-dark);
     border: 1px solid var(--border);
     padding: 3rem 2rem;
     border-radius: 16px;
     text-align: center;
     position: relative;
 }

 .price-card.popular {
     border-color: var(--primary);
 }

 .popular-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--primary);
     font-size: 0.75rem;
     font-weight: 700;
     padding: 0.25rem 0.75rem;
     border-radius: 20px;
 }

 .price {
     font-size: 3rem;
     font-weight: 800;
     margin: 1.5rem 0;
 }

 .price span {
     font-size: 1rem;
     color: var(--text-muted);
     font-weight: 400;
 }

 .price-features {
     list-style: none;
     margin: 2rem 0;
     text-align: left;
     color: var(--text-muted);
 }

 .price-features li {
     margin-bottom: 0.75rem;
     display: flex;
     gap: 0.5rem;
 }

 /* FAQ */
 .faq-container {
     max-width: 700px;
     margin: 0 auto;
 }

 .faq-item {
     background: var(--card-dark);
     border: 1px solid var(--border);
     padding: 1.5rem;
     border-radius: 8px;
     margin-bottom: 1rem;
 }

 .faq-item h3 {
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
 }

 .faq-item p {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 /* NEW SECTION: Final Action CTA Banner */
 .cta-banner {
     background: linear-gradient(135deg, #1e1b4b 0%, #090d16 100%);
     text-align: center;
     padding: 6rem 8%;
 }

 .cta-banner h2 {
     font-size: 3rem;
     margin-bottom: 1rem;
     font-weight: 800;
 }

 .cta-banner p {
     color: var(--text-muted);
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }



 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.5rem;
     }

     .window-body,
     .split-row {
         grid-template-columns: 1fr;
         padding: 1.5rem;
         gap: 2rem;
     }

     .split-row:nth-child(even) {
         direction: ltr;
     }

     section {
         padding: 4rem 5%;
     }
 }