/* Variables */
:root {
    --primary-color: #3245FF;
    --primary-hover: #2835DB;
    --secondary-color: #BC52EE;
    --accent-color: #4AF2C8;
    --text-dark: #111827;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --border-color: rgba(0, 0, 0, 0.1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Container */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.nav-links .btn.btn-primary {
    color: white;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-1px);
}

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

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-1px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo-dim {
    opacity: 0.6;
}

.nav-links {
    display: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem 6rem;
    background-image: 
        linear-gradient(to right, rgba(58, 58, 58, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(58, 58, 58, 0.1) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.hero-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.video-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.video-overlay {
    position: absolute;
    inset: 0
    pointer-events: none;
    opacity: 0.4;
}

.video-caption {
    text-align: center;
    margin-top: 2rem;
}

.video-caption h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.video-caption p {
    font-size: 1.25rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-caption h2 {
        font-size: 1.5rem;
    }
    
    .video-caption p {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.primary-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
}

.secondary-features {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.feature-mini-icon {
    width: 40px;
    height: 40px;
    background: #EEF2FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-mini-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-mini-content p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* How It Works */
.how-it-works {
    padding: 2rem 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-card p {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Download Section */
.download-section {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
    min-height: 100vh;
}

.download-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.main-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.download-web {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.web-content {
    flex: 1;
}

.web-image {
    flex: 1;
    max-width: 400px;
}

.web-image img {
    width: 100%;
    height: auto;
}

.platform-title {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.app-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.download-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: var(--bg-light);
}

.download-button[disabled]:hover {
    transform: none;
    background-color: var(--bg-light);
}

.coming-soon-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.download-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    max-width: 300px;
}

.pricing-card.highlighted {
    border: 2px solid var(--primary-color);
    position: relative;
}

.best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    color: var(--text-light);
}

.plan-savings {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.plan-includes {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-decoration: none;
}

.blog-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    text-decoration: underline;
}

.blog-header {
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    background-image: 
        linear-gradient(to right, rgba(58, 58, 58, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(58, 58, 58, 0.1) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.latest-blog {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-preview-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.blog-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
}

.blog-preview-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.blog-preview-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 5rem 0 3rem;
    background: white;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand-dim {
    opacity: 0.6;
}

.footer-brand p {
    color: var(--text-light);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .mobile-menu-button {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid,
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .blog-grid,
    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .download-web {
        flex-direction: column;
    }

    .web-image {
        order: -1;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 300px;
    }

    .blog-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .primary-features {
        grid-template-columns: 1fr;
    }

    .feature-mini {
        flex-direction: column;
        text-align: center;
    }
}

/* Blog Listing Page Styles */
.blog-main {
    padding-top: 4rem;
    background-color: var(--bg-light);
}

.blog-index-header {
    background: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.blog-index-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-index-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing {
    padding: 4rem 0;
}

.blog-post-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-card .blog-post-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-post-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.blog-post-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-post-card h2 a:hover {
    color: var(--primary-color);
}

.blog-post-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-post-card .blog-post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-card .blog-post-link:hover {
    text-decoration: underline;
}

/* Individual Blog Post Styles */
.blog-single {
    width: 1400px;
    margin: 6rem auto 2rem;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-single-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-single-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-single .blog-post-meta {
    color: var(--text-light);
}

.blog-single-content {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Blog Styles */
.blog-single {
    width: 1400px;
    margin: 6rem auto 2rem;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-single-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-single-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-post-meta {
    color: var(--text-light);
}

.blog-single-content {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.blog-single-content p {
    margin-bottom: 1.5rem;
}

.blog-single-content h2 {
    font-family: Lato, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

/* Key Benefits Section */
.key-benefits {
    margin: 2rem 0;
    position: relative;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.key-benefits h3 {
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.key-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.key-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.key-point {
    font-weight: 700;
    color: var(--text-dark);
}

/* Table Styles */
.blog-single-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.blog-single-content table th,
.blog-single-content table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.blog-single-content table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

/* Blog CTA Section */
.blog-cta {
    background: var(--primary-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.blog-cta h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.blog-cta .btn-white {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* List Styles */
.blog-single-content ul,
.blog-single-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-single-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1440px) {
    .blog-single {
        width: 95%;
        margin: 4rem auto 2rem;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .blog-single {
        margin: 2rem auto;
        padding: 24px;
    }

    .blog-single-header h1 {
        font-size: 36px;
    }

    .blog-single-content {
        font-size: 16px;
    }

    .blog-single-content h2 {
        font-size: 24px;
    }

    .key-benefits {
        padding: 1.5rem;
    }
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
}

.comparison-table .key-point {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.comparison-table td {
    vertical-align: top;
    padding: 1.5rem;
}

.comparison-table td p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.important-note {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.important-note h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.important-note ul {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.important-note li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.use-case-column {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.use-case-icon.alternative {
    background: #FEF2F2;
    color: #DC2626;
}

.use-case-cards {
    display: grid;
    gap: 1rem;
}

.use-case-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.use-case-card h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.use-case-card.alternative h4 {
    color: #DC2626;
}

.use-case-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.requirements-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.requirements-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.requirement-item {
    text-align: left;
    color: var(--text-light);
    font-size: 0.95rem;
}

.requirement-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-section {
    max-width: 1200px;
    margin: 3rem auto;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-table thead th {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.product-icons th {
    padding-bottom: 0.5rem;
}

.product-descriptions th {
    color: var(--text-light);
    font-weight: normal;
    font-size: 0.9rem;
    padding-bottom: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.feature-icon.primary {
    background: var(--primary-color);
    color: white;
}

.comparison-table tbody td {
    vertical-align: top;
}

.comparison-table td strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.comparison-table td span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.comparison-table td.highlight strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .comparison-section {
        margin: 1rem -1.5rem;
        padding: 1rem;
        border-radius: 0;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: white;
        min-width: 120px;
        z-index: 1;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    }

    .comparison-table th,
    .comparison-table td {
        min-width: 140px;
        padding: 1rem;
    }
}

@media (min-width: 769px) {
    .comparison-section td:not(:first-child) {
        padding-left: 14.5rem; /* Adjust this value to match alignment */
    }
    
    .comparison-section thead th:not(:first-child) {
        padding-left: 14.5rem; /* Keep same value as above */
    }
}