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

:root {
    --bg-dark: #000000;
    --bg-navy: #0a0a0f;
    --text-white: #ffffff;
    --text-gray: #a0a0a8;
    --gradient-start: #8b5cf6;
    --gradient-end: #ec4899;
    --glass-bg: rgba(10, 10, 15, 0.6);
    --border-glow: rgba(139, 92, 246, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', sans-serif;
    background: #000000;
    background: radial-gradient(ellipse at top, #0a0a0f 0%, #000000 100%);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    top: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.5) 0%, rgba(236, 72, 153, 0.3) 40%, transparent 70%);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

body::before {
    left: -400px;
}

body::after {
    right: -400px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

section, .container {
    position: relative;
    z-index: 1;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-badge {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-text-fill-color: #ffffff;
}

.nav-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.6);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-full-width {
    width: 100%;
    text-align: center;
    display: block;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--gradient-start);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Sections */
section {
    padding: 100px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 180px;
    min-height: 100vh;
}

.hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px auto;
    position: relative;
    max-width: 100%;
}

.stats-grid::before,
.stats-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.6) 0%, rgba(236, 72, 153, 0.4) 30%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.stats-grid::before {
    left: -300px;
}

.stats-grid::after {
    right: -300px;
}

.glass-card {
    background: rgba(10, 10, 15, 0.7);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(236, 72, 153, 0.2) 30%, transparent 60%);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4), 0 0 100px rgba(236, 72, 153, 0.2);
    transform: translateY(-5px);
}

.glass-card:hover::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(236, 72, 153, 0.3) 30%, transparent 60%);
    filter: blur(50px);
}

.glass-card h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.glass-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.stat-number {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 4.5vw, 40px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    white-space: nowrap;
    line-height: 1.1;
}

.stat-label {
    color: var(--text-gray);
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 400;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
}

.client-logos:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.client-logos img {
    height: 40px;
    width: auto;
    transition: all 0.3s;
}

/* Problem Section */
.section-heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.section-subheading {
    font-size: clamp(16px, 2vw, 20px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--text-gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.comparison-card.recommended {
    border: 2px solid var(--gradient-start);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.comparison-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.comparison-example {
    background: rgba(139, 92, 246, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-gray);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Process Section */
.process-image {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
    padding: 60px 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    margin: 60px 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Case Studies */
.case-study-wrapper {
    margin-top: 60px;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 420px;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

.case-study-content {
    background: linear-gradient(135deg, rgba(70, 30, 160, 1) 0%, rgba(150, 30, 100, 1) 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 20px 0 0 20px;
}

.case-study h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-study p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: auto;
}

.case-stat {
    min-width: 0;
}

.case-stat-value {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    line-height: 1.1;
}

.case-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
}

.case-study-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
    position: relative;
    border-radius: 0 20px 20px 0;
}


.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
    border-radius: 20px;
}

/* How It Works */
.how-it-works-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.numbered-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.number-circle {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.numbered-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.numbered-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.dashboard-preview {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 20px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    overflow-y: visible;
    margin: 60px 0;
    padding-top: 50px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
}

th, td {
    padding: 20px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

th {
    background: rgba(139, 92, 246, 0.1);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

th:first-child {
    border-top-left-radius: 20px;
}

th:last-child {
    border-top-right-radius: 20px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

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

td {
    color: var(--text-gray);
}

.recommended-col {
    background: rgba(139, 92, 246, 0.05);
    position: relative;
    z-index: 10;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-white);
    white-space: nowrap;
    font-weight: 700;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
    padding: 50px 30px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--gradient-start);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-10px);
}

.save-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-white);
    font-weight: 700;
}

.pricing-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(36px, 7vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-gray);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 60px auto;
}

.faq-item {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    overflow: hidden;
}

.faq-question {
    padding: 25px 20px;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: padding 0.3s;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 20px 25px;
    max-height: 500px;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Founder Section */
.founder-section {
    background: rgba(10, 10, 15, 0.85);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quote {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 40px;
}

.signature {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    color: var(--text-gray);
    font-style: italic;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 20px;
}

.final-cta h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 968px) {
    .how-it-works-wrapper {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        order: -1;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
    }

    .nav-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .case-study {
        grid-template-columns: 1fr;
        min-height: 500px;
    }

    .case-study-content {
        border-radius: 20px 20px 0 0;
    }

    .case-study-image {
        min-height: 300px;
        border-radius: 0 0 20px 20px;
    }
}

@media (min-width: 769px) and (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 15px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 18px;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    section {
        padding: 60px 15px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px auto;
    }

    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }

    .glass-card {
        padding: 40px 30px;
    }

    .glass-card::before {
        width: 120%;
        height: 120%;
        filter: blur(30px);
    }

    .stat-number {
        font-size: 38px;
        white-space: normal;
    }

    .comparison-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .numbered-item {
        flex-direction: column;
        gap: 15px;
    }

    .founder-section {
        padding: 40px 20px;
    }

    h1, h2.section-heading {
        font-size: 32px;
    }

    .stat-label {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 16px;
    }

    .nav-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .case-study {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .case-study-content {
        padding: 35px 25px;
        border-radius: 20px 20px 0 0;
    }

    .case-study h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .case-study p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-stat-value {
        font-size: 32px;
    }

    .case-study-image {
        min-height: 250px;
        padding: 15px;
        border-radius: 0 0 20px 20px;
    }

    .how-it-works-wrapper {
        gap: 40px;
    }

    .process-image {
        padding: 40px 20px;
    }

    .features-grid {
        gap: 20px;
    }

    .comparison-table {
        padding-top: 40px;
    }

    .recommended-badge {
        font-size: 11px;
        padding: 6px 14px;
        top: -30px;
    }
}

/* Extra small devices - 400px and below */
@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 15px;
    }

    .stats-grid {
        gap: 20px;
        margin: 50px auto;
    }

    .glass-card {
        padding: 35px 25px;
    }

    .glass-card::before {
        width: 100%;
        height: 100%;
        filter: blur(25px);
    }

    .stat-number {
        font-size: 34px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 13px;
    }

    .comparison-card {
        padding: 25px 15px;
    }

    .pricing-card {
        padding: 35px 20px;
    }

    .founder-section {
        padding: 30px 15px;
    }

    .case-study-content {
        padding: 30px 20px;
        border-radius: 20px 20px 0 0;
    }

    .case-study h3 {
        font-size: 22px;
    }

    .case-study p {
        font-size: 15px;
    }

    .case-stat-value {
        font-size: 28px;
    }

    .case-stat-label {
        font-size: 13px;
    }

    .case-study-image {
        min-height: 200px;
        padding: 10px;
        border-radius: 0 0 20px 20px;
    }

    .process-image {
        padding: 30px 15px;
    }

    th, td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .faq-question {
        padding: 20px 15px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 20px;
    }

    .comparison-table {
        padding-top: 40px;
    }

    .recommended-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: -28px;
    }
}
